/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #050506;
  --black-2: #0c0c0e;
  --black-3: #131315;
  --panel: #151517;
  --panel-2: #1c1c1f;
  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(0,0,0,0.08);
  --text: #f2f0f0;
  --text-dim: #a8a3a3;
  --text-soft: #6f6a6a;

  --red: #ff2d3d;
  --red-2: #ff5a3d;
  --red-dark: #a4001a;
  --red-deep: #6e0016;

  --off-white: #f8f6f6;
  --white-panel: #ffffff;
  --ink: #141213;
  --ink-dim: #6a6465;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --grad: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  --grad-2: linear-gradient(135deg, #ff6a3d 0%, var(--red) 60%, #7c1f2e 100%);

  --shadow-lg: 0 30px 80px rgba(0,0,0,0.45);
  --shadow-md: 0 14px 40px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Inter", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
}

h1, h2, h3, h4, h5 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
h4 { font-size: 1.05rem; margin-bottom: 8px; }
h5 { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 14px; }

p { color: var(--text-dim); }

.section p, .dark-block p { max-width: 640px; }

.text-gradient {
  background: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 14px;
}

.section-lede { color: var(--text-dim); max-width: 620px; font-size: 1.02rem; margin-bottom: 34px; }
.section-lede-sm { color: var(--text-soft); margin-bottom: 24px; }
.section-lede.center { margin-left: auto; margin-right: auto; }

.center-text { text-align: center; }
.center-text .section-lede { margin-left: auto; margin-right: auto; }

.mt-xl { margin-top: 64px; }
.mt-lg { margin-top: 40px; }

/* background ambient glow */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.bg-glow--1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(255,45,61,0.25), transparent 70%); top: -200px; left: -200px; }
.bg-glow--2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(160,0,26,0.2), transparent 70%); bottom: -150px; right: -150px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(255,45,61,0.35); }
.btn--primary:hover { box-shadow: 0 14px 36px rgba(255,45,61,0.5); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--red); color: var(--red); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.8rem; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,6,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.reading-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: transparent;
  overflow: hidden;
}
.reading-progress__bar {
  height: 100%;
  width: 0%;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(255,45,61,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 50px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(10px);
}
.main-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.nav-caret { font-size: 0.7rem; color: var(--text-soft); line-height: 1; margin-top: 1px; }
.nav-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 6px rgba(255,45,61,0.8); flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: none;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
}
.icon-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.icon-btn:hover { background: rgba(255,255,255,0.12); }
.lang-btn { width: auto; padding: 0 12px; gap: 5px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; }
.nav-toggle { display: none; }

/* search overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,5,6,0.92);
  backdrop-filter: blur(6px);
  display: none;
  padding-top: 100px;
}
.search-overlay.open { display: block; }
.search-bar {
  display: flex; align-items: center; gap: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 22px;
}
.search-bar svg { width: 18px; height: 18px; stroke: var(--text-soft); fill: none; stroke-width: 2; flex-shrink: 0; }
.search-bar input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 1rem; }
.search-bar button { background: none; border: none; cursor: pointer; color: var(--text-soft); }
.search-bar button svg { width: 20px; height: 20px; }

/* ============ HERO — scroll-driven cinema stage ============ */
/* Toplam kaydırma yüksekliği: her slayt için 1 ekran boyu (JS ile --slide-count'a göre hesaplanır). */
.hero-cinema {
  position: relative;
  z-index: 1;
  height: calc(var(--slide-count, 1) * 100vh);
  background:
    radial-gradient(ellipse 60% 30% at 22% 15%, rgba(255,45,61,0.18), transparent 60%),
    radial-gradient(ellipse 55% 25% at 82% 20%, rgba(120,20,30,0.22), transparent 60%);
}
.hero-cinema__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-cinema__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-cinema__blob { position: absolute; border-radius: 50%; filter: blur(100px); transition: opacity 1s cubic-bezier(.65,0,.35,1), transform 1s cubic-bezier(.65,0,.35,1); }
.hero-cinema__blob--1 { width: 50vw; height: 50vw; top: -12%; left: -10%; background: radial-gradient(circle, rgba(255,45,61,0.35), transparent 65%); }
.hero-cinema__blob--2 { width: 55vw; height: 55vw; bottom: -18%; right: -12%; background: radial-gradient(circle, rgba(160,0,26,0.3), transparent 65%); }
.hero-cinema__stage.is-transitioned .hero-cinema__blob { opacity: 0.55; transform: scale(1.08); }

.hero-cinema__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; min-height: 1px; }

