/* ============================================================
   Ralve Yazılım Frontend — Modern Corporate Design (v2)
   Light theme, Inter typography, modest motion
   ============================================================ */

:root {
  /* Palette */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --brand:        #6366f1;
  --brand-hover:  #4f46e5;
  --brand-soft:   #eef2ff;
  --brand-text:   #4338ca;
  --accent:       #06b6d4;

  --success: #16a34a; --success-soft: #f0fdf4;
  --warning: #ea580c; --warning-soft: #fff7ed;
  --danger:  #dc2626; --danger-soft:  #fef2f2;

  --bg:        var(--white, #ffffff);
  --bg-soft:   var(--slate-50);
  --surface:   #ffffff;
  --border:    var(--slate-200);
  --border-2:  var(--slate-300);
  --fg:        var(--slate-900);
  --fg-muted:  var(--slate-600);
  --fg-subtle: var(--slate-400);

  --radius-sm: 6px;
  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-xs: 0 1px 2px rgba(15,23,42,.04);
  --shadow-sm: 0 1px 3px rgba(15,23,42,.05), 0 1px 2px rgba(15,23,42,.04);
  --shadow:    0 4px 6px -1px rgba(15,23,42,.06), 0 2px 4px -2px rgba(15,23,42,.04);
  --shadow-md: 0 10px 18px -4px rgba(15,23,42,.08), 0 4px 6px -4px rgba(15,23,42,.04);
  --shadow-lg: 0 24px 40px -10px rgba(15,23,42,.12);

  --grad:      linear-gradient(135deg, #6366f1 0%, #8b5cf6 60%, #06b6d4 100%);
  --grad-soft: linear-gradient(135deg, rgba(99,102,241,.10), rgba(139,92,246,.06), rgba(6,182,212,.08));

  --t-fast: 150ms cubic-bezier(.4,0,.2,1);
  --t-base: 250ms cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--brand); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fg);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 12px; color: var(--fg-muted); }
small { font-size: 0.85em; }
code {
  font-family: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  background: var(--bg-soft); padding: 2px 6px; border-radius: 4px;
  font-size: 0.85em; border: 1px solid var(--border);
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-soft); color: var(--brand-text);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  border: 1px solid rgba(99,102,241,.18);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* ============================================================
   ICONS
   ============================================================ */
.icon { width: 20px; height: 20px; flex-shrink: 0; vertical-align: -3px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }
.icon-2xl { width: 48px; height: 48px; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; }
.container-lg { max-width: 1320px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--fg-muted); }
.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.gap-1{gap:4px} .gap-2{gap:8px} .gap-3{gap:12px} .gap-4{gap:16px}
.mb-2{margin-bottom:8px} .mb-3{margin-bottom:12px} .mb-4{margin-bottom:16px}
.mt-2{margin-top:8px} .mt-3{margin-top:12px} .mt-4{margin-top:16px} .mt-6{margin-top:24px}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; height: 42px;
  border-radius: 10px; border: 1px solid transparent;
  font-size: 14px; font-weight: 500;
  background: transparent; color: var(--fg);
  transition: all var(--t-fast); white-space: nowrap; cursor: pointer;
}
.btn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.btn-primary {
  background: var(--slate-900); color: #fff; border-color: var(--slate-900);
}
.btn-primary:hover { background: var(--slate-800); border-color: var(--slate-800); color: #fff; transform: translateY(-1px); }

.btn-brand {
  background: var(--grad); color: #fff;
  box-shadow: 0 6px 16px rgba(99,102,241,.30);
}
.btn-brand:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(99,102,241,.40); color: #fff; }

.btn-outline {
  background: var(--surface); color: var(--fg); border-color: var(--border-2);
}
.btn-outline:hover { border-color: var(--slate-400); background: var(--bg-soft); }

.btn-ghost { color: var(--fg-muted); border: 0; padding: 8px 12px; height: auto; }
.btn-ghost:hover { color: var(--fg); background: var(--bg-soft); }

.btn-sm  { height: 34px; padding: 6px 14px; font-size: 13px; gap: 6px; }
.btn-lg  { height: 50px; padding: 12px 28px; font-size: 15px; }
.btn-xl  { height: 56px; padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-icon  { padding: 0; width: 42px; }

/* ============================================================
   HEADER / NAV — modern glass header (v3)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 1px 0 rgba(15,23,42,.02), 0 8px 24px -16px rgba(15,23,42,.10);
  height: 72px;
  display: flex; align-items: center;
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(15,23,42,.04), 0 12px 32px -18px rgba(15,23,42,.18);
}
.site-header .nav {
  width: 100%;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 800; font-size: 17px; color: var(--fg);
  letter-spacing: -0.015em;
  transition: opacity var(--t-fast);
}
.brand:hover { opacity: .85; }
.brand .logo {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad); display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 13px;
  box-shadow: 0 6px 18px rgba(99,102,241,.42), inset 0 1px 0 rgba(255,255,255,.25);
  position: relative; overflow: hidden;
}
.brand .logo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.20) 0%, transparent 50%);
  pointer-events: none;
}
.brand-name {
  font-weight: 800;
  background: linear-gradient(135deg, var(--fg) 0%, #475569 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Yüklenen logo — header */
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}
/* Tema bazlı logo swap (light + dark variantları yüklendiyse) */
.brand-logo--dark { display: none; }
[data-theme="dark"] .brand-logo--light { display: none; }
[data-theme="dark"] .brand-logo--dark  { display: block; }
/* Logo yoksa text fallback — header'da büyük marka adı */
.brand-text {
  font-family: var(--font-display, inherit);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, var(--fg) 0%, var(--brand, #6366f1) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="dark"] .brand-text {
  background: linear-gradient(135deg, #fff 0%, var(--brand, #818cf8) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 640px) {
  .brand-text { font-size: 22px; }
}

.nav-wrap { display: flex; justify-content: flex-start; padding-left: 24px; }
.nav-links {
  display: inline-flex; gap: 2px; align-items: center;
  list-style: none; padding: 0; margin: 0;
  background: transparent; border: 0; border-radius: 0;
  box-shadow: none;
}
.nav-links a {
  padding: 7px 11px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--fg-muted);
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover {
  color: var(--fg);
  background: transparent;
}
.nav-links a.active {
  color: var(--fg);
  background: transparent;
  font-weight: 600;
  position: relative;
}
.nav-links a.active::after {
  content: ""; position: absolute;
  left: 11px; right: 11px; bottom: -2px; height: 2px;
  background: linear-gradient(90deg, var(--brand), #ec4899);
  border-radius: 2px;
}

/* Daha dar ekranlarda nav linkleri biraz daha sıkıştır */
@media (max-width: 1180px) {
  .nav-links a { padding: 6px 9px; font-size: 12.5px; }
  .nav-links a.active::after { left: 9px; right: 9px; }
  .site-header .nav { gap: 16px; }
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

.lang-switch {
  display: inline-flex; gap: 2px; align-items: center;
  padding: 3px; border: 1px solid rgba(15,23,42,.06);
  background: rgba(241,245,249,.65); border-radius: 999px;
}
.lang-switch a {
  padding: 4px 9px; font-size: 11.5px; font-weight: 700;
  color: var(--fg-subtle); border-radius: 999px;
  transition: all var(--t-fast); letter-spacing: .02em;
}
.lang-switch a:hover { color: var(--fg); }
.lang-switch a.active {
  color: var(--brand); background: var(--surface);
  box-shadow: 0 1px 2px rgba(15,23,42,.06);
}

.icon-btn {
  position: relative;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; color: var(--fg-muted);
  border: 1px solid transparent;
  transition: all var(--t-fast);
}
.icon-btn:hover {
  color: var(--brand);
  background: var(--surface);
  border-color: rgba(15,23,42,.06);
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 4px 12px -4px rgba(99,102,241,.18);
}
.badge-dot {
  position: absolute; top: 4px; right: 4px;
  background: var(--brand); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 16px; height: 16px;
  padding: 0 4px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--surface);
  line-height: 1;
}

.user-dropdown-head {
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

/* ---------- Mega Menu (header dropdown) ---------- */
.nav-links li.has-mega { position: relative; }
.nav-links li.has-mega > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-links li.has-mega > a .icon {
  transition: transform var(--t-fast); opacity: .6;
}
.nav-links li.has-mega:hover > a .icon { transform: rotate(180deg); }

.mega-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 720px; max-width: calc(100vw - 32px);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 100;
}
.mega-menu::before {
  content: ""; position: absolute;
  top: -8px; left: 50%; transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--surface);
  filter: drop-shadow(0 -1px 0 var(--border));
}
.nav-links li.has-mega:hover .mega-menu,
.nav-links li.has-mega:focus-within .mega-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Köprü — fare hover'ı kaybetmesin */
.nav-links li.has-mega::after {
  content: ""; position: absolute;
  top: 100%; left: 0; right: 0; height: 16px;
}

.mega-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
/* Kompakt varyant — Kurumsal dropdown 8-item için 2 sütun */
.mega-menu.mega-menu-sm { width: 720px; }
.mega-grid.mega-grid-sm { grid-template-columns: 1fr 1fr; gap: 4px; }
.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 10px;
  color: var(--fg); transition: background-color var(--t-fast);
}
.mega-item:hover { background: var(--bg-soft); }
.mega-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center; flex-shrink: 0;
}
.mega-name { font-size: 13.5px; font-weight: 600; color: var(--fg); line-height: 1.2; display: inline-flex; align-items: center; gap: 6px; }
.mega-desc { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.mega-badge {
  display: inline-flex; align-items: center;
  padding: 2px 6px; border-radius: 4px;
  background: linear-gradient(135deg, var(--brand), #ec4899);
  color: #fff;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .04em;
  font-family: var(--font-mono);
}
.mega-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,.6);
  animation: megaDot 1.8s infinite;
}
@keyframes megaDot {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.mega-item-feat {
  background: linear-gradient(135deg, rgba(99,102,241,.06), rgba(236,72,153,.06));
  border-radius: 10px;
}
[data-theme="dark"] .mega-item-feat {
  background: linear-gradient(135deg, rgba(99,102,241,.10), rgba(236,72,153,.10));
}

.mega-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding: 12px 14px;
  background: var(--bg-soft); border-radius: 10px;
  font-size: 12.5px; color: var(--fg-muted);
}
.mega-foot > span { display: inline-flex; align-items: center; gap: 6px; }
.mega-foot-cta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12.5px; font-weight: 600; color: var(--brand);
}
.mega-foot-cta:hover { color: var(--brand-hover); }
.user-dropdown-head strong { display: block; font-size: 13.5px; }
.user-dropdown-head small  { display: block; font-size: 12px; color: var(--fg-subtle); margin-top: 2px; }

.nav-burger {
  display: none;
  background: transparent; border: 0; padding: 8px;
  border-radius: 8px; color: var(--fg-muted); cursor: pointer;
}
.nav-burger:hover { background: var(--bg-soft); color: var(--fg); }

.mobile-drawer {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 12px;
  flex-direction: column; gap: 2px;
  box-shadow: var(--shadow-md); z-index: 49;
}
/* hidden attribute'una saygı duy - başka bir şey override etmesin */
.mobile-drawer[hidden] { display: none !important; }
/* Yalnızca mobile burger görünürken ve drawer açıkken göster */
@media (max-width: 900px) {
  .mobile-drawer:not([hidden]) { display: flex; }
}
.mobile-drawer a {
  padding: 12px 14px; border-radius: 8px;
  color: var(--fg); font-weight: 500; font-size: 14px;
}
.mobile-drawer a:hover { background: var(--bg-soft); }

/* User dropdown */
.user-menu { position: relative; }
.user-menu .user-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  cursor: pointer; font-family: inherit; color: var(--fg);
  font-size: 13.5px; font-weight: 500; transition: all var(--t-fast);
}
.user-menu .user-chip:hover { border-color: var(--slate-400); }
.user-menu .user-chip .avatar {
  width: 28px; height: 28px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 12px;
}
.user-menu .user-chip .name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-menu .user-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 220px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 6px; z-index: 100;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: all var(--t-fast);
}
.user-menu:hover .user-dropdown,
.user-menu:focus-within .user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.user-menu .user-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 6px;
  color: var(--fg); font-size: 13.5px; font-weight: 500;
  transition: background var(--t-fast);
}
.user-menu .user-dropdown a:hover { background: var(--bg-soft); }
.user-menu .user-dropdown a.admin-link { color: var(--brand-text); font-weight: 600; }
.user-menu .user-dropdown a.logout-link { color: var(--danger); }
.user-menu .user-dropdown hr { border: 0; border-top: 1px solid var(--border); margin: 4px 0; }

/* ============================================================
   HERO — Launch UI light edition
   ============================================================ */
.hero-launch {
  position: relative; overflow: hidden;
  padding: 96px 0 100px;
  background:
    radial-gradient(800px 400px at 50% -10%, rgba(99,102,241,.10), transparent 60%),
    #fafaf9;
}
.hero-launch::after {
  content: ""; position: absolute;
  bottom: -120px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 320px;
  background: radial-gradient(ellipse at center,
    rgba(124,58,237,.18),
    rgba(236,72,153,.08) 40%,
    transparent 70%);
  filter: blur(28px);
  pointer-events: none; z-index: 0;
}
.hero-launch > .container { position: relative; z-index: 1; text-align: center; }

.hl-pill {
  display: inline-flex; align-items: center; gap: 0;
  padding: 4px 4px 4px 4px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  font-size: 12.5px; color: var(--fg-muted);
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 4px 12px -6px rgba(15,23,42,.08);
  margin-bottom: 32px;
  white-space: nowrap;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.hl-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.14);
  box-shadow: 0 1px 2px rgba(15,23,42,.06), 0 8px 18px -6px rgba(99,102,241,.18);
}
.hl-pill .badge {
  background: rgba(99,102,241,.10);
  color: var(--brand);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-right: 10px;
}
.hl-pill .text { color: var(--fg); font-weight: 500; }
.hl-pill .sep {
  width: 1px; height: 14px; background: rgba(15,23,42,.10);
  margin: 0 12px;
}
.hl-pill .arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--brand); font-weight: 600;
  padding-right: 10px; white-space: nowrap;
}
.hl-pill:hover .arrow { gap: 6px; }

.hl-title {
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 1.02; letter-spacing: -0.045em;
  font-weight: 800; margin: 0 auto 26px;
  max-width: 920px;
  background: linear-gradient(180deg, #0f172a 0%, #334155 55%, #94a3b8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hl-sub {
  font-size: 17px; line-height: 1.65; color: var(--fg-muted);
  max-width: 560px; margin: 0 auto 38px;
}

.hl-actions {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 0;
}

.hl-glow-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #ec4899;
  margin: 0 auto 24px;
  box-shadow:
    0 0 0 6px rgba(236,72,153,.10),
    0 0 28px rgba(236,72,153,.40);
  animation: hlPulse 2.4s ease-in-out infinite;
}
@keyframes hlPulse {
  0%,100% { box-shadow: 0 0 0 6px rgba(236,72,153,.10), 0 0 28px rgba(236,72,153,.40); }
  50%     { box-shadow: 0 0 0 10px rgba(236,72,153,.04), 0 0 36px rgba(236,72,153,.55); }
}

.hl-frame {
  position: relative;
  max-width: 1080px; margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px 18px 0 0;
  box-shadow:
    0 -2px 0 rgba(255,255,255,.6),
    0 40px 80px -24px rgba(15,23,42,.25),
    0 24px 48px -24px rgba(99,102,241,.20);
  overflow: hidden;
}
.hl-frame .browser {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: #fafafa;
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.hl-frame .browser .dots { display: inline-flex; gap: 7px; }
.hl-frame .browser .dots span { width: 11px; height: 11px; border-radius: 50%; }
.hl-frame .browser .dots span:nth-child(1) { background: #f97316; }
.hl-frame .browser .dots span:nth-child(2) { background: #ef4444; }
.hl-frame .browser .dots span:nth-child(3) { background: #10b981; }
.hl-frame .browser .url {
  font-size: 12px; color: var(--fg-muted); font-family: "JetBrains Mono", monospace;
  background: var(--surface); padding: 4px 12px; border-radius: 6px;
  border: 1px solid rgba(15,23,42,.05);
}
.hl-frame .body { padding: 28px; text-align: left; }
.hl-frame .body-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.hl-frame .body-head h3 {
  font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 0;
  color: var(--fg);
}
.hl-frame .body-head .sub { font-size: 13px; color: var(--fg-muted); margin-top: 3px; }
.hl-frame .tabs {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bg-soft); padding: 4px; border-radius: 9px;
}
.hl-frame .tabs span {
  font-size: 12px; padding: 5px 12px; color: var(--fg-muted);
  border-radius: 6px; cursor: default;
}
.hl-frame .tabs span.on {
  background: #fff; color: var(--fg); font-weight: 600;
  box-shadow: 0 1px 2px rgba(15,23,42,.06);
}
.hl-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
  margin-bottom: 18px;
}
.hl-stat {
  background: var(--bg-soft);
  border: 1px solid rgba(15,23,42,.04);
  border-radius: 12px; padding: 14px 16px;
}
.hl-stat .lbl {
  font-size: 11px; color: var(--fg-subtle);
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
}
.hl-stat .num {
  font-size: 24px; font-weight: 800; color: var(--fg);
  margin-top: 6px; letter-spacing: -.02em;
}
.hl-stat .delta { font-size: 11.5px; margin-top: 3px; }
.hl-stat .delta.up   { color: #16a34a; }
.hl-stat .delta.brand { color: var(--brand); }
.hl-stat .delta.muted { color: var(--fg-subtle); }

.hl-chart {
  background: var(--bg-soft);
  border: 1px solid rgba(15,23,42,.04);
  border-radius: 12px; padding: 16px 18px;
}
.hl-chart-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.hl-chart-head .t { font-size: 13px; font-weight: 600; color: var(--fg); }
.hl-chart-head .m { font-size: 11.5px; color: var(--fg-muted); }

@media (max-width: 768px) {
  .hero-launch { padding-top: 56px; }
  .hl-title { font-size: clamp(32px, 9vw, 50px); letter-spacing: -.035em; }
  .hl-sub { font-size: 15px; }
  .hl-actions { flex-direction: column; gap: 10px; width: 100%; padding: 0 16px; }
  .hl-actions .btn { width: 100%; }
  .hl-stats { grid-template-columns: repeat(2,1fr); }
  .hl-frame .body { padding: 18px; }
  .hl-frame .body-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-launch::after { width: 90%; bottom: 100px; }
}

/* ============================================================
   HERO (eski) — geriye dönük kullanımlar için tutuldu
   ============================================================ */
.hero {
  position: relative; padding: 80px 0 60px; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(99,102,241,.10), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(6,182,212,.06), transparent 50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero h1 { margin-top: 18px; }
.hero-subtitle {
  font-size: 18px; color: var(--fg-muted); max-width: 540px;
  margin: 18px 0 32px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 32px; display: flex; align-items: center; gap: 14px;
  color: var(--fg-subtle); font-size: 13px;
}
.hero-trust .stars { color: #f59e0b; display: inline-flex; gap: 1px; }

.hero-visual { position: relative; aspect-ratio: 1.1/1; max-width: 560px; margin-left: auto; }
.hero-visual::before {
  content: ""; position: absolute; inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(99,102,241,.18), transparent 60%);
  filter: blur(48px); animation: pulse 6s ease-in-out infinite;
}
.hero-mockup {
  position: absolute; inset: 0; border-radius: 18px;
  background: var(--slate-900); border: 1px solid #1e293b;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-mockup .topbar {
  display: flex; gap: 6px; align-items: center; padding: 12px 16px;
  background: rgba(255,255,255,.03); border-bottom: 1px solid #1e293b;
}
.hero-mockup .topbar span { width: 11px; height: 11px; border-radius: 50%; background: #ff5f56; }
.hero-mockup .topbar span:nth-child(2) { background: #ffbd2e; }
.hero-mockup .topbar span:nth-child(3) { background: #27c93f; }
.hero-mockup .topbar .file {
  margin-left: 12px; padding: 3px 10px; background: var(--slate-800);
  border-radius: 4px; font-size: 11px; color: var(--slate-300);
  font-family: "JetBrains Mono", monospace;
}
.hero-mockup pre {
  margin: 0; padding: 22px; font-family: "JetBrains Mono", monospace;
  font-size: 13px; color: #cbd5e1; overflow: hidden; line-height: 1.7;
}
.hero-mockup .kw   { color: #c084fc; }
.hero-mockup .str  { color: #6ee7b7; }
.hero-mockup .num  { color: #fde68a; }
.hero-mockup .com  { color: #64748b; font-style: italic; }
.hero-mockup .fn   { color: #67e8f9; }
.hero-mockup .var  { color: #f87171; }

@keyframes pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp .6s cubic-bezier(.2,.8,.2,1) both; }
.fade-up.delay-1 { animation-delay: .1s; }
.fade-up.delay-2 { animation-delay: .2s; }
.fade-up.delay-3 { animation-delay: .3s; }

/* ============================================================
   TECH MARQUEE — sonsuz kayan teknoloji bandı
   ============================================================ */
.tech-marquee {
  padding: 28px 0 36px;
  background: #fafaf9;
  border-top: 1px solid rgba(15,23,42,.06);
}
.tech-marquee-head {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 22px; flex-direction: column; text-align: center;
}
.tech-marquee-head .label {
  display: inline-block;
  font-size: 11px; font-weight: 700; color: var(--fg-subtle);
  letter-spacing: .14em; text-transform: uppercase;
}
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 10px; width: max-content;
  animation: marquee 70s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tech-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid rgba(15,23,42,.06);
  font-size: 12.5px; font-weight: 500; color: var(--fg-muted);
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.tech-chip:hover { color: var(--fg); border-color: rgba(15,23,42,.12); transform: translateY(-1px); }
.tech-chip .tech-dot {
  width: 6px; height: 6px; border-radius: 50%;
}

/* ============================================================
   STATS STRIP — sosyal kanıt rakamları (light, modern)
   ============================================================ */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
  padding: 28px 0;
}
.stats-strip .stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center;
}
.stats-strip .stats-grid > div { position: relative; }
.stats-strip .stats-grid > div + div::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px;
  background: rgba(15,23,42,.06);
}
.stats-strip .stat-num {
  font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; line-height: 1;
  letter-spacing: -.025em; color: var(--fg);
}
.stats-strip .stat-num .accent { color: var(--brand); }
.stats-strip .stat-num .star { color: #f59e0b; }
.stats-strip .stat-label {
  font-size: 11.5px; color: var(--fg-muted); margin-top: 6px;
  text-transform: uppercase; letter-spacing: .06em; font-weight: 600;
}

/* Eski dark .stats-band sınıfı kullanılmıyorsa ileride silinebilir; uyumluluk için bırakıldı */

/* ============================================================
   HOME — Süreç adımları (4 step, ortada bağlayıcı çizgi)
   ============================================================ */
.process-section { padding: 72px 0; background: var(--surface); }
.section-eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; color: var(--brand);
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(99,102,241,.10);
  padding: 4px 12px; border-radius: 999px;
}
.section-title {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800; letter-spacing: -.025em;
  margin: 12px 0 8px; line-height: 1.15;
}
.section-title .accent {
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 15px; color: var(--fg-muted);
  margin: 0 auto; max-width: 600px; line-height: 1.6;
}

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  position: relative; margin-top: 40px;
}
.process-grid::before {
  content: ""; position: absolute;
  top: 26px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(99,102,241,.30), rgba(236,72,153,.30));
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-step .num {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--surface); border: 2px solid rgba(99,102,241,.25);
  color: var(--brand); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(15,23,42,.04);
}
.process-step.active .num {
  background: linear-gradient(135deg, #6366f1, #8b5cf6); color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(99,102,241,.35);
}
.process-step.last .num { border-color: rgba(236,72,153,.35); color: #ec4899; }
.process-step h4 { font-size: 15px; font-weight: 700; margin: 0 0 6px; letter-spacing: -.005em; }
.process-step p { font-size: 13px; color: var(--fg-muted); margin: 0; line-height: 1.55; }

/* ============================================================
   HOME — Neden Ralve Yazılım (sol başlık + sağ 4 kart)
   ============================================================ */
.why-section { padding: 72px 0; background: var(--bg-soft); }
.why-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 56px; align-items: start;
}
.why-grid .why-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.why-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px; padding: 22px;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99,102,241,.20);
  box-shadow: 0 12px 28px -16px rgba(99,102,241,.18);
}
.why-card .ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.why-card.c-brand  .ico { background: rgba(99,102,241,.12); color: #6366f1; }
.why-card.c-green  .ico { background: rgba(16,185,129,.12); color: #10b981; }
.why-card.c-orange .ico { background: rgba(249,115,22,.12); color: #f97316; }
.why-card.c-pink   .ico { background: rgba(236,72,153,.12); color: #ec4899; }
.why-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 5px; letter-spacing: -.005em; }
.why-card p { font-size: 13px; color: var(--fg-muted); margin: 0; line-height: 1.55; }

/* ============================================================
   HOME — Müşteri yorumları (3 kart, ortadaki vurgulu)
   ============================================================ */
.testimonials-section { padding: 72px 0; }
.testimonials-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 36px;
}
.tm-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px; padding: 24px;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.tm-card.featured {
  border-color: rgba(99,102,241,.20);
  box-shadow: 0 12px 32px -18px rgba(99,102,241,.30);
  transform: translateY(-4px);
}
.tm-card .stars { color: #fbbf24; font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.tm-card .quote {
  font-size: 14px; color: var(--fg); line-height: 1.65;
  margin: 0 0 18px; font-style: italic;
}
.tm-card .who { display: flex; align-items: center; gap: 12px; }
.tm-card .av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
}
.tm-card .who strong { font-size: 13px; font-weight: 700; display: block; }
.tm-card .who small { font-size: 11.5px; color: var(--fg-subtle); }

/* ============================================================
   HOME — Blog son yazılar
   ============================================================ */
.blog-strip { padding: 56px 0; background: var(--bg-soft); }
.blog-strip-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px; gap: 20px; flex-wrap: wrap;
}
.blog-strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bs-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px; overflow: hidden;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  display: block; color: var(--fg);
}
.bs-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.20);
  box-shadow: 0 16px 32px -18px rgba(15,23,42,.20);
}
.bs-card .cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #c7d2fe, #a5b4fc);
  background-size: cover; background-position: center;
}
.bs-card .body { padding: 16px; }
.bs-card .cat {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  color: var(--brand);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 8px;
}
.bs-card h3 {
  font-size: 15px; font-weight: 700; line-height: 1.35;
  margin: 0 0 10px; letter-spacing: -.005em;
}
.bs-card .meta { font-size: 11.5px; color: var(--fg-subtle); }

/* ============================================================
   HOME — Final CTA banner (büyük gradient)
   ============================================================ */
.final-cta {
  padding: 96px 24px;          /* SİMETRİK üst-alt 96px navy boşluk */
  width: 100%;
  box-sizing: border-box;
  background: var(--bg);       /* Body ile aynı renk → kesintisiz navy alan */
}
.final-cta > .container {
  /* Container'ı override etmeyelim — block + margin auto ile ortalansın */
  padding: 0;
  max-width: 1152px;
}
.final-cta-banner {
  position: relative; overflow: hidden;
  background: #1e1b4b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 64px 48px;        /* SİMETRİK üst-alt */
  text-align: center;
  width: 100%;
  margin: 0;                 /* container zaten ortalı */
  box-sizing: border-box;
}
/* Banner içi içerik ortalı blok (text-align center yeterli) */
.final-cta-banner > * { position: relative; z-index: 2; }
.final-cta-banner .trust-row {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex; gap: 36px; flex-wrap: wrap; justify-content: center;
  width: 100%;
}
.final-cta-banner .trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.78);
  font-weight: 500;
}
.final-cta-banner .trust-item strong {
  color: #fff; font-weight: 700; letter-spacing: -.005em;
}
.final-cta-banner .trust-item .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: #c7d2fe;
}
/* Tek bir merkezi glow — banner'ın tam ortasında, simetri garantili */
.final-cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(99,102,241,.30), transparent 70%),
    radial-gradient(60% 70% at 50% 100%, rgba(236,72,153,.22), transparent 70%);
}
.final-cta-banner::after { display: none; }
.final-cta-banner > * { position: relative; z-index: 1; }
.final-cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; color: #fff; letter-spacing: -.025em;
  margin: 0 0 14px; line-height: 1.15;
}
.final-cta-banner p {
  font-size: 16px; color: rgba(255,255,255,.78);
  max-width: 540px; margin: 0 auto 30px; line-height: 1.6;
}
.final-cta-banner .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 980px) {
  .stats-strip .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stats-strip .stats-grid > div + div::before { display: none; }
  .process-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-grid .why-cards { grid-template-columns: 1fr 1fr; }
  .testimonials-row { grid-template-columns: 1fr; }
  .tm-card.featured { transform: none; }
  .blog-strip-grid { grid-template-columns: 1fr; }
  .final-cta-banner { padding: 48px 28px; border-radius: 18px; }
}
@media (max-width: 600px) {
  .stats-strip .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid .why-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.feature-card {
  padding: 28px; border-radius: var(--radius-md);
  background: var(--surface); border: 1px solid var(--border);
  transition: all var(--t-base);
  box-shadow: var(--shadow-xs);
}
.feature-card:hover {
  transform: translateY(-3px); border-color: var(--slate-300);
  box-shadow: var(--shadow-md);
}
.feature-card .icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--brand-soft); color: var(--brand);
}
.feature-card h3 { font-size: 17px; margin-bottom: 6px; }
.feature-card p  { font-size: 14px; margin: 0; line-height: 1.6; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all var(--t-base);
  display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-xs); color: var(--fg);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md); border-color: var(--slate-300);
}
.product-card .cover {
  aspect-ratio: 16/10; background: var(--grad-soft);
  position: relative; overflow: hidden;
}
.product-card .cover img { width:100%; height:100%; object-fit: cover; transition: transform var(--t-base); }
.product-card:hover .cover img { transform: scale(1.04); }
.product-card .cover .placeholder {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-size: 56px; font-weight: 900;
  background: var(--grad); color: rgba(255,255,255,.30);
  letter-spacing: -0.04em;
}
.product-card .badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.product-card .badges .pill {
  padding: 3px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  background: rgba(15,23,42,.85); backdrop-filter: blur(6px);
  color: #fff; text-transform: uppercase; letter-spacing: 0.05em;
}
.pill.success { background: rgba(22,163,74,.92); }
.pill.warning { background: rgba(234,88,12,.92); }
.pill.brand   { background: rgba(99,102,241,.92); }

