/* ═══════════════════════════════════════════════════════════════
   EL Finans — tanıtım sitesi v2
   Renk paleti korunmuştur; yerleşim ve animasyonlar yenilendi.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bg-1: #f4f7fd;
  --bg-2: #e9effb;
  --ink: #0f1f4b;
  --head: #1e3a8a;
  --accent: #2563eb;
  --accent-2: #3b82f6;
  --muted: #5b6b8c;
  --card: #ffffff;
  --border: #e3e9f5;
  --chip-bg: #dbe7fb;
  --green: #059669;
  --red: #e11d48;
  --amber: #f59e0b;
  --radius: 24px;
  --nav-h: 64px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }

/* Klavye ile gezinme için görünür odak halkası */
:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .55);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ─── Kaydırma ilerleme çubuğu (JS enjekte eder) ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 3px; background: linear-gradient(90deg, var(--accent), #60a5fa);
  transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  padding: 0 clamp(16px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(227, 233, 245, 0.8);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(30, 58, 138, 0.08); }
.nav .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff; font-weight: 700; font-size: 18px; font-style: italic;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}
.brand-mark { overflow: hidden; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-name { color: var(--head); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
@media (max-width: 480px) { .brand-name { display: none; } }
.nav-links { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2.4vw, 28px); min-width: 0; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff !important; padding: 6px 13px; border-radius: 999px;
  font-size: 12.5px !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45); }
.nav-cta:active { transform: scale(.97); }
.nav .lang-switch { justify-self: end; }

/* ─── Mobil menü: hamburger + soldan çekmece ─── */
.nav-burger {
  display: none;
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 12px;
  background: rgba(255, 255, 255, .75);
  color: var(--head); cursor: pointer; padding: 0;
  place-items: center;
}
.nav-burger svg { width: 20px; height: 20px; }
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 240;
  background: rgba(7, 15, 36, .45);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 250;
  width: min(300px, 82vw);
  background: var(--card);
  box-shadow: 24px 0 64px rgba(15, 31, 75, .2);
  transform: translateX(-104%);
  transition: transform .32s var(--ease);
  display: flex; flex-direction: column;
  padding: 14px 16px calc(20px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.drawer-head .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.drawer-head .brand-name { display: block; }
.drawer-close {
  width: 38px; height: 38px; border: 0; border-radius: 10px;
  background: var(--chip-bg); color: var(--head);
  display: grid; place-items: center; cursor: pointer;
}
.drawer-close svg { width: 18px; height: 18px; }
.drawer-links { display: grid; gap: 4px; }
.drawer-links a {
  display: block; padding: 13px 12px; border-radius: 12px;
  color: var(--head); text-decoration: none;
  font-weight: 700; font-size: 16px;
}
.drawer-links a:hover, .drawer-links a:active { background: var(--chip-bg); color: var(--accent); }
.drawer-lang { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.drawer-lang h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin: 0 0 10px 4px;
}
.drawer-lang .opts { display: flex; gap: 8px; }
.drawer-lang button {
  flex: 1; padding: 11px; border-radius: 12px;
  border: 1px solid var(--border); background: #fff;
  font: inherit; font-size: 14px; font-weight: 600; color: var(--head);
  cursor: pointer;
}
.drawer-lang button[aria-pressed="true"] {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: transparent; color: #fff;
}
body.drawer-open { overflow: hidden; }

@media (max-width: 760px) {
  .nav { display: flex; gap: 12px; }
  .nav-links { display: none; }
  .nav-burger { display: grid; }
  .nav .brand { margin-right: auto; }
}
@media (max-width: 480px) {
  .nav { padding: 0 12px; gap: 10px; }
  .nav .lang-toggle {
    grid-template-columns: 24px 12px;
    gap: 5px;
    width: 54px;
    min-width: 54px;
    min-height: 40px;
    padding: 5px;
  }
  .nav .lang-toggle .lang-current { display: none; }
  .nav .lang-toggle > svg:first-child { width: 24px; height: 24px; }
  .nav .lang-toggle .chev { width: 12px; height: 12px; }
}

/* ─── Ortak metin öğeleri ─── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--chip-bg); color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 20px;
}
.badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, .4); }
  50% { opacity: .75; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(37, 99, 235, 0); }
}
h1, h2 { color: var(--head); line-height: 1.08; letter-spacing: -0.025em; }
h1 { font-size: clamp(42px, 7vw, 84px); font-weight: 700; }
h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 700; }
.accent {
  background: linear-gradient(120deg, #2563eb, #60a5fa, #2563eb);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: accentShift 7s ease-in-out infinite alternate;
}
@keyframes accentShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.lede { color: var(--muted); font-size: clamp(16px, 2vw, 19px); margin-top: 18px; max-width: 50ch; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 48px); }
.section-head .lede { margin-left: auto; margin-right: auto; }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0; transform: translateY(36px); filter: blur(6px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-scale {
  opacity: 0; transform: translateY(48px) scale(.94);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-scale.in { opacity: 1; transform: none; }
.stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .15s; }
.stagger.in > *:nth-child(3) { transition-delay: .25s; }
.stagger.in > *:nth-child(4) { transition-delay: .35s; }
.stagger.in > *:nth-child(5) { transition-delay: .45s; }
.stagger.in > *:nth-child(6) { transition-delay: .55s; }

/* ─── Telefon çerçevesi ─── */
.phone {
  width: min(300px, 78vw);
  background: #0b0f1a;
  border-radius: 30px;
  padding: 5px;
  box-shadow: 0 40px 80px rgba(15, 31, 75, 0.28), 0 8px 24px rgba(15, 31, 75, 0.15);
  will-change: transform;
  transform: translateY(var(--py, 0px)) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}
.phone.float { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.screen {
  background: #f6f8fd; border-radius: 25px; overflow: hidden;
  position: relative;
}
.screen img { display: block; width: 100%; height: auto; }
.island {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 82px; height: 22px; background: #000; border-radius: 999px; z-index: 2;
}

/* ═══ HERO ═══ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: calc(var(--nav-h) + 40px);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, .1) 1px, transparent 1.5px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 75%);
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .5;
  animation: orbDrift 20s ease-in-out infinite alternate;
}
.orb-1 { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle, #93c5fd, transparent 70%); }
.orb-2 { width: 420px; height: 420px; bottom: -80px; left: -160px; background: radial-gradient(circle, #bfdbfe, transparent 70%); animation-delay: -7s; animation-duration: 26s; }
.orb-3 { width: 280px; height: 280px; top: 26%; left: 44%; background: radial-gradient(circle, #dbeafe, transparent 70%); animation-delay: -13s; animation-duration: 32s; }
@keyframes orbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(48px, 36px, 0) scale(1.12); }
}

.hero-inner {
  position: relative; width: 100%; max-width: 1120px;
  margin: 0 auto;
  padding: 24px clamp(16px, 5vw, 48px) 40px;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy h1 { line-height: 1.08; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
}

/* Başlık kelime kelime giriş (JS böler) */
.hw {
  display: inline-block;
  opacity: 0; transform: translateY(.7em);
  animation: wordUp .7s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 90ms + 120ms);
}
@keyframes wordUp { to { opacity: 1; transform: none; } }
/* Bölünmüş kelimeler transform ile katman oluşturunca üstteki .accent'in
   background-clip:text'i çalışmaz; gradyan her kelimeye ayrıca uygulanır. */
.accent .hw {
  padding-bottom: .08em;
  background: linear-gradient(120deg, #2563eb, #60a5fa, #2563eb);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation:
    wordUp .7s var(--ease) calc(var(--i, 0) * 90ms + 120ms) forwards,
    accentShift 7s ease-in-out infinite alternate;
}

.hero-slogan {
  display: inline-flex; align-items: center; gap: 9px;
  width: fit-content; margin-top: 20px;
  padding: 10px 16px;
  color: #1d4ed8; font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700; letter-spacing: .01em;
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(219, 234, 254, .78));
  border: 1px solid rgba(59, 130, 246, .22);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 99, 235, .13), inset 0 1px 0 rgba(255, 255, 255, .85);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; animation: fadeUp .8s var(--ease) .7s forwards;
}
.hero-slogan::before {
  content: "✦"; color: #3b82f6; font-size: .9em;
  filter: drop-shadow(0 0 7px rgba(59, 130, 246, .45));
}
.hero-copy .lede { opacity: 0; animation: fadeUp .8s var(--ease) .55s forwards; }
.hero-copy .badge { opacity: 0; animation: fadeUp .7s var(--ease) 0s forwards; }
.hero-copy .store-buttons { opacity: 0; animation: fadeUp .8s var(--ease) .85s forwards; }
.hero-copy .trust-chips { opacity: 0; animation: fadeUp .8s var(--ease) 1s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-slogan { margin-left: auto; margin-right: auto; }
}