/* ---- Copy cross-fade ---- */
.hero-cinema__copy-stack { position: relative; min-height: 340px; }
.hero-copy-layer {
  grid-column: 1;
  grid-row: 1;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(.65,0,.35,1), transform 0.8s cubic-bezier(.65,0,.35,1);
  pointer-events: none;
}
.hero-copy-layer.active { position: relative; opacity: 1; transform: translateY(0); pointer-events: auto; }
.hero-copy-layer .eyebrow { display: inline-block; margin-bottom: 14px; }
.hero-copy-layer h1 { color: var(--text); }
.hero-lede { font-size: 1.08rem; margin: 22px 0 30px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.hero-admin-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-soft); background: rgba(255,255,255,0.05); border: 1px solid var(--border); padding: 8px 16px; border-radius: 999px; }
.hero-admin-link strong { color: var(--red); font-weight: 700; }
.hero-admin-link .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* ---- Visual cross-fade (phone mockups) ---- */
.hero-cinema__visual-stack { position: relative; display: flex; align-items: center; justify-content: center; min-height: 560px; }
.hero-visual-layer {
  grid-column: 2;
  grid-row: 1;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(.65,0,.35,1), transform 1s cubic-bezier(.65,0,.35,1), filter 0.9s cubic-bezier(.65,0,.35,1);
  pointer-events: none;
}
.hero-visual-layer.active { position: relative; opacity: 1; filter: blur(0); transform: scale(1); pointer-events: auto; }

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.hero-dot.active { background: var(--grad); width: 26px; }

.hero-scrolldown {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-soft);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.hero-scrolldown span { display: block; width: 1px; height: 26px; background: var(--border); margin: 8px auto 0; }
.hero-cinema__stage.is-transitioned .hero-scrolldown { opacity: 0; pointer-events: none; }

/* ---- Mobil / reduced-motion: sticky-scroll kapalı, doğal akış ---- */
.hero-cinema--static { height: auto; overflow: hidden; }
.hero-cinema--static .hero-cinema__stage { position: static; height: auto; display: block; padding: 70px 0 50px; }
.hero-cinema--static .hero-cinema__inner { display: block; }
.hero-cinema--static .hero-copy-layer,
.hero-cinema--static .hero-visual-layer {
  position: static;
  opacity: 1;
  transform: none;
  filter: none;
  pointer-events: auto;
  margin-bottom: 60px;
}
.hero-cinema--static .hero-cinema__copy-stack,
.hero-cinema--static .hero-cinema__visual-stack { min-height: 0; }
.hero-cinema--static .hero-dots,
.hero-cinema--static .hero-scrolldown { display: none; }

@media (max-width: 980px) {
  .hero-cinema, .hero-cinema__stage { height: auto !important; }
  .hero-cinema { overflow: hidden; }
  .hero-cinema__stage { position: static; display: block; padding: 50px 0 40px; }
  .hero-cinema__inner { display: block; }
  .hero-copy-layer, .hero-visual-layer { position: static; opacity: 1; transform: none; filter: none; pointer-events: auto; margin-bottom: 50px; }
  .hero-cinema__copy-stack, .hero-cinema__visual-stack { min-height: 0; }
  .hero-dots, .hero-scrolldown { display: none; }
}

.tag { font-size: 0.62rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; }
.tag--time { background: rgba(255,45,61,0.12); color: var(--red); font-size: 0.68rem; padding: 4px 10px; border-radius: 999px; display: inline-block; margin-top: 10px; }