.product-card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat {
  font-size: 11px; font-weight: 700; color: var(--accent);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em;
}
.product-card .title { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--fg); }
.product-card .summary { font-size: 13.5px; color: var(--fg-muted); flex: 1; line-height: 1.55; }
.product-card .meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--border);
}
.product-card .price { font-size: 20px; font-weight: 800; color: var(--fg); }
.product-card .price .old {
  color: var(--fg-subtle); font-size: 14px;
  text-decoration: line-through; font-weight: 500; margin-right: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-xs);
}
.testimonial .stars {
  display: inline-flex; gap: 1px; color: #f59e0b; margin-bottom: 14px;
}
.testimonial .quote {
  font-size: 15px; line-height: 1.7; color: var(--fg);
  margin-bottom: 18px; font-weight: 500;
}
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.testimonial .who .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
}
.testimonial .who .info strong { display: block; font-size: 13.5px; color: var(--fg); }
.testimonial .who .info small  { color: var(--fg-subtle); font-size: 12px; }

/* ============================================================
   FAQ TEASER
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item:hover { border-color: var(--slate-300); }
.faq-item summary {
  cursor: pointer; padding: 18px 20px;
  font-weight: 600; font-size: 15px;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none; color: var(--fg);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; width: 20px; height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='12' x2='12' y1='5' y2='19'/><line x1='5' x2='19' y1='12' y2='12'/></svg>") center/contain no-repeat;
  transition: transform var(--t-fast);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 20px 20px; color: var(--fg-muted); font-size: 14.5px; line-height: 1.7; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--slate-900); color: #fff;
  border-radius: var(--radius-lg); padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(99,102,241,.30), transparent 60%),
    radial-gradient(400px 300px at 50% 110%, rgba(6,182,212,.18), transparent 60%);
}
.cta-section > * { position: relative; }
.cta-section h2 { color: #fff; font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; }
.cta-section p { color: var(--slate-300); max-width: 560px; margin: 0 auto 28px; font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--slate-950); color: var(--slate-300);
  padding: 64px 0 0; margin-top: 100px;
  border-top: 1px solid var(--slate-800);
}
.site-footer p { color: var(--slate-400); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad); display: grid; place-items: center;
  color: #fff; font-weight: 800; box-shadow: 0 6px 16px rgba(99,102,241,.35);
}
.footer-brand .name { color: #fff; font-weight: 700; font-size: 18px; }
.site-footer h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff; margin-bottom: 18px; font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a {
  color: var(--slate-400); font-size: 14px;
  transition: color var(--t-fast);
}
.site-footer a:hover { color: #fff; }

.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input {
  flex: 1; background: var(--slate-800); border: 1px solid var(--slate-700);
  color: #fff; padding: 10px 14px; border-radius: 10px;
  font-size: 14px;
}
.newsletter input::placeholder { color: var(--slate-500); }
.newsletter input:focus { outline: none; border-color: var(--brand); }
.newsletter button {
  background: var(--brand); color: #fff; border: 0;
  padding: 10px 16px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.newsletter button:hover { background: var(--brand-hover); }

.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 10px; border: 1px solid var(--slate-700);
  color: var(--slate-300); transition: all var(--t-fast);
}
.socials a:hover { color: #fff; border-color: var(--brand); background: rgba(99,102,241,.15); }

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: var(--slate-500); font-size: 13px;
}

/* ============================================================
   PAGE HEADER (subpages)
   ============================================================ */
.page-header {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--bg-soft), transparent);
  border-bottom: 1px solid var(--border);
}
.page-header h1 { margin-bottom: 6px; }
.page-header .breadcrumb { color: var(--fg-muted); font-size: 14px; }
.page-header .breadcrumb a:hover { color: var(--brand); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 13.5px; font-weight: 500;
  margin-bottom: 6px; color: var(--fg);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--surface);
  border: 1px solid var(--border-2); color: var(--fg);
  padding: 10px 14px; border-radius: 10px;
  font-size: 14px; font-family: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.form-group textarea { min-height: 100px; resize: vertical; line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  margin-bottom: 18px; border: 1px solid; font-size: 14px;
}
.alert .icon { margin-top: 1px; flex-shrink: 0; }
.alert-success { background: var(--success-soft); border-color: rgba(22,163,74,.25); color: #14532d; }
.alert-error,.alert-danger { background: var(--danger-soft); border-color: rgba(220,38,38,.25); color: #7f1d1d; }
.alert-info    { background: var(--brand-soft); border-color: rgba(99,102,241,.25); color: #3730a3; }

/* ============================================================
   PRODUCT DETAIL — modernize edilmiş v4 (Launch UI hava + iyovex iskelet)
   ============================================================ */
.product-banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(99,102,241,.12), transparent 60%),
    radial-gradient(700px 360px at 0% 20%, rgba(236,72,153,.08), transparent 55%),
    #fafaf9;
  border-bottom: 1px solid rgba(15,23,42,.06);
  padding: 36px 0 56px;
}
.product-banner > .container { position: relative; z-index: 1; }

/* Tech chips — başlık üstünde küçük tech rozetleri */
.tech-chips {
  display: inline-flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.tech-chips .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface); border: 1px solid rgba(15,23,42,.08);
  color: var(--fg-muted); font-size: 11.5px; font-weight: 600;
  letter-spacing: .02em;
}
.tech-chips .chip .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
}

/* Promise band — hero altında ince 4 garanti şeridi */
.product-promises {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.promises-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.promise-tile {
  display: flex; align-items: center; gap: 12px;
}
.promise-tile .ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.10); color: var(--brand);
  flex-shrink: 0;
}
.promise-tile .txt { display: flex; flex-direction: column; }
.promise-tile .t { font-size: 13.5px; font-weight: 700; color: var(--fg); letter-spacing: -.005em; }
.promise-tile .s { font-size: 11.5px; color: var(--fg-muted); margin-top: 1px; }

/* Modüller grid — Açıklama altında ürünün ne yaptığını anlatan büyük kartlar */
.modules-section {
  padding: 56px 0 0;
}
.modules-head {
  margin-bottom: 28px;
}
.modules-head .label {
  display: inline-block;
  font-size: 11.5px; font-weight: 700; color: var(--brand);
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(99,102,241,.10);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.modules-head h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800; letter-spacing: -.025em;
  margin: 0 0 8px;
}
.modules-head p { font-size: 15px; color: var(--fg-muted); margin: 0; max-width: 640px; }

.modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.module-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99,102,241,.20);
  box-shadow: 0 12px 28px -16px rgba(99,102,241,.18);
}
.module-card .ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.10); color: var(--brand);
  margin-bottom: 12px;
}
.module-card h4 {
  font-size: 15px; font-weight: 700; margin: 0 0 6px; color: var(--fg);
  letter-spacing: -.005em;
}
.module-card p {
  font-size: 13.5px; color: var(--fg-muted); margin: 0; line-height: 1.55;
}

@media (max-width: 980px) {
  .promises-row { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .promises-row { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
}

.breadcrumb-line {
  font-size: 13px; color: var(--fg-muted);
  display: flex; gap: 8px; align-items: center; margin-bottom: 24px;
}
.breadcrumb-line span { color: var(--fg-subtle); }
.breadcrumb-line a:hover { color: var(--brand); }

.product-banner-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: end;
}
.cat-tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-text);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 14px; border: 1px solid rgba(99,102,241,.18);
}
.product-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -.025em;
  margin: 0 0 8px; line-height: 1.15;
}
.product-tagline {
  font-size: 17px; color: var(--fg-muted);
  margin: 0 0 18px; max-width: 720px;
}
.product-banner-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--fg-muted);
}
.product-banner-meta .meta-item {
  display: inline-flex; align-items: center; gap: 6px;
}
.product-banner-meta .stars { color: #f59e0b; display: inline-flex; gap: 1px; }
.product-banner-meta strong { color: var(--fg); }
.product-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Ana içerik grid */
.product-main { padding: 56px 0; }
.product-main-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 40px; align-items: start;
}

/* Galeri */
.product-gallery { margin-bottom: 32px; }
.gallery-main {
  position: relative;
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 16/10; background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(15,23,42,.85); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 600; backdrop-filter: blur(6px);
}
.gallery-thumbs {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 8px; margin-top: 10px;
}
.gallery-thumbs .thumb {
  border: 2px solid var(--border); border-radius: 8px;
  overflow: hidden; cursor: pointer; padding: 0; background: transparent;
  aspect-ratio: 16/10; transition: border-color var(--t-fast);
}
.gallery-thumbs .thumb:hover { border-color: var(--slate-400); }
.gallery-thumbs .thumb.active { border-color: var(--brand); }
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

/* KPI'lar */
.product-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-bottom: 32px;
}
.kpi {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px;
  box-shadow: var(--shadow-xs);
}
.kpi-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center; flex-shrink: 0;
}
.kpi-num { font-size: 18px; font-weight: 800; color: var(--fg); line-height: 1.1; }
.kpi-lbl { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

/* Prose (genel bakış) */
.prose { font-size: 15.5px; line-height: 1.85; color: var(--fg-muted); max-width: 760px; }
.prose h2 { color: var(--fg); margin: 32px 0 12px; font-size: 22px; }
.prose ul li { margin-bottom: 6px; }

/* Demo iframe */
.demo-frame {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--surface); box-shadow: var(--shadow-sm);
}
.demo-frame-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: var(--bg-soft); border-bottom: 1px solid var(--border);
}
.demo-frame-bar > span { width: 11px; height: 11px; border-radius: 50%; background: #ff5f56; }
.demo-frame-bar > span:nth-child(2) { background: #ffbd2e; }
.demo-frame-bar > span:nth-child(3) { background: #27c93f; }
.demo-frame-bar .demo-url {
  flex: 1; margin: 0 12px; padding: 4px 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; font-size: 12px;
  color: var(--fg-muted); font-family: "JetBrains Mono", monospace;
  display: inline-flex; align-items: center; gap: 6px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.demo-frame-bar .demo-frame-open {
  font-size: 12px; color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 4px;
}
.demo-frame-bar .demo-frame-open:hover { color: var(--brand); }
.demo-frame iframe {
  width: 100%; height: 600px; border: 0; display: block; background: #fff;
}

/* Screenshots grid */
.screens-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 14px;
}
.screens-grid figure {
  margin: 0; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-xs);
}
.screens-grid figure img { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; }
.screens-grid figcaption {
  padding: 10px 14px; color: var(--fg-muted); font-size: 13px;
  display: flex; align-items: center; gap: 8px;
}

/* Requirements */
.reqs-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-xs);
}
.reqs-card pre {
  margin: 12px 0 0; padding: 16px;
  background: var(--bg-soft); border-radius: 8px;
  font-family: "JetBrains Mono", monospace; font-size: 13px;
  line-height: 1.7; color: var(--fg);
  white-space: pre-wrap;
}

/* Buy Box (sticky right) */
.buy-box {
  position: sticky; top: 80px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.buy-box .price-block {
  padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px;
}
.buy-box .price-block .price {
  font-size: 32px; font-weight: 800; color: var(--fg); line-height: 1.1;
}
.buy-box .price-block .old {
  color: var(--fg-subtle); text-decoration: line-through;
  font-size: 16px; margin-right: 8px;
}
.discount-badge {
  display: inline-block; padding: 2px 8px; border-radius: 6px;
  background: #fee2e2; color: #b91c1c; font-size: 12px; font-weight: 700;
}

.buy-form { margin-bottom: 18px; }
.domain-label {
  display: flex !important; align-items: center; justify-content: space-between;
}

.buy-features {
  display: grid; gap: 8px; margin-top: 18px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.bf-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--fg-muted);
}
.bf-item .icon { color: var(--success); }

.buy-summary-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; font-size: 13px;
}

.demo-credentials {
  margin-top: 18px; padding: 14px; border-radius: 10px;
  background: var(--bg-soft); border: 1px dashed var(--border-2);
}
.dc-head {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px;
}
.dc-line {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0; font-size: 12.5px; color: var(--fg-muted);
}
.dc-line code {
  background: var(--surface); border: 1px solid var(--border);
  font-size: 11.5px; padding: 2px 6px; border-radius: 4px;
}

/* eski stilleri (geriye uyumluluk) */
.product-hero { padding: 48px 0; }

/* ============================================================
   SERVICES DETAIL PAGES — light theme conversion
   .vue dosyalarındaki dark-tema sınıflarının light karşılıkları
   ============================================================ */
.svc-page { background: var(--bg); }

/* Container — Tailwind container-custom yerine */
.container-custom {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
}

/* Gradient card (light) — vue'lerdeki gradient-card */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-xs);
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.svc-card.hover-up:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Hero (Servis detay üstü) ------------------------------------ */
.svc-hero {
  position: relative; overflow: hidden;
  padding: 100px 0 80px;
  background:
    radial-gradient(900px 500px at 90% -20%, rgba(99,102,241,.08), transparent 60%),
    radial-gradient(700px 400px at -10% 30%, rgba(139,92,246,.05), transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.svc-hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: center;
}
.svc-hero .badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-text);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  border: 1px solid rgba(99,102,241,.18);
  margin-bottom: 18px;
}
.svc-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.1; margin: 0 0 18px; color: var(--fg);
}
.svc-hero h1 .hl {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.svc-hero .lead {
  font-size: 17px; color: var(--fg-muted);
  max-width: 600px; line-height: 1.65; margin: 0 0 28px;
}
.svc-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.svc-hero-visual {
  position: relative; aspect-ratio: 4/3;
  border-radius: 22px; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-soft), #f3e8ff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
}
.svc-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-visual .placeholder-icon { width: 100px; height: 100px; color: var(--brand); opacity: .35; }

/* Section başlıkları */
.svc-section { padding: 88px 0; }
.svc-section.alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.svc-section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.svc-section-head .label {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--brand-text); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 12px;
}
.svc-section-head h2 {
  font-size: clamp(26px, 3.5vw, 36px); font-weight: 700;
  letter-spacing: -.02em; margin: 0 0 12px; line-height: 1.2;
}
.svc-section-head h2 .hl {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.svc-section-head p { font-size: 15px; color: var(--fg-muted); max-width: 540px; margin: 0 auto; line-height: 1.65; }

/* Feature Grid (6'lı) ------------------------------------------- */
.svc-feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.svc-feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: all .25s ease;
}
.svc-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.svc-feature .ico-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.svc-feature h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; color: var(--fg); }
.svc-feature p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin: 0; }

/* Process Timeline (5 adım) ------------------------------------ */
.svc-process { display: grid; gap: 18px; max-width: 880px; margin: 0 auto; }
.svc-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 28px;
  box-shadow: var(--shadow-xs); position: relative;
}
.svc-step .num {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 800;
  box-shadow: 0 6px 16px rgba(99,102,241,.25);
}
.svc-step h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--fg); }
.svc-step .duration {
  display: inline-block; font-size: 11.5px; font-weight: 600;
  color: var(--brand-text); background: var(--brand-soft);
  padding: 2px 10px; border-radius: 999px; margin-left: 8px;
  border: 1px solid rgba(99,102,241,.18);
}
.svc-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin: 0 0 12px; }
.svc-step .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.svc-step .tags span {
  font-size: 11.5px; font-weight: 500;
  color: var(--fg-muted); background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 6px;
}

/* Tech Grid ---------------------------------------------------- */
.svc-tech-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.svc-tech {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-xs); transition: all .2s ease;
}
.svc-tech:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.svc-tech .tech-ico {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
}
.svc-tech .tech-ico svg { width: 24px; height: 24px; }
.svc-tech .tech-name { font-size: 14px; font-weight: 600; color: var(--fg); line-height: 1.2; }
.svc-tech .tech-type { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

/* Pricing Cards ------------------------------------------------ */
.svc-pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  align-items: stretch;
}
.svc-pkg {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px;
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
  position: relative;
}
.svc-pkg.featured {
  border-color: var(--brand);
  box-shadow: 0 14px 40px rgba(99,102,241,.20);
  transform: translateY(-6px);
}
.svc-pkg.featured::before {
  content: "ÖNERİLEN";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  box-shadow: 0 4px 12px rgba(99,102,241,.30);
}
.svc-pkg .pkg-name { font-size: 18px; font-weight: 700; color: var(--fg); margin: 0 0 6px; }
.svc-pkg .pkg-price { font-size: 28px; font-weight: 800; color: var(--fg); margin: 8px 0 16px; letter-spacing: -.02em; }
.svc-pkg .pkg-price.sm { font-size: 22px; }
.svc-pkg .pkg-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin: 0 0 22px; min-height: 60px; }
.svc-pkg ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.svc-pkg ul li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--fg);
}
.svc-pkg ul li:last-child { border-bottom: 0; }
.svc-pkg ul li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* FAQ Accordion ----------------------------------------------- */
.svc-faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.svc-faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-xs); transition: border-color .15s;
}
.svc-faq-item:hover { border-color: var(--slate-300); }
.svc-faq-item summary {
  cursor: pointer; padding: 22px 24px;
  font-weight: 600; font-size: 15px; color: var(--fg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; list-style: none;
}
.svc-faq-item summary::-webkit-details-marker { display: none; }
.svc-faq-item summary::after {
  content: ""; width: 22px; height: 22px; flex-shrink: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' x2='12' y1='5' y2='19'/><line x1='5' x2='19' y1='12' y2='12'/></svg>") center/contain no-repeat;
  transition: transform .2s;
}
.svc-faq-item[open] summary::after { transform: rotate(45deg); }
.svc-faq-item .answer {
  padding: 0 24px 22px; color: var(--fg-muted);
  font-size: 14.5px; line-height: 1.75;
}

/* CTA bölümü ---------------------------------------------------- */
.svc-cta {
  background: var(--slate-900); color: #fff;
  border-radius: 22px; padding: 64px 48px;
  text-align: center; position: relative; overflow: hidden;
  margin: 0 auto; max-width: 1100px;
}
.svc-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 50% -10%, rgba(99,102,241,.30), transparent 60%),
    radial-gradient(400px 300px at 50% 110%, rgba(139,92,246,.18), transparent 60%);
}
.svc-cta > * { position: relative; }
.svc-cta .label {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: #c7d2fe; background: rgba(255,255,255,.10);
  padding: 5px 14px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .12em;
  border: 1px solid rgba(255,255,255,.16); margin-bottom: 14px;
}
.svc-cta h2 { font-size: clamp(26px, 3.5vw, 38px); color: #fff; margin: 0 0 14px; }
.svc-cta p { color: var(--slate-300); max-width: 540px; margin: 0 auto 28px; font-size: 15px; line-height: 1.7; }

/* Related Services -------------------------------------------- */
.svc-related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.svc-related-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px;
  color: var(--fg); transition: all .2s ease;
  box-shadow: var(--shadow-xs);
}
.svc-related-card:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-md);
  border-color: var(--slate-300);
}
.svc-related-card .dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.svc-related-card .name { font-size: 13.5px; font-weight: 600; flex: 1; }
.svc-related-card .icon { color: var(--fg-subtle); }

/* Hizmet özel section'lar için ortak yardımcılar -------------- */
.svc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

.svc-pillar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xs); transition: all .25s ease;
}
.svc-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-pillar.featured { border-color: var(--brand); background: linear-gradient(180deg, rgba(99,102,241,.04), var(--surface)); }
.svc-pillar .num-bg {
  position: absolute; top: -8px; right: -8px;
  font-size: 110px; font-weight: 900;
  color: rgba(99,102,241,.05); line-height: 1; pointer-events: none; user-select: none;
}
.svc-pillar .ico-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.svc-pillar h3 { font-size: 17px; font-weight: 700; margin: 0 0 10px; color: var(--fg); }
.svc-pillar > p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin: 0 0 16px; }
.svc-pillar ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.svc-pillar ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--fg-muted);
}
.svc-pillar ul li .dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}

/* Browser/SERP/Dashboard mockup (universal) ------------------- */
.svc-mockup {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md);
}
.svc-mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.svc-mockup-bar > .dot { width: 11px; height: 11px; border-radius: 50%; }
.svc-mockup-bar > .dot.r { background: #ff5f56; }
.svc-mockup-bar > .dot.y { background: #ffbd2e; }
.svc-mockup-bar > .dot.g { background: #27c93f; }
.svc-mockup-bar .url-bar {
  flex: 1; margin: 0 10px; padding: 4px 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; font-size: 11.5px; color: var(--fg-muted);
  font-family: "JetBrains Mono", monospace;
  display: inline-flex; align-items: center; gap: 6px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.svc-mockup-bar .url-tag {
  font-size: 11px; font-weight: 600;
  background: var(--brand-soft); color: var(--brand-text);
  padding: 3px 10px; border-radius: 999px;
}

/* Stat kartları (KPI) ----------------------------------------- */
.svc-kpi-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.svc-kpi {
  padding: 18px 14px; text-align: center;
  border-right: 1px solid var(--border);
}
.svc-kpi:last-child { border-right: 0; }
.svc-kpi .label { font-size: 11px; color: var(--fg-muted); margin-bottom: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.svc-kpi .value { font-size: 20px; font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
.svc-kpi .change {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 11px; font-weight: 600; margin-top: 4px;
}
.svc-kpi .change.up { color: var(--success); }
.svc-kpi .change.down { color: var(--danger); }

.svc-stat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px;
  box-shadow: var(--shadow-xs);
}
.svc-stat-card .num {
  font-size: 28px; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em; line-height: 1.1;
}
.svc-stat-card .lbl-primary { font-size: 12.5px; font-weight: 600; color: var(--brand-text); margin-top: 4px; }
.svc-stat-card .lbl-sub { font-size: 12px; color: var(--fg-muted); margin-top: 2px; line-height: 1.4; }

/* Platform/category card with color accent -------------------- */
.svc-color-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-xs); transition: all .25s ease;
}
.svc-color-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-color-card .color-strip { height: 4px; width: 100%; }
.svc-color-card .body { padding: 22px; }
.svc-color-card .head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.svc-color-card .ico-box {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; flex-shrink: 0;
}
.svc-color-card .name { font-size: 15px; font-weight: 700; color: var(--fg); line-height: 1.2; }
.svc-color-card .tag { font-size: 12px; font-weight: 600; margin-top: 2px; }
.svc-color-card .desc { font-size: 13.5px; color: var(--fg-muted); line-height: 1.6; margin: 0 0 16px; }
.svc-color-card .chips, .svc-color-card .check-list {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.svc-color-card .chips .chip {
  font-size: 11.5px; font-weight: 500;
  padding: 4px 10px; border-radius: 6px;
  border: 1px solid;
}
.svc-color-card .check-list { flex-direction: column; gap: 6px; }
.svc-color-card .check-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--fg-muted);
}
.svc-color-card .check-list li .dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}

/* Funnel layers (meta-ads) ------------------------------------ */
.svc-funnel { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.svc-funnel-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-radius: 14px;
  font-weight: 600; transition: transform .2s;
  border-width: 1px; border-style: solid;
}
.svc-funnel-row:hover { transform: scale(1.02); }
.svc-funnel-row .label { font-size: 13.5px; color: var(--fg); }
.svc-funnel-row .sub { font-size: 11.5px; margin-top: 2px; font-weight: 500; }
.svc-funnel-row .conv { font-size: 18px; font-weight: 800; line-height: 1; }
.svc-funnel-row .conv-lbl { font-size: 11px; color: var(--fg-subtle); }

/* Back-to-services pill --------------------------------------- */
.back-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 8px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--fg-muted); font-size: 13px; font-weight: 500;
  transition: all .2s; margin-bottom: 24px;
}
.back-pill:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-soft); }