.trust-chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 26px; padding: 0;
}
.trust-chips li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 13px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.trust-chips svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
@media (max-width: 900px) { .trust-chips { justify-content: center; } }

/* Hero görseli: telefon + yüzen veri kartları */
.hero-visual {
  position: relative;
  display: flex; justify-content: center;
  perspective: 1200px;
  opacity: 0; animation: heroVisual 1s var(--ease) .35s forwards;
}
@keyframes heroVisual { from { opacity: 0; transform: translateY(40px) scale(.96); } to { opacity: 1; transform: none; } }
.hero-visual::before {
  content: ""; position: absolute; inset: -8%;
  background: conic-gradient(from 180deg, transparent 0%, rgba(147, 197, 253, .35) 25%, transparent 50%, rgba(191, 219, 254, .3) 75%, transparent 100%);
  border-radius: 50%;
  filter: blur(40px);
  animation: ringSpin 26s linear infinite;
  z-index: 0;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.hero-visual .phone {
  position: relative; z-index: 1;
  box-shadow: 0 16px 34px rgba(15, 31, 75, .13), 0 4px 12px rgba(15, 31, 75, .07);
}

.float-chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 10px 14px;
  box-shadow: 0 14px 34px rgba(15, 31, 75, 0.16);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  animation: chipFloat 6s ease-in-out infinite alternate;
}
.float-chip .fc-ic {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; flex-shrink: 0;
}
.float-chip .fc-ic svg { width: 16px; height: 16px; }
.float-chip small { display: block; font-size: 10.5px; font-weight: 600; color: var(--muted); line-height: 1.2; }
.float-chip b { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.25; font-variant-numeric: tabular-nums; }
.chip-income { top: 12%; left: -8%; animation-delay: -1s; }
.chip-income .fc-ic { background: rgba(5, 150, 105, .12); color: var(--green); }
.chip-income b { color: var(--green); }
.chip-expense { top: 42%; right: -12%; animation-delay: -3s; }
.chip-expense .fc-ic { background: rgba(225, 29, 72, .1); color: var(--red); }
.chip-expense b { color: var(--red); }
.chip-net { bottom: 10%; left: -4%; animation-delay: -5s; }
.chip-net .fc-ic { background: rgba(37, 99, 235, .12); color: var(--accent); }
.chip-net b { color: var(--accent); }
@keyframes chipFloat {
  from { transform: translateY(-7px); }
  to   { transform: translateY(9px); }
}
@media (max-width: 900px) {
  .chip-income { left: 2%; }
  .chip-expense { right: 0; }
  .chip-net { left: 6%; }
}
@media (max-width: 560px) {
  .float-chip { padding: 8px 11px; }
  .float-chip b { font-size: 12.5px; }
  .chip-income { left: -2%; }
  .chip-expense { right: -3%; }
}

