/* =====================================================================
   ERBAŞ YAZILIM — Kurumsal Web Sitesi
   Tek stil dosyası (design system + bileşenler + sayfa düzenleri)
   ===================================================================== */

/* ---------- Google Fonts alternatif güvenli yükleme ---------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --bg: #070b14;
  --bg-2: #0b1220;
  --bg-3: #101a2e;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #eaf0fa;
  --text-soft: #b9c5da;
  --muted: #8494ad;

  --primary: #5b8cff;
  --primary-2: #7c5cff;
  --accent: #22d3ee;
  --gold: #e8c37a;
  --green: #34d399;
  --red: #fb7185;

  --grad: linear-gradient(135deg, #5b8cff 0%, #7c5cff 48%, #22d3ee 100%);
  --grad-soft: linear-gradient(135deg, rgba(91, 140, 255, 0.18), rgba(124, 92, 255, 0.12) 50%, rgba(34, 211, 238, 0.14));

  --font-head: 'Sora', 'Segoe UI', sans-serif;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -28px rgba(4, 10, 26, 0.85);
  --shadow-lg: 0 40px 90px -30px rgba(4, 10, 26, 0.95);
  --glow: 0 0 0 1px rgba(91, 140, 255, 0.35), 0 22px 50px -20px rgba(91, 140, 255, 0.55);

  --container: 1200px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: rgba(124, 92, 255, 0.4); color: #fff; }

/* Global arka plan dokusu */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -8%, rgba(91, 140, 255, 0.18), transparent 60%),
    radial-gradient(800px 600px at 92% 4%, rgba(124, 92, 255, 0.16), transparent 62%),
    radial-gradient(700px 700px at 50% 120%, rgba(34, 211, 238, 0.10), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 108px 0; position: relative; }
.section.tight { padding: 76px 0; }
.center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-48 { margin-top: 48px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.07);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 800; line-height: 1.14; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-sub { color: var(--text-soft); font-size: 1.06rem; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.96rem;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 16px 40px -16px rgba(91, 140, 255, 0.75);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, #22d3ee 0%, #7c5cff 50%, #5b8cff 100%);
  opacity: 0; transition: opacity 0.35s;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 55px -18px rgba(124, 92, 255, 0.85); }