@media (max-width: 1024px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-feature-grid, .svc-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .svc-tech-grid, .svc-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .svc-pricing-grid { grid-template-columns: 1fr; }
  .svc-pkg.featured { transform: none; }
  .svc-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .svc-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .svc-feature-grid, .svc-grid-2, .svc-grid-3 { grid-template-columns: 1fr; }
  .svc-tech-grid, .svc-grid-4, .svc-related-grid { grid-template-columns: 1fr; }
  .svc-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .svc-step { grid-template-columns: 1fr; }
  .svc-section { padding: 64px 0; }
  .svc-hero { padding: 60px 0 48px; }
  .svc-cta { padding: 48px 24px; }
}

/* ============================================================
   AUTH — Login & Register split-screen layout
   ============================================================ */
.auth-body {
  margin: 0; min-height: 100vh;
  background: var(--bg);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--fg);
}

.auth-shell {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* SOL — Marka deneyimi paneli */
.auth-aside {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  color: #fff;
  padding: 48px;
  display: flex; flex-direction: column;
  justify-content: center;
}
.auth-aside::before, .auth-aside::after {
  content: ""; position: absolute; pointer-events: none;
}
.auth-aside::before {
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.40), transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
}
.auth-aside::after {
  bottom: -100px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(139,92,246,.30), transparent 70%);
  filter: blur(50px);
  border-radius: 50%;
}
.auth-aside > * { position: relative; z-index: 1; }

.auth-brand {
  position: absolute;
  top: 48px; left: 48px; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff; font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
}
.auth-brand .logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad); display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 24px rgba(99,102,241,.40);
}

.auth-hero { max-width: 480px; width: 100%; }
/* küçük ekranlarda (yükseklikçe) marka çakışmasın diye üst-alt nefes payı */
@media (max-height: 760px) {
  .auth-aside { justify-content: flex-start; padding-top: 110px; padding-bottom: 48px; }
}
.auth-hero h2 {
  color: #fff; font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; line-height: 1.15; letter-spacing: -.025em;
  margin: 0 0 16px;
}
.auth-hero h2 .grad {
  background: linear-gradient(135deg, #c7d2fe, #f9a8d4, #67e8f9);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-hero p {
  color: rgba(255,255,255,.75); font-size: 15.5px;
  line-height: 1.7; margin: 0 0 32px;
}

.auth-features {
  display: grid; gap: 14px;
}
.auth-features .feat {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,.92);
}
.auth-features .feat .check {
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: #c7d2fe; flex-shrink: 0;
}
.auth-features .feat strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.auth-features .feat span.desc { color: rgba(255,255,255,.65); font-size: 13px; }

.auth-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.auth-stats .num {
  font-size: 24px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #fff, #c7d2fe);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -.02em; line-height: 1.1;
}
.auth-stats .lbl { font-size: 12px; color: rgba(255,255,255,.60); margin-top: 4px; }

.auth-testimonial {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px; padding: 20px;
  backdrop-filter: blur(8px);
}
.auth-testimonial .stars { color: #fbbf24; display: inline-flex; gap: 1px; margin-bottom: 10px; }
.auth-testimonial p { color: rgba(255,255,255,.92); font-size: 14px; line-height: 1.6; margin: 0 0 12px; font-style: italic; }
.auth-testimonial .author { display: flex; align-items: center; gap: 10px; }
.auth-testimonial .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 13px;
}
.auth-testimonial strong { color: #fff; font-size: 13px; display: block; }
.auth-testimonial small { color: rgba(255,255,255,.55); font-size: 11.5px; }

/* SAĞ — Form paneli */
.auth-main {
  background: var(--surface);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 88px 48px 48px;
  position: relative;
  min-height: 100vh;
}
.auth-main-top {
  position: absolute;
  top: 32px; left: 48px; right: 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.auth-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--fg-muted); font-size: 13px; font-weight: 500;
  transition: color var(--t-fast);
}
.auth-back-link:hover { color: var(--brand); }
.auth-lang {
  display: inline-flex; gap: 0; padding: 0;
}
.auth-lang a {
  padding: 5px 10px; font-size: 12px; font-weight: 600;
  color: var(--fg-subtle); border-radius: 6px;
  transition: all var(--t-fast);
}
.auth-lang a:hover { color: var(--fg); background: var(--bg-soft); }
.auth-lang a.active { color: var(--fg); }

.auth-form-wrap {
  width: 100%; max-width: 420px;
  margin: 0 auto;
}
.auth-form-wrap.wide { max-width: 460px; }

.auth-head {
  margin-bottom: 36px;
}
.auth-head h1 {
  font-size: 28px; font-weight: 700; letter-spacing: -.02em;
  margin: 0 0 8px; color: var(--fg);
}
.auth-head p {
  font-size: 14.5px; color: var(--fg-muted); margin: 0;
}
.auth-head p a { color: var(--brand); font-weight: 600; }
.auth-head p a:hover { text-decoration: underline; }

/* Form alanları (auth özel) */
.auth-field { margin-bottom: 16px; position: relative; }
.auth-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-field label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--fg); margin-bottom: 6px;
}
.auth-input-wrap { position: relative; }
.auth-input-wrap > .ico-leading {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--fg-subtle); pointer-events: none;
  z-index: 2;
}
.auth-input-wrap input {
  width: 100%; height: 46px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 12px 16px 12px 44px;
  font-size: 14.5px; color: var(--fg);
  font-family: inherit;
  transition: all var(--t-fast);
}
.auth-input-wrap input:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(99,102,241,.12);
}
.auth-input-wrap input::placeholder { color: var(--fg-subtle); }
.auth-input-wrap.has-trailing input { padding-right: 48px; }
.auth-input-wrap .toggle-pwd {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; padding: 0;
  background: transparent; border: 0; border-radius: 8px;
  color: var(--fg-subtle); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.auth-input-wrap .toggle-pwd:hover { color: var(--fg); background: var(--bg-soft); }
.auth-input-wrap .toggle-pwd .eye-off { display: none; }

/* Şifre güç göstergesi */
.strength-meter {
  display: flex; align-items: center; gap: 4px;
  margin-top: 8px;
}
.strength-meter .bars {
  display: flex; gap: 3px; flex: 1;
}
.strength-meter .bar {
  flex: 1; height: 4px; background: var(--bg-soft);
  border-radius: 999px; transition: background-color var(--t-fast);
}
.strength-meter[data-score="1"] .bar:nth-child(-n+1) { background: #ef4444; }
.strength-meter[data-score="2"] .bar:nth-child(-n+2) { background: #f97316; }
.strength-meter[data-score="3"] .bar:nth-child(-n+3) { background: #eab308; }
.strength-meter[data-score="4"] .bar:nth-child(-n+4) { background: #16a34a; }
.strength-meter[data-score="5"] .bar:nth-child(-n+5) { background: #16a34a; }
.strength-meter .label {
  font-size: 11.5px; font-weight: 600;
  color: var(--fg-muted); min-width: 70px; text-align: right;
}

.auth-row {
  display: flex; align-items: center; justify-content: space-between;
  margin: 6px 0 22px; font-size: 13px;
}
.auth-row label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg-muted); cursor: pointer;
  font-weight: 500; margin: 0;
}
.auth-row label input { accent-color: var(--brand); width: 16px; height: 16px; }
.auth-row a { color: var(--brand); font-weight: 600; }
.auth-row a:hover { text-decoration: underline; }

.auth-submit {
  width: 100%; height: 48px;
  background: var(--slate-900); color: #fff;
  border: 0; border-radius: 12px;
  font-size: 14.5px; font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--t-fast);
}
.auth-submit:hover { background: var(--brand); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(99,102,241,.30); }
.auth-submit:disabled { opacity: .55; cursor: not-allowed; }

/* Divider */
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0;
  font-size: 12px; color: var(--fg-subtle);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.auth-divider::before, .auth-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}

/* Sosyal butonlar */
.auth-social { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.auth-social .sb {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 14px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 11px; font-size: 13.5px; font-weight: 500;
  color: var(--fg); transition: all var(--t-fast);
  cursor: pointer; font-family: inherit;
}
.auth-social .sb:hover { border-color: var(--slate-400); background: var(--bg-soft); }

/* Şartlar onay */
.auth-terms {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; color: var(--fg-muted);
  margin: 6px 0 22px; line-height: 1.5;
}
.auth-terms input { accent-color: var(--brand); margin-top: 2px; flex-shrink: 0; }
.auth-terms a { color: var(--brand); font-weight: 600; }
.auth-terms a:hover { text-decoration: underline; }

.auth-foot {
  text-align: center; font-size: 12.5px;
  color: var(--fg-subtle); margin-top: auto;
  padding-top: 24px;
}
.auth-foot a { color: var(--fg-muted); }
.auth-foot a:hover { color: var(--brand); }

/* Flash mesaj */
.auth-flash {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%);
  padding: 12px 20px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg); z-index: 100;
  animation: authFlashIn .35s cubic-bezier(.25,.8,.25,1) both;
}
.auth-flash-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.auth-flash-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
@keyframes authFlashIn {
  from { transform: translate(-50%, -20px); opacity: 0; }
  to   { transform: translate(-50%, 0); opacity: 1; }
}

@media (max-width: 1024px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .auth-main { padding: 80px 24px 32px; }
  .auth-main-top { left: 24px; right: 24px; top: 24px; }
  .auth-form-wrap { margin: 0 auto; }
}
@media (max-width: 480px) {
  .auth-main { padding: 72px 18px 24px; }
  .auth-main-top { left: 18px; right: 18px; top: 18px; }
  .auth-form-wrap { margin: 0 auto; }
  .auth-field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   QUOTE WIZARD — 3-step
   ============================================================ */
.quote-shell {
  background:
    radial-gradient(900px 500px at 80% -20%, rgba(99,102,241,.08), transparent 60%),
    radial-gradient(700px 400px at 0% 30%, rgba(6,182,212,.05), transparent 50%),
    var(--bg-soft);
  padding: 56px 0 96px;
  min-height: 100vh;
}
.quote-head { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.quote-head h1 { font-size: clamp(28px, 4vw, 44px); margin: 14px 0 6px; }
.quote-head p { font-size: 15px; color: var(--fg-muted); margin: 0; }

/* Step indicator */
.step-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin: 32px auto 36px;
  padding: 0; list-style: none; max-width: 540px;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.step .circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700; color: var(--fg-subtle);
  transition: all var(--t-base); position: relative;
}
.step .circle .num,
.step .circle .check {
  position: absolute; transition: all var(--t-base);
}
.step .circle .check { opacity: 0; transform: scale(.6); color: #fff; }
.step.active .circle {
  background: var(--brand); border-color: var(--brand); color: #fff;
  box-shadow: 0 8px 20px rgba(99,102,241,.30);
  transform: scale(1.1);
}
.step.done .circle {
  background: var(--brand); border-color: var(--brand);
}
.step.done .circle .num { opacity: 0; transform: scale(.6); }
.step.done .circle .check { opacity: 1; transform: scale(1); }
.step .label {
  font-size: 13px; font-weight: 500; color: var(--fg-muted);
}
.step.active .label, .step.done .label { color: var(--fg); font-weight: 600; }
.step-line {
  flex: 1; max-width: 80px; height: 2px;
  background: var(--border); border-radius: 2px;
  margin-top: -22px; position: relative; overflow: hidden;
}
.step-line span {
  display: block; height: 100%; width: 0%;
  background: var(--brand); transition: width .4s ease;
}
.step-line.done span { width: 100%; }

/* Grid: özet sol, form sağ */
.quote-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 24px; align-items: start; max-width: 1100px; margin: 0 auto;
}

/* Sol: özet panel */
.quote-summary { position: sticky; top: 84px; }
.qs-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px;
  box-shadow: var(--shadow-xs);
}
.qs-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; margin: 0 0 16px;
  color: var(--fg);
}
.qs-progress { margin-bottom: 18px; }
.qs-progress-bar {
  height: 6px; background: var(--bg-soft); border-radius: 999px; overflow: hidden;
}
.qs-progress-fill {
  height: 100%; background: var(--grad); transition: width .35s ease;
  border-radius: 999px;
}
.qs-progress-text {
  display: block; margin-top: 6px; font-size: 11.5px;
  color: var(--fg-muted); font-weight: 600;
}

.qs-section { margin-top: 14px; }
.qs-label {
  font-size: 10.5px; font-weight: 700; color: var(--fg-subtle);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
}
.qs-pills { display: flex; flex-wrap: wrap; gap: 4px; }
.qs-pills .pill {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-text);
  font-size: 11.5px; font-weight: 600;
  border: 1px solid rgba(99,102,241,.18);
}
.qs-empty { color: var(--fg-subtle); font-size: 13px; font-style: italic; }
.qs-value { font-size: 13.5px; font-weight: 600; color: var(--fg); }

.qs-card hr {
  border: 0; border-top: 1px dashed var(--border-2);
  margin: 18px 0;
}
.qs-promise { display: grid; gap: 8px; }
.qs-promise-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; color: var(--fg-muted);
}
.qs-promise-item .icon { color: var(--success); flex-shrink: 0; margin-top: 1px; }
.qs-promise-item strong { color: var(--fg); }

/* Sağ: form ana */
.quote-main {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-sm); min-height: 500px;
}
.quote-step { display: none; animation: stepFade .25s ease both; }
.quote-step.active { display: block; }
@keyframes stepFade { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: translateX(0); } }

.qm-head { margin-bottom: 26px; }
.qm-head h2 {
  font-size: 22px; font-weight: 700; margin: 0 0 4px;
  letter-spacing: -.01em;
}
.qm-head p { font-size: 14px; color: var(--fg-muted); margin: 0; }

.qm-label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--fg-muted); text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 6px;
}
.qm-label .req { color: var(--brand); }

/* Hizmet seçim grid */
.services-pick-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.service-pick { cursor: pointer; }
.service-pick input { position: absolute; opacity: 0; pointer-events: none; }
.service-pick .sp-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  background: var(--bg-soft);
  border: 1.5px solid var(--bg-soft);
  border-radius: 12px;
  transition: all var(--t-fast);
  position: relative;
}
.service-pick:hover .sp-card { border-color: var(--border-2); background: var(--surface); }
.service-pick input:checked ~ .sp-card {
  background: var(--brand-soft);
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(99,102,241,.15);
}
.sp-check {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--surface); border: 1.5px solid var(--border-2);
  display: grid; place-items: center;
  flex-shrink: 0; transition: all var(--t-fast);
  color: transparent;
}
.service-pick input:checked ~ .sp-card .sp-check {
  background: var(--brand); border-color: var(--brand); color: #fff;
}
.sp-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--surface); color: var(--fg-muted);
  flex-shrink: 0;
}
.service-pick input:checked ~ .sp-card .sp-icon { background: var(--surface); color: var(--brand); }
.sp-content { flex: 1; min-width: 0; }
.sp-title { display: block; font-size: 14px; font-weight: 600; color: var(--fg); }
.sp-desc { display: block; font-size: 12.5px; color: var(--fg-muted); margin-top: 2px; }

/* Pill grid (bütçe + süre) */
.pill-grid {
  display: grid; gap: 10px;
}
.pill-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pill-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pill-pick { cursor: pointer; }
.pill-pick input { position: absolute; opacity: 0; pointer-events: none; }
.pill-pick .pp-card {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 12px 14px;
  background: var(--bg-soft);
  border: 1.5px solid var(--bg-soft);
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: var(--fg);
  transition: all var(--t-fast);
}
.pill-pick:hover .pp-card { border-color: var(--border-2); background: var(--surface); }
.pill-pick input:checked ~ .pp-card {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-text);
  font-weight: 600;
}
.pill-pick input:checked ~ .pp-card .icon { color: var(--brand); }

/* Form alanları */
.quote-main .form-group input,
.quote-main .form-group textarea {
  background: var(--bg-soft);
  border: 1.5px solid var(--bg-soft);
  border-radius: 12px;
  padding: 12px 16px; font-size: 14.5px;
  height: 48px;
}
.quote-main .form-group textarea { height: auto; min-height: 140px; }
.quote-main .form-group input:focus,
.quote-main .form-group textarea:focus {
  background: var(--surface); border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.quote-main .form-group input::placeholder,
.quote-main .form-group textarea::placeholder { color: var(--fg-subtle); }

/* Adım hata mesajı */
.quote-step-error {
  display: none; padding: 12px 16px; margin-top: 16px;
  background: var(--danger-soft); border: 1px solid rgba(220,38,38,.20);
  border-radius: 10px; color: #7f1d1d; font-size: 13.5px;
}
.quote-step-error.visible { display: block; }

/* Aksiyon satırı */
.quote-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 32px;
}
.quote-actions .btn-lg { padding: 12px 28px; height: 48px; border-radius: 12px; }

/* Review (Step 3) */
.review-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.review-cell {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px;
}
.rc-label {
  font-size: 10.5px; font-weight: 700; color: var(--fg-muted);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px;
}
.rc-value {
  font-size: 14.5px; font-weight: 500; color: var(--fg); word-break: break-word;
}
.rc-value.rc-multiline { white-space: pre-wrap; line-height: 1.6; font-weight: 400; }
.rc-value.qs-empty { color: var(--fg-subtle); font-style: italic; font-weight: 400; }
.rc-value.qs-empty::before { content: "—"; }

/* TEŞEKKÜR sayfası */
.thanks-shell {
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(34,197,94,.10), transparent 60%),
    var(--bg-soft);
  padding: 80px 0 100px; min-height: 70vh;
}
.thanks-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 56px 40px;
  box-shadow: var(--shadow-sm);
  max-width: 640px; margin: 0 auto; text-align: center;
}
.thanks-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--success-soft); color: var(--success);
  display: grid; place-items: center; margin: 0 auto 24px;
  animation: thanksPop .5s cubic-bezier(.25,.8,.25,1) both;
}
@keyframes thanksPop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thanks-card h1 { font-size: 30px; margin-bottom: 8px; }
.thanks-card p { font-size: 15px; color: var(--fg-muted); }
.thanks-ref {
  display: inline-block; padding: 12px 20px;
  background: var(--bg-soft); border: 1px dashed var(--border-2);
  border-radius: 10px; margin-top: 18px;
  font-family: "JetBrains Mono", monospace; font-size: 14.5px;
}
.thanks-ref strong { color: var(--brand); }
.thanks-promise {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.thanks-promise-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 13px; color: var(--fg-muted);
}
.thanks-promise-item .icon { color: var(--brand); }
.thanks-promise-item strong { color: var(--fg); font-size: 13.5px; }

@media (max-width: 1024px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-summary { position: relative; top: 0; }
  .services-pick-grid { grid-template-columns: 1fr; }
  .pill-grid-3, .pill-grid-4 { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .thanks-promise { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .step-line { max-width: 30px; }
  .step .label { font-size: 11px; }
  .quote-main { padding: 22px; }
  .pill-grid-3, .pill-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES (index + detail)
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  display: flex; flex-direction: column;
  color: var(--fg); transition: all var(--t-base);
  box-shadow: var(--shadow-xs);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-soft); opacity: 0;
  transition: opacity var(--t-base); pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px); border-color: rgba(99,102,241,.30);
  box-shadow: var(--shadow-md);
}
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 16px;
}
.service-card h3 { font-size: 18px; margin-bottom: 6px; }
.service-tagline { font-size: 14px; color: var(--brand-text); margin-bottom: 10px; font-weight: 500; }
.service-summary { font-size: 14px; color: var(--fg-muted); flex: 1; line-height: 1.6; margin-bottom: 16px; }
.service-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 13px;
}
.service-meta .price strong { color: var(--fg); margin-left: 4px; }
.service-meta .cta {
  color: var(--brand); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}

/* Süreç adımları */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  position: relative;
}
.process-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  position: relative; box-shadow: var(--shadow-xs);
}
.process-step .step-num {
  font-size: 12px; font-weight: 700; color: var(--brand);
  background: var(--brand-soft); padding: 3px 10px; border-radius: 999px;
  display: inline-block; margin-bottom: 12px; letter-spacing: .04em;
}
.process-step h4 { font-size: 16px; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; color: var(--fg-muted); margin: 0; }

/* Service detail */
.service-hero {
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(99,102,241,.10), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 56px;
}
.service-hero-grid {
  display: grid; grid-template-columns: 1.4fr .8fr;
  gap: 40px; align-items: center;
}
.service-hero-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.service-icon-lg {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
}

.service-grid-2 {
  display: grid; grid-template-columns: 1.4fr .8fr;
  gap: 32px; align-items: start;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--fg);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li .icon { color: var(--success); margin-top: 3px; }

@media (max-width: 1024px) {
  .services-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .service-hero-grid, .service-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .services-grid, .process-steps { grid-template-columns: 1fr; }
}
.product-hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: start; }
.gallery .main {
  border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/10;
  background: var(--surface); border: 1px solid var(--border);
}
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; }
.gallery .thumbs button {
  border: 2px solid var(--border); border-radius: 8px;
  overflow: hidden; cursor: pointer; padding: 0; background: transparent;
  aspect-ratio: 16/10; transition: border-color var(--t-fast);
}
.gallery .thumbs button:hover { border-color: var(--slate-400); }
.gallery .thumbs button.active { border-color: var(--brand); }
.gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }

.buy-box {
  position: sticky; top: 90px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-xs);
}
.buy-box .price-block { padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.buy-box .price-block .price { font-size: 32px; font-weight: 800; color: var(--fg); line-height: 1.1; }
.buy-box .price-block .old { color: var(--fg-subtle); text-decoration: line-through; font-size: 16px; margin-right: 8px; }
.buy-box .info-line {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; font-size: 13.5px; color: var(--fg-muted);
}
.buy-box .info-line strong { color: var(--fg); font-weight: 600; }
.buy-box .demo-box {
  margin-top: 16px; padding: 14px; border-radius: 10px;
  background: var(--bg-soft); border: 1px dashed var(--border-2);
  font-size: 13px; color: var(--fg-muted);
}
.buy-box .demo-box code { background: var(--surface); border: 1px solid var(--border); }

.tabs {
  display: flex; gap: 2px; padding: 4px;
  background: var(--bg-soft); border-radius: 10px;
  margin-bottom: 28px; flex-wrap: wrap; width: fit-content;
}
.tabs button {
  padding: 8px 16px; background: transparent;
  border: 0; border-radius: 6px; cursor: pointer;
  color: var(--fg-muted); font-weight: 600;
  font-family: inherit; font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--t-fast);
}
.tabs button:hover { color: var(--fg); }
.tabs button.active { color: var(--fg); background: var(--surface); box-shadow: var(--shadow-xs); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 0; list-style: none; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
}
.feature-list li .ico {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
}
.feature-list li h4 { margin: 0 0 4px; font-size: 14.5px; }
.feature-list li p  { margin: 0; font-size: 13px; color: var(--fg-muted); line-height: 1.55; }

.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.plan-card {
  padding: 28px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); position: relative; box-shadow: var(--shadow-xs);
}
.plan-card.recommended {
  border-color: var(--brand);
  box-shadow: 0 8px 24px rgba(99,102,241,.18);
  transform: translateY(-4px);
}
.plan-card.recommended::before {
  content: "Önerilen"; position: absolute; top: -12px; left: 24px;
  background: var(--grad); padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; color: #fff;
}
.plan-card h4 { font-size: 15px; }
.plan-card .price { font-size: 28px; font-weight: 800; margin: 10px 0 18px; color: var(--fg); }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.plan-card ul li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px; color: var(--fg-muted);
  display: flex; align-items: flex-start; gap: 8px;
}
.plan-card ul li::before {
  content: ""; width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all var(--t-base); display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs); color: var(--fg);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card .cover { aspect-ratio: 16/9; background: var(--grad-soft); }
.blog-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body  { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card .title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.blog-card .meta  {
  font-size: 12px; color: var(--fg-subtle);
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
}

.blog-detail { max-width: 760px; margin: 0 auto; padding: 40px 0; }
.blog-detail h1 { font-size: clamp(26px, 4vw, 40px); }
.blog-detail .cover { border-radius: var(--radius-md); overflow: hidden; margin: 24px 0 32px; box-shadow: var(--shadow-md); }
.blog-detail .content { font-size: 16px; line-height: 1.8; color: var(--fg-muted); }
.blog-detail .content h2 { color: var(--fg); margin-top: 40px; }

/* ============================================================
   CART
   ============================================================ */
.cart-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 24px; align-items: start; }
.cart-list, .summary-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px;
  box-shadow: var(--shadow-xs);
}
.cart-row {
  display: grid; grid-template-columns: 80px 1fr auto auto;
  gap: 16px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-row:last-child { border-bottom: 0; }
.cart-row img { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; }
.qty-input { width: 64px; padding: 6px; text-align: center; }

.cart-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: 0; }
.cart-item-main {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.cart-item-main img { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; }
.cart-item-title { font-weight: 600; color: var(--fg); font-size: 15px; }
.cart-item-domain {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px;
  align-items: center; padding: 12px 14px; margin-top: 12px;
  background: var(--bg-soft); border: 1px dashed var(--border-2);
  border-radius: 10px;
}
.cart-item-domain label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--fg-muted); margin: 0;
}
.cart-item-domain input {
  height: 36px; padding: 6px 12px;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: 8px; font-size: 13px;
}

.summary-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--fg-muted); font-size: 14px; }
.summary-row strong { color: var(--fg); }
.summary-total { font-size: 18px; font-weight: 800; padding-top: 14px; border-top: 1px solid var(--border); margin-top: 10px; color: var(--fg); }
.summary-total strong { color: var(--brand); }

/* ============================================================
   ACCOUNT (Customer Panel)
   ============================================================ */
.account-grid {
  display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start;
}
.account-sidebar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px;
  box-shadow: var(--shadow-xs); position: sticky; top: 84px;
}
.account-user {
  display: flex; align-items: center; gap: 12px;
  padding: 4px 6px 16px; border-bottom: 1px solid var(--border); margin-bottom: 12px;
}
.account-user .avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 12px rgba(99,102,241,.30);
}
.account-user strong { display: block; font-size: 14px; color: var(--fg); }
.account-user small { color: var(--fg-subtle); font-size: 12px; }

.account-nav { list-style: none; padding: 0; margin: 0; }
.account-nav li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13.5px; color: var(--fg-muted);
  transition: all var(--t-fast); margin-bottom: 1px; font-weight: 500;
}
.account-nav li a:hover { background: var(--bg-soft); color: var(--fg); }
.account-nav li a.active {
  background: var(--brand-soft); color: var(--brand-text); font-weight: 600;
}
.account-nav li a.active .icon { color: var(--brand); }
.account-nav li a .icon { color: var(--fg-subtle); transition: color var(--t-fast); }
.account-nav li.divider { height: 1px; background: var(--border); margin: 6px 0; }

.account-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px;
  box-shadow: var(--shadow-xs); margin-bottom: 18px;
}
.account-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.account-card-head h3 { margin: 0; font-size: 15px; }

.stat-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px;
}
.stat-mini {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 18px; box-shadow: var(--shadow-xs);
}
.stat-mini .ico {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand);
}
.stat-mini .label { font-size: 12px; color: var(--fg-muted); font-weight: 500; }
.stat-mini strong { display: block; font-size: 22px; font-weight: 700; color: var(--fg); }