/* ============ FEATURE STRIP ============ */
.strip { padding: 40px 0 70px; position: relative; z-index: 1; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.strip-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.strip-icon { font-size: 1.1rem; color: var(--red); }
.strip-item strong { display: block; font-size: 0.88rem; }
.strip-item small { color: var(--text-soft); font-size: 0.76rem; }

.whatsnew {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(90deg, rgba(255,45,61,0.1), rgba(0,0,0,0));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 24px;
}
.badge { font-size: 0.68rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; letter-spacing: 0.04em; }
.badge--new { background: var(--grad); color: #fff; }
.badge--soft { background: rgba(255,45,61,0.12); color: var(--red); }
.whatsnew-copy { flex: 1; min-width: 220px; }
.whatsnew-copy strong { display: block; font-size: 0.94rem; }
.whatsnew-copy small { color: var(--text-soft); font-size: 0.8rem; }
.whatsnew-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============ DARK BLOCK / SECTIONS ============ */
.dark-block { padding: 90px 0; position: relative; z-index: 1; }
.section { background: var(--off-white); color: var(--ink); padding: 90px 0; position: relative; z-index: 1; }
.section--soft { background: #f2eeee; }
.section--tight { padding-bottom: 60px; }
.section h2, .section h3, .section h4, .section h5 { color: var(--ink); }
.section p { color: var(--ink-dim); }
.section h5 { color: var(--ink-dim); }
.section .eyebrow { color: var(--red-dark); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-visual { display: flex; justify-content: center; }
.split--reverse .split-visual { order: -1; }
.split-copy p { max-width: 480px; }

.hero-phone-img {
  max-height: min(640px, 72vh);
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(255,45,61,0.15));
}

/* ============ STATS / REFERANSLAR ============ */
.stats-row { display: flex; gap: 60px; padding: 30px 0 40px; border-bottom: 1px solid var(--border-soft); margin-bottom: 40px; flex-wrap: wrap; }
.stat strong { font-size: 2.4rem; font-weight: 800; display: block; color: var(--ink); }
.stat small { color: var(--ink-dim); font-size: 0.85rem; }

.logo-marquee { overflow: hidden; position: relative; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: 50px; width: max-content; animation: scroll-x 30s linear infinite; }
.logo-track span { font-weight: 800; font-size: 1.1rem; color: #b8b3b3; letter-spacing: 0.02em; white-space: nowrap; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.footnote { margin-top: 26px; font-size: 0.85rem; color: var(--ink-dim); max-width: 720px; }
.center-text .footnote { margin-left: auto; margin-right: auto; }
.footnote em { opacity: 0.7; }

/* ============ MINI STATS ============ */
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 30px; }
.mini-stats > div { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 18px 20px; }
.mini-stats strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.mini-stats strong small { font-size: 0.9rem; font-weight: 700; color: var(--ink-dim); margin-left: 2px; }
.mini-stats span { display: block; font-weight: 700; font-size: 0.86rem; margin: 4px 0 4px; }
.mini-stats small { font-size: 0.78rem; color: var(--ink-dim); }

/* ============ ONBOARDING ============ */
.onboard-head { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.onboard-head > div:first-child { flex: 1; min-width: 320px; }
.stat-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 22px 26px; min-width: 220px; box-shadow: var(--shadow-md); }
.stat-card strong { font-size: 2.2rem; font-weight: 800; display: block; }
.stat-card strong small { font-size: 1rem; color: var(--ink-dim); }
.stat-card span { font-size: 0.82rem; color: var(--ink-dim); display: block; margin-top: 6px; }

.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; position: relative; }
.step { position: relative; }
.step-num { font-size: 0.75rem; font-weight: 800; color: var(--red); display: inline-block; margin-bottom: 8px; }
.step p { font-size: 0.86rem; margin-bottom: 10px; }

.grid8 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px; }
.mini-card { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 20px; }
.mini-icon { font-size: 1.2rem; }
.mini-card small { color: var(--text-soft); font-size: 0.7rem; font-weight: 700; display: block; margin: 6px 0 4px; }
.mini-card h5 { color: var(--ink); font-size: 0.92rem; text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.mini-card p { font-size: 0.82rem; }

.closing-banner {
  margin-top: 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 28px 32px;
  font-size: 1.05rem; font-weight: 700; color: var(--ink);
}

.dot--live { width: 8px; height: 8px; border-radius: 50%; background: #1fbf6e; display: inline-block; margin-right: 6px; }

/* ============ FOUR COL / KURUCU ============ */
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.feature-mini { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; }
.feature-mini small { color: var(--red); font-weight: 800; font-size: 0.75rem; }
.feature-mini h4 { margin-top: 8px; color: #fff; }
.feature-mini p { font-size: 0.85rem; }

/* ============ SHOWCASE ============ */
.showcase-track {
  display: flex; gap: 24px; overflow-x: auto; padding: 40px 48px 20px;
  scroll-snap-type: x mandatory;
}
.showcase-track::-webkit-scrollbar { height: 6px; }
.showcase-track::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.showcase-phone {
  flex: 0 0 190px; height: 380px;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--tint), #1a1a1a 80%);
  box-shadow: var(--shadow-md);
  scroll-snap-align: center;
  opacity: 0.6;
  transform: scale(0.94);
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  overflow: hidden;
}
.showcase-phone::after { content:""; position:absolute; inset:16px; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 20px; }
.showcase-phone--active { opacity: 1; transform: scale(1.04); }

/* ============ PRICING ============ */
.guarantee { display: inline-block; background: #e4f5ea; color: #17753f; font-size: 0.86rem; font-weight: 600; padding: 12px 20px; border-radius: var(--radius-sm); margin-top: 20px; }
.pricing-single { display: flex; justify-content: center; margin-top: 50px; }
.pricing-single__card {
  position: relative;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(255,45,61,0.15);
}
.pricing-single__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 7px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(255,45,61,0.35);
}
.pricing-single__card h3 { font-size: 1.5rem; margin: 10px 0 4px; }
.pricing-single__desc { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-soft); }
.pricing-single__price { margin-bottom: 24px; }
.pricing-single__price strong { font-size: 2.6rem; font-weight: 800; color: var(--ink); }
.pricing-single__price small { font-size: 1rem; font-weight: 700; color: var(--ink-dim); margin-left: 4px; }
.pricing-single__features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.pricing-single__features li { position: relative; padding-left: 26px; font-size: 0.88rem; color: var(--ink-dim); line-height: 1.45; }
.pricing-single__features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 800; }
.pricing-single__features li strong { color: var(--ink); }

.price-features { display: flex; gap: 26px; justify-content: center; margin: 26px 0; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-dim); font-weight: 600; }
.price-actions { display: flex; gap: 14px; justify-content: center; margin-bottom: 50px; }