.btn-primary:hover::after { opacity: 1; }
.btn-ghost { background: var(--surface); border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); transform: translateY(-3px); border-color: rgba(91, 140, 255, 0.5); }
.btn-outline { background: transparent; border-color: rgba(91, 140, 255, 0.5); color: #cddcff; }
.btn-outline:hover { background: rgba(91, 140, 255, 0.12); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1.03rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px -24px rgba(0, 0, 0, 0.9);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 42px; width: 42px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; color: #fff; }
.brand-sub { font-family: var(--font); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.32em; color: #8FB3FF; margin-top: 4px; }
.brand.sm img { height: 34px; width: 34px; }
.brand.sm .brand-name { font-size: 1.08rem; }
.brand.sm .brand-sub { font-size: 0.52rem; letter-spacing: 0.28em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px; border-radius: 999px; font-size: 0.93rem; font-weight: 500;
  color: var(--text-soft); transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: var(--surface-2); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border);
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: 0.3s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 78px) 0 96px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-strong);
  font-size: 0.83rem; color: var(--text-soft); margin-bottom: 26px;
}
.hero-badge b { background: var(--grad); color: #fff; padding: 3px 11px; border-radius: 999px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 24px;
}
.hero p.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--text-soft); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.hero-trust .t-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-soft); }
.hero-trust svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* Hero görsel / mockup */
.hero-visual { position: relative; }
.hero-orbs { position: absolute; inset: -20% -10%; z-index: -1; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; animation: float 12s ease-in-out infinite; }
.orb.a { width: 280px; height: 280px; background: #5b8cff; top: -20px; right: 10%; }
.orb.b { width: 240px; height: 240px; background: #7c5cff; bottom: 0; left: -20px; animation-delay: -4s; }
.orb.c { width: 200px; height: 200px; background: #22d3ee; bottom: -30px; right: -10px; animation-delay: -8s; }
@keyframes float { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-22px,0); } }

/* App window mockup */
.window {
  border-radius: var(--radius-lg); border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(16, 26, 46, 0.95), rgba(9, 14, 26, 0.96));
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: perspective(1400px) rotateY(-7deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.hero-visual:hover .window { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.win-bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.win-dot { width: 11px; height: 11px; border-radius: 50%; }
.win-dot.r { background: #ff5f57; } .win-dot.y { background: #febc2e; } .win-dot.g { background: #28c840; }
.win-url { margin-left: 12px; font-size: 0.76rem; color: var(--muted); background: rgba(255,255,255,0.05); padding: 4px 14px; border-radius: 999px; }
.win-body { display: grid; grid-template-columns: 172px 1fr; min-height: 346px; }
.mock-side { border-right: 1px solid var(--border); padding: 16px 12px; background: rgba(0,0,0,0.22); }
.mock-logo { display: flex; align-items: center; gap: 9px; padding: 6px 8px 16px; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; }
.mock-logo i { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); display: block; }
.mock-nav-item { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 9px; font-size: 0.76rem; color: var(--muted); margin-bottom: 3px; }
.mock-nav-item i { width: 12px; height: 12px; border-radius: 4px; background: currentColor; opacity: 0.7; }
.mock-nav-item.active { background: rgba(91, 140, 255, 0.16); color: #cfdcff; }
.mock-nav-item.active i { background: var(--primary); }
.mock-main { padding: 18px; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-bottom: 16px; }
.mock-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 13px; }
.mock-card .k { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.mock-card .v { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-top: 4px; }
.mock-card .v small { font-size: 0.62rem; font-weight: 600; color: var(--green); margin-left: 4px; }
.mock-chart { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 15px; }
.mock-chart .ct { font-size: 0.72rem; font-weight: 600; color: var(--text-soft); margin-bottom: 14px; }
.mock-bars { display: flex; align-items: flex-end; gap: 9px; height: 92px; }
.mock-bars span { flex: 1; border-radius: 6px 6px 3px 3px; background: var(--grad); opacity: 0.85; animation: barGrow 1.4s cubic-bezier(.2,.8,.2,1) backwards; }
.mock-bars span:nth-child(1) { height: 45%; animation-delay: .1s; }
.mock-bars span:nth-child(2) { height: 72%; animation-delay: .2s; }
.mock-bars span:nth-child(3) { height: 58%; animation-delay: .3s; }
.mock-bars span:nth-child(4) { height: 88%; animation-delay: .4s; }
.mock-bars span:nth-child(5) { height: 66%; animation-delay: .5s; }
.mock-bars span:nth-child(6) { height: 95%; animation-delay: .6s; }
.mock-bars span:nth-child(7) { height: 52%; animation-delay: .7s; }
@keyframes barGrow { from { height: 0; opacity: 0; } }

.float-chip {
  position: absolute; z-index: 3;
  background: rgba(12, 19, 34, 0.92); border: 1px solid var(--border-strong);
  border-radius: 14px; padding: 11px 15px; box-shadow: var(--shadow);
  backdrop-filter: blur(10px); font-size: 0.78rem; display: flex; align-items: center; gap: 10px;
  animation: float 9s ease-in-out infinite;
}
.float-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.float-chip strong { display: block; font-size: 0.82rem; }
.float-chip small { color: var(--muted); font-size: 0.68rem; }
.chip-1 { top: 8%; left: -26px; }
.chip-2 { bottom: 12%; right: -22px; animation-delay: -4s; }
.chip-3 { top: 46%; right: -34px; animation-delay: -7s; }

/* ---------- What's New section ---------- */
.badge-live { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}
.wn-grid { gap: 18px; }
.wn-card { padding-top: 26px; }
.wn-tag {
  position: absolute; top: 16px; right: 16px; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--accent); background: rgba(52, 211, 153, 0.12);
  padding: 4px 9px; border-radius: 999px; border: 1px solid rgba(52, 211, 153, 0.28);
}

/* ---------- Logo / trust strip ---------- */
.trust-strip { padding: 34px 0 10px; }
.trust-strip .label { text-align: center; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 46px; }
.logo-row .client {
  font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--text-soft);
  opacity: 0.6; transition: opacity 0.3s, color 0.3s; display: inline-flex; align-items: center; gap: 9px;
}
.logo-row .client:hover { opacity: 1; color: #fff; }
.logo-row .client i { width: 9px; height: 9px; border-radius: 3px; background: var(--grad); display: inline-block; }

/* ---------- Stats band ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--border);
}
.stat { background: var(--bg-2); padding: 36px 28px; text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lbl { font-size: 0.88rem; color: var(--text-soft); margin-top: 6px; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s, background 0.35s, box-shadow 0.35s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity 0.35s; pointer-events: none;
}
.card:hover { transform: translateY(-6px); background: var(--surface-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 0.9; }
.card .ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--border-strong); margin-bottom: 20px;
}
.card .ic svg { width: 26px; height: 26px; color: #9db6ff; }
.card h3 { font-family: var(--font-head); font-size: 1.14rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.94rem; }
.card ul.mini { margin-top: 16px; display: grid; gap: 8px; }
.card ul.mini li { position: relative; padding-left: 22px; font-size: 0.87rem; color: var(--text-soft); }
.card ul.mini li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--grad-soft); border: 1px solid var(--primary); }

/* ---------- Bento / modules ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento .card.span-2 { grid-column: span 2; }
.module-card { padding: 32px 30px; }
.module-num {
  font-family: var(--font-head); font-weight: 800; font-size: 0.8rem;
  color: var(--primary); letter-spacing: 0.1em; margin-bottom: 14px; display: block;
}

/* ---------- Feature rows (alternating) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 62px 0; }
.feature-row.reverse .fr-media { order: 2; }
.feature-row .fr-media { position: relative; }
.fr-media .panel {
  border-radius: var(--radius-lg); border: 1px solid var(--border-strong);
  background: linear-gradient(180deg, rgba(16,26,46,.9), rgba(9,14,26,.92));
  padding: 26px; box-shadow: var(--shadow);
}
.fr-icon { width: 60px; height: 60px; border-radius: 17px; display: grid; place-items: center; background: var(--grad); box-shadow: 0 18px 40px -18px rgba(91,140,255,.8); margin-bottom: 22px; }
.fr-icon svg { width: 28px; height: 28px; color: #fff; }
.feature-row h3 { font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; line-height: 1.16; margin-bottom: 16px; letter-spacing: -0.02em; }
.feature-row p { color: var(--text-soft); margin-bottom: 22px; }
.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--text-soft); }
.check-list svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* Mock: order/aassignment panel */
.mini-order { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px; margin-bottom: 12px; }
.mini-order .row1 { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mini-order .tag { font-size: 0.66rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; }
.tag.hk { background: rgba(52, 211, 153, 0.14); color: #6ee7b7; border: 1px solid rgba(52,211,153,.3); }
.tag.tech { background: rgba(91, 140, 255, 0.16); color: #a8c1ff; border: 1px solid rgba(91,140,255,.3); }
.tag.guest { background: rgba(232, 195, 122, 0.15); color: #f0d69c; border: 1px solid rgba(232,195,122,.3); }
.mini-order .num { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; color: var(--muted); }
.mini-order .title { font-size: 0.92rem; font-weight: 600; }
.mini-order .meta { display: flex; gap: 14px; margin-top: 9px; font-size: 0.76rem; color: var(--muted); }
.progress { height: 6px; border-radius: 999px; background: rgba(255,255,255,.08); margin-top: 13px; overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--grad); border-radius: 999px; }

/* Mock QR */
.qr-mock { display: flex; gap: 20px; align-items: center; }
.qr-code {
  width: 120px; height: 120px; border-radius: 16px; flex-shrink: 0;
  background:
    repeating-conic-gradient(#0b1220 0% 25%, #eaf0fa 0% 50%) 0 / 16px 16px;
  border: 6px solid #fff;
}
.qr-lines { flex: 1; display: grid; gap: 10px; }
.qr-line { height: 12px; border-radius: 6px; background: rgba(255,255,255,.09); }
.qr-line.w70 { width: 70%; } .qr-line.w50 { width: 50%; } .qr-line.w85 { width: 85%; }

/* ---------- Languages ---------- */
.lang-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.lang-pill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 17px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: 0.88rem; }
.lang-pill b { color: var(--accent); font-weight: 700; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 30px; position: relative; transition: transform 0.35s, border-color 0.35s;
}
.quote:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.quote .qmark { font-family: var(--font-head); font-size: 3.4rem; line-height: 0.6; color: rgba(124,92,255,.4); margin-bottom: 14px; display: block; }
.quote p { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 24px; }
.quote .who { display: flex; align-items: center; gap: 13px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); color: #fff; }
.quote .who strong { display: block; font-size: 0.92rem; }
.quote .who small { color: var(--muted); font-size: 0.78rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 14px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 32px; transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.price-card.featured { border-color: rgba(124,92,255,.55); background: linear-gradient(180deg, rgba(124,92,255,.12), rgba(91,140,255,.05)); box-shadow: var(--glow); }
.price-card.featured::after {
  content: "En Çok Tercih Edilen"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-family: var(--font-head); font-size: 1.22rem; font-weight: 700; margin-bottom: 8px; }
.price-card .pdesc { color: var(--muted); font-size: 0.88rem; margin-bottom: 22px; min-height: 42px; }
.price-card .amount { font-family: var(--font-head); font-weight: 800; font-size: 2.1rem; letter-spacing: -0.02em; }
.price-card .amount span { font-size: 0.82rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-card .pfx { color: var(--muted); font-size: 0.86rem; margin-bottom: 4px; }
.price-card ul { display: grid; gap: 12px; margin: 26px 0; }
.price-card ul li { display: flex; gap: 11px; font-size: 0.9rem; color: var(--text-soft); }
.price-card ul li svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.price-card ul li.off { color: var(--muted); }
.price-card ul li.off svg { color: #475569; }
.price-card .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; transition: border-color 0.3s, background 0.3s; }
.faq-item.open { border-color: rgba(91,140,255,.45); background: var(--surface-2); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-weight: 600; font-size: 1rem; }
.faq-q .plus { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--primary); border-radius: 2px; transition: transform 0.3s; }
.faq-q .plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-q .plus::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item.open .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--text-soft); font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--radius-lg); border: 1px solid var(--border-strong);
  padding: 68px 40px;
  background:
    radial-gradient(600px 300px at 50% -30%, rgba(124,92,255,.35), transparent 70%),
    linear-gradient(135deg, rgba(91,140,255,.12), rgba(34,211,238,.08));
}
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-band p { color: var(--text-soft); max-width: 600px; margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-info { display: grid; gap: 16px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.info-card .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-strong); flex-shrink: 0; }
.info-card .ic svg { width: 22px; height: 22px; color: #9db6ff; }
.info-card strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.info-card span, .info-card a { color: var(--text-soft); font-size: 0.9rem; }
.info-card a:hover { color: var(--primary); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  transition: border-color .2s, background .2s, box-shadow .2s; font-size: 0.94rem;
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: rgba(91,140,255,.06);
  box-shadow: 0 0 0 4px rgba(91,140,255,.14);
}
.field select option { background: var(--bg-2); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 12px; }
.form-success {
  display: none; text-align: center; padding: 30px 20px;
}
.form-success.show { display: block; animation: fadeUp .5s ease; }
.form-success .ic { width: 68px; height: 68px; border-radius: 50%; background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.4); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success svg { width: 34px; height: 34px; color: var(--green); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: rgba(7,11,20,.7); padding: 66px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 300px; margin-bottom: 20px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; transition: 0.25s; }
.socials a:hover { background: var(--grad); border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; color: var(--text-soft); }
.socials a:hover svg { color: #fff; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col span { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-credit { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 0 0 28px; }
.footer-credit .fc-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.footer-credit .fc-names { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--text); position: relative; padding-left: 16px; }
.footer-credit .fc-names::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px rgba(91,140,255,.8); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; align-items: center; }
.footer-bottom p { color: var(--muted); font-size: 0.84rem; }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { color: var(--muted); font-size: 0.84rem; }
.footer-bottom .legal a:hover { color: var(--primary); }
.footer-affiliate { flex-basis: 100%; text-align: center; margin-top: 6px; font-size: 0.8rem; color: var(--muted); }
.footer-affiliate strong { color: var(--text-soft); font-weight: 600; }
.footer-affiliate .fa-domain { color: var(--primary); font-weight: 600; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: calc(var(--header-h) + 84px) 0 70px; text-align: center; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.1rem, 5vw, 3.3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
.page-hero p { color: var(--text-soft); max-width: 660px; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: 0.82rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--primary); } .breadcrumb span { opacity: 0.5; }

/* ---------- Reveal animation (JS aktifken) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 92px; z-index: 90;
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad); border: none; cursor: pointer; box-shadow: 0 16px 34px -14px rgba(91,140,255,.8);
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: 0.35s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; color: #fff; }

/* ---------- Canlı Destek (WhatsApp) ---------- */
.wa-widget { position: fixed; right: 24px; bottom: 24px; z-index: 96; }
.wa-fab {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 20px 0 15px; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  font-family: var(--font); font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 16px 38px -14px rgba(18,140,126,.85); transition: transform .25s, box-shadow .25s;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -16px rgba(18,140,126,.95); }
.wa-fab::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.6s infinite; }
.wa-fab svg { width: 25px; height: 25px; position: relative; z-index: 1; }
.wa-fab-label { position: relative; z-index: 1; white-space: nowrap; }
.wa-fab-dot { position: absolute; top: 4px; right: 6px; width: 11px; height: 11px; border-radius: 50%; background: #22c55e; border: 2px solid #0b1220; z-index: 2; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.wa-pop {
  position: absolute; right: 0; bottom: 72px; width: 328px; max-width: calc(100vw - 40px);
  background: linear-gradient(180deg, rgba(16,26,46,.98), rgba(9,14,26,.99));
  border: 1px solid var(--border-strong); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 18px; opacity: 0; visibility: hidden; transform: translateY(12px) scale(.97);
  transform-origin: bottom right; transition: opacity .28s cubic-bezier(.2,.8,.2,1), transform .28s cubic-bezier(.2,.8,.2,1), visibility .28s;
}
.wa-widget.open .wa-pop { opacity: 1; visibility: visible; transform: none; }
.wa-pop-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.wa-avatar { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; flex-shrink: 0; }
.wa-avatar svg { width: 23px; height: 23px; }
.wa-pop-meta strong { display: block; font-family: var(--font-head); font-size: 0.98rem; }
.wa-pop-meta small { color: #6ee7b7; font-size: 0.76rem; }
.wa-pop-close { margin-left: auto; background: none; border: none; color: var(--muted); font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 2px; }
.wa-pop-close:hover { color: #fff; }
.wa-pop p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 15px; }
.wa-start {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 16px; border-radius: 12px; background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; font-weight: 600; font-size: 0.93rem; transition: filter .2s, transform .2s;
}
.wa-start svg { width: 20px; height: 20px; }
.wa-start:hover { filter: brightness(1.07); transform: translateY(-1px); }

@media (max-width: 480px) {
  .wa-fab-label { display: none; }
  .wa-fab { width: 58px; height: 58px; padding: 0; justify-content: center; }
  .wa-pop { width: calc(100vw - 32px); right: -8px; }
}

/* ---------- Utility ---------- */
.compare { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 15px 18px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.compare thead th { background: rgba(255, 255, 255, 0.03); font-family: var(--font-head); font-size: 0.86rem; letter-spacing: 0.02em; }
.compare tbody tr:hover { background: rgba(255, 255, 255, 0.025); }
.compare td.c, .compare th.c { text-align: center; }
.compare .yes { color: var(--green); font-weight: 700; }
.compare .no { color: #475569; }
.compare .feat-col { background: rgba(124, 92, 255, 0.06); }
.compare-wrap { overflow-x: auto; }
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 { font-family: var(--font-head); font-size: 1.3rem; margin: 38px 0 14px; }
.legal-body h3 { font-family: var(--font-head); font-size: 1.05rem; margin: 24px 0 10px; }
.legal-body p, .legal-body li { color: var(--text-soft); font-size: 0.96rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-body ul li { margin-bottom: 8px; }
.legal-body a { color: var(--primary); }
.legal-updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 30px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 0.78rem; padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-soft);
}
.note-band { display: flex; gap: 14px; align-items: flex-start; background: rgba(91,140,255,.07); border: 1px solid rgba(91,140,255,.28); border-radius: var(--radius-sm); padding: 18px 20px; font-size: 0.9rem; color: var(--text-soft); }
.note-band svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }

/* ---------- References ---------- */
.ref-toolbar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.ref-filter { padding: 9px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--text-soft); cursor: pointer; font-size: 0.88rem; font-weight: 500; transition: 0.22s; }
.ref-filter:hover { color: #fff; border-color: var(--border-strong); }
.ref-filter.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 12px 28px -14px rgba(91, 140, 255, 0.8); }
.ref-card { display: flex; flex-direction: column; height: 100%; }
.ref-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.ref-logo { width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-strong); font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: #cfe0ff; overflow: hidden; flex-shrink: 0; }
.ref-logo img { width: 100%; height: 100%; object-fit: cover; }
.ref-head strong { display: block; font-family: var(--font-head); font-size: 1.04rem; }
.ref-head small { color: var(--muted); font-size: 0.8rem; }
.ref-loc { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 0.78rem; letter-spacing: 0.03em; margin-top: 3px; }
.ref-card p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.ref-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 48px; }
.ref-stat { background: var(--bg-2); padding: 30px 20px; text-align: center; }
.ref-stat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ref-stat .lbl { color: var(--text-soft); font-size: 0.86rem; margin-top: 4px; }
.ref-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: rgba(52, 211, 153, 0.12); border: 1px solid rgba(52, 211, 153, 0.3); color: #6ee7b7; }
.ref-card .stars { margin-bottom: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .card.span-2 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 960px) {
  .nav-links {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(7,11,20,.97); backdrop-filter: blur(20px);
    padding: 20px 24px 30px; border-bottom: 1px solid var(--border);
    transform: translateY(-130%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .nav-links { transform: none; }
  .nav-links a { padding: 13px 16px; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-actions .btn.hide-sm { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero p.lead { max-width: 100%; }
  .window { transform: none; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 42px 0; }
  .feature-row.reverse .fr-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 74px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento .card.span-2 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding-top: calc(var(--header-h) + 46px); }
  .win-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .float-chip { display: none; }
  .price-card { padding: 30px 24px; }
  .cta-band { padding: 48px 22px; }
  .form-card { padding: 24px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .container { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.001ms !important; scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
}