.account-table { width: 100%; border-collapse: collapse; }
.account-table th, .account-table td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 13.5px;
}
.account-table th {
  background: var(--bg-soft); color: var(--fg-muted); font-weight: 600;
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em;
}
.account-table tr:last-child td { border-bottom: 0; }
.account-table tr:hover td { background: var(--bg-soft); }

.status {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 999px;
  font-size: 11.5px; font-weight: 500;
  background: var(--bg-soft); color: var(--fg-muted);
  border: 1px solid var(--border);
}
.status.success { background: var(--success-soft); color: var(--success); border-color: rgba(22,163,74,.18); }
.status.danger  { background: var(--danger-soft);  color: var(--danger);  border-color: rgba(220,38,38,.18); }
.status.warning { background: var(--warning-soft); color: var(--warning); border-color: rgba(234,88,12,.18); }
.status.info    { background: #f0f9ff;  color: #0284c7; border-color: rgba(2,132,199,.18); }

.license-grid { display: grid; gap: 12px; }
.license-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px;
  box-shadow: var(--shadow-xs);
}
.license-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 14px;
}
.license-head h4 { margin: 0; font-size: 15px; }
.license-key {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  background: var(--bg-soft); padding: 12px 14px; border-radius: 8px;
  border: 1px dashed var(--border-2);
}
.license-key code {
  flex: 1; background: transparent; color: var(--brand-text);
  font-size: 13.5px; letter-spacing: 0.04em; word-break: break-all; padding: 0; border: 0;
}
.license-meta {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin-top: 12px; color: var(--fg-subtle); font-size: 13px;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty {
  text-align: center; padding: 64px 24px;
  background: var(--surface); border: 1px dashed var(--border-2);
  border-radius: var(--radius-md);
}
.empty .empty-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-soft); color: var(--fg-subtle);
  display: grid; place-items: center; margin: 0 auto 14px;
}
.empty h3 { font-size: 16px; color: var(--fg); margin-bottom: 6px; }
.empty p  { font-size: 13.5px; color: var(--fg-muted); max-width: 360px; margin: 0 auto 16px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-wrap {
  position: fixed; bottom: 24px; right: 24px; z-index: 1000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  padding: 12px 16px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; min-width: 280px; box-shadow: var(--shadow-lg);
  animation: slideIn .25s ease; color: var(--fg); font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.toast.success { border-color: rgba(22,163,74,.25); }
.toast.error   { border-color: rgba(220,38,38,.25); }
@keyframes slideIn { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ============================================================
   SECTION HEAD UTILITY
   ============================================================ */
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 14px;
}
.section-head h2 { margin: 0; }
.section-head .lead { color: var(--fg-muted); margin-top: 8px; max-width: 600px; }

.tag {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600; background: var(--brand-soft);
  color: var(--brand-text); border: 1px solid rgba(99,102,241,.18);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid, .product-hero-grid, .product-main-grid, .cart-grid, .account-grid { grid-template-columns: 1fr; }
  .buy-box { position: relative; top: 0; }
  .product-banner-grid { grid-template-columns: 1fr; }
  .product-kpis { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumbs { grid-template-columns: repeat(5, 1fr); }
  .features-grid, .products-grid, .blog-grid, .plan-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .account-sidebar { position: relative; top: 0; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-wrap { display: none; }
  .nav-burger { display: inline-flex; }
  .hide-sm { display: none; }
  .brand-name { display: none; }
}
@media (max-width: 720px) {
  .features-grid, .products-grid, .blog-grid, .plan-grid, .testimonial-grid,
  .footer-grid, .stat-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 50px 0 30px; }
  .cta-section { padding: 48px 24px; }
  .stats-band .stats-grid { grid-template-columns: 1fr 1fr; }
  .lang-switch { display: none; }
}

/* ============================================================
   PAGE HERO — küçük varyant (about, contact, blog vb.)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 320px at 80% -10%, rgba(99,102,241,.10), transparent 60%),
    radial-gradient(500px 280px at 0% 30%, rgba(236,72,153,.06), transparent 55%),
    #fafaf9;
  border-bottom: 1px solid rgba(15,23,42,.06);
  padding: 72px 0 56px;
  text-align: center;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -.035em;
  font-weight: 800; margin: 14px auto 18px; max-width: 820px;
  background: linear-gradient(180deg, #0f172a 0%, #334155 60%, #94a3b8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero .lead {
  font-size: 17px; color: var(--fg-muted);
  max-width: 620px; margin: 0 auto; line-height: 1.65;
}

/* ============================================================
   ABOUT — Timeline, Team grid, Values
   ============================================================ */
.about-cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 44px;
}
.about-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 16px; padding: 28px;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.20);
  box-shadow: 0 16px 32px -18px rgba(99,102,241,.20);
}
.about-card .ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.12); color: var(--brand);
  margin-bottom: 16px;
}
.about-card.alt-1 .ico { background: rgba(16,185,129,.12); color: #10b981; }
.about-card.alt-2 .ico { background: rgba(236,72,153,.12); color: #ec4899; }
.about-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.015em; }
.about-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; margin: 0; }

/* Timeline (Hikayemiz) */
.timeline {
  position: relative;
  margin: 40px auto 0; max-width: 720px;
  padding-left: 40px;
}
.timeline::before {
  content: ""; position: absolute;
  left: 11px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, rgba(99,102,241,.30), rgba(236,72,153,.20));
}
.timeline .tl-item {
  position: relative; padding-bottom: 28px;
}
.timeline .tl-item::before {
  content: ""; position: absolute;
  left: -34px; top: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: #fff;
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 4px rgba(99,102,241,.10);
}
.timeline .tl-item:last-child::before { border-color: #ec4899; box-shadow: 0 0 0 4px rgba(236,72,153,.12); }
.timeline .tl-year {
  font-size: 12px; font-weight: 700; color: var(--brand);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 4px;
}
.timeline .tl-title { font-size: 16px; font-weight: 700; margin: 0 0 5px; letter-spacing: -.005em; }
.timeline .tl-desc { font-size: 13.5px; color: var(--fg-muted); line-height: 1.6; margin: 0; }

/* Team grid */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 36px;
}
.team-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px; padding: 22px; text-align: center;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.team-card:hover { transform: translateY(-2px); border-color: rgba(99,102,241,.18); }
.team-card .av {
  width: 76px; height: 76px; border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 24px; letter-spacing: -.02em;
}
.team-card h4 { font-size: 14.5px; font-weight: 700; margin: 0 0 3px; }
.team-card .role {
  font-size: 12px; color: var(--brand); font-weight: 600;
  margin-bottom: 8px;
}
.team-card .bio { font-size: 12px; color: var(--fg-muted); line-height: 1.55; margin: 0; }

/* Brand logos band */
.brands-band { padding: 56px 0; background: var(--bg-soft); border-top: 1px solid rgba(15,23,42,.04); border-bottom: 1px solid rgba(15,23,42,.04); }
.brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  margin-top: 28px;
}
.brand-tile {
  display: flex; align-items: center; justify-content: center;
  height: 64px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 12px;
  font-weight: 700; color: var(--fg-subtle);
  font-size: 13px; letter-spacing: .03em;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.brand-tile:hover { color: var(--fg); border-color: rgba(15,23,42,.12); }

/* ============================================================
   CONTACT — split layout, channels, map
   ============================================================ */
.contact-section { padding: 64px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px;
  align-items: start;
}
.contact-form-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px; padding: 32px;
  box-shadow: 0 8px 24px -16px rgba(15,23,42,.10);
}
.contact-form-card h3 { font-size: 22px; font-weight: 800; margin: 0 0 6px; letter-spacing: -.02em; }
.contact-form-card .lead { font-size: 14px; color: var(--fg-muted); margin: 0 0 22px; }