.enterprise-banner {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
}
.enterprise-banner h4 { color: #fff; font-size: 1.3rem; margin: 14px 0 8px; }
.enterprise-banner p { color: var(--text-dim); margin-bottom: 20px; }
.disclaimer { text-align: center; font-size: 0.76rem; color: var(--ink-dim); margin-top: 18px; opacity: 0.8; }

/* ============ PROSE (yasal sayfalar) ============ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-bottom: 8px; }
.prose .updated-at { color: var(--ink-dim); font-size: 0.85rem; margin-bottom: 34px; }
.prose h3 { font-size: 1.1rem; margin: 34px 0 10px; color: var(--ink); }
.prose p { margin-bottom: 14px; line-height: 1.7; }
.prose ul { margin: 0 0 14px 20px; color: var(--ink-dim); line-height: 1.7; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); }
.prose .note-box { background: rgba(255,45,61,0.06); border: 1px solid rgba(255,45,61,0.2); border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.85rem; color: var(--ink-dim); margin-bottom: 30px; }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 22px; font-size: 0.94rem; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-q span { color: var(--red); font-size: 1.3rem; font-weight: 400; transition: transform 0.2s ease; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding: 0 22px 20px; font-size: 0.88rem; }
.link-inline { color: var(--red-dark); font-weight: 700; text-decoration: underline; }

/* ============ CONTACT ============ */
.contact-card {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
}
.contact-card h2, .contact-card p { color: #fff; }
.contact-card p { color: var(--text-dim); max-width: 560px; margin: 0 auto 30px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.contact-tile { background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: background 0.15s ease; }
.contact-tile:hover { background: rgba(255,255,255,0.1); }
.contact-icon { font-size: 1.6rem; }
.contact-tile small { color: var(--text-dim); }
.online-pill { display: inline-flex; align-items: center; background: rgba(31,191,110,0.12); color: #3ddb8c; padding: 8px 18px; border-radius: 999px; font-size: 0.82rem; font-weight: 600; }

/* ============ FOOTER ============ */
.site-footer { background: var(--black-2); padding: 70px 0 30px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; padding-bottom: 40px; border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.footer-brand h3 { margin: 18px 0 10px; font-size: 1.3rem; }
.footer-brand p { max-width: 380px; font-size: 0.88rem; }
.footer-quote { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.footer-quote p { color: #fff; font-size: 1.1rem; font-weight: 700; }
.footer-quote small { color: var(--text-soft); font-size: 0.78rem; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-bottom: 40px; }
.footer-links h5 { margin-bottom: 16px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; font-size: 0.86rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-soft); flex-wrap: wrap; gap: 12px; }
.secure-badge { display: inline-flex; align-items: center; gap: 6px; }

/* ============ SCROLL TO TOP ============ */
.scroll-top-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255,45,61,0.4);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, box-shadow 0.15s ease;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { box-shadow: 0 14px 36px rgba(255,45,61,0.55); transform: translateY(-2px); }
.scroll-top-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 640px) {
  .scroll-top-btn { right: 18px; bottom: 18px; width: 44px; height: 44px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-visual { order: 0; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row, .four-col, .grid8 { grid-template-columns: 1fr 1fr; }
  .grid8 { grid-template-columns: repeat(2, 1fr); }
  .footer-top, .footer-links { grid-template-columns: 1fr 1fr; }
  .mini-stats { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .brand-logo { height: 32px; }
  .strip-grid, .steps-row, .four-col, .grid8, .footer-top, .footer-links, .contact-grid { grid-template-columns: 1fr; }
  .onboard-head { flex-direction: column; }
  .header-actions .btn--sm:first-of-type { display: none; }
  .lang-btn span { display: none; }
  .closing-banner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