/* ═══ İSTATİSTİK BANDI ═══ */
.stats {
  max-width: 1080px; margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 48px) clamp(24px, 4vw, 48px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 20px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.stat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(30, 58, 138, .1); }
.stat b {
  display: block;
  font-size: clamp(30px, 4vw, 42px); font-weight: 700; line-height: 1.1;
  color: var(--head); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stat b span { display: inline; font: inherit; color: inherit; }
.stat b .unit { color: var(--accent); }
.stat > span { display: block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--muted); }

/* ═══ YAPIŞKAN VİTRİN (özellikler) ═══ */
.showcase {
  --showcase-steps: 5;
  --showcase-stage-h: calc(100svh - var(--nav-h));
  position: relative;
  min-height: calc(var(--showcase-stage-h) + (var(--showcase-steps) - 1) * 58svh);
  padding: 0 clamp(16px, 5vw, 48px);
}
.showcase-stage {
  position: sticky; top: var(--nav-h);
  height: var(--showcase-stage-h);
  padding: clamp(12px, 2vh, 20px) 0;
  display: grid; grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}
.showcase .section-head .badge { margin-bottom: 8px; padding-block: 6px; }
.showcase .section-head .lede { margin-top: 8px; }
.showcase-wrap {
  width: 100%; max-width: 1080px; min-height: 0;
  margin: clamp(12px, 2vh, 20px) auto 0;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(220px, 340px);
  gap: clamp(14px, 2.5vw, 32px); align-items: center;
}
.steps { width: min(100%, 580px); justify-self: end; display: grid; gap: clamp(5px, .9vh, 9px); min-width: 0; }
.step {
  display: flex; gap: 13px; align-items: center; min-width: 0;
  background: transparent; border: 1px solid transparent; border-radius: 18px;
  padding: clamp(8px, 1.15vh, 12px) 15px; cursor: pointer; opacity: .72;
  transition: opacity .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.step.active {
  opacity: 1; background: var(--card); border-color: var(--border);
  box-shadow: 0 12px 32px rgba(30, 58, 138, .1);
  transform: translateX(10px);
}
.step > div { min-width: 0; }
.step-ic {
  width: clamp(36px, 5vh, 44px); height: clamp(36px, 5vh, 44px);
  border-radius: 13px; flex-shrink: 0; display: grid; place-items: center;
  background: var(--chip-bg); color: var(--accent);
  transition: background .35s, color .35s, transform .35s var(--ease);
}
.step.active .step-ic {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff; transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(37, 99, 235, .35);
}
.step-ic svg { width: 21px; height: 21px; }
.step h3 { font-size: 15px; line-height: 1.25; color: var(--head); }
.step p {
  max-width: 100%;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.6;
  text-wrap: balance;
}
.step .step-phone { display: none; }
.showcase-sticky {
  position: relative; height: 100%; min-height: 0;
  display: flex; justify-content: center; align-items: center; perspective: 1200px;
}
.showcase-sticky .phone {
  width: min(300px, calc((100svh - var(--nav-h) - 180px) * .455));
  box-shadow: 0 16px 34px rgba(15, 31, 75, .13), 0 4px 12px rgba(15, 31, 75, .07);
}
.showcase-sticky .screen { aspect-ratio: 1206 / 2622; }
.showcase-sticky .screen img {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.04);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.showcase-sticky .screen img.active { opacity: 1; transform: none; }

@media (min-width: 901px) and (max-height: 700px) {
  .showcase-stage { padding-block: 8px; }
  .showcase .section-head .badge { margin-bottom: 4px; padding-block: 4px; font-size: 10px; }
  .showcase .section-head h2 { font-size: 30px; line-height: 1.08; }
  .showcase .section-head .lede { margin-top: 4px; font-size: 14px; line-height: 1.35; }
  .showcase-wrap { margin-top: 7px; }
  .steps { gap: 4px; }
  .step { padding: 6px 12px; gap: 10px; border-radius: 14px; }
  .step-ic { width: 34px; height: 34px; border-radius: 10px; }
  .step-ic svg { width: 18px; height: 18px; }
  .step h3 { font-size: 13px; }
  .step p { font-size: 11.5px; line-height: 1.45; margin-top: 3px; }
}

@media (max-width: 900px) {
  .showcase { min-height: 0; padding: clamp(56px, 9vw, 80px) clamp(16px, 5vw, 48px); }
  .showcase-stage { position: static; height: auto; padding: 0; display: block; overflow: visible; }
  .showcase-wrap { grid-template-columns: 1fr; margin-top: 32px; }
  .showcase-sticky { display: none; }
  .steps { display: flex; flex-direction: column; gap: 14px; }
  .step { flex-wrap: wrap; cursor: default; opacity: 1; padding: 20px; }
  .step.active { transform: none; }
  .step, .step.active {
    background: var(--card); border-color: var(--border);
    box-shadow: 0 10px 30px rgba(30, 58, 138, .07);
  }
  .step h3 { font-size: 17px; }
  .step p { font-size: 14px; line-height: 1.55; margin-top: 5px; }
  .step .step-phone {
    position: relative;
    display: block;
    width: min(248px, 72vw);
    margin: 18px auto 0;
    padding: 5px;
    overflow: hidden;
    border-radius: 30px;
    background: #0b0f1a;
    box-shadow: 0 12px 26px rgba(15, 31, 75, .10);
  }
  .step .step-phone::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 50%;
    width: 54px;
    height: 16px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #05070b;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .08);
    pointer-events: none;
  }
  .step .step-phone img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 25px;
  }
}
/* ═══ YAPAY ZEKA DEMOSU ═══ */
.immersive-section {
  position: relative;
  min-height: calc(100svh - var(--nav-h) + 34svh);
}
.immersive-stage {
  position: sticky;
  top: var(--nav-h);
  width: 100%;
  height: calc(100svh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.ai-section {
  background: transparent;
}
.ai-section .immersive-stage {
  height: calc(100svh - var(--nav-h));
  min-height: 0;
  padding: clamp(16px, 3vh, 36px) clamp(16px, 5vw, 48px);
}
.ai-visual .phone {
  width: min(300px, 78vw, clamp(190px, calc((100svh - var(--nav-h) - 120px) * .43), 300px));
}
.ai-panel {
  position: relative; overflow: hidden;
  width: 100%; max-width: 1080px; margin: 0 auto;
  background: radial-gradient(900px 500px at 80% -10%, #1e3a8a 0%, #0f1f4b 55%, #0a1533 100%);
  border-radius: 40px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  color: #fff;
  border: 1px solid rgba(147, 197, 253, .16);
  box-shadow: 0 12px 30px rgba(15, 31, 75, .08);
}
@media (max-width: 900px) {
  .immersive-section { min-height: 0; }
  .immersive-stage {
    position: static; height: auto; overflow: visible;
    transform: none !important;
  }
  .ai-panel { grid-template-columns: 1fr; }
  .gallery .immersive-stage { padding: clamp(72px, 9vw, 96px) 0; }
}
.ai-panel::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(96, 165, 250, .18); filter: blur(90px);
  top: -160px; left: -120px; pointer-events: none;
}
.ai-panel .badge { background: rgba(96, 165, 250, .16); color: #93c5fd; }
.ai-panel .badge::before { background: #93c5fd; }
.ai-panel h2 { color: #fff; }
.ai-panel .lede { color: #b6c4e4; }

.ai-demo { margin-top: 30px; max-width: 460px; }
.ai-input {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(147, 197, 253, .25);
  border-radius: 16px;
  padding: 15px 18px;
  font-size: 15.5px;
}
.ai-input svg { width: 19px; height: 19px; color: #93c5fd; flex-shrink: 0; }
.ai-typed { color: #fff; white-space: nowrap; overflow: hidden; }
.ai-caret {
  width: 2px; height: 1.25em; background: #93c5fd; flex-shrink: 0;
  animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }
.ai-result { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; min-height: 38px; }
.ai-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(96, 165, 250, .14);
  border: 1px solid rgba(147, 197, 253, .3);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 12.5px; font-weight: 600; color: #dbeafe;
  opacity: 0; transform: translateY(8px) scale(.92);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.ai-tag.show { opacity: 1; transform: none; }
.ai-tag small { color: #93c5fd; font-weight: 700; font-size: 12.5px; }
.ai-note { margin-top: 16px; font-size: 12.5px; color: #8fa3cf; }
.ai-visual { display: flex; justify-content: center; perspective: 1200px; }
@media (min-width: 901px) and (max-height: 820px) {
  .ai-section .immersive-stage { padding-block: 14px; }
  .ai-panel {
    padding: clamp(24px, 4vh, 36px) clamp(26px, 4vw, 48px);
    gap: clamp(20px, 3vw, 38px);
    border-radius: 32px;
  }
  .ai-panel h2 { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.08; }
  .ai-panel .lede { margin-top: 10px; font-size: 15px; line-height: 1.5; }
  .ai-demo { margin-top: 18px; }
  .ai-input { padding: 11px 14px; font-size: 14px; }
  .ai-result { margin-top: 10px; min-height: 34px; }
  .ai-tag { padding: 6px 11px; font-size: 11.5px; }
  .ai-tag small { font-size: 11.5px; }
  .ai-note { margin-top: 10px; font-size: 11.5px; }
}
@media (min-width: 901px) and (max-height: 680px) {
  .ai-panel { padding-block: 20px; }
  .ai-panel .badge { margin-bottom: 10px; padding-block: 5px; font-size: 10px; }
  .ai-panel h2 { font-size: 28px; }
  .ai-panel .lede { font-size: 13.5px; line-height: 1.4; }
  .ai-demo { margin-top: 12px; }
  .ai-note { display: none; }
  .ai-visual .phone { width: clamp(180px, calc((100svh - var(--nav-h) - 120px) * .43), 235px); }
}
@media (max-width: 900px) {
  .ai-section .immersive-stage {
    height: auto;
    min-height: 0;
    padding: 48px 14px 56px;
    overflow: visible;
  }
  .ai-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    padding: 32px 20px 24px;
    border-radius: 28px;
    box-shadow: 0 10px 24px rgba(15, 31, 75, .07);
  }
  .ai-panel h2 { font-size: clamp(30px, 9vw, 38px); }
  .ai-panel .lede { font-size: 15px; line-height: 1.55; }
  .ai-demo { margin-top: 22px; }
  .ai-input { padding: 12px 14px; font-size: 14px; }
  .ai-visual { margin-top: 0; }
.ai-visual .phone {
    width: min(210px, 56vw);
    padding: 4px;
    border-radius: 30px;
  }
  .ai-visual .screen { border-radius: 25px; }
}

/* ═══ GALERİ (marquee) ═══ */
.gallery { text-align: center; overflow: visible; }
.gallery .immersive-stage { padding: clamp(56px, 7vw, 84px) 0; }
.marquee {
  position: relative;
  margin-top: 52px;
  display: flex;
  overflow-x: clip;
  overflow-y: visible;
  padding-block: 18px 28px;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; z-index: 3;
  width: min(9vw, 120px);
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), rgba(233, 239, 251, 0)); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), rgba(233, 239, 251, 0)); }
.marquee-track {
  display: flex; gap: 22px; padding-right: 22px;
  flex-shrink: 0;
  animation: galleryMarquee 36s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
body.modal-open .marquee-track { animation-play-state: paused; }
@keyframes galleryMarquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-100%, 0, 0); } }
.shot {
  width: 172px; flex-shrink: 0;
  aspect-ratio: 1242 / 2688;
  appearance: none; border: 0; cursor: zoom-in;
  position: relative;
  background: transparent; border-radius: 26px; padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 31, 75, 0.2);
  transition: transform .3s var(--ease), box-shadow .3s;
  transform: translateZ(0);
}
.shot:hover,
.shot:focus-visible { transform: translateY(-8px) scale(1.03); box-shadow: 0 26px 52px rgba(15, 31, 75, 0.3); }
.shot img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  border-radius: inherit; background: #f6f8fd;
}
body.modal-open { overflow: hidden; }
.shot-modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(7, 15, 36, .72);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  opacity: 0; pointer-events: none;
  transition: opacity .24s ease;
}
.shot-modal.open { opacity: 1; pointer-events: auto; }
.shot-modal-frame {
  position: relative;
  max-width: min(92vw, 1206px);
  max-height: min(92svh, 2622px);
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  transform: translateY(18px) scale(.96);
  transition: transform .24s var(--ease);
}
.shot-modal.open .shot-modal-frame { transform: none; }
.shot-modal-frame img {
  display: block;
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 92svh;
  object-fit: contain;
  border-radius: inherit;
  background: #f6f8fd;
}
@media (max-width: 420px) {
  .shot-modal-frame { border-radius: 28px; }
}
.shot-modal-close {
  position: fixed; top: clamp(14px, 3vw, 26px); right: clamp(14px, 3vw, 26px);
  width: 44px; height: 44px; border: 0; border-radius: 999px;
  display: grid; place-items: center;
  color: #fff; background: rgba(255, 255, 255, .14);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}
.shot-modal-close svg { width: 21px; height: 21px; }
.shot-modal-close:hover { background: rgba(255, 255, 255, .22); }

/* ═══ GÜVENLİK BANDI ═══ */
.dark-band {
  scroll-margin-top: var(--nav-h);
  background: radial-gradient(1200px 600px at 50% -10%, #1e3a8a 0%, #0f1f4b 55%, #0a1533 100%);
  color: #fff; text-align: center;
}
.dark-band .immersive-stage {
  height: auto;
  min-height: calc(100svh - var(--nav-h));
  padding: clamp(72px, 8vw, 104px) clamp(16px, 5vw, 48px);
}
.dark-band .badge { align-self: center; background: rgba(96, 165, 250, .16); color: #93c5fd; }
.dark-band .badge::before { background: #93c5fd; }
.dark-band h2 { color: #fff; }
.dark-band .lede { color: #b6c4e4; margin-left: auto; margin-right: auto; }
.sec-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px; max-width: 1020px; margin: 48px auto 0;
}

.sec-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(147, 197, 253, .18);
  border-radius: 20px; padding: 26px 22px; text-align: left;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.sec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 197, 253, .38);
  background: rgba(255, 255, 255, .09);
}
.sec-head { display: flex; align-items: center; gap: 12px; }
.sec-card .ic {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(96, 165, 250, .14);
  border: 1px solid rgba(147, 197, 253, .22);
  border-radius: 12px;
}
.sec-card .ic svg { width: 20px; height: 20px; color: #93c5fd; }
.sec-card h3 { font-size: 16px; margin: 0; color: #fff; }
.sec-card p { font-size: 13px; color: #b6c4e4; line-height: 1.55; margin-top: 10px; }
@media (max-width: 640px) {
  .dark-band { overflow: hidden; }
  .dark-band .immersive-stage {
    width: 100%;
    min-width: 0;
    padding: 42px 14px 54px;
  }
  .dark-band .badge {
    margin-bottom: 14px;
    padding: 6px 13px;
    font-size: 10px;
  }
  .dark-band h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(27px, 8.5vw, 34px);
  }
  .dark-band .lede {
    max-width: 32ch;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }
  .sec-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }
  .sec-card {
    min-width: 0;
    min-height: 96px;
    display: flex;
    align-items: center;
    padding: 13px 11px;
    border-radius: 14px;
  }
  .sec-head { min-width: 0; gap: 9px; }
  .sec-card .ic {
    width: 34px; height: 34px;
    border-radius: 9px;
  }
  .sec-card .ic svg { width: 17px; height: 17px; }
  .sec-card h3 {
    min-width: 0;
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.3;
    overflow-wrap: anywhere;
  }
  .sec-card p { display: none; }
  .sec-card:hover { transform: none; }
}

/* ═══ CTA ═══ */
.cta { text-align: center; padding: clamp(72px, 9vw, 110px) clamp(16px, 5vw, 48px) clamp(88px, 10vw, 130px); }
.cta-card {
  position: relative; overflow: hidden;
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(180deg, #ffffff, #f3f7ff);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px);
  box-shadow: 0 32px 80px rgba(30, 58, 138, 0.12);
}
.cta-card::before,
.cta-card::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.cta-card::before { width: 300px; height: 300px; top: -140px; left: -100px; background: rgba(147, 197, 253, .5); }
.cta-card::after { width: 260px; height: 260px; bottom: -120px; right: -80px; background: rgba(191, 219, 254, .6); }
.cta-card > * { position: relative; z-index: 1; }

.store-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero .store-buttons { margin-top: 18px; }
@media (min-width: 901px) { .hero .store-buttons { justify-content: flex-start; } }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #0f1f4b; color: #fff; text-decoration: none;
  padding: 12px 22px; border-radius: 14px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(15, 31, 75, 0.25);
  will-change: transform;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15, 31, 75, 0.35); }
.store-btn:active { transform: translateY(0) scale(.97); }
.store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .t { text-align: left; line-height: 1.15; }
.store-btn .t small { display: block; font-size: 10px; opacity: .75; font-weight: 600; }
.store-btn .t b { font-size: 16px; }
.store-note { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.6);
  padding: 48px clamp(16px, 5vw, 48px) 36px;
  text-align: center;
}
.footer-grid {
  max-width: 1080px; margin: 0 auto 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  text-align: left;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
@media (max-width: 720px) { .footer-brand { align-items: center; } }
.footer-brand p { font-size: 13.5px; color: var(--muted); max-width: 32ch; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--head); margin-bottom: 14px;
}
.footer-col a {
  display: block; color: var(--muted); font-size: 13.5px; font-weight: 600;
  text-decoration: none; padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer .copy-line { font-size: 12.5px; color: #8b98b5; }

/* ═══ ALT SAYFALAR (politika/destek) ═══ */
/* Sayfa hero'su — ana sayfadaki hero dilinin küçük hâli */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: calc(var(--nav-h) + clamp(52px, 8vw, 96px)) clamp(16px, 5vw, 48px) clamp(32px, 5vw, 56px);
}
.page-hero > :not(.hero-bg) { position: relative; }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); }
.page-hero .lede { margin-left: auto; margin-right: auto; }
.page-hero .updated {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; padding: 7px 14px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.page-hero .updated svg { width: 13px; height: 13px; color: var(--accent); }

.page-main { max-width: 860px; margin: 0 auto; padding: 8px 20px 88px; }

/* Yasal içerik: dokümantasyon düzeni — solda içindekiler, sağda içerik */
.legal-layout {
  max-width: 1040px;
  display: grid; grid-template-columns: 224px minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.legal-toc {
  position: sticky; top: calc(var(--nav-h) + 32px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 12px 12px;
  box-shadow: 0 14px 36px rgba(30, 58, 138, .08);
}
.legal-toc h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #8b98b5; margin-bottom: 12px; padding-left: 12px;
}
.legal-toc nav { display: flex; flex-direction: column; gap: 3px; counter-reset: toc; }
.legal-toc a {
  counter-increment: toc;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  text-decoration: none; line-height: 1.35;
  padding: 9px 12px;
  border-radius: 12px;
  transition: background .25s var(--ease), color .25s, box-shadow .25s;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 10.5px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent); opacity: .55;
  flex-shrink: 0;
  transition: color .25s, opacity .25s;
}
.legal-toc a:hover { background: #f0f5ff; color: var(--accent); }
.legal-toc a.active {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, .3);
}
.legal-toc a.active::before { color: #fff; opacity: .8; }
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
}

.legal-content {
  width: min(100%, 68ch);
  margin: 0 auto;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  animation: legalContentIn .7s var(--ease) .12s forwards;
}
@keyframes legalContentIn {
  to { opacity: 1; transform: none; }
}
.legal-intro { max-width: 68ch; margin-bottom: 6px; }
.legal-intro p { font-size: 16.5px; line-height: 1.7; color: var(--ink); }
.legal-block {
  max-width: 68ch;
  margin-top: 22px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.legal-block:first-child { margin-top: 0; }
.legal-block h2 { margin-top: 0; }
.legal-block p, .legal-block li { line-height: 1.7; }
.legal-block + .legal-block { border-top: 1px solid var(--border); padding-top: 22px; }
.legal-block .step-list { max-width: 100%; }
.legal-block .callout { max-width: 60ch; }
.page-main h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 6px; }
.page-main h2 {
  position: relative;
  font-size: 19px; margin-top: 36px; margin-bottom: 4px;
}
/* Renkli çubuk sola, metin sütununun dışına taşar; böylece başlık ve
   altındaki gövde metni aynı hizadan başlar. */
.page-main h2::before {
  content: ""; position: absolute; left: -17px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 21px; border-radius: 4px;
  background: linear-gradient(180deg, #2563eb, #60a5fa);
}
.page-main p, .page-main li { color: var(--muted); font-size: 15px; }
.page-main p { margin-top: 8px; }
.page-main ul, .page-main ol { padding-left: 22px; margin-top: 8px; }
.page-main li { margin-bottom: 6px; }
.page-main ul li::marker { color: var(--accent); }
.page-main .updated { font-size: 13px; color: #8b98b5; margin-bottom: 24px; }
.page-main a { color: var(--accent); }

/* Numaralı adım kartları (hesap silme) */
.step-list { list-style: none; counter-reset: step; display: grid; gap: 12px; padding: 0 !important; margin-top: 14px !important; }
.step-list li {
  counter-increment: step;
  display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 18px;
  background: #f8faff; border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 20px; margin: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.step-list li:hover {
  transform: translateX(4px);
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 10px 26px rgba(30, 58, 138, .09);
}
.step-list li::before {
  content: counter(step);
  width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff; font-weight: 700; font-size: 15px;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(37, 99, 235, .3);
}

.step-copy { display: grid; gap: 3px; min-width: 0; }
.step-copy strong { color: var(--head); font-size: 15px; line-height: 1.35; }
.step-copy > span { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
@media (max-width: 520px) {
  .step-list { gap: 10px; }
  .step-list li { grid-template-columns: 38px minmax(0, 1fr); gap: 13px; padding: 14px 15px; }
  .step-list li::before { width: 38px; height: 38px; border-radius: 11px; }
}
/* Vurgulu bilgi kutusu */
.callout {
  display: flex; gap: 13px; align-items: flex-start;
  background: #f0f6ff; border: 1px solid rgba(37, 99, 235, .22);
  border-radius: 16px; padding: 16px 18px; margin-top: 16px;
}
.callout svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.callout p { margin: 0; font-size: 14px; }
.mail-cta {
  display: inline-block; margin-top: 18px;
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff !important;
  text-decoration: none; font-weight: 700; padding: 12px 26px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .35);
}
.mail-cta:active { transform: scale(.97); }

.support-page .page-hero {
  padding-top: calc(var(--nav-h) + clamp(22px, 4vh, 42px));
  padding-bottom: clamp(18px, 3vh, 30px);
}
.support-page .page-hero h1 { font-size: clamp(30px, 4vw, 46px); }
.support-page .page-hero .lede { margin-top: 10px; font-size: clamp(14px, 1.8vw, 17px); }
.support-page .support-main { padding-top: 0; }
.support-page .form-card { padding: clamp(18px, 3vh, 28px); }
.support-page .contact-form { gap: clamp(8px, 1.3vh, 12px); }
.support-page .contact-form textarea { min-height: clamp(96px, 16vh, 132px); }
@media (min-width: 761px) and (max-height: 760px) {
  .support-page .page-hero { padding-top: calc(var(--nav-h) + 14px); padding-bottom: 14px; }
  .support-page .page-hero .badge { padding-block: 5px; margin-bottom: 8px; }
  .support-page .page-hero h1 { font-size: 30px; }
  .support-page .page-hero .lede { font-size: 14px; margin-top: 6px; }
  .support-page .form-card { padding: 16px 20px; }
  .support-page .contact-form input,
  .support-page .contact-form textarea { padding: 10px 14px; }
  .support-page .contact-form textarea { min-height: 88px; }
  .support-page .contact-alt { margin-top: 8px; }
}
.support-main {
  max-width: 960px; margin: 0 auto;
  padding: 8px 20px 88px;
}
/* Form kartı */
.form-card {
  max-width: 640px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 28px; padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 24px 64px rgba(30, 58, 138, .1);
}
.form-card .contact-form { margin-top: 0; }
.support-main .contact-alt { max-width: 600px; margin: 14px auto 0; text-align: center; }

.faq-title {
  text-align: center; color: var(--head);
  font-size: clamp(24px, 3.4vw, 34px); margin: 72px 0 8px;
}
.faq-sub { text-align: center; font-size: 14.5px; color: var(--muted); margin-bottom: 26px; }

/* SSS akordeonu */
.faq-acc { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item.open {
  border-color: rgba(37, 99, 235, .35);
  box-shadow: 0 14px 36px rgba(30, 58, 138, .1);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 15.5px; color: var(--head);
  text-align: left; padding: 18px 22px;
}
.faq-q .chev {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--chip-bg); color: var(--accent);
  transition: transform .35s var(--ease), background .3s, color .3s;
}
.faq-q .chev svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 22px 20px; font-size: 14px; color: var(--muted); line-height: 1.65; }
.faq-a a { color: var(--accent); }

.contact-form { display: grid; gap: 12px; margin-top: 20px; }
.contact-form input,
.contact-form textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: #f8faff; border: 1px solid var(--border); border-radius: 14px;
  padding: 12px 16px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #93a1bd; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
  background: #fff;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .consent {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px; color: var(--muted); line-height: 1.5;
}
.contact-form .consent input { width: auto; margin-top: 3px; accent-color: var(--accent); }
.contact-form .send-btn {
  border: 0; cursor: pointer; font: inherit; font-weight: 700; font-size: 15px;
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
  padding: 13px 26px; border-radius: 14px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, .35);
  transition: transform .2s, box-shadow .2s;
}
.contact-form .send-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37, 99, 235, .45); }
.contact-form .send-btn:active { transform: scale(.97); }
.contact-alt { font-size: 13px; color: #8b98b5; margin-top: 10px; }

/* ─── Dil seçici ─── */
.lang-switch { position: relative; z-index: 130; }
.lang-toggle {
  display: inline-grid;
  grid-template-columns: 24px auto 14px;
  align-items: center;
  gap: 7px;
  min-width: 88px;
  min-height: 42px;
  padding: 5px 10px 5px 7px;
  border: 1px solid rgba(37, 99, 235, .22);
  border-radius: 12px;
  background: #fff;
  color: var(--head);
  box-shadow: 0 8px 24px rgba(30, 58, 138, .09);
  cursor: pointer;
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.lang-toggle:hover {
  border-color: rgba(37, 99, 235, .48);
  box-shadow: 0 10px 26px rgba(30, 58, 138, .13);
  transform: translateY(-1px);
}
.lang-switch.open .lang-toggle {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .10), 0 10px 26px rgba(30, 58, 138, .13);
  transform: none;
}
.lang-toggle > svg:first-child {
  width: 24px; height: 24px; padding: 5px;
  border-radius: 7px;
  color: var(--accent);
  background: var(--chip-bg);
}
.lang-toggle .chev {
  width: 13px; height: 13px; color: var(--accent);
  transition: transform .2s var(--ease);
}
.lang-switch.open .lang-toggle .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 170px;
  padding: 7px;
  display: none;
  z-index: 131;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(15, 31, 75, .18);
  transform-origin: top right;
}
.lang-switch.open .lang-menu { display: grid; gap: 5px; animation: langMenuIn .2s var(--ease) both; }
@keyframes langMenuIn {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.lang-menu button {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  width: 100%;
  padding: 9px 38px 9px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  transition: background .18s, color .18s;
}
.lang-menu button:not([aria-pressed="true"]):hover {
  background: #f1f6ff;
  color: var(--accent);
}
.lang-menu button[aria-pressed="true"] {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 7px 18px rgba(37, 99, 235, .25);
}
.lang-menu button[aria-pressed="true"]::after {
  content: "✓";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
[data-lang] { display: none; }
html[data-active-lang="tr"] [data-lang="tr"],
html[data-active-lang="en"] [data-lang="en"] { display: block; }


/* Modal içinde gizlilik sayfasının yalnızca metin sürümü */
html.embed-policy,
html.embed-policy body { min-height: 100%; background: #fff; }
html.embed-policy .nav,
html.embed-policy .page-hero,
html.embed-policy .footer,
html.embed-policy .scroll-progress { display: none !important; }
html.embed-policy .page-main {
  width: 100%; max-width: none;
  margin: 0; padding: clamp(22px, 4vw, 42px) clamp(18px, 5vw, 56px) 48px;
}
html.embed-policy .legal-content {
  width: min(100%, 72ch);
  opacity: 1; transform: none; animation: none;
}
html.embed-policy .legal-intro { margin-top: 0; }
html.embed-policy .legal-block { scroll-margin-top: 18px; }
/* ─── Gizlilik politikası okuyucu ─── */
body.privacy-reader-open { overflow: hidden; }
.privacy-reader {
  position: fixed; inset: 0; z-index: 400;
  display: grid; place-items: center;
  padding: clamp(12px, 3vw, 30px);
  background: rgba(7, 15, 36, .68);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.privacy-reader.open { opacity: 1; visibility: visible; pointer-events: auto; }
.privacy-reader-panel {
  width: min(920px, 100%); height: min(860px, 94svh);
  display: grid; grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden; background: #fff;
  border: 1px solid rgba(37, 99, 235, .16); border-radius: 16px;
  box-shadow: 0 30px 90px rgba(7, 15, 36, .34);
  transform: translateY(14px) scale(.985); transition: transform .22s var(--ease);
}
.privacy-reader.open .privacy-reader-panel { transform: none; }
.privacy-reader-head,
.privacy-reader-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 18px; }
.privacy-reader-head { border-bottom: 1px solid var(--border); }
.privacy-reader-head h2 { margin: 1px 0 0; font-size: 20px; color: var(--head); }
.privacy-reader-kicker { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--accent); }
.privacy-reader-close {
  width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center;
  border: 0; border-radius: 8px; background: #f0f5ff; color: var(--head); cursor: pointer;
}
.privacy-reader-close:hover { background: var(--chip-bg); color: var(--accent); }
.privacy-reader-close svg { width: 19px; height: 19px; }
.privacy-reader-body { min-height: 0; background: var(--bg-1); }
.privacy-reader-body iframe { display: block; width: 100%; height: 100%; border: 0; background: var(--bg-1); }
.privacy-reader-foot { border-top: 1px solid var(--border); background: #fff; }
.privacy-scroll-note { font-size: 12.5px; color: var(--muted); }
.privacy-accept {
  min-height: 42px; padding: 10px 18px; border: 0; border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
  font: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer;
  box-shadow: 0 7px 18px rgba(37, 99, 235, .25);
}
.privacy-accept:disabled { background: #d7deeb; color: #7d8ba7; box-shadow: none; cursor: not-allowed; }
@media (max-width: 600px) {
  .privacy-reader { padding: 0; }
  .privacy-reader-panel { width: 100%; height: 100svh; border: 0; border-radius: 0; }
  .privacy-reader-foot { align-items: stretch; flex-direction: column; gap: 8px; }
  .privacy-accept { width: 100%; }
}
/* ═══ Hareket azaltma: tüm dekoratif animasyonlar kapanır ═══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-scale, .stagger > * { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .hw, .hero-copy .badge, .hero-slogan, .hero-copy .lede, .hero-copy .store-buttons, .hero-copy .trust-chips, .hero-visual {
    transform: none !important; animation: none !important;
  }
  .phone.float, .orb, .accent, .badge::before, .float-chip, .hero-visual::before, .ai-caret { animation: none !important; }
  .marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; }
  .marquee-track[aria-hidden="true"] { display: none; }
  .showcase-sticky .screen img { transition: none; }
  .faq-a, .faq-q .chev, .step-list li { transition: none; }
  .legal-content { opacity: 1; transform: none; animation: none; }
  .lang-switch.open .lang-menu { animation: none; }
}