.contact-side {
  display: grid; gap: 14px;
}
.channel-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: border-color var(--t-fast), transform var(--t-fast);
  color: var(--fg);
}
.channel-card:hover { border-color: rgba(99,102,241,.20); transform: translateY(-1px); }
.channel-card .ico {
  width: 40px; height: 40px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-card.c-brand  .ico { background: rgba(99,102,241,.12); color: var(--brand); }
.channel-card.c-green  .ico { background: rgba(16,185,129,.12); color: #10b981; }
.channel-card.c-pink   .ico { background: rgba(236,72,153,.12); color: #ec4899; }
.channel-card.c-orange .ico { background: rgba(249,115,22,.12); color: #f97316; }
.channel-card .t { font-size: 11.5px; color: var(--fg-subtle); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.channel-card .v { font-size: 15px; font-weight: 700; color: var(--fg); margin-top: 2px; letter-spacing: -.005em; }

.map-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(15,23,42,.06);
  height: 220px;
  background: linear-gradient(135deg, #c7d2fe, #a5b4fc);
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   BLOG — list & detail
   ============================================================ */
.blog-list-section { padding: 56px 0; }
.blog-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-bottom: 32px; padding: 8px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 999px;
}
.blog-filter-bar a {
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--fg-muted);
  transition: all var(--t-fast);
}
.blog-filter-bar a:hover { color: var(--fg); background: var(--bg-soft); }
.blog-filter-bar a.active {
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  font-weight: 600;
}

.blog-featured {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px;
  margin-bottom: 40px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  overflow: hidden;
}
.blog-featured .cover {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c7d2fe, #f9a8d4);
  background-size: cover; background-position: center;
}
.blog-featured .body {
  padding: 32px; display: flex; flex-direction: column; justify-content: center;
}
.blog-featured .badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; color: var(--brand);
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(99,102,241,.10);
  padding: 4px 10px; border-radius: 999px;
  align-self: flex-start; margin-bottom: 14px;
}
.blog-featured h2 {
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; line-height: 1.15;
  letter-spacing: -.02em; margin: 0 0 12px;
}
.blog-featured .excerpt { font-size: 14.5px; color: var(--fg-muted); line-height: 1.65; margin: 0 0 18px; }
.blog-featured .meta { font-size: 12.5px; color: var(--fg-subtle); }
.blog-featured a.read-more { color: var(--brand); font-weight: 600; font-size: 14px; }

.blog-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

/* Blog detail */
.post-detail { padding: 48px 0 64px; }
.post-detail-wrap { max-width: 760px; margin: 0 auto; }
.post-detail .post-meta-top {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-muted); margin-bottom: 18px;
}
.post-detail .post-meta-top .cat {
  font-size: 11px; font-weight: 700; color: var(--brand);
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(99,102,241,.10);
  padding: 3px 10px; border-radius: 999px;
}
.post-detail h1 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  margin: 0 0 20px;
}
.post-detail .post-excerpt {
  font-size: 18px; color: var(--fg-muted); line-height: 1.65;
  margin: 0 0 30px;
}
.post-detail .post-cover {
  aspect-ratio: 16/9; border-radius: 16px;
  overflow: hidden; margin: 0 0 36px;
  background: linear-gradient(135deg, #c7d2fe, #a5b4fc);
  background-size: cover; background-position: center;
}
.post-detail .author-row {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0; border-top: 1px solid rgba(15,23,42,.06); border-bottom: 1px solid rgba(15,23,42,.06);
  margin-bottom: 32px;
}
.post-detail .author-row .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.post-detail .author-row strong { font-size: 13.5px; display: block; }
.post-detail .author-row small { font-size: 12px; color: var(--fg-muted); }
.post-detail .post-share { margin-left: auto; display: inline-flex; gap: 6px; }
.post-detail .post-share a {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--surface); border: 1px solid rgba(15,23,42,.06);
  color: var(--fg-muted);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.post-detail .post-share a:hover { color: var(--brand); border-color: rgba(99,102,241,.20); }

.post-content {
  font-size: 17px; line-height: 1.85; color: var(--fg);
}
.post-content h2 {
  font-size: 26px; font-weight: 800; letter-spacing: -.02em;
  margin: 36px 0 14px;
}
.post-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.post-content p { margin: 0 0 18px; }
.post-content blockquote {
  border-left: 4px solid var(--brand);
  padding: 8px 0 8px 22px;
  font-style: italic; color: var(--fg-muted);
  margin: 24px 0;
}
.post-content a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.post-content code { background: var(--bg-soft); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.post-content ul, .post-content ol { margin: 0 0 18px; padding-left: 22px; }
.post-content li { margin-bottom: 8px; }

.post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 32px 0 0;
}
.post-tag {
  font-size: 12px; padding: 5px 12px; border-radius: 999px;
  background: var(--bg-soft); color: var(--fg-muted);
  border: 1px solid rgba(15,23,42,.06);
}

.related-posts {
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(15,23,42,.06);
}
.related-posts h3 {
  font-size: 22px; font-weight: 800; letter-spacing: -.015em;
  margin: 0 0 22px;
}

/* ============================================================
   TICKET SYSTEM — list, detail, message thread
   ============================================================ */
.ticket-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 20px;
}
.ticket-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
  margin-bottom: 24px;
}
.ts-tile {
  background: var(--surface); border: 1px solid rgba(15,23,42,.06);
  border-radius: 12px; padding: 16px;
}
.ts-tile .lbl { font-size: 11px; color: var(--fg-subtle); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.ts-tile .num { font-size: 26px; font-weight: 800; color: var(--fg); margin-top: 4px; letter-spacing: -.02em; }

.ticket-table {
  background: var(--surface); border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px; overflow: hidden;
}
.ticket-table table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.ticket-table thead th {
  text-align: left; padding: 12px 16px;
  background: var(--bg-soft); color: var(--fg-muted);
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.ticket-table tbody td { padding: 14px 16px; border-bottom: 1px solid rgba(15,23,42,.04); }
.ticket-table tbody tr:last-child td { border-bottom: 0; }
.ticket-table tbody tr:hover { background: var(--bg-soft); }
.ticket-table .ref { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--fg-muted); }
.ticket-table .subj { font-weight: 600; color: var(--fg); }
.ticket-table .subj a { color: inherit; }
.ticket-table .subj a:hover { color: var(--brand); }

.ticket-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em;
}
.ticket-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.ts-open       { background: rgba(99,102,241,.10); color: #6366f1; }
.ts-pending    { background: rgba(245,158,11,.12); color: #d97706; }
.ts-answered   { background: rgba(16,185,129,.12); color: #059669; }
.ts-closed     { background: rgba(100,116,139,.12); color: #475569; }
.ts-priority-low    { background: rgba(100,116,139,.10); color: #475569; }
.ts-priority-normal { background: rgba(59,130,246,.10); color: #2563eb; }
.ts-priority-high   { background: rgba(249,115,22,.12); color: #ea580c; }
.ts-priority-urgent { background: rgba(239,68,68,.12); color: #dc2626; }

/* Ticket detail (thread) */
.ticket-thread { display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start; }
.ticket-main { background: var(--surface); border: 1px solid rgba(15,23,42,.06); border-radius: 14px; overflow: hidden; }
.ticket-head {
  padding: 22px 24px; border-bottom: 1px solid rgba(15,23,42,.06);
  background: var(--bg-soft);
}
.ticket-head h2 { font-size: 20px; font-weight: 800; margin: 0 0 6px; letter-spacing: -.015em; }
.ticket-head .meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12px; color: var(--fg-muted); }
.ticket-head .meta strong { color: var(--fg); }

.ticket-messages { padding: 18px 24px; }
.t-msg {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0;
}
.t-msg + .t-msg { border-top: 1px solid rgba(15,23,42,.04); }
.t-msg .av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #94a3b8, #64748b);
}
.t-msg.is-staff .av { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.t-msg .body { flex: 1; min-width: 0; }
.t-msg .who {
  display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
  font-size: 13px;
}
.t-msg .who strong { font-weight: 700; }
.t-msg .who .role-pill {
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 999px;
  background: rgba(99,102,241,.12); color: var(--brand);
  letter-spacing: .04em; text-transform: uppercase;
}
.t-msg .who .when { font-size: 11.5px; color: var(--fg-subtle); margin-left: auto; }
.t-msg .text { font-size: 14px; line-height: 1.65; color: var(--fg); white-space: pre-wrap; word-wrap: break-word; }

.ticket-reply {
  padding: 18px 24px; border-top: 1px solid rgba(15,23,42,.06); background: var(--bg-soft);
}
.ticket-reply textarea {
  width: 100%; min-height: 120px; resize: vertical;
  background: #fff; border: 1px solid rgba(15,23,42,.10); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; line-height: 1.6;
  font-family: inherit;
}
.ticket-reply textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(99,102,241,.15); }
.ticket-reply .actions { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; gap: 10px; }
.ticket-reply .hint { font-size: 12px; color: var(--fg-subtle); }

/* Ticket sidebar (info card) */
.ticket-side .ts-card {
  background: var(--surface); border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px; padding: 18px; margin-bottom: 14px;
}
.ticket-side .ts-card h4 {
  font-size: 11.5px; font-weight: 700; color: var(--fg-subtle);
  letter-spacing: .06em; text-transform: uppercase; margin: 0 0 10px;
}
.ticket-side .ts-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 13px;
}
.ticket-side .ts-row span { color: var(--fg-muted); }
.ticket-side .ts-row strong { color: var(--fg); }

.ticket-empty {
  text-align: center; padding: 56px 24px;
  background: var(--surface); border: 1px dashed rgba(15,23,42,.10);
  border-radius: 14px;
}
.ticket-empty .ico {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(99,102,241,.10); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ticket-empty h3 { font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.ticket-empty p { font-size: 13.5px; color: var(--fg-muted); margin: 0 0 18px; }

/* Mobil — about/contact/blog/ticket genel responsive */
@media (max-width: 980px) {
  .about-cards-3 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-cards-grid { grid-template-columns: 1fr; }
  .ticket-thread { grid-template-columns: 1fr; }
  .ticket-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-stats { grid-template-columns: 1fr 1fr; }
  .ticket-table thead { display: none; }
  .ticket-table tbody td { display: block; padding: 8px 16px; }
  .ticket-table tbody tr { display: block; padding: 10px 0; border-bottom: 1px solid rgba(15,23,42,.06); }
  .ticket-table tbody tr:last-child { border-bottom: 0; }
}

/* ============================================================
   GLOBAL: Dark mode değişkenleri (data-theme="dark" body)
   ============================================================ */
[data-theme="dark"] {
  --bg: #0b1020;
  --bg-soft: #131a2e;
  --surface: #1a2236;
  --fg: #e2e8f0;
  --fg-muted: #94a3b8;
  --fg-subtle: #64748b;
  --border: rgba(255,255,255,.08);
  --border-2: rgba(255,255,255,.12);
}
[data-theme="dark"] body { background: var(--bg); color: var(--fg); }
[data-theme="dark"] .site-header,
[data-theme="dark"] .hero-launch,
[data-theme="dark"] .page-hero,
[data-theme="dark"] .product-banner {
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(99,102,241,.18), transparent 60%),
    radial-gradient(700px 360px at 0% 20%, rgba(236,72,153,.12), transparent 55%),
    linear-gradient(180deg, #0b1020 0%, #131a2e 100%);
  border-color: var(--border) !important;
}
[data-theme="dark"] .product-banner .product-title { color: #fff; }
[data-theme="dark"] .product-banner .product-tagline,
[data-theme="dark"] .product-banner .product-banner-meta { color: var(--fg-muted); }
[data-theme="dark"] .product-banner .product-banner-meta strong,
[data-theme="dark"] .breadcrumb-line a:hover { color: #fff; }
[data-theme="dark"] .breadcrumb-line { color: var(--fg-muted); }
[data-theme="dark"] .tech-chips .chip {
  background: var(--surface); color: var(--fg-muted); border-color: var(--border);
}
[data-theme="dark"] .product-promises {
  background: var(--surface); border-color: var(--border);
}
[data-theme="dark"] .promise-tile .t { color: #fff; }
[data-theme="dark"] .promise-tile .s { color: var(--fg-muted); }
[data-theme="dark"] .product-banner .cat-tag {
  background: rgba(99,102,241,.18); color: #c7d2fe;
  border-color: rgba(99,102,241,.30);
}
[data-theme="dark"] .product-main,
[data-theme="dark"] .modules-section { background: var(--bg); }
[data-theme="dark"] .gallery-main,
[data-theme="dark"] .gallery-thumbs .thumb { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .reqs-card pre { background: var(--bg-soft); color: var(--fg); border-color: var(--border); }
[data-theme="dark"] .demo-frame { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .demo-frame-bar { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .buy-box { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .buy-box .price { color: #fff; }
[data-theme="dark"] .buy-features .bf-item { color: var(--fg-muted); }
[data-theme="dark"] .buy-summary-row strong { color: #fff; }
[data-theme="dark"] .demo-credentials {
  background: var(--bg-soft); border-color: var(--border);
}
[data-theme="dark"] .demo-credentials code {
  background: var(--surface); color: var(--fg); border-color: var(--border);
}
[data-theme="dark"] .modules-head h2 { color: #fff; }
[data-theme="dark"] .module-card h4 { color: #fff; }
[data-theme="dark"] .tabs button { background: transparent; color: var(--fg-muted); }
[data-theme="dark"] .tabs button:hover { color: #fff; }
[data-theme="dark"] .tabs button.active { background: var(--surface); color: var(--brand); }
[data-theme="dark"] .faq-item summary { color: #fff; }

/* ===== Header — dark mode rafine ===== */
[data-theme="dark"] .site-header {
  background: rgba(11,16,32,.85) !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,.02), 0 8px 24px -16px rgba(0,0,0,.45);
}
[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(11,16,32,.94) !important;
}
[data-theme="dark"] .brand-name {
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="dark"] .nav-links a.active::after {
  background: linear-gradient(90deg, var(--brand), #ec4899);
}

/* Lang switch */
[data-theme="dark"] .lang-switch {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
}
[data-theme="dark"] .lang-switch a {
  color: var(--fg-muted);
}
[data-theme="dark"] .lang-switch a:hover { color: #fff; }
[data-theme="dark"] .lang-switch a.active {
  color: #fff;
  background: rgba(255,255,255,.10);
  box-shadow: none;
}

/* Search & theme toggle & cart icon-btn */
.icon-btn, .theme-toggle, .nav-burger {
  background: transparent !important;
}
[data-theme="dark"] .icon-btn,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .nav-burger {
  color: var(--fg-muted) !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
[data-theme="dark"] .icon-btn:hover,
[data-theme="dark"] .theme-toggle:hover,
[data-theme="dark"] .nav-burger:hover {
  color: #fff !important;
  background: rgba(255,255,255,.06) !important;
  border-color: var(--border-2) !important;
  box-shadow: none !important;
}
[data-theme="dark"] .icon-btn .badge-dot {
  border-color: var(--bg);
}

/* Mobile burger (varsa) */
[data-theme="dark"] .nav-burger { color: var(--fg-muted); }
[data-theme="dark"] .nav-burger:hover { color: #fff; }

/* Outline butonu (Giriş Yap) */
[data-theme="dark"] .btn-outline {
  background: transparent; color: var(--fg);
  border-color: var(--border-2);
}
[data-theme="dark"] .btn-outline:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--border-2);
}

/* User menu chip & dropdown */
[data-theme="dark"] .user-chip {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--fg);
}
[data-theme="dark"] .user-chip:hover { background: rgba(255,255,255,.08); }
[data-theme="dark"] .user-dropdown {
  background: var(--surface); border-color: var(--border);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.55);
}
[data-theme="dark"] .user-dropdown a { color: var(--fg-muted); }
[data-theme="dark"] .user-dropdown a:hover { background: rgba(255,255,255,.04); color: #fff; }
[data-theme="dark"] .user-dropdown-head { border-color: var(--border); }
[data-theme="dark"] .user-dropdown-head strong { color: #fff; }

/* Notification dropdown */
[data-theme="dark"] .notif-dropdown { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .notif-head { background: var(--bg-soft); border-color: var(--border); }
[data-theme="dark"] .notif-head strong { color: #fff; }
[data-theme="dark"] .notif-item { border-color: rgba(255,255,255,.04); }
[data-theme="dark"] .notif-item:hover { background: rgba(255,255,255,.04); }
[data-theme="dark"] .notif-item.unread { background: rgba(99,102,241,.10); }
[data-theme="dark"] .notif-item .t { color: #fff; }
[data-theme="dark"] .notif-item .ico {
  background: rgba(99,102,241,.18); color: #c7d2fe;
}

/* Mega menu */
[data-theme="dark"] .mega-menu {
  background: var(--surface); border-color: var(--border);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,.55);
}
[data-theme="dark"] .mega-menu::before { border-bottom-color: var(--surface); filter: drop-shadow(0 -1px 0 var(--border)); }
[data-theme="dark"] .mega-item:hover { background: rgba(255,255,255,.04); }
[data-theme="dark"] .mega-name { color: #fff; }
[data-theme="dark"] .mega-desc { color: var(--fg-muted); }
[data-theme="dark"] .mega-foot { background: var(--bg-soft); border-color: var(--border); color: var(--fg-muted); }

/* ===== Search overlay & modal — dark mode ===== */
[data-theme="dark"] .search-overlay {
  background: rgba(0,0,0,.65);
}
[data-theme="dark"] .search-modal {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  box-shadow: 0 24px 64px -12px rgba(0,0,0,.65) !important;
}
[data-theme="dark"] .search-input-row {
  border-bottom-color: var(--border) !important;
}
[data-theme="dark"] .search-input-row input {
  color: #fff;
}
[data-theme="dark"] .search-input-row input::placeholder { color: var(--fg-subtle); }
[data-theme="dark"] .search-input-row .search-icon { color: var(--fg-muted); }
[data-theme="dark"] .search-esc {
  background: rgba(255,255,255,.06);
  border-color: var(--border-2);
  color: var(--fg-muted);
}
[data-theme="dark"] .search-result-item { color: var(--fg); }
[data-theme="dark"] .search-result-item:hover { background: rgba(255,255,255,.04); }
[data-theme="dark"] .search-result-item .t { color: #fff; }
[data-theme="dark"] .search-group-title { color: var(--fg-subtle); }
[data-theme="dark"] .search-empty { color: var(--fg-muted); }

/* ===== Cookie banner — dark mode ===== */
[data-theme="dark"] .cookie-banner {
  background: var(--surface) !important;
  border-color: var(--border);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,.6);
}
[data-theme="dark"] .cb-text strong { color: #fff; }
[data-theme="dark"] .cb-text { color: var(--fg-muted); }

/* ===== Toast (window.toast()) — dark mode ===== */
[data-theme="dark"] .toast {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
}
[data-theme="dark"] .stats-strip,
[data-theme="dark"] .tech-marquee,
[data-theme="dark"] .blog-strip,
[data-theme="dark"] .why-section,
[data-theme="dark"] .process-section,
[data-theme="dark"] .brands-band { background: var(--bg-soft); }
[data-theme="dark"] .product-card-wrap,
[data-theme="dark"] .why-card,
[data-theme="dark"] .module-card,
[data-theme="dark"] .module-card,
[data-theme="dark"] .bs-card,
[data-theme="dark"] .tm-card,
[data-theme="dark"] .about-card,
[data-theme="dark"] .promise-tile,
[data-theme="dark"] .stats-strip,
[data-theme="dark"] .ts-tile,
[data-theme="dark"] .ts-card,
[data-theme="dark"] .channel-card,
[data-theme="dark"] .ticket-table,
[data-theme="dark"] .ticket-main,
[data-theme="dark"] .blog-filter-bar,
[data-theme="dark"] .product-card,
[data-theme="dark"] .feature-card { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .hl-pill,
[data-theme="dark"] .nav-links li.has-mega .mega-menu { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .hl-title { background: linear-gradient(180deg, #fff 0%, #cbd5e1 60%, #64748b 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
[data-theme="dark"] .text-muted, [data-theme="dark"] .nav-links a { color: var(--fg-muted); }
[data-theme="dark"] .nav-links a:hover { color: #fff; }
[data-theme="dark"] .stats-strip .stats-grid > div + div::before,
[data-theme="dark"] .ticket-table tbody td,
[data-theme="dark"] .post-content,
[data-theme="dark"] .post-detail .author-row { border-color: var(--border); }
[data-theme="dark"] input, [data-theme="dark"] textarea, [data-theme="dark"] select {
  background: var(--surface); color: var(--fg); border-color: var(--border-2);
}
[data-theme="dark"] .hl-pill .badge { background: rgba(99,102,241,.18); }

/* Theme toggle button (header) */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; color: var(--fg-muted);
  background: transparent; cursor: pointer;
  transition: all var(--t-fast);
}
.theme-toggle:hover {
  color: var(--brand); background: var(--surface);
  border-color: rgba(15,23,42,.06);
}
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: inline-flex; }
[data-theme="dark"] .theme-toggle .sun { display: inline-flex; }
[data-theme="dark"] .theme-toggle .moon { display: none; }

/* ============================================================
   A — UX POLISH
   ============================================================ */

/* Scroll-triggered fade-in */
.fade-up {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger gecikmeleri */
.fade-up.delay-1 { transition-delay: .08s; }
.fade-up.delay-2 { transition-delay: .16s; }
.fade-up.delay-3 { transition-delay: .24s; }
.fade-up.delay-4 { transition-delay: .32s; }

/* Skeleton loading */
.skeleton {
  display: inline-block;
  background: linear-gradient(90deg, var(--bg-soft) 25%, rgba(99,102,241,.05) 50%, var(--bg-soft) 75%);
  background-size: 200% 100%;
  animation: skeleton-shine 1.4s ease-in-out infinite;
  border-radius: 6px;
}
@keyframes skeleton-shine {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; padding: 0;
}
.skeleton-card .img { aspect-ratio: 16/10; background: var(--bg-soft); animation: skeleton-shine 1.4s ease-in-out infinite; background-size: 200% 100%;
  background-image: linear-gradient(90deg, var(--bg-soft) 25%, rgba(99,102,241,.05) 50%, var(--bg-soft) 75%); }
.skeleton-card .body { padding: 16px; display: grid; gap: 8px; }
.skeleton-card .body .l1 { height: 14px; width: 60%; }
.skeleton-card .body .l2 { height: 12px; width: 90%; }
.skeleton-card .body .l3 { height: 12px; width: 40%; }

/* Sticky CTA bar (alt, mobil özellikle) */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px -12px rgba(15,23,42,.18);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sticky-cta.is-shown { transform: translateY(0); }
.sticky-cta .info { font-size: 13px; color: var(--fg-muted); flex: 1; min-width: 0; }
.sticky-cta .info strong { color: var(--fg); display: block; font-size: 14px; }
.sticky-cta .actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.sticky-cta .close-btn {
  background: transparent; border: 0; color: var(--fg-subtle);
  width: 30px; height: 30px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}

/* Reading progress bar (blog detay) */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 99;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  width: 0%;
  transition: width .15s ease-out;
  box-shadow: 0 1px 6px rgba(99,102,241,.40);
}

/* Page transition (overlay fade) */
.page-transition-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--surface);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.page-transition-overlay.is-active { opacity: 1; pointer-events: auto; }

/* Count-up sayılar — initial state */
[data-count] { display: inline-block; font-variant-numeric: tabular-nums; }

/* ============================================================
   B — MOBILE
   ============================================================ */

/* Bottom navigation (sadece mobil) */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  justify-content: space-around;
  box-shadow: 0 -4px 16px -8px rgba(15,23,42,.10);
}
.bottom-nav a {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 6px 12px; border-radius: 10px;
  font-size: 10.5px; font-weight: 600; color: var(--fg-muted);
  transition: color var(--t-fast), background var(--t-fast);
  min-width: 56px;
}
.bottom-nav a:hover, .bottom-nav a.active {
  color: var(--brand); background: var(--bg-soft);
}
.bottom-nav a .icon { font-size: 20px; line-height: 1; }
.bottom-nav .badge-dot {
  position: absolute; top: 2px; right: 14px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #ec4899;
}

/* Bottom sheet (mobile filtreler vs.) */
.bottom-sheet {
  position: fixed; left: 0; right: 0; bottom: -100%;
  background: var(--surface); z-index: 95;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -16px 48px -8px rgba(15,23,42,.25);
  transition: bottom .35s cubic-bezier(.25,.8,.25,1);
  padding: 8px 16px 24px;
  max-height: 88vh; overflow-y: auto;
}
.bottom-sheet.is-open { bottom: 0; }
.bottom-sheet::before {
  content: ""; display: block; width: 40px; height: 4px;
  background: var(--border-2); border-radius: 999px;
  margin: 0 auto 12px;
}
.bottom-sheet-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.45);
  z-index: 94; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.bottom-sheet-backdrop.is-open { opacity: 1; pointer-events: auto; }

@media (max-width: 768px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: 64px; }
  .sticky-cta { bottom: 64px; }
}

/* ============================================================
   C — FORM POLISH
   ============================================================ */

/* Custom switch */
.switch {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
}
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch .track {
  position: relative; width: 42px; height: 24px;
  background: var(--border-2); border-radius: 999px;
  transition: background .2s ease;
  flex-shrink: 0;
}
.switch .track::after {
  content: ""; position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 2px 4px rgba(15,23,42,.18);
  transition: transform .2s ease;
}
.switch input:checked + .track { background: var(--brand); }
.switch input:checked + .track::after { transform: translateX(18px); }
.switch input:focus-visible + .track { box-shadow: 0 0 0 3px rgba(99,102,241,.25); }
.switch .label { font-size: 13.5px; color: var(--fg); }

/* Custom checkbox */
.check {
  position: relative; display: inline-flex; align-items: center; gap: 9px;
  cursor: pointer; user-select: none; font-size: 13.5px;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check .box {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid var(--border-2); background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s ease; flex-shrink: 0;
}
.check input:checked + .box {
  background: var(--brand); border-color: var(--brand);
}
.check input:checked + .box::after {
  content: ""; width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.check input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(99,102,241,.25); }

/* Drag-drop file upload */
.dropzone {
  border: 2px dashed var(--border-2);
  border-radius: 14px; padding: 32px 24px;
  text-align: center;
  background: var(--bg-soft);
  transition: all .2s ease;
  cursor: pointer;
}
.dropzone:hover, .dropzone.is-dragover {
  border-color: var(--brand);
  background: rgba(99,102,241,.04);
}
.dropzone .ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(99,102,241,.12); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.dropzone strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.dropzone small { color: var(--fg-muted); font-size: 12px; }
.dropzone input[type="file"] { display: none; }
.dropzone .preview {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px; margin-top: 14px;
}
.dropzone .preview img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--border);
}

/* Auto-save indicator */
.autosave-indicator {
  position: fixed; bottom: 16px; right: 16px; z-index: 95;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px;
  font-size: 11.5px; color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 12px -6px rgba(15,23,42,.18);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s;
}
.autosave-indicator.is-shown { opacity: 1; transform: translateY(0); }
.autosave-indicator .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10b981;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
.autosave-indicator.saved .dot { animation: none; }
@keyframes pulse-dot { 0%,100% {opacity:.4} 50% {opacity:1} }

/* Real-time validation */
.field-validate {
  position: relative;
}
.field-validate input { padding-right: 36px; }
.field-validate .v-icon {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  opacity: 0; transition: opacity .2s ease;
}
.field-validate.is-valid .v-icon { opacity: 1; background: #10b98120; color: #10b981; }
.field-validate.is-invalid .v-icon { opacity: 1; background: #dc262620; color: #dc2626; }
.field-validate.is-valid input { border-color: rgba(16,185,129,.40); }
.field-validate.is-invalid input { border-color: rgba(220,38,38,.40); }
.field-validate .v-msg {
  font-size: 11.5px; color: #dc2626; margin-top: 4px;
  display: none;
}
.field-validate.is-invalid .v-msg { display: block; }

/* ============================================================
   D — GÖRSEL ZENGİNLEŞTİRME
   ============================================================ */

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,23,42,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 86vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 32px 64px -8px rgba(0,0,0,.6);
}
.lightbox .close, .lightbox .nav {
  position: absolute; background: rgba(255,255,255,.10);
  color: #fff; border: 0; width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; backdrop-filter: blur(8px);
  transition: background .15s ease;
}
.lightbox .close:hover, .lightbox .nav:hover { background: rgba(255,255,255,.20); }
.lightbox .close { top: 24px; right: 24px; }
.lightbox .nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600;
  background: rgba(0,0,0,.40); padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* 3D mockup wrapper */
.mockup-3d {
  position: relative;
  perspective: 1200px;
  margin: 0 auto;
  max-width: 720px;
}
.mockup-3d .frame {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border-radius: 14px 14px 4px 4px;
  padding: 8px 8px 0;
  box-shadow:
    0 32px 80px -12px rgba(15,23,42,.40),
    0 16px 40px -8px rgba(99,102,241,.25),
    inset 0 1px 0 rgba(255,255,255,.10);
  transform: rotateX(8deg) translateZ(0);
  transition: transform .35s ease;
}
.mockup-3d:hover .frame { transform: rotateX(4deg) translateZ(0) scale(1.02); }
.mockup-3d .frame .bar {
  display: flex; gap: 6px; padding: 8px 12px;
}
.mockup-3d .frame .bar span {
  width: 10px; height: 10px; border-radius: 50%; background: #475569;
}
.mockup-3d .frame .bar span:nth-child(1) { background: #ef4444; }
.mockup-3d .frame .bar span:nth-child(2) { background: #f59e0b; }
.mockup-3d .frame .bar span:nth-child(3) { background: #10b981; }
.mockup-3d .frame img,
.mockup-3d .frame .body {
  width: 100%; display: block;
  border-radius: 6px;
  background: var(--surface);
}

/* ============================================================
   E — PAZARLAMA MİKROSU
   ============================================================ */

/* Müşteri rozetleri */
.badges-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.badge-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11.5px; font-weight: 600;
  color: var(--fg-muted);
}
.badge-chip.is-earned {
  background: rgba(99,102,241,.10); color: var(--brand);
  border-color: rgba(99,102,241,.20);
}
.badge-chip.is-earned.gold {
  background: rgba(245,158,11,.10); color: #d97706;
  border-color: rgba(245,158,11,.20);
}
.badge-chip.is-locked { opacity: .55; }
.badge-chip .ico { font-size: 14px; }

/* Countdown timer */
.countdown {
  display: inline-flex; gap: 6px; align-items: center;
  font-variant-numeric: tabular-nums;
}
.countdown .seg {
  background: var(--surface); border: 1px solid var(--border);
  padding: 6px 10px; border-radius: 8px;
  font-size: 16px; font-weight: 800;
  color: var(--fg); letter-spacing: -.02em;
  min-width: 42px; text-align: center;
}
.countdown .sep { color: var(--fg-subtle); font-weight: 700; }
.countdown.is-urgent .seg { background: rgba(220,38,38,.08); color: #dc2626; border-color: rgba(220,38,38,.20); }

/* ============================================================
   F — TEMA: Hero gradient çeşitliliği (her bölümde farklı)
   ============================================================ */
.bg-grad-mor    { background: radial-gradient(700px 320px at 80% -10%, rgba(99,102,241,.10), transparent 60%), #fafaf9; }
.bg-grad-mavi   { background: radial-gradient(700px 320px at 80% -10%, rgba(6,182,212,.10), transparent 60%), #fafaf9; }
.bg-grad-yesil  { background: radial-gradient(700px 320px at 80% -10%, rgba(16,185,129,.10), transparent 60%), #fafaf9; }
.bg-grad-pembe  { background: radial-gradient(700px 320px at 80% -10%, rgba(236,72,153,.10), transparent 60%), #fafaf9; }
.bg-grad-turun  { background: radial-gradient(700px 320px at 80% -10%, rgba(249,115,22,.10), transparent 60%), #fafaf9; }

/* Reduced motion: tüm animasyonları pas geç */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   BLOG — Modern v2
   ============================================================ */

/* Üst search + filter bar */
.blog-toolbar {
  display: grid; grid-template-columns: 1fr auto;
  gap: 14px; align-items: center;
  margin-bottom: 28px;
}
.blog-search {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  padding: 4px 4px 4px 16px;
  display: flex; align-items: center; gap: 10px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.blog-search:focus-within {
  border-color: rgba(99,102,241,.40);
  box-shadow: 0 0 0 4px rgba(99,102,241,.08);
}
.blog-search .ico { color: var(--fg-subtle); }
.blog-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-size: 14px; padding: 8px 0; color: var(--fg);
  font-family: inherit;
}
.blog-search input::placeholder { color: var(--fg-subtle); }
.blog-search button {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; border: 0; padding: 8px 18px;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  cursor: pointer;
}

.blog-tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 999px;
}
.blog-tabs a {
  padding: 7px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500; color: var(--fg-muted);
  white-space: nowrap;
  transition: all var(--t-fast);
}
.blog-tabs a:hover { color: var(--fg); }
.blog-tabs a.active {
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  font-weight: 600;
}
.blog-tabs a .count {
  font-size: 10.5px; opacity: .7; margin-left: 4px;
  font-variant-numeric: tabular-nums;
}

/* Featured (büyük hero kart) */
.blog-hero-card {
  position: relative; display: block;
  border-radius: 22px; overflow: hidden;
  margin-bottom: 36px;
  min-height: 380px;
  color: #fff;
  background: #0f172a;
  isolation: isolate;
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.blog-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 64px -24px rgba(15,23,42,.40);
}
.blog-hero-card .cover {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  transition: transform var(--t-base);
}
.blog-hero-card:hover .cover { transform: scale(1.04); }
.blog-hero-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(15,23,42,0) 30%, rgba(15,23,42,.55) 70%, rgba(15,23,42,.92) 100%),
    linear-gradient(135deg, rgba(99,102,241,.20) 0%, transparent 50%);
}
.blog-hero-card .body {
  position: relative; z-index: 2;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 380px;
}
.blog-hero-card .badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 11px; font-weight: 700;
  color: #fff; letter-spacing: .06em; text-transform: uppercase;
  align-self: flex-start; margin-bottom: 16px;
}
.blog-hero-card h2 {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 800; line-height: 1.12; letter-spacing: -.025em;
  margin: 0 0 14px; color: #fff;
  max-width: 720px;
}
.blog-hero-card .excerpt {
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,.82);
  max-width: 640px; margin: 0 0 18px;
}
.blog-hero-card .meta-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.75);
}
.blog-hero-card .author {
  display: inline-flex; align-items: center; gap: 8px;
}
.blog-hero-card .author-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  border: 2px solid rgba(255,255,255,.20);
}
.blog-hero-card .meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.30);
}

/* Grid kartları v2 — daha zengin */
.blog-grid-v2 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.bs-card-v2 {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none; color: var(--fg);
}
.bs-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.20);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,.18);
}
.bs-card-v2 .cover {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background-size: cover; background-position: center;
}
.bs-card-v2 .cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,.20));
  opacity: 0; transition: opacity var(--t-fast);
}
.bs-card-v2:hover .cover::after { opacity: 1; }
.bs-card-v2 .cat-pill {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 10.5px; font-weight: 700;
  color: var(--brand); letter-spacing: .06em; text-transform: uppercase;
  z-index: 2;
}
.bs-card-v2 .body {
  padding: 18px 18px 16px;
  flex: 1; display: flex; flex-direction: column;
}
.bs-card-v2 h3 {
  font-size: 16px; font-weight: 700; line-height: 1.35;
  margin: 0 0 8px; letter-spacing: -.005em; color: var(--fg);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.bs-card-v2 .excerpt {
  font-size: 13px; color: var(--fg-muted); line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; flex: 1;
}
.bs-card-v2 .footer-row {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid rgba(15,23,42,.04);
  font-size: 11.5px; color: var(--fg-subtle);
}
.bs-card-v2 .footer-row .author-av {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.bs-card-v2 .footer-row .author-name { color: var(--fg); font-weight: 600; }
.bs-card-v2 .footer-row .dot {
  width: 3px; height: 3px; border-radius: 50%; background: var(--fg-subtle);
  flex-shrink: 0;
}

/* Cover yoksa renkli gradient fallback */
.bs-card-v2 .cover.no-img,
.blog-hero-card .cover.no-img {
  background: linear-gradient(135deg, var(--gx-1, #6366f1) 0%, var(--gx-2, #ec4899) 100%);
}
.bs-card-v2 .cover.no-img::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,.10), transparent 50%);
}

/* Sonuç sayısı + sıralama */
.blog-results-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  font-size: 13px; color: var(--fg-muted);
}
.blog-results-bar strong { color: var(--fg); }

/* Boş durum */
.blog-empty-state {
  text-align: center; padding: 64px 24px;
  background: var(--surface);
  border: 1px dashed rgba(15,23,42,.10);
  border-radius: 18px;
}
.blog-empty-state .ico {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(99,102,241,.10); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.blog-empty-state h3 { font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.blog-empty-state p { font-size: 14px; color: var(--fg-muted); margin: 0; }

@media (max-width: 980px) {
  .blog-toolbar { grid-template-columns: 1fr; }
  .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .blog-hero-card { min-height: 320px; }
  .blog-hero-card .body { padding: 26px; min-height: 320px; }
}
@media (max-width: 600px) {
  .blog-grid-v2 { grid-template-columns: 1fr; }
  .blog-hero-card h2 { font-size: 22px; }
}

/* Dark mode */
[data-theme="dark"] .blog-search { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .blog-search input { color: #fff; }
[data-theme="dark"] .blog-tabs { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .blog-tabs a { color: var(--fg-muted); }
[data-theme="dark"] .blog-tabs a:hover { color: #fff; }
[data-theme="dark"] .bs-card-v2 { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .bs-card-v2 h3 { color: #fff; }
[data-theme="dark"] .bs-card-v2 .footer-row { border-top-color: var(--border); }
[data-theme="dark"] .bs-card-v2 .footer-row .author-name { color: #fff; }
[data-theme="dark"] .bs-card-v2 .cat-pill { background: rgba(255,255,255,.92); color: var(--brand); }
[data-theme="dark"] .blog-empty-state { background: var(--surface); border-color: var(--border-2); }

/* ============================================================
   PRO PACK — Mesh + Noise + Display Type + Bento + Motion
   ============================================================ */

/* ---- A4 Tipografi yükseltmesi: Display family + Mono italic accent ---- */
:root {
  --font-display: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, "SF Mono", Menlo, monospace;
}
h1, h2, h3, .display, .hl-title, .section-title, .page-hero h1 {
  font-family: var(--font-display);
  font-feature-settings: "ss01","cv02","cv03","cv11";
  letter-spacing: -0.030em;
}
.display-mono-i,
.section-title em, .hl-title em, h1 em, h2 em {
  /* Aynı font, aynı style — sadece brand gradient */
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  background: linear-gradient(135deg, #6366f1, #8b5cf6 50%, #ec4899);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding: 0;
}

/* ---- A1 Mesh gradient utility ---- */
.mesh-bg {
  position: relative; isolation: isolate;
  background-color: var(--bg);
  overflow: hidden;
}
.mesh-bg::before {
  content: ""; position: absolute; inset: -10%;
  background:
    radial-gradient(45% 35% at 18% 15%, rgba(99,102,241,.18), transparent 65%),
    radial-gradient(38% 30% at 82% 22%, rgba(236,72,153,.14), transparent 65%),
    radial-gradient(50% 40% at 50% 92%, rgba(6,182,212,.16), transparent 70%),
    radial-gradient(28% 22% at 88% 80%, rgba(245,158,11,.10), transparent 70%);
  filter: blur(40px) saturate(120%);
  opacity: .92; z-index: -2; pointer-events: none;
  animation: meshDrift 24s ease-in-out infinite alternate;
}
.mesh-bg::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px; opacity: .035; mix-blend-mode: overlay;
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.04); }
  100% { transform: translate3d(-1%, 2%, 0) scale(1.02); }
}
[data-theme="dark"] .mesh-bg::before {
  background:
    radial-gradient(45% 35% at 18% 15%, rgba(99,102,241,.34), transparent 65%),
    radial-gradient(38% 30% at 82% 22%, rgba(236,72,153,.22), transparent 65%),
    radial-gradient(50% 40% at 50% 92%, rgba(6,182,212,.22), transparent 70%),
    radial-gradient(28% 22% at 88% 80%, rgba(245,158,11,.16), transparent 70%);
  opacity: .85;
}
[data-theme="dark"] .mesh-bg::after { opacity: .06; }
@media (prefers-reduced-motion: reduce) {
  .mesh-bg::before { animation: none; }
}
.mesh-soft::before {
  background:
    radial-gradient(40% 32% at 20% 25%, rgba(99,102,241,.10), transparent 65%),
    radial-gradient(35% 28% at 80% 75%, rgba(6,182,212,.10), transparent 65%);
  opacity: 1;
}
[data-theme="dark"] .mesh-soft::before {
  background:
    radial-gradient(40% 32% at 20% 25%, rgba(99,102,241,.20), transparent 65%),
    radial-gradient(35% 28% at 80% 75%, rgba(6,182,212,.18), transparent 65%);
}
.noise-overlay { position: relative; }
.noise-overlay::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px; opacity: .03; mix-blend-mode: overlay;
}

/* ---- A2 Bento Grid System ---- */
.bento-section { padding: 88px 0; }
.bento-section .head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.bento-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 230px; gap: 16px;
}
.bento-cell {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px; padding: 22px;
  overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
/* Alt'a yapışacak rozet/metric sırası için yardımcı */
.bento-cell .bottom-row { margin-top: auto; }
.bento-cell:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,.20);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,.18);
}
.bento-cell .ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,.10); color: var(--brand); margin-bottom: 14px;
}
.bento-cell h3 {
  font-size: 18px; font-weight: 700; line-height: 1.25;
  margin: 0 0 8px; letter-spacing: -.01em;
}
.bento-cell p { font-size: 13.5px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.bento-cell .glow {
  position: absolute; inset: -1px; z-index: -1;
  background: radial-gradient(60% 50% at 100% 0%, rgba(99,102,241,.20), transparent 60%);
  opacity: 0; transition: opacity var(--t-base);
}
.bento-cell:hover .glow { opacity: 1; }
.bento-cell.col-2 { grid-column: span 2; }
.bento-cell.col-3 { grid-column: span 3; }
.bento-cell.col-4 { grid-column: span 4; }
.bento-cell.col-6 { grid-column: span 6; }
.bento-cell.row-2 { grid-row: span 2; }
.bento-cell.feature {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff; border-color: transparent;
}
.bento-cell.feature h3 { color: #fff; }
.bento-cell.feature p { color: rgba(255,255,255,.72); }
.bento-cell.feature .ico { background: rgba(255,255,255,.14); color: #fff; }
.bento-cell.feature::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 30% at 80% 10%, rgba(99,102,241,.40), transparent 60%),
    radial-gradient(40% 30% at 10% 90%, rgba(236,72,153,.30), transparent 60%);
}
.bento-cell.gradient {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  color: #fff; border-color: transparent;
}
.bento-cell.gradient h3, .bento-cell.gradient p { color: #fff; }
.bento-cell.gradient p { color: rgba(255,255,255,.85); }
.bento-cell.gradient .ico { background: rgba(255,255,255,.20); color: #fff; }
.bento-visual {
  position: relative; height: 100%; min-height: 120px;
  margin-top: 14px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(99,102,241,.06), rgba(236,72,153,.04));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.bento-visual.dot-grid {
  background-image: radial-gradient(circle, rgba(99,102,241,.18) 1px, transparent 1px);
  background-size: 14px 14px;
}
.bento-cell .metric-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800; line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 6px 0 4px;
}
.bento-cell .metric-label {
  font-size: 12px; color: var(--fg-muted); font-weight: 500; letter-spacing: .02em;
}
[data-theme="dark"] .bento-cell { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .bento-cell h3 { color: #fff; }
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
  .bento-cell.col-3 { grid-column: span 2; }
  .bento-cell.col-4 { grid-column: span 4; }
  .bento-cell.col-6 { grid-column: span 4; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 12px; }
  .bento-cell, .bento-cell.col-2, .bento-cell.col-3, .bento-cell.col-4, .bento-cell.col-6 {
    grid-column: span 2;
  }
  .bento-cell.row-2 { grid-row: auto; }
}

/* ---- C1 Custom cursor follower ---- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate3d(-50%, -50%, 0); will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); opacity: 0;
  transition: width .18s ease, height .18s ease, background .18s ease, opacity .18s ease;
}
.cursor-ring {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid rgba(99,102,241,.55); opacity: 0;
  transition: width .25s cubic-bezier(.4,0,.2,1), height .25s cubic-bezier(.4,0,.2,1),
              border-color .25s ease, opacity .25s ease, transform .12s linear;
}
body.cursor-active .cursor-dot, body.cursor-active .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(99,102,241,.85);
  background: rgba(99,102,241,.06);
}
body.cursor-press .cursor-ring {
  width: 26px; height: 26px; background: rgba(99,102,241,.18);
}
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ---- C3 Magnetic button ---- */
.btn-magnetic {
  position: relative;
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow var(--t-base);
  will-change: transform;
}

/* ---- C2 Scroll-driven reveal ---- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left  { transform: translateX(-26px); }
.reveal-right { transform: translateX(26px); }
.reveal-zoom  { transform: scale(.94); }
.reveal-left.in-view, .reveal-right.in-view, .reveal-zoom.in-view { transform: none; }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .scroll-reveal {
      animation: scrollReveal linear both;
      animation-timeline: view(); animation-range: entry 0% cover 28%;
    }
    @keyframes scrollReveal {
      from { opacity: 0; transform: translateY(36px); }
      to   { opacity: 1; transform: none; }
    }
  }
}

/* ---- C4 View Transitions ---- */
@supports (view-transition-name: card) {
  ::view-transition-old(root), ::view-transition-new(root) {
    animation-duration: .35s; animation-timing-function: cubic-bezier(.4,0,.2,1);
  }
  .vt-product-cover { view-transition-name: var(--vt-name, none); }
}

/* ---- D1 Vaka çalışmaları metric-first ---- */
.case-metric-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 22px; padding: 32px; overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.case-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -28px rgba(15,23,42,.18);
}
.case-metric-card .cm-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(99,102,241,.08); color: var(--brand);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 14px;
}
.case-metric-card .cm-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px); font-weight: 800; line-height: .95;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 4px;
}
.case-metric-card .cm-headline .unit {
  font-size: .55em; vertical-align: super; font-weight: 700;
  background: inherit; -webkit-background-clip: text; background-clip: text; color: transparent;
}
.case-metric-card .cm-context {
  font-size: 14px; color: var(--fg-muted); margin: 0 0 22px;
}
.case-metric-card .cm-quote {
  font-size: 14.5px; line-height: 1.6; color: var(--fg);
  border-left: 3px solid var(--brand); padding-left: 14px;
  margin: 0 0 18px;
}
.case-metric-card .cm-author { display: flex; align-items: center; gap: 10px; }
.case-metric-card .cm-author .av {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.case-metric-card .cm-author small { display: block; color: var(--fg-muted); font-size: 12px; }
.case-metric-card .cm-spark {
  position: absolute; right: -20px; top: 24px;
  width: 200px; height: 100px; opacity: .15;
}
[data-theme="dark"] .case-metric-card { background: var(--surface); border-color: var(--border); }

/* ===========================================================
   DARK MODE — Quote Wizard (/teklif-al) override'ları
   --brand-soft (#eef2ff) hem light hem dark'ta aynı olduğu için
   seçili kart arkaplanı dark'ta beyaza yakın çıkıyordu. Burada
   her etkileşim durumunu dark için yeniden tanımlıyoruz.
   =========================================================== */

/* Service pick — varsayılan / hover / seçili */
[data-theme="dark"] .service-pick .sp-card {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .service-pick:hover .sp-card {
  background: var(--bg-soft);
  border-color: var(--border-2);
}
[data-theme="dark"] .service-pick input:checked ~ .sp-card {
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(139,92,246,.12));
  border-color: var(--brand);
  box-shadow: 0 6px 22px -4px rgba(99,102,241,.35);
}
[data-theme="dark"] .sp-icon {
  background: var(--bg-soft);
  color: var(--fg-muted);
}
[data-theme="dark"] .service-pick input:checked ~ .sp-card .sp-icon {
  background: rgba(99,102,241,.22);
  color: #a5b4fc;
}
[data-theme="dark"] .sp-check {
  background: var(--bg-soft);
  border-color: var(--border-2);
}
[data-theme="dark"] .sp-title { color: var(--fg); }
[data-theme="dark"] .sp-desc  { color: var(--fg-muted); }

/* Pill pick (bütçe & süre) */
[data-theme="dark"] .pill-pick .pp-card {
  background: var(--surface);
  border-color: var(--border);
  color: var(--fg);
}
[data-theme="dark"] .pill-pick:hover .pp-card {
  background: var(--bg-soft);
  border-color: var(--border-2);
}
[data-theme="dark"] .pill-pick input:checked ~ .pp-card {
  background: linear-gradient(135deg, rgba(99,102,241,.20), rgba(139,92,246,.14));
  border-color: var(--brand);
  color: #a5b4fc;
}
[data-theme="dark"] .pill-pick input:checked ~ .pp-card .icon { color: #a5b4fc; }

/* Form input/textarea */
[data-theme="dark"] .quote-main .form-group input,
[data-theme="dark"] .quote-main .form-group textarea {
  background: var(--surface);
  border-color: var(--border);
  color: var(--fg);
}
[data-theme="dark"] .quote-main .form-group input:focus,
[data-theme="dark"] .quote-main .form-group textarea:focus {
  background: var(--bg-soft);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(99,102,241,.22);
}
[data-theme="dark"] .quote-main .form-group input::placeholder,
[data-theme="dark"] .quote-main .form-group textarea::placeholder { color: var(--fg-subtle); }

/* Step error */
[data-theme="dark"] .quote-step-error {
  background: rgba(220,38,38,.12);
  border-color: rgba(248,113,113,.30);
  color: #fca5a5;
}

/* Review (Step 3) */
[data-theme="dark"] .review-cell {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="dark"] .rc-label { color: var(--fg-muted); }
[data-theme="dark"] .rc-value { color: var(--fg); }
[data-theme="dark"] .rc-value.qs-empty { color: var(--fg-subtle); }

/* Teşekkür sayfası */
[data-theme="dark"] .thanks-shell {
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(34,197,94,.18), transparent 60%),
    var(--bg);
}
[data-theme="dark"] .thanks-card { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .thanks-icon { background: rgba(34,197,94,.15); }
[data-theme="dark"] .thanks-ref  { background: var(--bg-soft); border-color: var(--border-2); color: var(--fg); }

/* Özet paneli pill'leri (sol sticky) */
[data-theme="dark"] .qs-pills .pill {
  background: rgba(99,102,241,.18);
  color: #a5b4fc;
  border-color: rgba(99,102,241,.30);
}
.case-grid-metric {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
@media (max-width: 768px) {
  .case-grid-metric { grid-template-columns: 1fr; }
  .case-metric-card { padding: 24px; }
}

/* ---- D2 Müşteri logo wall ---- */
.client-wall { padding: 72px 0; }
.client-wall .head { text-align: center; max-width: 680px; margin: 0 auto 32px; }
.client-wall-filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px;
}
.client-wall-filters button {
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10); background: transparent;
  color: var(--fg-muted); font-size: 13px; font-weight: 500;
  transition: all var(--t-fast);
}
.client-wall-filters button:hover { color: var(--fg); border-color: rgba(15,23,42,.20); }
.client-wall-filters button.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; border-color: transparent; font-weight: 600;
}
.client-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border: 1px solid rgba(15,23,42,.06); border-radius: 16px; overflow: hidden;
  background: var(--surface);
}
.client-cell {
  aspect-ratio: 1.5; display: flex; align-items: center; justify-content: center;
  padding: 22px; transition: background var(--t-fast);
  border-right: 1px solid rgba(15,23,42,.05);
  border-bottom: 1px solid rgba(15,23,42,.05);
  filter: grayscale(.4); opacity: .82;
}
.client-cell:hover { background: rgba(99,102,241,.04); filter: grayscale(0); opacity: 1; }
.client-cell img { max-height: 42px; max-width: 100%; object-fit: contain; }
.client-cell .name-fallback {
  font-size: 13px; font-weight: 700; color: var(--fg-muted);
  letter-spacing: .04em; text-align: center;
}
.client-cell.hidden { display: none; }
[data-theme="dark"] .client-grid { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .client-cell { border-color: var(--border); }
@media (max-width: 980px) { .client-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .client-grid { grid-template-columns: repeat(3, 1fr); } .client-cell { padding: 16px; } }

/* ---- D3 Press stripe ---- */
.press-stripe {
  padding: 36px 0;
  border-top: 1px solid rgba(15,23,42,.06); border-bottom: 1px solid rgba(15,23,42,.06);
  background: var(--bg-soft);
}
.press-stripe .head {
  text-align: center; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-subtle); font-weight: 700; margin-bottom: 18px;
}
.press-row {
  display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap;
}
.press-row .item {
  font-family: 'Georgia', serif;
  font-style: italic; font-size: 22px; font-weight: 600;
  color: var(--fg-muted); opacity: .65;
  letter-spacing: -.01em; transition: opacity var(--t-fast), color var(--t-fast);
}
.press-row .item:hover { opacity: 1; color: var(--fg); }
[data-theme="dark"] .press-stripe { background: rgba(255,255,255,.02); border-color: var(--border); }

/* ---- E3 Blog detail sticky TOC ---- */
.blog-layout-toc {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
  max-width: 1200px; margin: 0 auto;
}
.blog-toc {
  position: sticky; top: 96px; align-self: start; font-size: 13px;
}
.blog-toc .toc-head {
  font-size: 11px; font-weight: 700; color: var(--fg-subtle);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(15,23,42,.06);
}
.blog-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.blog-toc li { counter-increment: toc; margin: 0; padding: 0; }
.blog-toc a {
  display: block; padding: 7px 0 7px 14px; position: relative;
  color: var(--fg-muted); font-size: 13px; line-height: 1.4;
  border-left: 2px solid transparent;
  transition: all var(--t-fast);
}
.blog-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 10px; opacity: .5; margin-right: 6px;
}
.blog-toc a:hover { color: var(--fg); border-left-color: rgba(99,102,241,.30); }
.blog-toc a.active {
  color: var(--brand); border-left-color: var(--brand); font-weight: 600;
  background: rgba(99,102,241,.04);
}
.blog-toc .toc-h3 { padding-left: 28px; font-size: 12.5px; }
.blog-toc-controls {
  display: flex; gap: 8px; margin-top: 18px;
  padding-top: 14px; border-top: 1px solid rgba(15,23,42,.06);
}
.blog-toc-controls button {
  flex: 1; padding: 8px 10px; border-radius: 8px;
  background: transparent; border: 1px solid rgba(15,23,42,.08);
  color: var(--fg-muted); font-size: 11.5px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--t-fast);
}
.blog-toc-controls button:hover { color: var(--fg); border-color: rgba(99,102,241,.30); }
.blog-toc-controls button.active {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
body.reading-mode .site-header,
body.reading-mode .site-footer,
body.reading-mode .blog-toc,
body.reading-mode .related-section,
body.reading-mode .comments-section { display: none !important; }
body.reading-mode .blog-layout-toc { grid-template-columns: 1fr; max-width: 720px; }
body.reading-mode .blog-detail-content { font-size: 18px; line-height: 1.85; }
body.reading-mode .reading-mode-exit { display: inline-flex !important; }
.reading-mode-exit { display: none; position: fixed; top: 24px; right: 24px; z-index: 100; }
@media (max-width: 1024px) {
  .blog-layout-toc { grid-template-columns: 1fr; }
  .blog-toc { position: static; display: none; }
}
[data-theme="dark"] .blog-toc .toc-head,
[data-theme="dark"] .blog-toc-controls { border-color: var(--border); }
[data-theme="dark"] .blog-toc-controls button { border-color: var(--border); }

/* ---- F1 Modern error pages ---- */
.error-stage {
  min-height: 70vh; display: grid; place-items: center;
  position: relative; isolation: isolate; padding: 60px 24px;
}
.error-stage .glow-orb {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.20), transparent 60%);
  filter: blur(60px); z-index: -1;
  animation: glowDrift 12s ease-in-out infinite alternate;
}
.error-stage .glow-orb.b {
  background: radial-gradient(circle, rgba(236,72,153,.18), transparent 60%);
  width: 500px; height: 500px; right: -200px; bottom: -100px;
  animation-direction: alternate-reverse;
}
@keyframes glowDrift {
  0% { transform: translate(-10%, -10%); }
  100% { transform: translate(15%, 8%); }
}
.error-card { text-align: center; max-width: 560px; }
.error-num {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 220px);
  font-weight: 900; line-height: 1; letter-spacing: -.06em;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 8px;
  animation: errorGlow 4s ease-in-out infinite;
}
@keyframes errorGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(99,102,241,.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(236,72,153,.5)); }
}
.error-card h1 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 12px; }
.error-card p { font-size: 16px; color: var(--fg-muted); margin: 0 auto 28px; max-width: 440px; }
.error-actions { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ---- F3 Empty state pro ---- */
.empty-state-pro {
  text-align: center; padding: 64px 24px;
  background: var(--surface);
  border: 1px dashed rgba(15,23,42,.10);
  border-radius: 22px;
}
.empty-state-pro .ill {
  width: 140px; height: 140px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.empty-state-pro h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.empty-state-pro p { font-size: 14px; color: var(--fg-muted); margin: 0 auto 20px; max-width: 380px; }
.empty-state-pro .actions { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
[data-theme="dark"] .empty-state-pro { background: var(--surface); border-color: var(--border-2); }

/* ---- G3 Skeleton loaders ---- */
.skeleton {
  display: inline-block;
  background: linear-gradient(90deg,
    rgba(15,23,42,.06) 0%, rgba(15,23,42,.10) 50%, rgba(15,23,42,.06) 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}
.skeleton.line { height: 14px; width: 100%; }
.skeleton.line.w-60 { width: 60%; }
.skeleton.line.w-40 { width: 40%; }
.skeleton.title { height: 22px; width: 70%; }
.skeleton.box { height: 100%; width: 100%; border-radius: 12px; }
.skeleton.avatar { width: 40px; height: 40px; border-radius: 50%; }
.skeleton.btn { height: 38px; width: 120px; border-radius: 10px; }
@keyframes skeletonShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
[data-theme="dark"] .skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,.04) 0%, rgba(255,255,255,.10) 50%, rgba(255,255,255,.04) 100%);
  background-size: 200% 100%;
}
.skeleton-card {
  background: var(--surface); border: 1px solid rgba(15,23,42,.06);
  border-radius: 14px; padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
}

/* ---- F2 Catalog bento + filter chips + popular badge ---- */
.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding: 16px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 16px; margin-bottom: 28px;
}
.catalog-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.catalog-chips a {
  padding: 7px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  background: transparent; color: var(--fg-muted);
  border: 1px solid rgba(15,23,42,.08);
  transition: all var(--t-fast);
}
.catalog-chips a:hover { color: var(--fg); border-color: rgba(99,102,241,.20); }
.catalog-chips a.active {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; border-color: transparent; font-weight: 600;
}
.catalog-sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); }
.catalog-sort select {
  padding: 7px 28px 7px 12px;
  border: 1px solid rgba(15,23,42,.08); border-radius: 8px;
  background: transparent; font-size: 13px; color: var(--fg); font-family: inherit;
}
[data-theme="dark"] .catalog-toolbar { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .catalog-chips a { border-color: var(--border); color: var(--fg-muted); }
[data-theme="dark"] .catalog-sort select { border-color: var(--border); color: #fff; }
.popular-badge, .new-badge, .deal-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  padding: 5px 11px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 5px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  max-width: calc(100% - 60px); white-space: nowrap; overflow: hidden;
}
.popular-badge {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff; box-shadow: 0 4px 12px -2px rgba(239,68,68,.40);
}
.new-badge { background: linear-gradient(135deg, #10b981, #06b6d4); color: #fff; }
.deal-badge { background: rgba(220,38,38,.92); color: #fff; }

/* ---- Custom illustration helper ---- */
.spot-ill { width: 100%; height: 100%; display: block; }
.spot-ill .stroke { stroke: var(--brand); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.spot-ill .fill-soft { fill: rgba(99,102,241,.08); }
.spot-ill .fill-mid  { fill: rgba(99,102,241,.18); }
.spot-ill .accent { stroke: #ec4899; }
[data-theme="dark"] .spot-ill .fill-soft { fill: rgba(99,102,241,.14); }
[data-theme="dark"] .spot-ill .fill-mid  { fill: rgba(99,102,241,.26); }

/* ---- Bento extras: stack pills + activity feed + channel pills ---- */
.bento-stack-vis {
  margin-top: auto; padding-top: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.bsv-row {
  display: flex; gap: 8px; flex-wrap: nowrap; overflow: hidden;
}
.bsv-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.92);
  font-family: var(--font-mono); letter-spacing: -.01em;
  white-space: nowrap;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.bsv-pill:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }
.bsv-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.bento-activity {
  margin-top: 14px; padding: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.ba-row {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 4px;
  font-size: 12.5px;
}
.ba-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.ba-dot.pulse {
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,.6);
  animation: baPulse 1.8s ease-out infinite;
}
.ba-dot.ok   { background: #10b981; }
.ba-dot.info { background: #f59e0b; }
@keyframes baPulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.55); }
  100% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}
.ba-text { flex: 1; min-width: 0; line-height: 1.3; }
.ba-text strong { display: block; font-size: 12.5px; color: #fff; font-weight: 600; }
.ba-text small  { font-size: 10.5px; color: rgba(255,255,255,.55); display: block; margin-top: 1px; }
.ba-tag {
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  background: rgba(16,185,129,.20); color: #6ee7b7;
  border-radius: 999px;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid rgba(16,185,129,.30);
}
.ch-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  white-space: nowrap;
}

/* Stat split (SLA / 99.9% gibi) */
.bento-stat-split {
  display: flex; gap: 14px; align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.06);
}
.bento-stat-split .num {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1;
}
.bento-stat-split .lbl {
  font-size: 11px; color: var(--fg-muted);
  margin-top: 4px; font-weight: 500;
}
.bento-stat-split .divider {
  width: 1px; height: 32px;
  background: rgba(15,23,42,.10);
}
[data-theme="dark"] .bento-stat-split { border-top-color: rgba(255,255,255,.10); }
[data-theme="dark"] .bento-stat-split .lbl { color: rgba(255,255,255,.62); }
[data-theme="dark"] .bento-stat-split .divider { background: rgba(255,255,255,.10); }

/* Performance score barlar (Lighthouse benzeri) */
.bento-perf {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 14px;
}
.bp-bar {
  position: relative;
  height: 22px;
  background: rgba(15,23,42,.05);
  border-radius: 999px;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 0 12px;
  font-size: 11.5px;
}
.bp-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  border-radius: 999px;
  opacity: .25;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.bp-label {
  position: relative; z-index: 1;
  font-weight: 600; color: var(--fg);
  flex: 1;
}
.bp-val {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-weight: 800; color: var(--fg);
  font-size: 12.5px;
}
[data-theme="dark"] .bp-bar { background: rgba(255,255,255,.06); }
[data-theme="dark"] .bp-label, [data-theme="dark"] .bp-val { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .ba-dot.pulse { animation: none; }
}

/* ============================================================
   FOOTER PRO — 5 column + trust + payment + bottom
   ============================================================ */
.site-footer-pro {
  position: relative;
  background: linear-gradient(180deg, #0a0f1d 0%, #060912 100%);
  color: #cbd5e1;
  padding: 72px 0 0;
  margin-top: 0;
  overflow: hidden;
  isolation: isolate;
}
.site-footer-pro::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(50% 35% at 12% 0%, rgba(99,102,241,.20), transparent 60%),
    radial-gradient(40% 30% at 88% 5%, rgba(236,72,153,.14), transparent 60%);
}
.site-footer-pro::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px;
  opacity: .04;
}

/* Üst grid */
.sfp-grid {
  display: grid;
  grid-template-columns: 1.5fr .9fr 1fr 1.1fr 1.3fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Brand column */
.sfp-brand-col {
  max-width: 360px;
}
.sfp-logo {
  display: inline-flex; align-items: center;
  margin-bottom: 18px; text-decoration: none;
}
.sfp-logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}
/* Footer tema bazlı logo swap */
.sfp-logo--dark { display: none; }
[data-theme="dark"] .sfp-logo--light { display: none; }
[data-theme="dark"] .sfp-logo--dark  { display: block; }
.sfp-logo-text {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800;
  line-height: 1;
  letter-spacing: -.025em;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 640px) {
  .sfp-logo-text { font-size: 24px; }
}
.sfp-about {
  font-size: 14px; line-height: 1.65; color: #94a3b8;
  margin: 0 0 22px;
}

/* Newsletter pill */
.sfp-newsletter {
  display: flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.sfp-newsletter:focus-within {
  border-color: rgba(99,102,241,.45);
  background: rgba(99,102,241,.05);
}
.sfp-nl-icon {
  color: #64748b;
  display: inline-flex; align-items: center;
  flex-shrink: 0; margin-right: 8px;
}
.sfp-newsletter input {
  flex: 1; background: transparent; border: 0; outline: 0;
  font-family: inherit; font-size: 13.5px;
  padding: 9px 6px; color: #e2e8f0;
  min-width: 0;
}
.sfp-newsletter input::placeholder { color: #64748b; }
.sfp-newsletter button {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; border: 0;
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.sfp-newsletter button:hover {
  transform: translateX(2px);
  box-shadow: 0 6px 16px -4px rgba(99,102,241,.55);
}
.sfp-nl-hint {
  display: block; font-size: 11.5px; color: #64748b;
  margin: 8px 0 22px;
}

/* Sosyal */
.sfp-socials {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.sfp-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #94a3b8;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.sfp-socials a:hover {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(99,102,241,.55);
}

/* Link kolonları */
.sfp-col h4 {
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  color: #fff;
  letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sfp-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.sfp-col ul li a {
  font-size: 13.5px; color: #94a3b8; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--t-fast), transform var(--t-fast);
  position: relative;
}
.sfp-col ul li a::before {
  content: ""; width: 0; height: 1px;
  background: linear-gradient(90deg, #6366f1, #ec4899);
  transition: width var(--t-base);
  position: absolute; bottom: -2px; left: 0;
}
.sfp-col ul li a:hover {
  color: #fff;
  transform: translateX(3px);
}
.sfp-col ul li a:hover::before { width: 100%; }

/* İletişim listesi */
.sfp-contact li {
  display: flex !important; gap: 10px; align-items: flex-start;
  font-size: 13px; color: #94a3b8;
  line-height: 1.4;
  min-width: 0;
}
.sfp-contact li > *:not(.ic) {
  flex: 1; min-width: 0; word-break: break-word; overflow-wrap: anywhere;
}
/* Kutulu ikon — SVG absolute ortalama (Lucide viewBox padding'i nötralize) */
.sfp-contact li .ic {
  position: relative;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: #94a3b8;
  flex-shrink: 0;
  display: block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.sfp-contact li .ic > svg,
.sfp-contact li .ic svg {
  width: 18px !important;
  height: 18px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
.sfp-contact li a {
  color: #cbd5e1 !important;
  text-decoration: none;
  display: inline-block;
}
.sfp-contact li a:hover { color: #fff !important; }
.sfp-contact li small { color: #64748b; display: block; font-size: 11px; margin-top: 1px; }
/* Telefon ve email — tek satırda kalsın, sığmazsa ellipsis */
.sfp-contact li.tight {
  align-items: center;
}
.sfp-contact li.tight a, .sfp-contact li.tight > span {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.005em;
  display: block; max-width: 100%;
}

/* Trust row */
.sfp-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sfp-trust-item {
  display: flex; align-items: center; gap: 12px;
}
.sfp-trust-item .ic {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sfp-trust-item strong {
  display: block; font-size: 13.5px; font-weight: 700; color: #f1f5f9;
  letter-spacing: -.005em;
}
.sfp-trust-item small {
  display: block; font-size: 11.5px; color: #64748b; margin-top: 1px;
}

/* Bottom */
.sfp-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 22px 0;
}
.sfp-copyright {
  font-size: 12.5px; color: #64748b;
}
.sfp-copyright strong { color: #cbd5e1; font-weight: 600; }

.sfp-pay {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.sfp-pay-label {
  font-size: 11px; color: #64748b;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  margin-right: 4px;
}
.sfp-pay-method {
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px; min-width: 42px; padding: 0 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px;
  font-size: 10.5px; font-weight: 800;
  color: #cbd5e1;
  letter-spacing: .04em;
  font-family: var(--font-display);
}
.sfp-pay-method.iyzico {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #fff; border-color: transparent;
  font-family: inherit; font-weight: 700; letter-spacing: -.02em;
}

.sfp-locale {
  font-size: 12.5px; color: #94a3b8;
  display: inline-flex; align-items: center; gap: 6px;
}
.sfp-flag { font-size: 16px; }

/* Light theme override (footer her zaman koyu kalsın ama linkler okunabilir olsun) */
[data-theme="dark"] .site-footer-pro {
  background: linear-gradient(180deg, #050813 0%, #02040a 100%);
}

/* Responsive */
@media (max-width: 1100px) {
  .sfp-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 32px;
  }
  .sfp-brand-col { grid-column: 1 / -1; max-width: none; display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: flex-start; }
  .sfp-brand-col > * { flex: 1; min-width: 240px; }
  .sfp-brand-col .sfp-logo { flex: 0 0 100%; }
  .sfp-brand-col .sfp-about { flex: 0 0 100%; max-width: 540px; margin-bottom: 0; }
}
@media (max-width: 720px) {
  .sfp-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .sfp-brand-col { grid-column: 1 / -1; flex-direction: column; }
  .sfp-trust { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .sfp-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sfp-pay { width: 100%; }
}
@media (max-width: 480px) {
  .sfp-grid { grid-template-columns: 1fr; }
  .sfp-trust { grid-template-columns: 1fr; }
}

/* Eski footer stilini kapat (eski .site-footer) */
.site-footer { display: none; }
/* Eski sticky-cta (alt full-width bar) kapatıldı — yerine sticky-cta-bar geldi */
.sticky-cta { display: none !important; }
/* END FOOTER PRO */

/* ============================================================
   FX PACK — Spotlight + Holographic + Float + Ticker + Scroll-jack
   ============================================================ */

/* ---- A. Card spotlight (mouse-follow brand glow) ---- */
.bento-cell, .product-card, .feature-card, .why-card,
.tm-card, .case-metric-card, .bs-card-v2, .bs-card,
.svc-color-card, .blog-hero-card, .bento-cell.feature, .bento-cell.gradient {
  --mx: 50%; --my: 50%;
}
.bento-cell::before, .product-card-wrap::before, .feature-card::before,
.why-card::before, .tm-card::before, .case-metric-card::after,
.bs-card-v2::before, .svc-color-card::before {
  /* Use a pseudo separate from existing ones — chain via .spot */
}
[data-spot] {
  position: relative;
}
[data-spot]::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(99,102,241,.18),
    transparent 40%
  );
  opacity: 0; transition: opacity .35s ease;
  z-index: 1;
}
[data-spot]:hover::after { opacity: 1; }
/* Spot içi içerikler tıklanabilir kalsın */
[data-spot] > * { position: relative; z-index: 2; }
[data-theme="dark"] [data-spot]::after {
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(139,92,246,.30),
    transparent 40%
  );
}
/* Border highlight on hover (Linear-style) */
[data-spot-border] {
  position: relative;
}
[data-spot-border]::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(99,102,241,.55),
    transparent 50%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
  z-index: 1;
}
[data-spot-border]:hover::before { opacity: 1; }

/* ---- B. Theme transition reveal ---- */
@supports (view-transition-name: root) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
    mix-blend-mode: normal;
  }
  ::view-transition-old(root) { z-index: 1; }
  ::view-transition-new(root) { z-index: 2; }
}
.theme-clip {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  background: var(--brand);
  clip-path: circle(0 at var(--tx, 50%) var(--ty, 50%));
  animation: themeReveal .6s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes themeReveal {
  0%   { clip-path: circle(0 at var(--tx, 50%) var(--ty, 50%)); }
  60%  { clip-path: circle(150% at var(--tx, 50%) var(--ty, 50%)); }
  100% { clip-path: circle(150% at var(--tx, 50%) var(--ty, 50%)); opacity: 0; }
}

/* ---- C. Hero floating product mockup'lar ---- */
.hero-launch { position: relative; }
.hero-floats {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-float {
  position: absolute;
  width: 220px; height: 140px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  box-shadow: 0 24px 48px -16px rgba(15,23,42,.18),
              0 8px 16px -8px rgba(15,23,42,.10);
  overflow: hidden;
  opacity: .85;
  will-change: transform;
}
.hero-float::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 24px;
  background: rgba(15,23,42,.04);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.hero-float::after {
  content: "● ● ●";
  position: absolute; top: 4px; left: 10px;
  font-size: 8px; letter-spacing: 4px;
  color: rgba(15,23,42,.20);
}
.hero-float .ph {
  position: absolute; top: 24px; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: 6px; padding: 14px;
}
.hero-float .ph .ph-bar {
  height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, rgba(99,102,241,.20), rgba(99,102,241,.06));
}
.hero-float .ph .ph-bar.short { width: 60%; }
.hero-float .ph .ph-bar.tiny  { width: 40%; height: 6px; }
.hero-float .ph .ph-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-top: 4px;
}
.hero-float .ph .ph-grid > span {
  height: 24px; border-radius: 5px;
  background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(236,72,153,.10));
}

.hero-float.f1 { top: 12%; left: 4%; transform: rotate(-6deg); animation: floatA 9s ease-in-out infinite; }
.hero-float.f2 { top: 22%; right: 5%; transform: rotate(5deg);  animation: floatB 11s ease-in-out infinite; }
.hero-float.f3 { bottom: 14%; left: 7%; transform: rotate(4deg); animation: floatC 13s ease-in-out infinite; }
.hero-float.f4 { bottom: 18%; right: 4%; transform: rotate(-7deg); animation: floatD 10s ease-in-out infinite; }

@keyframes floatA {
  0%,100% { transform: rotate(-6deg) translate3d(0, 0, 0); }
  50%     { transform: rotate(-4deg) translate3d(0, -14px, 0); }
}
@keyframes floatB {
  0%,100% { transform: rotate(5deg) translate3d(0, 0, 0); }
  50%     { transform: rotate(7deg) translate3d(0, -10px, 0); }
}
@keyframes floatC {
  0%,100% { transform: rotate(4deg) translate3d(0, 0, 0); }
  50%     { transform: rotate(2deg) translate3d(0, 12px, 0); }
}
@keyframes floatD {
  0%,100% { transform: rotate(-7deg) translate3d(0, 0, 0); }
  50%     { transform: rotate(-5deg) translate3d(0, 10px, 0); }
}

[data-theme="dark"] .hero-float {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
[data-theme="dark"] .hero-float::before {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.06);
}

@media (max-width: 900px) {
  .hero-floats { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float { animation: none !important; }
}

/* Hero pill ve metni floats üstünde tutalım */
.hero-launch > .container { position: relative; z-index: 2; }

/* ---- D. Live ticker badge + count ---- */
.live-ticker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(16,185,129,.10);
  border: 1px solid rgba(16,185,129,.22);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; color: #10b981;
  font-family: var(--font-mono);
}
.live-ticker .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,.5);
  animation: livePulse 1.5s ease-out infinite;
}
.live-ticker .live-num {
  font-weight: 800; color: var(--fg);
  font-variant-numeric: tabular-nums;
}
[data-theme="dark"] .live-ticker .live-num { color: #fff; }
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.55); }
  100% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

/* Activity feed rotating items */
.bento-activity[data-rotate] .ba-row {
  animation: activitySlideIn .5s cubic-bezier(.4,0,.2,1) both;
}

@keyframes activitySlideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: none; }
}

/* ---- E. Holographic gradient (öne çıkan ürün) ---- */
.holographic {
  position: relative;
  isolation: isolate;
}
.holographic::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(99,102,241,.45) 38%,
    rgba(236,72,153,.45) 45%,
    rgba(245,158,11,.45) 52%,
    rgba(6,182,212,.45) 60%,
    transparent 68%
  );
  background-size: 200% 200%;
  background-position: var(--holo-x, 0%) var(--holo-y, 0%);
  mix-blend-mode: color-dodge;
  opacity: .35;
  transition: opacity .4s ease, background-position .15s ease-out;
  z-index: 0;
  pointer-events: none;
}
.holographic:hover::before {
  opacity: .7;
}
.holographic > * { position: relative; z-index: 1; }
.holographic-tag {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 999px;
  background: linear-gradient(135deg, #6366f1, #ec4899, #f59e0b);
  background-size: 200% 200%;
  animation: holoTag 4s linear infinite;
  color: #fff; font-size: 10.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 4px 16px -4px rgba(99,102,241,.40);
}
@keyframes holoTag {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ---- F. Scroll-jacked process section ---- */
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .process-section .process-grid {
      counter-reset: pstep;
    }
    .process-section .process-step {
      animation: processReveal both linear;
      animation-timeline: view();
      animation-range: entry 10% cover 40%;
    }
    .process-section .process-step:nth-child(2) { animation-delay: -.05s; }
    .process-section .process-step:nth-child(3) { animation-delay: -.1s; }
    .process-section .process-step:nth-child(4) { animation-delay: -.15s; }

    @keyframes processReveal {
      from {
        opacity: 0;
        transform: translateY(60px) scale(.92);
        filter: blur(8px);
      }
      to {
        opacity: 1;
        transform: none;
        filter: blur(0);
      }
    }
  }
}

/* ---- G. Page transitions (cross-document) ---- */
@view-transition {
  navigation: auto;
}
@supports (view-transition-name: root) {
  ::view-transition-old(root) {
    animation: pageOut .35s cubic-bezier(.4,0,.2,1) both;
  }
  ::view-transition-new(root) {
    animation: pageIn .35s cubic-bezier(.4,0,.2,1) both;
  }
  @keyframes pageOut {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(-24px); }
  }
  @keyframes pageIn {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: none; }
  }
}

/* ---- Bonus 1: Sticky bottom CTA ---- */
.sticky-cta-bar {
  position: fixed; bottom: 24px; right: 96px;
  z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 16px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 40px -12px rgba(99,102,241,.55),
              0 4px 12px -4px rgba(15,23,42,.20);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  opacity: 0; transform: translateY(20px) scale(.95);
  transition: opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.sticky-cta-bar.visible {
  opacity: 1; transform: none; pointer-events: auto;
}
.sticky-cta-bar:hover {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 24px 56px -16px rgba(99,102,241,.70);
}
.sticky-cta-bar .scb-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: livePulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sticky-cta-bar { right: 16px; bottom: 78px; padding: 9px 14px; font-size: 12.5px; }
}

/* ---- Bonus 2: Logo wall scroll shimmer ---- */
.client-grid {
  position: relative;
  overflow: hidden;
}
.client-grid::after {
  content: ""; position: absolute; top: 0; bottom: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.10), transparent);
  pointer-events: none;
  animation: clientShimmer 8s linear infinite;
}
@keyframes clientShimmer {
  0%   { left: -30%; }
  100% { left: 100%; }
}
[data-theme="dark"] .client-grid::after {
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.18), transparent);
}
@media (prefers-reduced-motion: reduce) {
  .client-grid::after { display: none; }
}

/* ---- Bonus 3: Confetti canvas ---- */
.confetti-canvas {
  position: fixed; inset: 0; pointer-events: none; z-index: 9997;
}

/* ---- Bonus 4: Number ticker ---- */
[data-count-up] {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ---- Reduced motion safety ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-float, .live-ticker .live-dot, .holographic-tag,
  .client-grid::after, .sticky-cta-bar .scb-pulse {
    animation: none !important;
  }
}
/* END FX PACK */

/* ============================================================
   FX PACK 2 — Command Palette + Quick View + Live Visitors +
                Newsletter Popup + Cursor Context + Timeline +
                Sound + Easter Eggs
   ============================================================ */

/* ---- 1. Command Palette (⌘K) ---- */
.cmd-palette {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(15,23,42,.45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 80px 16px 16px;
}
.cmd-palette.is-open { display: flex; animation: cmdFade .2s ease both; }
.cmd-palette-box {
  width: 100%; max-width: 640px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  box-shadow: 0 32px 80px -24px rgba(15,23,42,.40),
              0 8px 16px -8px rgba(15,23,42,.20);
  overflow: hidden;
  animation: cmdSlide .25s cubic-bezier(.4,0,.2,1) both;
}
@keyframes cmdFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes cmdSlide {
  from { transform: translateY(-12px) scale(.98); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cmd-search {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.cmd-search .ic { color: var(--fg-subtle); flex-shrink: 0; }
.cmd-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-family: inherit; font-size: 15px; color: var(--fg);
}
.cmd-search input::placeholder { color: var(--fg-subtle); }
.cmd-kbd {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  padding: 3px 7px; background: var(--bg-soft); color: var(--fg-muted);
  border: 1px solid rgba(15,23,42,.08); border-radius: 5px;
  flex-shrink: 0;
}
.cmd-results { max-height: 440px; overflow-y: auto; padding: 8px; }
.cmd-group-title {
  font-size: 10.5px; font-weight: 700; color: var(--fg-subtle);
  letter-spacing: .12em; text-transform: uppercase;
  padding: 12px 12px 6px;
}
.cmd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  cursor: pointer; transition: background .12s;
  text-decoration: none; color: var(--fg);
}
.cmd-item:hover, .cmd-item.is-active {
  background: rgba(99,102,241,.08);
}
.cmd-item .ic-box {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(99,102,241,.10); color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cmd-item .meta {
  flex: 1; min-width: 0;
}
.cmd-item .title {
  font-size: 13.5px; font-weight: 600; color: var(--fg);
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cmd-item .sub {
  font-size: 11.5px; color: var(--fg-muted);
  display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-top: 1px;
}
.cmd-item .tag {
  font-size: 10.5px; padding: 2px 7px;
  background: var(--bg-soft); color: var(--fg-muted);
  border-radius: 4px; font-weight: 600;
  flex-shrink: 0;
}
.cmd-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid rgba(15,23,42,.06);
  font-size: 11px; color: var(--fg-subtle);
  background: var(--bg-soft);
}
.cmd-foot .left { display: inline-flex; gap: 12px; align-items: center; }
.cmd-empty {
  text-align: center; padding: 36px 16px;
  color: var(--fg-muted); font-size: 13.5px;
}
[data-theme="dark"] .cmd-palette-box {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: 0 32px 80px -24px rgba(0,0,0,.6);
}
[data-theme="dark"] .cmd-search { border-color: var(--border); }
[data-theme="dark"] .cmd-foot { background: rgba(255,255,255,.02); border-color: var(--border); }
[data-theme="dark"] .cmd-kbd { background: rgba(255,255,255,.06); border-color: var(--border); color: var(--fg); }
[data-theme="dark"] .cmd-item .tag { background: rgba(255,255,255,.06); }

/* ---- 2. Quick View modal ---- */
.product-card .cover .quick-view-btn {
  position: absolute;
  bottom: 12px; left: 12px;       /* COVER (görsel) sol-altı */
  z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(15,23,42,.08);
  font-size: 12px; font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, background .15s ease, color .15s ease;
  box-shadow: 0 4px 12px -4px rgba(15,23,42,.25);
}
.product-card-wrap:hover .product-card .cover .quick-view-btn {
  opacity: 1; transform: none;
}
.product-card .cover .quick-view-btn:hover {
  background: var(--brand); color: #fff; border-color: transparent;
}
[data-theme="dark"] .product-card .cover .quick-view-btn {
  background: rgba(15,23,42,.85);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
@media (hover: none), (pointer: coarse) {
  .product-card .cover .quick-view-btn { opacity: 1; transform: none; }
}

.qv-overlay {
  position: fixed; inset: 0; z-index: 9985;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.qv-overlay.is-open { display: flex; animation: cmdFade .2s ease both; }
.qv-modal {
  width: 100%; max-width: 920px;
  max-height: 86vh; overflow: hidden;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 40px 100px -30px rgba(15,23,42,.50);
  display: grid; grid-template-columns: 1.1fr 1fr;
  animation: cmdSlide .3s cubic-bezier(.4,0,.2,1) both;
  position: relative;
}
.qv-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(15,23,42,.8); color: #fff; border: 0;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.qv-close:hover { background: var(--brand); }
.qv-gallery {
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  display: flex; flex-direction: column;
}
[data-theme="dark"] .qv-gallery {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}
.qv-main-img {
  flex: 1; min-height: 280px; max-height: 440px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative;
}
.qv-main-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.qv-thumbs {
  display: flex; gap: 6px; padding: 12px;
  overflow-x: auto;
  border-top: 1px solid rgba(15,23,42,.06);
}
.qv-thumb {
  width: 56px; height: 56px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
  cursor: pointer; opacity: .6;
  border: 2px solid transparent;
  transition: opacity .15s, border-color .15s;
  background: var(--bg-soft);
}
.qv-thumb:hover { opacity: .85; }
.qv-thumb.is-active { opacity: 1; border-color: var(--brand); }
.qv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.qv-body {
  padding: 32px 28px; overflow-y: auto;
  display: flex; flex-direction: column;
}
.qv-body .qv-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(99,102,241,.10); color: var(--brand);
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  align-self: flex-start; margin-bottom: 12px;
}
.qv-body h2 {
  font-size: 22px; font-weight: 800; margin: 0 0 8px;
  letter-spacing: -.02em; line-height: 1.2;
}
.qv-body .qv-tagline {
  font-size: 14px; color: var(--fg-muted); margin: 0 0 18px;
  line-height: 1.55;
}
.qv-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.qv-meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: var(--fg-muted);
}
.qv-meta-item strong { color: var(--fg); font-weight: 700; }
.qv-features {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.qv-features li {
  font-size: 13px; color: var(--fg-muted);
  display: flex; align-items: center; gap: 8px;
}
.qv-features li svg { color: #10b981; flex-shrink: 0; }
.qv-price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 16px; border-radius: 12px;
  background: var(--bg-soft);
  margin-bottom: 16px;
}
.qv-price-row .price {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 800; color: var(--brand);
  letter-spacing: -.02em;
}
.qv-price-row .old {
  font-size: 14px; color: var(--fg-subtle); text-decoration: line-through;
}
.qv-actions { display: flex; gap: 8px; margin-top: auto; }
.qv-actions .btn { flex: 1; }

@media (max-width: 760px) {
  .qv-modal {
    grid-template-columns: 1fr;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
    align-self: flex-end;
    transform: translateY(0);
    transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
    touch-action: pan-y;
    /* Drag handle göstergesi */
    padding-top: 16px;
    position: relative;
  }
  .qv-modal::before {
    content: "";
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 44px; height: 4px;
    background: rgba(15,23,42,.20);
    border-radius: 999px;
    pointer-events: none;
  }
  [data-theme="dark"] .qv-modal::before { background: rgba(255,255,255,.20); }
  .qv-overlay { align-items: flex-end; padding: 0; transition: opacity .25s ease; }
  .qv-modal.is-dragging { transition: none; }
  .qv-modal.is-closing { transform: translateY(100%); }
  .qv-overlay.is-closing { opacity: 0; }
  .qv-main-img { min-height: 200px; max-height: 240px; }
  /* Close button mobilde küçük X, sağ üst */
  .qv-close { top: 18px !important; right: 14px !important; }
}
[data-theme="dark"] .qv-modal { background: var(--surface); }
[data-theme="dark"] .qv-price-row { background: rgba(255,255,255,.04); }

/* ---- 4. Live visitor counter ---- */
.live-visitors {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.20);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--fg);
}
.live-visitors .lv-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  animation: livePulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
.live-visitors .lv-num {
  font-family: var(--font-mono); font-weight: 700;
  font-variant-numeric: tabular-nums;
}
[data-theme="dark"] .live-visitors {
  background: rgba(16,185,129,.10);
  border-color: rgba(16,185,129,.25);
}

/* ---- 6. Smart newsletter popup ---- */
.nl-popup {
  position: fixed; inset: 0; z-index: 9988;
  background: rgba(15,23,42,.60);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.nl-popup.is-open { display: flex; animation: cmdFade .25s ease both; }
.nl-card {
  width: 100%; max-width: 480px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 40px 100px -30px rgba(15,23,42,.50);
  overflow: hidden;
  position: relative;
  animation: cmdSlide .35s cubic-bezier(.16,1,.3,1) both;
}
.nl-card .nl-cover {
  position: relative; height: 140px;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(99,102,241,.45), transparent 70%),
    linear-gradient(135deg, #312e81, #1e1b4b);
  display: flex; align-items: center; justify-content: center;
}
.nl-card .nl-cover svg {
  width: 80px; height: 80px;
  filter: drop-shadow(0 8px 20px rgba(99,102,241,.40));
}
.nl-card .nl-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff; border: 0;
  cursor: pointer;
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.nl-card .nl-close:hover { background: rgba(255,255,255,.30); }
.nl-card .nl-body {
  padding: 28px 28px 24px;
  text-align: center;
}
.nl-card h3 {
  font-size: 22px; font-weight: 800; margin: 0 0 8px; letter-spacing: -.02em;
}
.nl-card p {
  font-size: 14px; color: var(--fg-muted); margin: 0 0 20px;
  line-height: 1.55;
}
.nl-card .nl-form {
  display: flex; gap: 6px;
  background: var(--bg-soft);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 12px;
  padding: 4px;
  transition: border-color .2s;
}
.nl-card .nl-form:focus-within { border-color: var(--brand); }
.nl-card .nl-form input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-family: inherit; font-size: 14px; padding: 10px 12px; color: var(--fg);
}
.nl-card .nl-form button {
  background: var(--brand); color: #fff; border: 0;
  padding: 0 18px; border-radius: 9px;
  font-size: 13.5px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.nl-card .nl-form button:hover { background: var(--brand-hover); }
.nl-card .nl-tiny {
  font-size: 11.5px; color: var(--fg-subtle); margin: 12px 0 0;
}
[data-theme="dark"] .nl-card { background: var(--surface); }
[data-theme="dark"] .nl-card .nl-form { background: rgba(255,255,255,.04); border-color: var(--border); }

/* ---- 7. Animated case study scroll story ---- */
.case-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin: 80px 0;
}
.case-story .story-stick {
  position: sticky; top: 100px;
  align-self: start;
  height: 70vh; max-height: 560px;
  border-radius: 18px; overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 32px 80px -32px rgba(15,23,42,.30);
}
.case-story .story-stick img,
.case-story .story-stick video {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .8s ease, transform .8s ease;
}
.case-story .story-text {
  display: flex; flex-direction: column; gap: 60px;
}
.case-story .story-block {
  min-height: 70vh;
  display: flex; flex-direction: column; justify-content: center;
}
.case-story .story-block .num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; color: var(--brand);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 14px;
}
.case-story .story-block h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; margin: 0 0 14px; letter-spacing: -.025em; line-height: 1.15;
}
.case-story .story-block p {
  font-size: 15.5px; line-height: 1.65; color: var(--fg-muted);
  margin: 0 0 18px;
}
.case-story .story-block .metric-big {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 8px 0;
}
@media (max-width: 900px) {
  .case-story { grid-template-columns: 1fr; gap: 24px; }
  .case-story .story-stick { position: static; height: 280px; }
  .case-story .story-block { min-height: auto; }
}

/* ---- 8. Cursor context-aware (mevcut cursor üstüne) ---- */
.cursor-ring .cursor-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--brand);
  opacity: 0; transition: opacity .15s ease;
  font-family: var(--font-display);
}
body.cursor-ctx-link .cursor-ring,
body.cursor-ctx-image .cursor-ring,
body.cursor-ctx-external .cursor-ring,
body.cursor-ctx-button .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(99,102,241,.85);
  background: rgba(99,102,241,.08);
}
body.cursor-ctx-link .cursor-ring .cursor-icon,
body.cursor-ctx-image .cursor-ring .cursor-icon,
body.cursor-ctx-external .cursor-ring .cursor-icon,
body.cursor-ctx-button .cursor-ring .cursor-icon { opacity: 1; }
body.cursor-ctx-button .cursor-ring {
  background: linear-gradient(135deg, rgba(99,102,241,.20), rgba(236,72,153,.20));
  border-color: rgba(236,72,153,.65);
}

/* ---- 9. About timeline ---- */
.about-timeline {
  padding: 96px 0;
  position: relative;
}
.about-timeline .timeline-list {
  position: relative;
  max-width: 800px; margin: 0 auto;
  padding-left: 40px;
}
.about-timeline .timeline-list::before {
  content: ""; position: absolute; left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--brand) 10%, var(--brand) 90%, transparent);
  opacity: .35;
}
.tl-item {
  position: relative;
  margin-bottom: 56px;
  padding-left: 32px;
}
.tl-item::before {
  content: ""; position: absolute;
  left: -34px; top: 8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 5px rgba(99,102,241,.10);
}
.tl-item .tl-year {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}
.tl-item h3 {
  font-size: 20px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.015em;
}
.tl-item p {
  font-size: 14px; color: var(--fg-muted); line-height: 1.6; margin: 0 0 12px;
}
.tl-item .tl-quote {
  font-style: italic; font-size: 13.5px; color: var(--fg);
  border-left: 3px solid var(--brand); padding-left: 12px;
  margin: 12px 0 0;
}
.tl-item .tl-stats {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px;
}
.tl-item .tl-stat {
  font-size: 12px; color: var(--fg-muted);
}
.tl-item .tl-stat strong {
  display: block; font-family: var(--font-display); font-size: 22px;
  color: var(--brand); font-weight: 800; letter-spacing: -.02em;
}
[data-theme="dark"] .tl-item::before { background: var(--surface); }

/* ---- 11. Sound design toggle ---- */
.sound-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: var(--fg-muted);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s ease;
}
.sound-toggle:hover { color: var(--fg); background: rgba(15,23,42,.04); }
.sound-toggle.is-on { color: var(--brand); }
.sound-toggle .sound-off-icon { display: inline-flex; }
.sound-toggle .sound-on-icon { display: none; }
.sound-toggle.is-on .sound-off-icon { display: none; }
.sound-toggle.is-on .sound-on-icon { display: inline-flex; }
[data-theme="dark"] .sound-toggle:hover { background: rgba(255,255,255,.06); }

/* ---- Easter egg: ?fun=1 mode ---- */
body.fun-mode h1, body.fun-mode h2, body.fun-mode h3 {
  background: linear-gradient(90deg, #ef4444, #f59e0b, #10b981, #06b6d4, #6366f1, #ec4899);
  background-size: 600% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: funRainbow 3s linear infinite;
}
@keyframes funRainbow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 600% 0%; }
}
body.fun-mode .btn-primary, body.fun-mode .btn-brand {
  animation: funShake .4s ease infinite alternate;
}
@keyframes funShake {
  from { transform: rotate(-1deg); }
  to   { transform: rotate(1deg); }
}

/* Designer mode (Konami code) */
body.designer-mode {
  --brand: #ec4899; --brand-hover: #db2777;
}
body.designer-mode::before {
  content: "🎨 DESIGNER MODE — Konami Activated";
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 9999;
  padding: 6px 16px; border-radius: 999px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .08em;
  box-shadow: 0 8px 24px -4px rgba(236,72,153,.55);
  animation: cmdSlide .4s cubic-bezier(.16,1,.3,1);
}

/* ---- Page-specific accent (her hizmet kendi rengini override ediyor) ---- */
[data-page-accent] {
  --brand: var(--page-accent, #6366f1);
  --brand-hover: var(--page-accent-hover, #4f46e5);
}

/* PWA install banner */
.pwa-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 95;
  max-width: 420px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px -12px rgba(15,23,42,.30);
  display: none;
  align-items: center; gap: 12px;
  animation: cmdSlide .4s cubic-bezier(.16,1,.3,1);
}
.pwa-banner.is-open { display: flex; }
.pwa-banner .ic {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pwa-banner .text { flex: 1; min-width: 0; }
.pwa-banner strong { font-size: 13px; display: block; }
.pwa-banner small { font-size: 11.5px; color: var(--fg-muted); display: block; }
.pwa-banner .actions { display: inline-flex; gap: 6px; }
.pwa-banner button {
  border: 0; padding: 7px 12px; border-radius: 7px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: inherit;
}
.pwa-banner .install { background: var(--brand); color: #fff; }
.pwa-banner .dismiss { background: transparent; color: var(--fg-muted); }
[data-theme="dark"] .pwa-banner { background: var(--surface); border-color: var(--border); }

/* END FX PACK 2 */

/* ============================================================
   CASE DETAIL — Premium Storytelling Layout
   ============================================================ */

/* 1. Hero */
.case-hero {
  padding: 56px 0 72px;
  position: relative; isolation: isolate;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(99,102,241,.10), transparent 60%),
    radial-gradient(50% 40% at 10% 100%, rgba(236,72,153,.08), transparent 60%);
}
.case-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--fg-muted); font-weight: 500;
  text-decoration: none; margin-bottom: 32px;
  transition: color var(--t-fast), transform var(--t-fast);
}
.case-back:hover { color: var(--brand); transform: translateX(-3px); }
.case-hero-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: center;
}
.case-hero-tags {
  display: inline-flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px;
}
.ch-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(99,102,241,.08); color: var(--brand);
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.case-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 800;
  line-height: 1.08; letter-spacing: -.035em;
  margin: 0 0 18px;
}
.case-hero-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--fg-muted); line-height: 1.6;
  margin: 0 0 28px; max-width: 580px;
}
.case-hero-client {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px 12px 12px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 999px;
}
.case-hero-client .client-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; font-weight: 700; font-size: 14px;
  display: inline-grid; place-items: center;
  letter-spacing: -.01em;
}
.case-hero-client small {
  font-size: 11px; color: var(--fg-subtle);
  letter-spacing: .06em; text-transform: uppercase;
  display: block; font-weight: 600;
}
.case-hero-client strong {
  font-size: 14px; color: var(--fg); font-weight: 700;
  letter-spacing: -.005em; display: block; margin-top: 1px;
}
[data-theme="dark"] .case-hero-client { background: var(--surface); border-color: var(--border); }

.case-hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 32px 80px -32px rgba(15,23,42,.40),
              0 12px 24px -12px rgba(15,23,42,.20);
  background: var(--bg-soft);
}
.case-hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.case-hero-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  color: #fff; font-size: 80px; font-weight: 800;
  letter-spacing: -.04em; font-family: var(--font-display);
}
.case-hero-placeholder span {
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.25));
}
.case-hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(99,102,241,.15));
  pointer-events: none;
}

@media (max-width: 900px) {
  .case-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-hero-visual { aspect-ratio: 16/10; }
}

/* 2. Metric showcase */
.case-metrics {
  padding: 64px 0;
  background: var(--bg-soft);
}
[data-theme="dark"] .case-metrics { background: rgba(255,255,255,.02); }
.case-metrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.case-metric-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 28px 24px;
  overflow: hidden; isolation: isolate;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.case-metric-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(15,23,42,.20);
}
.case-metric-tile .cm-glow {
  position: absolute; inset: -1px; z-index: -1;
  background: radial-gradient(70% 100% at 50% 0%, var(--m-c1, #6366f1), transparent 70%);
  opacity: .08; transition: opacity var(--t-base);
}
.case-metric-tile:hover .cm-glow { opacity: .18; }
.case-metric-tile .cm-ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--m-c1), var(--m-c2));
  color: #fff;
  display: inline-grid; place-items: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 16px -4px rgba(0,0,0,.10);
}
.case-metric-tile .cm-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px); font-weight: 800;
  line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--m-c1), var(--m-c2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.case-metric-tile .cm-lbl {
  font-size: 12.5px; color: var(--fg-muted);
  font-weight: 500; letter-spacing: .02em;
  line-height: 1.4;
}
[data-theme="dark"] .case-metric-tile { background: var(--surface); border-color: var(--border); }
@media (max-width: 720px) {
  .case-metrics-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* 3. Story section padding */
.case-story-section { padding: 56px 0; }

/* 4. Quote section */
.case-quote-section {
  padding: 64px 0;
}
.case-quote-card {
  position: relative;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a8a 100%);
  border-radius: 24px;
  padding: 56px 48px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  max-width: 920px; margin: 0 auto;
}
.case-quote-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 50% at 80% 0%, rgba(99,102,241,.45), transparent 70%),
    radial-gradient(50% 50% at 10% 100%, rgba(236,72,153,.30), transparent 70%);
}
.case-quote-card .cq-mark {
  font-family: 'Georgia', serif;
  font-size: 96px; line-height: 0.5;
  color: rgba(255,255,255,.15);
  position: absolute; top: 28px; left: 36px;
  user-select: none;
}
.case-quote-card .cq-text {
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic; line-height: 1.5;
  color: rgba(255,255,255,.95);
  margin: 0 0 28px;
  position: relative; z-index: 1;
  max-width: 760px;
}
.case-quote-card .cq-author {
  display: flex; align-items: center; gap: 14px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.case-quote-card .cq-av {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.30);
  color: #fff; font-weight: 700; font-size: 16px;
  display: inline-grid; place-items: center;
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.case-quote-card .cq-author > div {
  flex: 1; min-width: 200px;
}
.case-quote-card .cq-author strong {
  display: block; font-size: 15px; font-weight: 700; color: #fff;
}
.case-quote-card .cq-author small {
  display: block; font-size: 12.5px; color: rgba(255,255,255,.65);
  margin-top: 2px;
}
.case-quote-card .cq-stars {
  font-size: 16px; color: #fbbf24;
  letter-spacing: .08em;
}

@media (max-width: 720px) {
  .case-quote-card { padding: 36px 28px; }
  .case-quote-card .cq-mark { font-size: 64px; top: 18px; left: 22px; }
}

/* 5. Stack section */
.case-stack-section {
  padding: 56px 0;
}
.case-stack-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.case-stack-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 24px;
}
.case-stack-card .cs-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.case-stack-card .cs-ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-grid; place-items: center;
}
.case-stack-card .cs-head small {
  font-size: 11px; color: var(--fg-subtle);
  letter-spacing: .08em; text-transform: uppercase;
  display: block; font-weight: 600;
}
.case-stack-card .cs-head strong {
  font-size: 15px; color: var(--fg); font-weight: 700;
  display: block; margin-top: 1px;
}
.case-stack-card .cs-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cs-pill {
  display: inline-flex; align-items: center;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(99,102,241,.08);
  color: var(--fg);
  font-size: 12.5px; font-weight: 500;
  border: 1px solid rgba(99,102,241,.16);
}
.cs-pill-mono {
  font-family: var(--font-mono);
  font-size: 11.5px;
  background: rgba(236,72,153,.06);
  border-color: rgba(236,72,153,.18);
  color: #be185d;
}
[data-theme="dark"] .case-stack-card { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .case-stack-card .cs-head { border-bottom-color: var(--border); }
[data-theme="dark"] .cs-pill-mono { color: #f9a8d4; }

@media (max-width: 720px) {
  .case-stack-grid { grid-template-columns: 1fr; }
}

/* 6. Related */
.case-related-section { padding: 64px 0; }
.case-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.case-related-card {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.case-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.20);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,.18);
}
.case-related-card .crc-cover {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
}
.case-related-card .crc-body {
  padding: 18px; flex: 1;
  display: flex; flex-direction: column;
}
.case-related-card .crc-cat {
  font-size: 10.5px; font-weight: 700; color: var(--brand);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.case-related-card h3 {
  font-size: 16px; font-weight: 700; line-height: 1.3;
  margin: 0 0 12px; letter-spacing: -.01em;
}
.case-related-card .crc-metric {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.06);
  display: flex; align-items: baseline; gap: 8px;
}
.case-related-card .crc-metric strong {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.02em;
}
.case-related-card .crc-metric span {
  font-size: 11.5px; color: var(--fg-subtle);
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}
[data-theme="dark"] .case-related-card { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .case-related-card .crc-metric { border-top-color: var(--border); }
@media (max-width: 980px) { .case-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .case-related-grid { grid-template-columns: 1fr; } }
/* END CASE DETAIL */

/* ============================================================
   OFFICE MAP CARD — premium dark map with header bar
   ============================================================ */
.office-map-card {
  margin-top: 32px;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 32px 80px -32px rgba(15,23,42,.40);
  position: relative;
}
.office-map-card .omc-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, rgba(99,102,241,.10), rgba(236,72,153,.06));
}
.office-map-card .omc-title {
  display: inline-flex; align-items: center; gap: 12px;
  color: #fff; font-size: 15px; font-weight: 700;
}
.office-map-card .omc-ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: inline-grid; place-items: center;
  color: #fff;
  box-shadow: 0 6px 18px -4px rgba(99,102,241,.55);
}
.office-map-card .omc-ic svg { width: 16px; height: 16px; }
.office-map-card .omc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #fff; font-size: 13px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px -4px rgba(139,92,246,.55);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.office-map-card .omc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(139,92,246,.70);
  color: #fff;
}
.office-map-card .omc-frame {
  position: relative;
  height: 480px;
  background: #0a0f1d;
}
.office-map-card .omc-frame iframe {
  display: block;
  width: 100%; height: 100%;
  /* Light → Dark theme dönüşümü (filter trick) */
  filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.85) saturate(0.8);
}
/* Light mode'da harita normal renkte kalsın */
html:not([data-theme="dark"]) .office-map-card {
  background: var(--surface);
  border-color: rgba(15,23,42,.06);
}
html:not([data-theme="dark"]) .office-map-card .omc-head {
  background: linear-gradient(135deg, rgba(99,102,241,.04), rgba(236,72,153,.02));
  border-bottom-color: rgba(15,23,42,.06);
}
html:not([data-theme="dark"]) .office-map-card .omc-title { color: var(--fg); }
html:not([data-theme="dark"]) .office-map-card .omc-frame iframe {
  filter: none;          /* Light mode'da Google Maps doğal görünsün */
}
html:not([data-theme="dark"]) .office-map-card .omc-frame {
  background: #f1f5f9;
}

@media (max-width: 600px) {
  .office-map-card .omc-head { padding: 14px 16px; }
  .office-map-card .omc-title { font-size: 13.5px; }
  .office-map-card .omc-cta { font-size: 12px; padding: 8px 14px; }
  .office-map-card .omc-frame { height: 360px; }
}
/* END OFFICE MAP */

/* ============================================================
   CONTACT EXTRAS — Online Team + Why + Social
   ============================================================ */
.contact-extra {
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 16px;
  padding: 22px;
  margin-top: 14px;
}
[data-theme="dark"] .contact-extra { background: var(--surface); border-color: var(--border); }

/* Online Team */
.team-online .te-head { margin-bottom: 18px; }
.team-online .te-status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(16,185,129,.10);
  border: 1px solid rgba(16,185,129,.22);
  font-size: 12.5px; color: var(--fg);
  width: 100%;
  box-sizing: border-box;
}
.team-online .te-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,.55);
  animation: livePulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
.team-online .te-status strong { font-weight: 700; color: var(--fg); }
.team-online .te-people {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.team-online .te-person {
  text-align: center;
  padding: 10px 4px;
  border-radius: 10px;
  transition: background var(--t-fast);
}
.team-online .te-person:hover { background: var(--bg-soft); }
.team-online .te-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 14px;
  letter-spacing: -.02em;
  position: relative;
  margin-bottom: 8px;
  border: 2px solid var(--surface);
  box-shadow: 0 4px 12px -2px rgba(15,23,42,.20);
}
.team-online .te-on {
  position: absolute; right: -2px; bottom: -2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #10b981;
  border: 2px solid var(--surface);
}
.team-online .te-person strong {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--fg); line-height: 1.2;
}
.team-online .te-person small {
  display: block; font-size: 10.5px; color: var(--fg-muted);
  margin-top: 2px; line-height: 1.3;
}
@media (max-width: 480px) {
  .team-online .te-people { grid-template-columns: repeat(2, 1fr); }
}
[data-theme="dark"] .team-online .te-av { border-color: var(--surface); }
[data-theme="dark"] .team-online .te-on { border-color: var(--surface); }
[data-theme="dark"] .team-online .te-person:hover { background: rgba(255,255,255,.04); }

/* Why card */
.why-card .why-head { margin-bottom: 16px; }
.why-card .why-eyebrow {
  font-size: 10.5px; font-weight: 700; color: var(--fg-subtle);
  letter-spacing: .12em; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800; margin: 0;
  letter-spacing: -.015em; line-height: 1.3;
}
.why-card .why-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.why-card .why-list li {
  display: flex; align-items: center; gap: 12px;
}
.why-card .why-list .ic {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}
.why-card .why-list strong {
  display: block; font-size: 13.5px; font-weight: 700; color: var(--fg);
  line-height: 1.3;
}
.why-card .why-list small {
  display: block; font-size: 11.5px; color: var(--fg-muted);
  margin-top: 2px;
}

/* Social card */
.social-card .sc-head { margin-bottom: 14px; }
.social-card .sc-head strong {
  display: block; font-size: 14.5px; font-weight: 700;
}
.social-card .sc-head small {
  display: block; font-size: 12px; color: var(--fg-muted);
  margin-top: 3px;
}
.social-card .sc-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.social-card .sc-link {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 8px; border-radius: 10px;
  background: var(--bg-soft);
  color: var(--fg-muted);
  font-size: 11.5px; font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(15,23,42,.06);
  transition: all var(--t-fast);
}
.social-card .sc-link:hover {
  background: var(--sc, var(--brand));
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -4px color-mix(in srgb, var(--sc, #6366f1) 40%, transparent);
}
.social-card .sc-link svg {
  width: 14px; height: 14px;
}
[data-theme="dark"] .social-card .sc-link {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
}
@media (max-width: 480px) {
  .social-card .sc-row { grid-template-columns: repeat(2, 1fr); }
}
/* END CONTACT EXTRAS */

/* ============================================================
   CONTACT FORM EXTRAS (sol kolon altı) — Response stats + Quote
   ============================================================ */

/* Response time stats — 3 mini tile */
.response-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(99,102,241,.04), rgba(236,72,153,.03));
  border: 1px solid rgba(99,102,241,.10);
  border-radius: 14px;
}
[data-theme="dark"] .response-stats {
  background: linear-gradient(135deg, rgba(99,102,241,.10), rgba(236,72,153,.06));
  border-color: var(--border);
}
.response-stats .rs-tile {
  text-align: center;
  padding: 8px 4px;
  position: relative;
}
.response-stats .rs-tile + .rs-tile::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: rgba(15,23,42,.08);
}
[data-theme="dark"] .response-stats .rs-tile + .rs-tile::before { background: rgba(255,255,255,.08); }
.response-stats .rs-num {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.02em; line-height: 1;
  margin-bottom: 6px;
}
.response-stats .rs-lbl {
  font-size: 11px; color: var(--fg-muted);
  letter-spacing: .02em; line-height: 1.4;
  font-weight: 500;
}

/* Quote card — premium müşteri yorumu */
.contact-quote {
  margin-top: 14px;
  padding: 24px;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(99,102,241,.06), transparent 60%),
    var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .contact-quote {
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(99,102,241,.14), transparent 60%),
    var(--surface);
  border-color: var(--border);
}
.contact-quote::before {
  content: '"';
  position: absolute; top: -8px; right: 16px;
  font-family: 'Georgia', serif;
  font-size: 96px; line-height: 1;
  color: rgba(99,102,241,.10);
  user-select: none; pointer-events: none;
}
.contact-quote .cq-grade {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.contact-quote .cq-stars {
  font-size: 16px; color: #fbbf24;
  letter-spacing: .08em;
}
.contact-quote .cq-meta {
  font-size: 11.5px; color: var(--fg-muted); font-weight: 500;
}
.contact-quote .cq-text {
  font-size: 14.5px; line-height: 1.6;
  color: var(--fg);
  font-style: italic;
  margin: 0 0 18px;
  position: relative; z-index: 1;
}
.contact-quote .cq-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.06);
  position: relative; z-index: 1;
}
[data-theme="dark"] .contact-quote .cq-author { border-top-color: var(--border); }
.contact-quote .cq-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 13px;
  letter-spacing: -.01em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px -2px rgba(99,102,241,.40);
}
.contact-quote .cq-author > div {
  flex: 1; min-width: 0;
}
.contact-quote .cq-author strong {
  display: block; font-size: 13.5px; font-weight: 700; color: var(--fg);
}
.contact-quote .cq-author small {
  display: block; font-size: 11.5px; color: var(--fg-muted);
  margin-top: 2px;
}
.contact-quote .cq-verify {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(16,185,129,.10); color: #10b981;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
}
.contact-quote .cq-verify svg { width: 14px; height: 14px; }

@media (max-width: 480px) {
  .response-stats { grid-template-columns: 1fr; }
  .response-stats .rs-tile + .rs-tile::before { display: none; }
}
/* END CONTACT FORM EXTRAS */

/* ============================================================
   LANG TOGGLE — TR/EN switcher
   ============================================================ */
.lang-toggle {
  display: inline-flex; align-items: center;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 999px; padding: 3px;
  gap: 0;
}
[data-theme="dark"] .lang-toggle { background: rgba(255,255,255,.05); border-color: var(--border); }
.lang-toggle .lt-opt {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--fg-muted); text-decoration: none;
  transition: all var(--t-fast);
}
.lang-toggle .lt-opt:hover { color: var(--fg); }
.lang-toggle .lt-opt.active {
  background: var(--surface);
  color: var(--fg);
  box-shadow: 0 2px 6px -2px rgba(15,23,42,.18);
}
[data-theme="dark"] .lang-toggle .lt-opt.active { background: rgba(255,255,255,.10); }
.lang-toggle .lt-flag { font-size: 13px; line-height: 1; }
.lang-toggle .lt-code { letter-spacing: .02em; }
@media (max-width: 980px) {
  .lang-toggle .lt-code { display: none; }
  .lang-toggle .lt-opt { padding: 5px 7px; }
}

/* ============================================================
   AURORA BACKGROUND — animated canvas
   ============================================================ */
.aurora-canvas {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
  mix-blend-mode: screen;
}
[data-theme="dark"] .aurora-canvas { opacity: .28; mix-blend-mode: screen; }
@media (prefers-reduced-motion: reduce) { .aurora-canvas { display: none; } }

/* ============================================================
   THEME COLOR CUSTOMIZER (footer bottom — compact pill)
   ============================================================ */
.theme-picker-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 10px 6px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.theme-picker-pill:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
}
.theme-picker-pill .tpp-label {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,.55);
  border-right: 1px solid rgba(255,255,255,.10);
  padding-right: 10px;
}
.theme-picker-pill .tpp-swatches {
  display: inline-flex; gap: 5px;
}
.theme-picker-pill .tp-sw {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.theme-picker-pill .tp-sw:hover {
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(255,255,255,.06);
}
.theme-picker-pill .tp-sw.active {
  border-color: rgba(255,255,255,.85);
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

/* ============================================================
   TYPOGRAPHIC SCROLL PROGRESS — variable font weight
   ============================================================ */
.typo-progress {
  font-variation-settings: "wght" var(--typo-w, 800);
  transition: font-variation-settings 0.1s linear;
}

/* ============================================================
   VOICE SEARCH BUTTON (cmd palette)
   ============================================================ */
.cmd-voice {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  margin-right: 6px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--fg-subtle);
  cursor: pointer;
  transition: all var(--t-fast);
}
.cmd-voice:hover { background: var(--bg-soft); color: var(--brand); border-color: rgba(99,102,241,.20); }
.cmd-voice.is-listening {
  color: #ef4444;
  background: rgba(239,68,68,.10);
  border-color: rgba(239,68,68,.30);
  animation: voicePulse 1s ease-in-out infinite;
}
@keyframes voicePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,.5); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* ============================================================
   LIVE CURSORS — Figma tarzı simulated team cursors
   ============================================================ */
.live-cursors-layer {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9985;
}
.live-cursor {
  position: absolute;
  transform: translate(-2px, -2px);
  transition: transform .8s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.live-cursor svg {
  width: 24px; height: 24px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.20));
}
.live-cursor .lc-name {
  position: absolute; top: 22px; left: 18px;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: 6px;
  color: #fff; font-size: 10.5px; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0,0,0,.20);
}
@media (prefers-reduced-motion: reduce) { .live-cursors-layer { display: none; } }

/* END SUPER PACK */

/* ============================================================
   BULK ACTIONS — Admin tablolarda toplu işlem
   ============================================================ */
.bulk-actions-bar {
  position: sticky; top: 64px; z-index: 50;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid rgba(99,102,241,.30);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px -8px rgba(99,102,241,.30);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.bulk-actions-bar.visible {
  opacity: 1; transform: none; pointer-events: auto;
}
.bulk-actions-bar .ba-count {
  font-size: 13.5px; font-weight: 700; color: var(--brand);
}
.bulk-actions-bar .ba-actions {
  display: inline-flex; gap: 6px; flex-wrap: wrap; margin-left: auto;
}
.bulk-actions-bar .ba-actions button,
.bulk-actions-bar .ba-actions select {
  padding: 7px 14px; border-radius: 8px;
  background: var(--bg-soft); border: 1px solid rgba(15,23,42,.08);
  font-size: 12.5px; font-weight: 600; color: var(--fg);
  cursor: pointer; font-family: inherit;
  transition: all var(--t-fast);
}
.bulk-actions-bar .ba-actions button:hover { border-color: var(--brand); color: var(--brand); }
.bulk-actions-bar .ba-actions button.danger:hover { border-color: #ef4444; color: #ef4444; }
.bulk-actions-bar .ba-clear {
  background: transparent; border: 0; color: var(--fg-muted);
  padding: 7px 12px; cursor: pointer; font-size: 12px; font-family: inherit;
}
[data-theme="dark"] .bulk-actions-bar { background: var(--surface); }
[data-theme="dark"] .bulk-actions-bar .ba-actions button,
[data-theme="dark"] .bulk-actions-bar .ba-actions select { background: rgba(255,255,255,.04); border-color: var(--border); }

/* Row checkbox column */
.ticket-table table th.bulk-col,
.ticket-table table td.bulk-col {
  width: 40px; text-align: center; padding-left: 8px; padding-right: 0;
}
.bulk-checkbox {
  width: 18px; height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
}

/* CUSTOMER FILTERS */
.customer-filter-bar {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr auto; gap: 10px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 12px;
  margin-bottom: 18px;
  align-items: center;
}
.customer-filter-bar input,
.customer-filter-bar select {
  padding: 9px 12px; border-radius: 8px;
  background: var(--bg-soft); border: 1px solid rgba(15,23,42,.08);
  font-size: 13px; color: var(--fg); font-family: inherit;
}
[data-theme="dark"] .customer-filter-bar { background: var(--surface); border-color: var(--border); }
[data-theme="dark"] .customer-filter-bar input,
[data-theme="dark"] .customer-filter-bar select { background: rgba(255,255,255,.04); border-color: var(--border); color: #fff; }
@media (max-width: 768px) {
  .customer-filter-bar { grid-template-columns: 1fr; }
}
/* END BULK + FILTER */

/* ============================================================
   WOW PACK v3.5 — Detail Magic CSS
   ============================================================ */

/* 1) Adaptive Story Greeting */
.story-greet {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 9999;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 24px 48px -16px rgba(15,23,42,.30);
  transform: translateY(20px); opacity: 0;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .5s;
}
[data-theme="dark"] .story-greet { background: var(--surface); border-color: var(--border); }
.story-greet.is-show { transform: translateY(0); opacity: 1; }
.story-greet-inner {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.story-wave {
  font-size: 28px;
  animation: storyWave 1.4s ease-in-out infinite;
  display: inline-block;
}
@keyframes storyWave {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-12deg); }
  60% { transform: rotate(8deg); }
  80% { transform: rotate(-4deg); }
}
.story-msg { flex: 1; min-width: 200px; }
.story-msg strong { display: block; font-size: 14px; font-weight: 700; color: var(--fg); margin-bottom: 2px; }
.story-msg small { font-size: 12px; color: var(--fg-muted); display: block; line-height: 1.45; }
.story-msg a { color: var(--brand); font-weight: 600; }
.story-btn {
  padding: 7px 14px;
  background: linear-gradient(135deg, var(--brand), #ec4899);
  color: #fff;
  font-size: 12.5px; font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: transform var(--t-fast);
}
.story-btn:hover { transform: translateY(-2px); }
.story-x {
  background: none; border: 0; cursor: pointer;
  font-size: 22px; color: var(--fg-subtle);
  padding: 0 6px;
}
.story-x:hover { color: var(--fg); }

/* 2) Time-aware bar */
.time-aware {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 24px;
  background: var(--bg-soft);
  border-top: 1px solid rgba(15,23,42,.06);
  font-size: 12.5px; color: var(--fg-muted);
}
[data-theme="dark"] .time-aware { background: rgba(255,255,255,.02); border-top-color: var(--border); }
.ta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #94a3b8;
  flex-shrink: 0;
}
.time-work .ta-dot     { background: #10b981; box-shadow: 0 0 0 0 rgba(16,185,129,.5); animation: clPulse 2s infinite; }
.time-morning .ta-dot  { background: #f59e0b; }
.time-lunch .ta-dot    { background: #fb923c; }
.time-evening .ta-dot  { background: #8b5cf6; }
.time-night .ta-dot    { background: #1e293b; }
.time-rest .ta-dot     { background: #06b6d4; }
.time-sleep .ta-dot    { background: #475569; opacity: .5; }
.ta-text { flex: 1; }
.ta-clock {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: var(--fg);
  letter-spacing: .04em;
}
@media (max-width: 640px) {
  .time-aware { padding: 8px 14px; font-size: 11.5px; flex-wrap: wrap; }
}

/* 3) Konami Dev Console */
.cn-dev-console {
  position: fixed; inset: 0; z-index: 99999;
  display: grid; place-items: center;
  opacity: 0; transition: opacity .25s;
}
.cn-dev-console.is-show { opacity: 1; }
.cn-dev-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cn-dev-card {
  position: relative; z-index: 1;
  width: min(540px, 92vw);
  background: #0a0e1a;
  color: #d4d4d8;
  border: 1px solid rgba(99,102,241,.40);
  border-radius: 14px;
  padding: 24px;
  font-family: var(--font-mono);
  box-shadow: 0 0 0 1px rgba(99,102,241,.20), 0 24px 48px rgba(0,0,0,.6);
}
.cn-dev-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.cn-dev-head strong {
  display: block; color: #6366f1;
  font-size: 14px; letter-spacing: .12em;
}
.cn-dev-head small {
  display: block;
  font-size: 11px; color: #71717a; margin-top: 4px;
}
.cn-dev-close {
  background: none; border: 0; cursor: pointer;
  color: #71717a; font-size: 22px; padding: 0 6px;
}
.cn-dev-close:hover { color: #fff; }
.cn-dev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.cn-dev-stat {
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.20);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
}
.cn-dev-stat strong {
  display: block;
  font-size: 22px; font-weight: 800;
  color: #10b981;
  font-family: var(--font-mono);
}
.cn-dev-stat small {
  font-size: 10px; color: #71717a;
  text-transform: uppercase; letter-spacing: .08em;
}
.cn-dev-tip {
  font-size: 12px; color: #a1a1aa;
  line-height: 1.6;
  padding: 12px;
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  border-left: 2px solid #6366f1;
}
.cn-dev-tip a { color: #6366f1; text-decoration: none; }
.cn-dev-tip a:hover { text-decoration: underline; }
.cn-dev-tip code {
  background: rgba(99,102,241,.20);
  color: #c7d2fe;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 11px;
}

/* 5) Cursor emoji collision */
.cursor-emoji {
  position: fixed;
  font-size: 22px;
  pointer-events: none;
  z-index: 99999;
  animation: emojiFloat 1.2s ease-out forwards;
  transform: translate(-50%, -50%);
}
@keyframes emojiFloat {
  0%   { transform: translate(-50%, -50%) scale(.5) rotate(0); opacity: 0; }
  20%  { transform: translate(-50%, -90%) scale(1.2) rotate(20deg); opacity: 1; }
  100% { transform: translate(-50%, -300%) scale(.8) rotate(60deg); opacity: 0; }
}

/* Print mode (PDF-friendly) */
@media print {
  .story-greet, .cn-dev-console, .time-aware,
  .live-cursors-layer, .aurora-canvas, .whatsapp-fab,
  .smart-newsletter, .cookie-consent { display: none !important; }
}

/* Hero CTA group — ana butonlar + altında pill'ler */
.hl-cta-group {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Hero quick bar — küçük yatay pill'ler (CTA'ların altında) */
.hl-quick-bar {
  display: inline-flex;
  gap: 8px;
  margin-top: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.hl-quick-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 999px;
  text-decoration: none; color: var(--fg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--t-fast);
  font-size: 12.5px;
}
[data-theme="dark"] .hl-quick-pill {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.hl-quick-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(99,102,241,.40);
  background: rgba(99,102,241,.08);
}
.hl-quick-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(16,185,129,.5);
  animation: clPulse 1.8s infinite;
}
.hl-quick-pill-icon {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center; justify-content: center;
  background: rgba(99,102,241,.10);
  color: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.hl-quick-pill-icon svg { width: 12px; height: 12px; }
.hl-quick-text {
  display: inline-flex; align-items: baseline; gap: 6px;
  white-space: nowrap;
}
.hl-quick-pill strong {
  font-size: 12.5px; font-weight: 700;
  color: var(--fg);
  letter-spacing: -.005em;
}
.hl-quick-pill small {
  font-size: 11px;
  color: var(--fg-muted);
  font-weight: 500;
}
.hl-quick-pill > svg {
  width: 13px; height: 13px;
  color: var(--fg-subtle);
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.hl-quick-pill:hover > svg {
  color: var(--brand);
  transform: translateX(2px);
}

@media (max-width: 600px) {
  .hl-quick-bar { flex-direction: column; align-items: stretch; }
  .hl-quick-pill { justify-content: flex-start; }
  .hl-quick-text { white-space: normal; }
}

/* Admin nav pill */
.nav-pill {
  display: inline-flex; align-items: center;
  margin-left: auto;
  padding: 1px 6px;
  background: linear-gradient(135deg, var(--brand), #ec4899);
  color: #fff;
  font-size: 9px; font-weight: 700;
  letter-spacing: .04em;
  border-radius: 4px;
}


/* ============================================================
   SWIPE-TO-ACTION — Admin liste view'ları
   ============================================================ */
@media (max-width: 768px) {
  .swipe-row {
    transition: transform .25s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
    touch-action: pan-y;
  }
  .swipe-actions {
    position: absolute;
    top: 0; right: 0;
    height: 100%;
    width: 140px;
    display: flex;
    transform: translateX(100%);
    z-index: 0;
  }
  .swipe-act {
    flex: 1;
    border: 0; cursor: pointer;
    color: #fff;
    display: grid; place-items: center;
    transition: filter .15s;
  }
  .swipe-act:active { filter: brightness(.85); }
  .swipe-act.swipe-edit   { background: #6366f1; }
  .swipe-act.swipe-delete { background: #ef4444; }
  .swipe-act svg { width: 18px; height: 18px; }
  .ticket-table tr.swipe-row { background: var(--surface); }
  [data-theme="dark"] .ticket-table tr.swipe-row { background: var(--surface); }
}
