/* ============================================================
   KodDelta — Tasarım Sistemi
   Koyu sinematik / Apple showcase estetiği
   Bağımlılıksız; sistem font stack; fluid tipografi
   ============================================================ */

:root {
  --bg: #f9fafb;
  --bg-2: #f2f4f7;
  --bg-3: #ffffff;
  --ink: #0c1226;
  --ink-dim: #3a4356;
  --muted: #5a6377;
  --accent: #1f4fd8;
  --accent-2: #315cff;
  --accent-glow: rgba(31, 79, 216, 0.2);
  --line: rgba(12, 18, 38, 0.1);
  --line-strong: rgba(12, 18, 38, 0.16);
  --card: #ffffff;
  --card-solid: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 70px rgba(16, 24, 48, 0.09);
  --glow: 0 0 60px var(--accent-glow);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --section-y: clamp(88px, 11vw, 152px);
  --shell: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: #1f4fd8; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.025em; font-weight: 640; margin: 0 0 0.6em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: 0.55em; }
figure { margin: 0; }
button { font-family: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.section { padding: var(--section-y) 0; position: relative; }
.section-shell { width: min(var(--shell), calc(100% - 48px)); margin: 0 auto; }

/* ---------- Tipografi ---------- */
.display {
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.06;
  margin-bottom: 0.7em;
}
.display em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent-2), var(--accent) 60%, #2b5cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 640;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 1.2em;
}
.lead {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 46ch;
}
.text-link {
  display: inline-block; margin-top: 0.4em; font-weight: 600; color: var(--accent-2);
}
.text-link::after { content: " →"; transition: margin 0.2s; }
.text-link:hover::after { margin-left: 4px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: clamp(10px, 1.6vw, 18px);
  height: 76px;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(249, 250, 251, 0.78);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.brand {
  justify-self: start;
  font-size: 1.22rem; font-weight: 720; letter-spacing: -0.02em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.delta { color: var(--accent); font-size: 1em; line-height: 1; }
.site-nav { display: flex; gap: clamp(18px, 2.6vw, 34px); margin-inline: auto; }
.site-nav a {
  color: var(--ink); font-size: 0.95rem; font-weight: 600;
  letter-spacing: -0.005em;
  padding: 9px 3px; transition: color 0.2s;
}
.site-nav a:hover { color: var(--accent); }
.header-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 640; color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 10px 20px; transition: border-color 0.2s, background 0.2s;
}
.header-cta:hover { border-color: var(--accent); background: rgba(31, 79, 216, 0.06); color: var(--accent); }

/* Burger + mobil menü */
.burger {
  display: none; justify-self: end;
  width: 46px; height: 46px; margin-left: 12px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 1px solid var(--line-strong); border-radius: 10px;
  cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.site-header.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .burger span:nth-child(2) { opacity: 0; }
.site-header.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobil-menu {
  position: fixed; inset: 76px 0 auto 0; z-index: 99;
  background: rgba(249, 250, 251, 0.98);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; padding: 10px 24px 26px;
}
.mobil-menu[hidden] { display: none; }
.mobil-menu a {
  color: var(--ink); font-size: 1.06rem; font-weight: 620;
  padding: 15px 4px; border-bottom: 1px solid var(--line);
}
.mobil-menu .mobil-cta {
  color: var(--accent-2); font-weight: 640; border-bottom: 0; margin-top: 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: clip;
  padding: 120px 0 90px;
  text-align: center;
}
.hero__scene { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hs-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(31, 79, 216, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 79, 216, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(64% 68% at 72% 42%, #000 18%, transparent 86%);
  mask-image: radial-gradient(64% 68% at 72% 42%, #000 18%, transparent 86%);
}
.hs-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(42% 50% at 74% 40%, rgba(31, 79, 216, 0.1) 0%, transparent 68%),
    radial-gradient(28% 32% at 74% 40%, rgba(49, 92, 255, 0.08) 0%, transparent 70%);
}
.hs-core { position: absolute; left: calc(50% + 310px); top: 30%; width: 0; height: 0; opacity: 0.55; }
.hs-delta {
  position: absolute; left: 0; top: 0;
  width: clamp(230px, 19vw, 360px); height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 40px rgba(31, 79, 216, 0.3)) drop-shadow(0 24px 70px rgba(16, 24, 48, 0.14));
  animation: hsNefes 7s ease-in-out infinite;
}
@keyframes hsNefes {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.035); }
}
.hs-ring {
  position: absolute; left: 0; top: 0;
  width: clamp(300px, 30vw, 460px); height: clamp(300px, 30vw, 460px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(31, 79, 216, 0.28);
  animation: hsDon 32s linear infinite;
}
.hs-ring--2 {
  width: clamp(400px, 40vw, 620px); height: clamp(400px, 40vw, 620px);
  border-color: rgba(31, 79, 216, 0.15);
  animation-duration: 54s; animation-direction: reverse;
}
@keyframes hsDon { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hs-link {
  position: absolute; left: 0; top: 0;
  width: var(--len); height: 1px;
  transform: rotate(var(--ang));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(31, 79, 216, 0.45), rgba(31, 79, 216, 0.04));
}
.hs-link::after {
  content: ""; position: absolute; right: -3px; top: -3.5px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-glow);
}
.hs-link i {
  position: absolute; left: 0; top: -2px;
  width: 5px; height: 5px; border-radius: 50%;
  background: #315cff; box-shadow: 0 0 10px rgba(49, 92, 255, 0.8), 0 0 22px var(--accent-glow);
  animation: hsAkis var(--d, 6s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes hsAkis {
  0% { left: 0%; opacity: 0; }
  8% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.hero__grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(249, 250, 251, 0.3) 0%, rgba(249, 250, 251, 0) 40%, rgba(249, 250, 251, 0.82) 86%, var(--bg) 100%),
    radial-gradient(58% 64% at 50% 46%, rgba(249, 250, 251, 0.85) 0%, rgba(249, 250, 251, 0.3) 52%, rgba(249, 250, 251, 0) 76%);
}
@media (max-width: 1200px) {
  .hs-core { left: 72%; top: 12%; opacity: 0.4; }
  .hs-delta { width: clamp(120px, 14vw, 190px); }
  .hs-ring { display: none; }
  .hero__pulse { display: none; }
}
@media (max-width: 860px) {
  /* Hero mobil: sahne üste sıkışır, içerik aşağıda net kalır */
  .hero { padding-top: 120px; }
  .hs-core { left: 50%; top: 9%; }
  .hs-delta { width: clamp(110px, 24vw, 170px); }
  .hs-ring { width: clamp(190px, 52vw, 260px); height: clamp(190px, 52vw, 260px); }
  .hs-ring--2 { display: none; }
  .hs-link:nth-of-type(n + 5) { display: none; }
  .hs-grid { -webkit-mask-image: radial-gradient(85% 38% at 50% 14%, #000 5%, transparent 82%); mask-image: radial-gradient(85% 38% at 50% 14%, #000 5%, transparent 82%); }
}

/* ---- 640px altı: mini-UI'lar ve bileşenler ---- */
@media (max-width: 640px) {
  /* Hub: mutlak düğümler -> akışkan çip ızgarası */
  .mui--hub { display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 10px; padding: clamp(18px, 4vw, 26px); }
  .mui--hub .hub-core { position: static; width: 62px; height: 62px; margin: 4px auto 10px; border-radius: 16px; font-size: 1.5rem; }
  .mui--hub .hub-ring { display: none; }
  .mui--hub .hub-node { position: static; }
  /* Akış: yatay sıkışıklık -> 4'lü kompakt grid */
  .mui--akis { display: grid; grid-template-columns: repeat(4, 1fr); justify-items: center; row-gap: 16px; padding: clamp(18px, 4vw, 26px); }
  .akis-step i { width: 38px; height: 38px; font-size: 0.82rem; }
  .akis-cizgi { display: none; }
  .akis-not { grid-column: 1 / -1; margin-top: 2px; flex-direction: column; gap: 2px; align-items: center; text-align: center; }
  /* Karşılaştırma rozetleri alt alta sarmalı */
  .compare__vs { flex-wrap: wrap; gap: 12px 18px; }
  .compare__delta { width: 100%; text-align: center; order: 3; margin: -4px 0; }
  /* Kokpit: 2x2 + spark */
  .mui--kokpit { gap: 9px; padding: 14px; }
  /* Karar kartı: sticky kapalı */
  .decision__verdict { position: static; }
}

/* ---- 560px altı ince ayar ---- */
@media (max-width: 560px) {
  .marquee__track span { font-size: 1.15rem; }
  .blog-list a { grid-template-columns: 1fr; }
  .blog-list time { grid-row: auto; grid-column: 1; }
  .hero__lead { font-size: 1rem; }
  .display { letter-spacing: -0.02em; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-ring { animation: none; }
  .hs-delta { animation: none; }
  .hs-link i { animation-duration: 18s; }
}
.hero__content { position: relative; z-index: 3; width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.04;
  margin: 0 0 0.55em;
  text-wrap: balance;
}
.hero h1 .line { display: block; }
.hero h1 .line { color: var(--ink); }
.hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  color: var(--ink-dim); max-width: 56ch; margin: 0 auto 2.2em;
  
}
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 2.4em; }
.hero__trust {
  color: var(--muted); font-size: 0.95rem; margin: 0;
  padding-top: 1.4em; border-top: 1px solid var(--line);
  max-width: 52ch;
  
}
.hero .eyebrow { margin-bottom: 1.6em;  }
.hero__scrollcue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid var(--line-strong); border-radius: 14px;
}
.hero__scrollcue span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--accent-2); border-radius: 2px;
  animation: cue 2.2s var(--ease-out) infinite;
}
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 32px;
  border-radius: 999px; border: 1px solid transparent;
  font-size: 1rem; font-weight: 640; letter-spacing: -0.01em;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.25s, background 0.25s, border-color 0.2s;
}
.btn--primary {
  background: linear-gradient(180deg, #315cff, #1f4fd8);
  color: #fff; box-shadow: 0 14px 40px var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 56px var(--accent-glow); color: #fff; }
.btn--ghost { background: rgba(12, 18, 38, 0.03); border-color: var(--line-strong); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); background: rgba(31, 79, 216, 0.05); color: var(--accent); }

/* ---------- Reveal animasyonu ---------- */
.hero .reveal, .page-hero .reveal, .hero h1, .page-hero h1 { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.reveal.in { opacity: 1 !important; transform: none !important; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }


/* ---------- Manifesto ---------- */
.manifesto { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.manifesto__yeni {
  max-width: 680px; display: flex; flex-direction: column; gap: 1.2em; margin-top: 2em;
}
.manifesto__yeni p { color: var(--muted); margin: 0; font-size: 1.02rem; line-height: 1.75; }

/* ---------- Compare ---------- */
.compare { background: var(--bg-2); padding-top: 0; }

.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); margin-bottom: 1.4em; }
.compare__col {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
}
.compare__col h3 { font-size: 1.18rem; margin-bottom: 0.9em; color: var(--muted); }
.compare__col ul { list-style: none; padding: 0; margin: 0; }
.compare__col li { padding: 0.62em 0 0.62em 1.7em; position: relative; color: var(--ink-dim); border-bottom: 1px solid var(--line); }
.compare__col li:last-child { border-bottom: 0; }
.compare__col li::before { content: "✕"; position: absolute; left: 0; top: 0.68em; color: #5b6478; font-size: 0.85em; }
.compare__col--canli { border-color: rgba(79, 124, 255, 0.4); background: linear-gradient(180deg, rgba(31, 79, 216, 0.05), #ffffff); box-shadow: var(--shadow), 0 0 0 1px rgba(31,79,216,.12); }
.compare__col--canli h3 { color: var(--ink); }
.compare__col--canli li::before { content: "✓"; color: var(--accent-2); font-weight: 700; }
.compare__note { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Çözümler ---------- */
.solutions .section-shell:first-child { margin-bottom: clamp(40px, 6vw, 80px); }
.solution { padding: clamp(48px, 7vw, 96px) 0; }
.solution + .solution { border-top: 1px solid var(--line); }
.solution__layout {
  display: grid; grid-template-columns: 0.55fr 1.45fr; gap: clamp(20px, 3vw, 48px); align-items: center;
}
.solution__layout--rev .solution__copy { grid-column: 1; min-width: 0; }
.solution__layout--rev .solution__media { grid-column: 2; }
.solution__media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-strong);
  box-shadow: var(--shadow); aspect-ratio: 3 / 2; background: var(--card-solid);
}
.solution__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.solution:hover .solution__media img { transform: scale(1.025); }
.solution__copy h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); margin-bottom: 0.65em; }
.solution__copy > p { color: var(--ink-dim); }
.check-list { list-style: none; padding: 0; margin: 1.2em 0 1.4em; }
.check-list li { padding: 0.5em 0 0.5em 1.9em; position: relative; color: var(--ink-dim); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.5em;
  width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(79, 124, 255, 0.16); color: var(--accent-2);
  border-radius: 999px; font-size: 0.72rem; font-weight: 800;
}

/* ---------- Üretim + KPI ---------- */
.production {
  background:
    radial-gradient(58% 90% at 74% 8%, rgba(31, 79, 216, 0.06), transparent 62%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 55%, var(--bg) 100%);
  overflow: clip;
}
.production::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.45;
  -webkit-mask-image: radial-gradient(75% 62% at 56% 34%, #000 26%, transparent 92%);
  mask-image: radial-gradient(75% 62% at 56% 34%, #000 26%, transparent 92%);
}
.production .section-shell { position: relative; z-index: 2; }
.production__lead { color: var(--ink-dim); max-width: 52ch; margin-bottom: 3em; }
.kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 24px);
  margin-bottom: 2.2em;
}
.kpi {
  background: #ffffff; border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm); padding: clamp(20px, 2.6vw, 32px) clamp(18px, 2.2vw, 28px);
  box-shadow: 0 1px 2px rgba(16,24,48,.04), 0 12px 34px rgba(16,24,48,.06);
}
.kpi__num {
  display: block; font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 720;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 0.32em;
  background: linear-gradient(120deg, #0c1226, #1f4fd8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.kpi__label { color: var(--muted); font-size: 0.92rem; }
.production__note { color: var(--muted); font-size: 0.86rem; margin: 0; }

/* ---------- Örnek sistemler: ekran simülasyon kartları ---------- */
.mobile { background: var(--bg-2); }
.sim-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 28px); margin-top: clamp(32px, 4.5vw, 56px);
}
.sim {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-out), border-color 0.3s;
}
.sim:hover { transform: translateY(-4px); border-color: rgba(79, 124, 255, 0.45); }
.sim-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(12, 18, 38, 0.02);
  border-bottom: 1px solid var(--line);
}
.sim-dots { display: inline-flex; gap: 5px; }
.sim-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.sim-dots i:first-child { background: rgba(31, 79, 216, 0.45); }
.sim-title { font-size: 0.86rem; font-weight: 640; color: var(--ink); }
.sim-tag {
  margin-left: auto; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 3px 10px;
}
.sim-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.sim-row {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  background: rgba(12, 18, 38, 0.02); border: 1px solid var(--line);
}
.sim-id { font-family: var(--mono); font-size: 0.72rem; color: var(--accent-2); flex-shrink: 0; }
.sim-desc { font-size: 0.86rem; color: var(--ink-dim); flex: 1; min-width: 0; }
.sim-chip {
  font-size: 0.68rem; font-weight: 640; letter-spacing: 0.04em;
  border-radius: 999px; padding: 4px 10px; white-space: nowrap; flex-shrink: 0;
}
.sim-chip--uret { background: rgba(31, 79, 216, 0.08); color: #1f4fd8; }
.sim-chip--plan { background: rgba(12, 18, 38, 0.05); color: #3a4356; }
.sim-chip--uyari { background: rgba(217, 119, 6, 0.1); color: #92600a; }
.sim-bar-track {
  height: 5px; border-radius: 999px; background: rgba(12, 18, 38, 0.08);
  overflow: hidden; margin: -2px 12px 2px;
}
.sim-bar-track span {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.sim-photo-row {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  background: rgba(12, 18, 38, 0.02); border: 1px solid var(--line);
}
.sim-photo {
  width: 44px; height: 34px; border-radius: 7px; flex-shrink: 0;
  background:
    linear-gradient(135deg, rgba(49, 92, 255, 0.25), rgba(49, 92, 255, 0.06)),
    repeating-linear-gradient(45deg, rgba(12,18,38,.04) 0 6px, transparent 6px 12px);
  border: 1px solid var(--line-strong);
}
.sim-meta { display: flex; flex-direction: column; }
.sim-meta b { font-size: 0.82rem; color: var(--ink-dim); font-weight: 640; }
.sim-meta span { font-size: 0.72rem; color: var(--muted); }
.sim-steps { display: flex; align-items: center; gap: 4px; padding: 4px 2px 2px; }
.sim-step {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.76rem; color: var(--muted); white-space: nowrap;
  padding: 6px 10px 6px 8px; border-radius: 999px;
  border: 1px solid var(--line);
}
.sim-step + .sim-step { margin-left: 2px; }
.sim-step i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-strong); flex-shrink: 0;
}
.sim-step--done { color: var(--ink-dim); }
.sim-step--done i { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.sim-step--aktif {
  color: var(--accent-2); border-color: rgba(79, 124, 255, 0.5);
  background: rgba(79, 124, 255, 0.08);
}
.sim-step--aktif i { background: var(--accent-2); animation: simPulse 2.4s ease-in-out infinite; }
@keyframes simPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(125, 162, 255, 0.5); } 50% { box-shadow: 0 0 0 6px rgba(125, 162, 255, 0); } }

/* ---------- Süreç ---------- */
.process__steps { list-style: none; padding: 0; margin: clamp(36px, 5vw, 60px) 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 34px); counter-reset: step; }
.process__steps li { border-top: 1px solid var(--line-strong); padding-top: 1.4em; }
.step-no { font-family: var(--mono); color: var(--accent); font-size: 0.86rem; display: block; margin-bottom: 1em; }
.process__steps h3 { font-size: 1.12rem; margin-bottom: 0.5em; }
.process__steps p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Karar rehberi ---------- */
.decision { background: var(--bg-2); }
.decision__layout { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; margin-top: clamp(28px, 4vw, 48px); }
.signal-list { list-style: none; padding: 0; margin: 0; counter-reset: sinyal; }
.signal-list li { position: relative; padding: 1.05em 0 1.05em 3.4em; border-bottom: 1px solid var(--line); color: var(--ink-dim); counter-increment: sinyal; }
.signal-list li::before {
  content: counter(sinyal, decimal-leading-zero);
  position: absolute; left: 0; top: 1.15em;
  font-family: var(--mono); font-size: 0.82rem; color: var(--accent);
  border: 1px solid rgba(79, 124, 255, 0.4); border-radius: 999px;
  width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
}
.signal-list strong { color: var(--ink); }
.decision__verdict {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(31, 79, 216, 0.08), transparent 55%),
    #ffffff;
  border: 1px solid rgba(79, 124, 255, 0.4);
  border-radius: var(--radius);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--glow);
}
.dv-skor {
  font-size: clamp(3.4rem, 6vw, 5.2rem); font-weight: 740; line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #0c1226, #1f4fd8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dv-skor span { font-size: 0.42em; color: var(--muted); -webkit-text-stroke: 0; background: none; -webkit-background-clip: border-box; opacity: 0.75; }
.decision__verdict strong { font-size: clamp(1.15rem, 1.8vw, 1.45rem); letter-spacing: -0.02em; line-height: 1.3; }
.decision__verdict p { color: var(--muted); font-size: 0.95rem; margin: 0 0 8px; }

/* ---------- SSS ---------- */
.faq__head { margin-bottom: clamp(32px, 4vw, 56px); }
.faq__list { max-width: 860px; }
.faq__list details {
  border-bottom: 1px solid var(--line); 
}
.faq__list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 1.25em 0;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem); font-weight: 600; color: var(--ink);
  transition: color 0.2s;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+"; flex-shrink: 0; font-size: 1.5rem; font-weight: 400; color: var(--accent);
  transition: transform 0.25s var(--ease-out);
  width: 1.2em; height: 1.2em; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 999px;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details[open] summary { color: var(--accent-2); }
.faq__list details > div { padding: 0 0 1.5em; color: var(--muted); max-width: 68ch; }
.faq__list details > div p:last-child { margin-bottom: 0; }

/* ---------- İletişim ---------- */
.contact { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 120%); }
.contact-form {
  background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px); box-shadow: 0 1px 3px rgba(16,24,48,.05), 0 20px 60px rgba(16,24,48,.08);
}
.contact-form label { font-size: 0.82rem; font-weight: 620; color: var(--ink); margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  background: #f9fafb; border: 1.5px solid var(--line-strong); border-radius: 10px;
  padding: 13px 16px; font-size: 0.95rem; margin-top: 6px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.contact-form input:hover, .contact-form textarea:hover { border-color: rgba(31,79,216,.3); }
.contact-form input:focus, .contact-form textarea:focus {
  background: #ffffff; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(31,79,216,.1), 0 4px 14px rgba(31,79,216,.08);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #b0b7c6; }
.contact__side { background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px); box-shadow: 0 1px 3px rgba(16,24,48,.05), 0 16px 44px rgba(16,24,48,.06); }
.contact__layout {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(32px, 5vw, 72px); margin-top: clamp(32px, 4vw, 56px);
  align-items: start;
}
.contact__side { min-width: 0; }
@media (max-width: 860px) { .contact__layout { grid-template-columns: 1fr; } }
.form-note { display: none; border-radius: var(--radius-sm); padding: 16px 18px; font-size: 0.95rem; margin-bottom: 18px; }
.form-note--ok { display: block; background: rgba(31, 79, 216, 0.06); border: 1px solid rgba(31, 79, 216, 0.3); }
.form-note--err { display: block; background: rgba(220, 38, 62, 0.06); border: 1px solid rgba(220, 38, 62, 0.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--ink-dim); margin-bottom: 14px; letter-spacing: 0.02em; }
.contact-form input, .contact-form textarea {
  display: block; width: 100%; margin-top: 7px;
  background: #ffffff; color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 14px 16px; font: inherit; font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(31, 79, 216, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.kvkk-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; font-weight: 400; color: var(--muted); line-height: 1.55; cursor: pointer; }
.kvkk-check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.contact-form .btn { width: 100%; margin-top: 10px; }
.contact__side { display: flex; flex-direction: column; gap: clamp(28px, 3vw, 40px); }
.contact__side h3 { font-size: 1.05rem; margin-bottom: 0.7em; }
.contact__line { display: flex; flex-direction: column; gap: 2px; margin-bottom: 0.8em; color: var(--ink); }
.contact__line span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }
.contact__steps { list-style: none; padding: 0; margin: 0; }
.contact__steps li { color: var(--muted); font-size: 0.94rem; padding-left: 1.4em; position: relative; }
.contact__steps li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.contact__steps strong { color: var(--ink-dim); }
.contact__legal { color: var(--muted); font-size: 0.85rem; margin: auto 0 0; }

/* ---------- Footer ---------- */
.site-footer {
  --ink: #eef1f8; --ink-dim: #c6cddd; --muted: #97a0b5;
  --line: rgba(255, 255, 255, 0.09); --line-strong: rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(12, 18, 38, 0.1); background: #0d1430;
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 30ch; margin: 1em 0 0; }
.footer-grid strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-dim); margin-bottom: 1.1em; }
.footer-grid nav, .footer-grid > div:last-child { display: flex; flex-direction: column; }
.footer-grid nav a, .footer-grid > div:last-child a { color: var(--muted); font-size: 0.94rem; padding: 0.34em 0; }
.footer-grid nav a:hover, .footer-grid > div:last-child a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line); padding-top: 26px;
  color: var(--muted); font-size: 0.86rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-nav { display: none; }
  .header-cta { font-size: 0; padding: 10px 14px; gap: 0; }
  .header-cta span { font-size: 1.05rem; }
  .burger { display: inline-flex; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__grid .lead { grid-column: auto; grid-row: auto; position: static; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .solution__layout { grid-template-columns: 1fr; }
  .solution__layout--rev .solution__copy { grid-column: auto; }
  .solution__layout--rev .solution__media { grid-column: auto; }
  .compare__grid { grid-template-columns: 1fr; }
  .decision__layout { grid-template-columns: 1fr; }
  .contact__layout { grid-template-columns: 1fr; }
  .hero { padding-top: 96px; }
  .sim-grid { grid-template-columns: 1fr; }
  .sim-steps { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  .section-shell { width: calc(100% - 40px); }
  .form-row { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__actions .btn { width: 100%; }
  .hero__scrollcue { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sim-row { flex-wrap: wrap; row-gap: 4px; }
}

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transform: none; transition: opacity 0.7s ease; }
  .hero__scrollcue span { animation: none; }
  [data-parallax] { transform: none !important; }
  .solution__media img { transition: none; transform: none; }
  .compare__figure img { transform: none; transition: none; }
  .marquee__track { animation: none; }
  .process__steps li { opacity: 1; transform: none; transition: border-color 0.4s; }
}

/* ---------- Seçim rengi ---------- */
::selection { background: rgba(31, 79, 216, 0.22); color: #0c1226; }

/* ============================================================
   SİNEMATİK ANİMASYON KATMANI (v2)
   ============================================================ */

/* --- Hero giriş: satırlar sırayla blur'dan netleşir --- */
.js-hero .hero__content > * {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(10px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
}
.hero__content.hero-enter > * { opacity: 1; transform: none; filter: none; }
.hero__content.hero-enter > *:nth-child(1) { transition-delay: 0.05s; }
.hero__content.hero-enter > *:nth-child(2) { transition-delay: 0.22s; }
.hero__content.hero-enter > *:nth-child(3) { transition-delay: 0.42s; }
.hero__content.hero-enter > *:nth-child(4) { transition-delay: 0.62s; }
.hero__content.hero-enter > *:nth-child(5) { transition-delay: 0.82s; }
@media (prefers-reduced-motion: reduce) {
  .js-hero .hero__content > * { transform: none; filter: none; transition: opacity 0.8s ease; }
}



/* --- Akıllı header --- */
.site-header { transition: transform 0.45s var(--ease-out), background 0.3s, border-color 0.3s; }
.site-header.hd-hidden { transform: translateY(-102%); }
.site-header.hd-solid { background: rgba(249, 250, 251, 0.94); border-bottom-color: var(--line-strong); }

/* --- Buton glow: imleç takipli ışık --- */
.btn, .header-cta { position: relative; overflow: hidden; }
.btn::before, .header-cta::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(140px 90px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.35), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.btn:hover::before, .header-cta:hover::before { opacity: 1; }

/* --- Canlı operasyon şeridi (ticker) --- */
.ticker {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: #f9fafb;
  box-shadow: 0 1px 3px rgba(16,24,48,.04);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track {
  display: inline-flex; white-space: nowrap; gap: 44px;
  animation: tickerKay 44s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--muted);
}
.ticker__item b { color: var(--ink-dim); font-weight: 620; }
.ticker__item time { color: var(--muted); font-size: 0.74rem; font-variant-numeric: tabular-nums; }
.ticker__dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.ticker__dot--yeni { background: var(--accent-2); box-shadow: 0 0 12px var(--accent-glow); animation: tickYeni 2.6s ease-in-out infinite; }
.ticker__dot--ok { background: #0e9f6e; }
.ticker__dot--uyari { background: #d97706; box-shadow: 0 0 10px rgba(217, 119, 6, 0.35); }
@keyframes tickYeni { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0.6; } }
@keyframes tickerKay { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation-duration: 110s; } .ticker__dot--yeni { animation: none; } }

/* --- Manifesto marquee bandı --- */
.marquee {
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 40px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  box-shadow: inset 0 1px 3px rgba(16,24,48,.02);
}
.marquee__track {
  display: inline-flex; white-space: nowrap; gap: 0;
  animation: marqueeKay 36s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-size: clamp(1.5rem, 3.6vw, 2.9rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: rgba(12, 18, 38, 0.14);
  padding-right: 1.6em;
  display: inline-flex; align-items: center; gap: 1.6em;
}
.marquee__track span i {
  font-style: normal; color: var(--accent);
  -webkit-text-stroke: 0; font-size: 0.72em;
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
@keyframes marqueeKay { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Süreç adımları aktifleşme --- */
.process__steps li { transition: opacity 0.5s var(--ease-out), border-color 0.5s, transform 0.5s var(--ease-out); opacity: 0.45; }
.process__steps li.step-aktif { opacity: 1; border-top-color: var(--accent); transform: translateY(-3px); }
.process__steps li.step-aktif .step-no { color: var(--accent-2); }

/* --- Compare görseli scroll zoom --- */
.compare__figure img { transform: scale(1.08); transition: transform 1.6s var(--ease-out); }
.compare__figure.in img { transform: scale(1); }

/* --- Sim kartlarında canlı vurgu --- */
.sim:hover .sim-chip--uret { animation: chipCanli 2.2s ease-in-out infinite; }
@keyframes chipCanli { 0%, 100% { box-shadow: 0 0 0 0 rgba(79, 124, 255, 0.35); } 50% { box-shadow: 0 0 0 5px rgba(79, 124, 255, 0); } }

/* --- SSS akordeon açılış animasyonu --- */
.faq__list details[open] summary { color: var(--accent-2); }
.faq__list details > div { animation: faqAc 0.45s var(--ease-out); }
@keyframes faqAc { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* --- Çözüm medya hafif kenar ışıması --- */
.solution__media::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(12, 18, 38, 0.04);
  opacity: 0; transition: opacity 0.6s;
}
.solution__media { position: relative; }
.solution:hover .solution__media::after { opacity: 1; }

/* --- Scroll ilerleme çubuğu --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 130;
  height: 3px; pointer-events: none;
  background: transparent;
}
.scroll-progress i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform-origin: 0 50%;
  transform: scaleX(0);
  box-shadow: 0 0 14px var(--accent-glow);
}

/* --- Hero enerji akışı: süzülen veri ışıkları + tarama + nabız --- */
.hero__fx { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

.fx-dot {
  position: absolute; left: var(--x, 50%); top: var(--y, 50%);
  width: var(--s, 5px); height: var(--s, 5px); border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 calc(var(--s, 5px) * 3.2) var(--accent-glow), 0 0 calc(var(--s, 5px) * 1.2) #7da2ff;
  opacity: 0;
  animation: fxSuz var(--d, 12s) linear infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes fxSuz {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  12% { opacity: 0.9; }
  55% { opacity: 0.55; }
  88% { opacity: 0.12; }
  100% { opacity: 0; transform: translate(var(--tx, 40px), var(--ty, -70px)) scale(1); }
}
.hero__scan {
  position: absolute; left: -10%; right: -10%; top: 0; height: 26%;
  background: linear-gradient(180deg, transparent, rgba(31, 79, 216, 0.04) 45%, rgba(31, 79, 216, 0.09) 50%, rgba(31, 79, 216, 0.04) 55%, transparent);
  opacity: 0.8;
  animation: fxTara 9s var(--ease-out) infinite;
}
@keyframes fxTara {
  0% { transform: translateY(-120%); }
  60% { transform: translateY(430%); }
  100% { transform: translateY(430%); }
}
.hero__pulse {
  position: absolute; left: 0; top: 0;
  width: clamp(300px, 34vw, 520px); height: clamp(300px, 34vw, 520px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(31, 79, 216, 0.12) 0%, transparent 62%);
  animation: fxNabiz 5.5s ease-in-out infinite;
}
@keyframes fxNabiz {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.94); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scan { animation: none; opacity: 0; }
  .hero__pulse { animation: none; opacity: 0.5; }
  .fx-dot { animation-duration: 26s; box-shadow: 0 0 calc(var(--s, 5px) * 2) var(--accent-glow); }
}

/* --- Karşılaştırma: iki kolonlu temiz karşıtlık --- */
.compare__vs {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; margin: 0 auto clamp(36px, 5vw, 56px);
  max-width: 640px;
}
.compare__vs__kolon {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 12px; text-align: center; padding: 20px 16px;
}
.compare__vs__kolon p {
  margin: 0; font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 560; color: var(--muted); line-height: 1.4;
}
.compare__vs__kolon p b { font-weight: 720; color: var(--ink); }
.compare__vs__ikon {
  font-style: normal; font-size: 1.3rem; font-weight: 800;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.compare__vs__ikon.kirmizi { color: #b3392e; background: rgba(179,57,46,.07); }
.compare__vs__ikon.mavi { color: #1f4fd8; background: rgba(31,79,216,.07); }
.compare__vs__cizgi {
  width: 1px; background: var(--line-strong); flex-shrink: 0;
}
@media (max-width: 520px) {
  .compare__vs { flex-direction: column; gap: 12px; }
  .compare__vs__cizgi { width: 100%; height: 1px; }
}

/* --- Çözüm mini-UI'ları (mui) --- */
.mui {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #ffffff, #f4f6f9);
}
.mui-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px; font-size: 0.84rem; font-weight: 620; color: var(--ink-dim);
  border-bottom: 1px solid var(--line); background: rgba(12, 18, 38, 0.02);
}
.mui-dots { display: inline-flex; gap: 5px; }
.mui-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.mui-dots i:first-child { background: rgba(79, 124, 255, 0.55); }
.mui-tag { margin-left: auto; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-2); border: 1px solid rgba(79, 124, 255, 0.4); border-radius: 999px; padding: 3px 10px; }
.mui-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: center; }
.mui-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  background: rgba(12, 18, 38, 0.02); border: 1px solid var(--line);
}
.mui-id { font-family: var(--mono); font-size: 0.72rem; color: var(--accent-2); }
.mui-desc { font-size: 0.84rem; color: var(--ink-dim); flex: 1; }
.mui-track { height: 5px; border-radius: 999px; background: rgba(12, 18, 38, 0.07); overflow: hidden; margin: -2px 12px 2px; }
.mui-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; }

/* Kokpit mini */
.mui--kokpit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: clamp(16px, 2.2vw, 26px); align-content: center;
}
.kpi-mini {
  background: rgba(12, 18, 38, 0.02); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.kpi-mini b { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 730; letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--ink), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kpi-mini--up b { background: linear-gradient(120deg, #0e9f6e, #059669); -webkit-background-clip: text; background-clip: text; }
.kpi-mini span { font-size: 0.72rem; color: var(--muted); }
.spark {
  grid-column: 1 / -1; display: flex; align-items: flex-end; gap: 7px; height: 74px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  background: rgba(12, 18, 38, 0.02); border: 1px solid var(--line);
}
.spark i {
  flex: 1; height: var(--h); border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #315cff, rgba(31, 79, 216, 0.35));
  min-height: 6px;
}

/* --- Süreç adım çıktıları --- */
.step-out {
  display: inline-block; margin-top: 0.9em;
  font-size: 0.76rem; letter-spacing: 0.06em; color: var(--accent-2);
  border: 1px dashed rgba(31, 79, 216, 0.45); border-radius: 999px;
  padding: 5px 12px;
}

/* --- Çözüm medyada artık img yok: hover zoom kuralını mui'ya uyarla --- */
.solution:hover .solution__media { border-color: rgba(79, 124, 255, 0.5); }
.solution__media { transition: border-color 0.4s; }

/* ============================================================
   KART İÇERİK GÜVENLİK AĞI — hiçbir boyutta kayma/taşma olmaz
   ============================================================ */
.sim-row, .mui-row, .sim-photo-row, .contact__line, .kpi, .kpi-mini, .card {
  min-width: 0;
}
.sim-desc, .mui-desc, .sim-meta, .card p, .answer p, .prose p, .lead {
  overflow-wrap: break-word;
}
.sim-row, .mui-row { flex-wrap: wrap; row-gap: 4px; }
.sim-chip, .mui-id, .sim-id { max-width: 100%; }
.kpi-mini b { overflow-wrap: anywhere; }
.compare__badge { text-align: center; }

/* Hub çip modu 640 -> 900px'e çekildi: iki kolon çözüm düzeninde de güvenli */
@media (max-width: 900px) {
  .mui--hub { display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 10px; padding: clamp(18px, 4vw, 26px); }
  .mui--hub .hub-core { position: static; width: 62px; height: 62px; margin: 4px auto 10px; border-radius: 16px; font-size: 1.5rem; }
  .mui--hub .hub-ring { display: none; }
  .mui--hub .hub-node { position: static; }
}
/* 640-900 arası kurallar artık boş; 640 bloğundaki hub kuralları zararsız kopya */

/* Kokpit mini: çok dar kartta sayı küçülür, kırılmaz */
@media (max-width: 480px) {
  .kpi-mini b { font-size: 1.15rem; }
  .kpi-mini { padding: 11px 13px; }
}

/* Ticker öğeleri çok dar ekranda zaman damgasını bırakır */
@media (max-width: 420px) {
  .ticker__item time { display: none; }
  .ticker__item { gap: 8px; }
}

/* ============================================================
   İNTERAKTİF CİHAZ MOCKUP'LARI (showcase)
   ============================================================ */
.showcase { background: var(--bg-2); }
.showcase__stage {
  position: relative;
  margin-top: clamp(36px, 5vw, 60px);
}
.sc-phone {
  position: absolute; right: clamp(8px, 4vw, 56px); bottom: -20px; z-index: 6;
}
@media (max-width: 960px) {
  .sc-phone { position: static; margin-top: 18px; }
}
.sc-desk {
  background: #ffffff; border: 1px solid var(--line-strong);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
}
.sc-browser {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-bottom: 1px solid var(--line);
  background: rgba(12, 18, 38, 0.02);
}
.sc-dots { display: inline-flex; gap: 6px; }
.sc-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.sc-dots i:first-child { background: rgba(220, 38, 62, 0.45); }
.sc-dots i:nth-child(2) { background: rgba(217, 119, 6, 0.45); }
.sc-dots i:nth-child(3) { background: rgba(14, 159, 110, 0.45); }
.sc-url {
  flex: 1; text-align: center; font-size: 0.78rem; color: var(--muted);
  background: #ffffff; border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 14px; font-family: var(--mono);
}
.sc-live { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 640; color: #0e9f6e; }
.sc-live i { width: 7px; height: 7px; border-radius: 50%; background: #0e9f6e; animation: simPulse 2.4s ease-in-out infinite; }
.sc-app { padding: 18px; }
.sc-tabs { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.sc-tabs button {
  font: inherit; font-size: 0.86rem; font-weight: 620; cursor: pointer;
  color: var(--muted); background: transparent;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px;
  transition: all 0.25s;
}
.sc-tabs button:hover { border-color: rgba(31, 79, 216, 0.4); color: var(--ink); }
.sc-tabs button[aria-selected="true"] {
  color: #fff; background: linear-gradient(180deg, #315cff, #1f4fd8);
  border-color: transparent; box-shadow: 0 8px 24px rgba(31, 79, 216, 0.25);
}
.sc-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px;
}
.sc-cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 14px; }
.sc-list__head {
  font-size: 0.76rem; font-weight: 680; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.sc-list { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.sc-side { display: flex; flex-direction: column; min-width: 0; }
.sc-list .sim-row, .sc-side .sim-row { padding: 8px 10px; }

/* --- Telefon mockapı --- */
.sc-phone { display: flex; justify-content: center; }
.sc-phone__frame {
  width: min(270px, 100%); border-radius: 34px; padding: 12px;
  background: #0d1430; box-shadow: 0 30px 70px rgba(16, 24, 48, 0.25);
  position: relative;
}
.sc-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 20px; border-radius: 0 0 14px 14px; background: #0d1430; z-index: 2;
}
.sc-phone__head {
  display: flex; justify-content: space-between; align-items: center;
  color: #eef1f8; font-size: 0.8rem; font-weight: 640;
  padding: 26px 10px 10px;
}
.sc-phone__head b { color: #8fb0ff; }
.sc-wifi { color: #8fb0ff; font-size: 0.68rem; letter-spacing: 1px; }
.sc-phone__body {
  background: #f6f7fb; border-radius: 22px; padding: 12px 10px;
  display: flex; flex-direction: column; gap: 9px;
}
.sc-phone__card {
  background: #ffffff; border: 1px solid rgba(12, 18, 38, 0.08);
  border-radius: 14px; padding: 11px 12px;
  display: flex; flex-direction: column; gap: 4px; font-size: 0.78rem; color: var(--muted);
}
.sc-phone__card b { color: var(--ink); font-size: 0.84rem; }
.sc-phone__card--yeni { border-color: rgba(31, 79, 216, 0.4); box-shadow: 0 8px 24px rgba(31, 79, 216, 0.12); }
.sc-yeni {
  align-self: flex-start; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em;
  color: #fff; background: linear-gradient(180deg, #315cff, #1f4fd8);
  border-radius: 999px; padding: 2px 8px;
}
.sc-phone__actions { display: flex; gap: 8px; margin-top: 5px; }
.sc-phone__tabs {
  display: flex; justify-content: space-around; padding: 10px 6px 4px;
  color: #5a6377; font-size: 0.68rem; font-weight: 640;
}
.sc-phone__tabs .aktif { color: #8fb0ff; }
.sc-phone__tabs span { position: relative; }
.sc-phone__tabs .aktif::after {
  content: ""; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  width: 16px; height: 2.5px; border-radius: 2px; background: #315cff;
}
.sc-sectors { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(56px, 7vw, 84px); }
.sc-sectors > div {
  flex: 1 1 220px; background: #ffffff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 18px;
  box-shadow: 0 1px 2px rgba(16,24,48,.04);
}
.sc-sectors h3 { font-size: 0.95rem; margin: 0 0 0.3em; }
.sc-sectors p { color: var(--muted); font-size: 0.82rem; margin: 0; line-height: 1.45; }

@media (max-width: 960px) {
.sc-phone { order: 2; }
  .sc-kpis { grid-template-columns: 1fr 1fr; }
  .sc-cols { grid-template-columns: 1fr; }
  .sc-sectors { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .sc-sectors { grid-template-columns: 1fr; }
  .sc-kpis { gap: 7px; }
  .kpi-mini { padding: 10px 12px; }
}
.sc-sectors h3 a { color: var(--ink); }
.sc-sectors h3 a:hover { color: var(--accent); }


/* ============================================================
   KART DERİNLİĞİ — beyaz zeminde beyaz kart sorununun çözümü
   ============================================================ */
.card, .kpi, .decision__verdict, .sim, .mui, .blog-list a, .answer,
.cta-band, .contact-form, .compare__col {
  box-shadow: 0 1px 2px rgba(16, 24, 48, 0.04), 0 12px 34px rgba(16, 24, 48, 0.06);
}
.sim-row, .mui-row, .sim-photo-row, .kpi-mini {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(16, 24, 48, 0.05);
}
.mui-track { background: rgba(12, 18, 38, 0.08); }
.spark { background: #ffffff; }
.sc-app { background: #f6f7fb; }
.sc-kpis .kpi-mini { background: #ffffff; }
.sc-phone__body { background: #eef1f7; }
.sc-list .sim-row, .sc-side .sim-row { background: #ffffff; }
.prose .table-scroll { background: #ffffff; border-radius: var(--radius-sm); }
.answer { background: #ffffff; }
.card:hover, .sim:hover { box-shadow: 0 2px 4px rgba(16, 24, 48, 0.05), 0 18px 48px rgba(16, 24, 48, 0.1); }
.kpi { background: #ffffff; }

/* ============================================================
   UYGULAMA PENCERESİ MOCKUP'LARI (01-04 çözüm kartları)
   ============================================================ */
.app-mock {
  display: flex; padding: 0; background: #ffffff;
  min-height: 420px; max-height: 560px;
}
.app { display: flex; width: 100%; min-width: 0; }
.app-side {
  flex: 0 0 52px; display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 14px 0;
  background: #0d1430; border-right: 1px solid rgba(12, 18, 38, 0.15);
}
.app-logo { color: #8fb0ff; font-size: 1.05rem; margin-bottom: 8px; }
.app-nav__i {
  width: 30px; height: 30px; border-radius: 9px; position: relative;
  background: rgba(255, 255, 255, 0.08);
}
.app-nav__i::after {
  content: ""; position: absolute; inset: 8px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.38);
}
.app-nav__i--aktif { background: #315cff; box-shadow: 0 4px 14px rgba(49, 92, 255, 0.5); }
.app-nav__i--aktif::after { background: #fff; }
.app-avatar {
  margin-top: auto; width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #315cff, #1f4fd8); color: #fff;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.03em;
}
.app-main { flex: 1; display: flex; flex-direction: column; min-width: 0; background: #f6f7fb; }
.app-top {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; background: #ffffff; border-bottom: 1px solid var(--line);
}
.app-crumb { font-size: 0.72rem; font-weight: 640; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-crumb i { font-style: normal; color: var(--muted); margin: 0 2px; }
.app-ara {
  flex: 1; max-width: 160px; margin-left: auto;
  font-size: 0.68rem; color: var(--muted);
  background: #f1f2f6; border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 12px;
}
.app-user, .app-live { font-size: 0.68rem; font-weight: 620; color: var(--muted); white-space: nowrap; }
.app-live { color: #0e9f6e; display: inline-flex; align-items: center; gap: 5px; }
.app-live i { width: 6px; height: 6px; border-radius: 50%; background: #0e9f6e; animation: simPulse 2.4s ease-in-out infinite; }
.app-body { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; min-height: 0; overflow: hidden; }

/* KPI şeridi */
.app-kpi {
  background: #ffffff; border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 12px; display: flex; flex-direction: column; gap: 1px; position: relative; min-width: 0;
}
.app-kpi b { font-size: 1.06rem; font-weight: 730; letter-spacing: -0.02em; color: var(--ink); }
.app-kpi span { font-size: 0.64rem; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.04em; }
.app-kpi .up { position: absolute; top: 8px; right: 10px; font-size: 0.68rem; font-style: normal; color: #0e9f6e; font-weight: 700; }
.app-kpi .warn { position: absolute; top: 8px; right: 10px; font-size: 0.68rem; font-style: normal; color: #d97706; font-weight: 800; }
.app-body > .app-kpi { flex: 1; }
.app-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }

/* Tablo */
.app-table {
  background: #ffffff; border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
}
.app-tr {
  display: grid; grid-template-columns: 0.8fr 1.6fr 0.7fr 1.1fr 0.6fr;
  gap: 8px; align-items: center;
  padding: 7.5px 12px; font-size: 0.74rem; color: var(--ink);
  border-bottom: 1px solid var(--line); min-width: 0;
}
.app-tr:last-child { border-bottom: 0; }
.app-tr > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-tr--head {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); background: #fafbfe;
}
.app-tr--secili { background: rgba(49, 92, 255, 0.06); box-shadow: inset 2.5px 0 0 #315cff; }
.app-tr b { font-weight: 640; color: var(--ink); font-size: 0.68rem; }
.st { display: inline-flex; align-items: center; gap: 5px; font-style: normal; }
.st::before { content: ""; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.st--uret::before { background: #315cff; }
.st--plan::before { background: #94a3b8; }
.st--ok::before { background: #0e9f6e; }
.st--warn::before { background: #d97706; }
.app-alt {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.68rem; color: var(--muted);
}
.app-sayfa { background: #f1f2f6; border-radius: 999px; padding: 2px 9px; }

/* Entegrasyon görünümü */
.app-body--ent { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.ent-src, .ent-hedef { display: flex; flex-direction: column; gap: 6px; }
.ent-node {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 620; color: var(--ink);
  background: #ffffff; border: 1px solid var(--line); border-radius: 8px;
  padding: 4px 9px; white-space: nowrap;
}
.ent-node--hedef { border-color: rgba(49, 92, 255, 0.4); color: #1f4fd8; }
.led { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.led--ok { background: #0e9f6e; }
.led--off { background: #cbd5e1; }
.led--pulse { background: #315cff; animation: simPulse 2s ease-in-out infinite; }
.ent-cizgi { display: flex; flex-direction: column; gap: 10px; }
.ent-cizgi span { width: 16px; height: 1.5px; background: var(--line-strong); border-radius: 2px; }
.ent-cizgi span.akt { background: linear-gradient(90deg, #315cff, rgba(49, 92, 255, 0.15)); box-shadow: 0 0 6px rgba(49, 92, 255, 0.35); }
.ent-cizgi--sag span.akt { background: linear-gradient(90deg, rgba(49, 92, 255, 0.15), #315cff); }
.ent-core {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  width: 58px; height: 58px; border-radius: 15px; justify-content: center;
  background: linear-gradient(180deg, #315cff, #1f4fd8); color: #fff;
  box-shadow: 0 10px 26px rgba(31, 79, 216, 0.35);
}
.ent-core b { font-size: 1.3rem; line-height: 1; }
.ent-core span { font-size: 0.64rem; opacity: 0.85; }
.ent-log { grid-column: 1 / -1; }
.ent-log .app-tr { grid-template-columns: 0.5fr 2.2fr 1fr; padding: 5.5px 12px; }

/* Kokpit görünümü */
.app-body--kok .kok-grid {
  display: grid; grid-template-columns: auto auto 1.3fr 1.1fr; gap: 8px; flex: 1; min-height: 0;
}
.kok-donut {
  width: 78px; border-radius: 12px; background: #ffffff; border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding: 8px;
}
.kok-donut i {
  width: 44px; height: 44px; border-radius: 50%;
  background: conic-gradient(#315cff var(--p, 50%), #eef1f7 0);
  display: flex; align-items: center; justify-content: center;
}
.kok-donut i::after {
  content: ""; width: 32px; height: 32px; border-radius: 50%; background: #ffffff;
}
.kok-donut b { font-size: 0.78rem; margin-top: -28px; font-weight: 730; }
.kok-donut span { font-size: 0.66rem; color: var(--muted); text-transform: uppercase; margin-top: 12px; }
.kok-donut--yesil i { background: conic-gradient(#0e9f6e var(--p, 50%), #eef1f7 0); }
.kok-buyuk {
  background: #ffffff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 12px; display: flex; flex-direction: column; gap: 8px; min-width: 0;
}
.kok-buyuk > span { font-size: 0.68rem; color: var(--muted); font-weight: 640; }
.kok-bar { flex: 1; display: flex; align-items: flex-end; gap: 7px; min-height: 0; max-height: 88px; }
.kok-bar i {
  flex: 1; height: var(--h, 40%); min-height: 4px; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #315cff, rgba(49, 92, 255, 0.35));
}
.kok-liste {
  background: #ffffff; border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; min-width: 0;
}
.kok-liste .app-tr { grid-template-columns: 1fr auto; padding: 4px 0; border-bottom: 1px dashed var(--line); font-size: 0.66rem; }
.kok-liste .app-tr:last-child { border-bottom: 0; }

/* Kanban görünümü */
.app-body--kanban { flex-direction: row; gap: 8px; }
.app-alt--kb { margin-top: 8px; }
.kb-kolon {
  flex: 1; display: flex; flex-direction: column; gap: 7px; min-width: 0;
  background: rgba(12, 18, 38, 0.025); border: 1px dashed var(--line-strong);
  border-radius: 12px; padding: 9px;
}
.kb-baslik {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.kb-baslik i {
  font-style: normal; background: var(--line); color: var(--ink-dim);
  border-radius: 999px; padding: 0 6px; font-size: 0.58rem;
}
.kb-kart {
  background: #ffffff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 1px 3px rgba(16, 24, 48, 0.07);
  padding: 8px 10px; display: flex; flex-direction: column; gap: 3px;
}
.kb-kart b { font-size: 0.72rem; color: var(--ink); font-weight: 640; }
.kb-kart em { font-style: normal; font-size: 0.68rem; color: var(--ink-dim); }
.kb-kart--dev { border-left: 3px solid #315cff; }
.kb-kart--canli { border-left: 3px solid #0e9f6e; }

/* app-body--kanban parent düzeni: body satır, alt bar altta kalsın */
.app-main:has(.app-body--kanban) { }
.app-body--kanban { flex: 1; }

/* Responsive */
@media (max-width: 960px) {
  .app-mock { aspect-ratio: auto; }
  .kok-liste { grid-column: 1 / -1; }
  .app-body--ent { grid-template-columns: 1fr; }
  .ent-cizgi { display: none; }
  .ent-core { margin: 0 auto; }
  .app-kpis { grid-template-columns: repeat(2, 1fr); }
  .kok-grid { grid-template-columns: repeat(2, 1fr); }
  .kok-bar { min-height: 60px; }
  .app-tr { grid-template-columns: 0.9fr 1.4fr 1fr 0.6fr; }
  .app-tr > span:nth-child(5) { display: none; }
}
@media (max-width: 620px) {
  .app-side { flex-basis: 40px; gap: 10px; }
  .app-nav__i { width: 24px; height: 24px; border-radius: 7px; }
  .app-nav__i::after { inset: 6px; }
  .app-avatar { width: 24px; height: 24px; font-size: 0.68rem; }
  .app-ara { display: none; }
  .app-body--kanban { flex-direction: column; }
  .app-tr { grid-template-columns: 0.9fr 1.3fr 1fr; gap: 6px; }
  .app-tr > span:nth-child(4) { display: none; }
  .app-tr > span:nth-child(5) { display: none; }
  .kok-grid { grid-template-columns: 1fr 1fr; }
  .kok-bar { min-height: 50px; }
  .kok-liste { grid-column: 1 / -1; }
  .kok-liste .app-tr { grid-template-columns: 1fr auto; }
  .ent-log .app-tr { grid-template-columns: 0.5fr 1.6fr 1fr; }
  .app-body--ent { grid-template-columns: 1fr; }
  .app-kpis { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CANLI MOCKUP ETKİLEŞİMLERİ
   ============================================================ */
.app-mock { position: relative; }

/* Tablo: satır seçimi + hover */
.app-tr { cursor: pointer; transition: background 0.18s; }
.app-body .app-tr:hover { background: rgba(31, 79, 216, 0.035); }
.app-tr--secili { background: rgba(49, 92, 255, 0.07) !important; box-shadow: inset 2.5px 0 0 #315cff; }

/* Entegrasyon: akan ışık noktaları + yeni günlük slide-in */
.ent-cizgi span { position: relative; overflow: hidden; }
.ent-cizgi span::after {
  content: ""; position: absolute; left: -6px; top: -1px;
  width: 5px; height: 3.5px; border-radius: 2px;
  background: #315cff; box-shadow: 0 0 6px rgba(49, 92, 255, 0.8);
  animation: entAk 2.6s linear infinite;
}
.ent-cizgi span:not(.akt)::after { display: none; }
.ent-cizgi--sag span::after { animation-name: entAkR; }
@keyframes entAk { 0% { left: -6px; } 100% { left: 100%; } }
@keyframes entAkR { 0% { left: -6px; } 100% { left: 100%; } }
.ent-log .app-tr { animation: entYeni 0.5s var(--ease-out); }
@keyframes entYeni { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: none; } }

/* Kokpit: donut/bar giriş animasyonu + onay tıklama */
.app-mock.in .kv2-bar i, .app-mock.in .kok-bar i {
  animation: barBuyu 0.9s var(--ease-out) backwards;
}
.app-mock.in .kv2-bar:nth-child(2) i, .app-mock.in .kok-bar i:nth-child(2) { animation-delay: 0.08s; }
.app-mock.in .kv2-bar:nth-child(3) i, .app-mock.in .kok-bar i:nth-child(3) { animation-delay: 0.16s; }
.app-mock.in .kv2-bar:nth-child(4) i, .app-mock.in .kok-bar i:nth-child(4) { animation-delay: 0.24s; }
.app-mock.in .kv2-bar:nth-child(5) i, .app-mock.in .kok-bar i:nth-child(5) { animation-delay: 0.32s; }
.app-mock.in .kv2-bar:nth-child(6) i, .app-mock.in .kok-bar i:nth-child(6) { animation-delay: 0.4s; }
.app-mock.in .kv2-bar:nth-child(7) i, .app-mock.in .kok-bar i:nth-child(7) { animation-delay: 0.48s; }
@keyframes barBuyu { from { height: 0; } }
.kok-liste .app-tr.onaylandi b { color: #0e9f6e; }
.kok-liste .app-tr.onaylandi { animation: entYeni 0.4s var(--ease-out); }
.app-clock { font-size: 0.66rem; font-weight: 620; color: var(--ink); background: #f1f2f6; border-radius: 8px; padding: 3px 8px; font-variant-numeric: tabular-nums; }

/* Kanban: kart avatar + tıklanınca taşıma geçişi */
.kb-kart { position: relative; transition: transform 0.25s var(--ease-out), box-shadow 0.25s; }
.kb-kart:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(16, 24, 48, 0.12); cursor: pointer; }
.kb-avatar {
  position: absolute; right: 8px; top: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #315cff, #1f4fd8); color: #fff;
  font-size: 0.68rem; font-weight: 700;
}
.kb-avatar--m { background: linear-gradient(180deg, #0e9f6e, #059669); }
.kb-kart.tasiniyor { animation: kbTasi 0.45s var(--ease-out); }
@keyframes kbTasi { 0% { transform: scale(0.96); opacity: 0.3; } 100% { transform: none; opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .ent-cizgi span::after { display: none; }
  .app-mock.in .kv2-bar i, .app-mock.in .kok-bar i { animation: none; }
  .kb-kart:hover { transform: none; }
}

/* ============================================================
   GERÇEK UYGULAMA DAVRANIŞI: içerik kayar, öğeler basılır
   ============================================================ */
.app-body { overflow: hidden; }
.app-table {
  flex: 1; min-height: 0;
  overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.kb-kolon {
  min-height: 0; overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.kok-liste {
  min-height: 0; overflow-y: auto; overscroll-behavior: contain;
}
.kok-liste .kb-baslik { position: sticky; top: 0; background: #ffffff; }

/* Ince uygulama scrollbar'ları */
.app-table::-webkit-scrollbar, .kb-kolon::-webkit-scrollbar,
.kok-liste::-webkit-scrollbar, .app-body::-webkit-scrollbar { width: 7px; }
.app-table::-webkit-scrollbar-thumb, .kb-kolon::-webkit-scrollbar-thumb,
.kok-liste::-webkit-scrollbar-thumb, .app-body::-webkit-scrollbar-thumb {
  background: rgba(31, 79, 216, 0.25); border-radius: 99px;
}
.app-table::-webkit-scrollbar-thumb:hover, .kb-kolon::-webkit-scrollbar-thumb:hover,
.kok-liste::-webkit-scrollbar-thumb:hover { background: rgba(31, 79, 216, 0.45); }
.app-table { scrollbar-width: thin; scrollbar-color: rgba(31,79,216,.3) transparent; }
.kb-kolon, .kok-liste { scrollbar-width: thin; scrollbar-color: rgba(31,79,216,.3) transparent; }

/* Basılabilir geri bildirim */
.app-tr:active, .kb-kart:active {
  transform: scale(0.985);
  background: rgba(31, 79, 216, 0.05);
}
.app-tr { user-select: none; }
.kb-kart { user-select: none; }

/* Kanban kolonu: başlık sabit, kartlar akar */
.kb-kolon { display: flex; flex-direction: column; }
.kb-kolon .kb-baslik { position: sticky; top: 0; background: rgba(246, 247, 251, 0.95); z-index: 2; }

/* app-body--kanban iç düzeni yükseklik taşması */
.app-body--kanban { align-items: stretch; min-height: 0; }

/* ============================================================
   WOW PAKETİ — Fark bölümü, sayfa sineması, detay cilaları
   ============================================================ */
body { animation: sayfaGir 0.45s var(--ease-out); }
@keyframes sayfaGir { from { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { body { animation: none; } }

.fark { background: var(--bg-2); }
.fark__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 26px); margin-top: clamp(28px, 4vw, 48px);
}
.fark__kart {
  position: relative; background: #ffffff;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 1px 2px rgba(16,24,48,.04), 0 14px 40px rgba(16,24,48,.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  overflow: hidden;
}
.fark__kart::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #315cff, #1f4fd8);
  transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.5s var(--ease-out);
}
.fark__kart:hover { transform: translateY(-4px); box-shadow: 0 2px 4px rgba(16,24,48,.05), 0 22px 56px rgba(16,24,48,.11); }
.fark__kart:hover::before { transform: scaleX(1); }
.fark__no {
  font-family: var(--mono); font-size: 0.8rem; color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px;
  border: 1px solid rgba(31,79,216,.3); background: rgba(31,79,216,.06);
  margin-bottom: 14px; font-weight: 700;
}
.fark__kart h3 { font-size: 1.14rem; margin-bottom: 0.5em; }
.fark__kart p { color: var(--muted); font-size: 0.94rem; margin-bottom: 1.1em; }
.fark__etiket {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 620; color: #92600a;
  background: rgba(217, 119, 6, 0.08); border: 1px dashed rgba(217, 119, 6, 0.35);
  border-radius: 999px; padding: 5px 12px;
}
.fark__etiket::before { content: "✕"; font-size: 0.68rem; color: #d97706; }
@media (max-width: 720px) { .fark__grid { grid-template-columns: 1fr; } }

/* Erişilebilir focus halkaları */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(49, 92, 255, 0.55); outline-offset: 2px; border-radius: 6px;
}

/* Header delta mikro-dönüş */
.brand .delta { display: inline-block; transition: transform 0.5s var(--ease-out); }
.brand:hover .delta { transform: rotate(180deg); }

/* İç sayfa hero filigranı: büyük soluk delta sağ altta */
.page-hero__bg .ph-delta {
  content: ""; position: absolute; right: -30px; bottom: -60px;
  font-size: clamp(180px, 22vw, 340px); line-height: 1; font-weight: 800;
  color: rgba(31, 79, 216, 0.055); pointer-events: none; user-select: none;
}

/* Answer kutusuna Δ rozeti */
.answer { position: relative; padding-left: calc(clamp(20px, 3vw, 30px) + 26px); }
.answer::before {
  content: "△"; position: absolute; left: clamp(20px, 3vw, 30px); top: clamp(20px, 3vw, 30px);
  transform: translateY(-50%);
  font-size: 0.95rem; color: var(--accent); font-weight: 700;
}
@media (max-width: 560px) {
  .answer { padding-left: 24px; }
  .answer::before { display: none; }
}

/* --- Editoryal h2 çentiği (scroll'da çizilir) --- */
.prose > h2 {
  position: relative; padding-left: 18px;
}
.prose > h2::before {
  content: ""; position: absolute; left: 0; top: 0.16em; bottom: 0.16em;
  width: 4px; border-radius: 3px;
  background: linear-gradient(180deg, #315cff, #1f4fd8);
  transform: scaleY(0); transform-origin: 50% 0;
  transition: transform 0.6s var(--ease-out);
}
.reveal.in > h2::before, h2.in::before { transform: scaleY(1); }
@media (prefers-reduced-motion: reduce) { .prose > h2::before { transform: scaleY(1); transition: none; } }

/* --- Tablo zebra + satır ayak izi --- */
.cmp-table tbody tr:nth-child(even) { background: rgba(12, 18, 38, 0.018); }
.cmp-table tbody tr { transition: background 0.15s; }
.cmp-table tbody tr:hover { background: rgba(31, 79, 216, 0.04); }

/* --- Hesaplayıcı değer değişim animasyonu --- */
@keyframes calcDegis {
  0% { opacity: 0.2; transform: translateY(-5px); }
  100% { opacity: 1; transform: none; }
}
.calc__satir b.degisti { animation: calcDegis 0.4s var(--ease-out); }
.app-kpi b.degisti { animation: calcDegis 0.4s var(--ease-out); display: inline-block; }

/* --- Kokpit SVG çizgi + telefon köşe rozeti --- */
.kok-line { width: 100%; height: 40px; margin-top: 6px; }
.kok-line polyline {
  stroke-dasharray: 220; stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.4s var(--ease-out) 0.35s;
}
.kok-line circle { opacity: 0; transition: opacity 0.3s 1.6s; }
.app-mock.in .kok-line polyline { stroke-dashoffset: 0; }
.app-mock.in .kok-line circle { opacity: 1; }
.app-phone-badge {
  position: absolute; right: 14px; bottom: 14px; z-index: 5;
  width: 44px; height: 74px; border-radius: 9px;
  background: #0d1430; padding: 5px 4px;
  display: flex; flex-direction: column; gap: 3px;
  box-shadow: 0 12px 26px rgba(16, 24, 48, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.9);
}
.app-phone-badge i { flex: 1.6; background: #f6f7fb; border-radius: 3px; }
.app-phone-badge b { flex: 1; background: #e3e7f4; border-radius: 2px; }
.app-phone-badge em { flex: 0.6; background: rgba(49, 92, 255, 0.5); border-radius: 2px; }

/* --- Fiyat: canlı proje terminali --- */
.terminal {
  background: #0d1430; border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(13, 20, 48, 0.35);
  overflow: hidden; margin: 1.6em 0 2.4em;
}
.terminal__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--mono); font-size: 0.72rem; color: #97a0b5;
}
.terminal__bar .sim-dots i { background: rgba(255, 255, 255, 0.25); }
.terminal__canli { margin-left: auto; color: #34d399; font-weight: 700; letter-spacing: 0.1em; animation: termNabiz 2s ease-in-out infinite; }
@keyframes termNabiz { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.terminal__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.tr-line {
  display: grid; grid-template-columns: 52px 22px 1fr auto; gap: 10px; align-items: baseline;
  font-family: var(--mono); font-size: 0.8rem; color: #aeb7cb;
  padding: 6px 8px; border-radius: 8px;
  opacity: 0.4; transform: translateX(-6px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.terminal.in .tr-line { opacity: 1; transform: none; }
.tr-line:nth-child(1) { transition-delay: 0.1s; }
.tr-line:nth-child(2) { transition-delay: 0.35s; }
.tr-line:nth-child(3) { transition-delay: 0.6s; }
.tr-line:nth-child(4) { transition-delay: 0.85s; }
.tr-line:nth-child(5) { transition-delay: 1.1s; }
.tr-zaman { color: #5a6377; font-size: 0.68rem; }
.tr-ok { color: #34d399; font-weight: 700; }
.tr-bekle { color: #5a6377; }
.tr-nokta {
  width: 9px; height: 9px; border-radius: 50%; align-self: center;
  background: #315cff; box-shadow: 0 0 12px rgba(49, 92, 255, 0.8);
  animation: termNabiz 1.6s ease-in-out infinite;
}
.tr-line.tr-tamam span:nth-child(3) { color: #c6cddd; }
.tr-line.tr-aktif { background: rgba(49, 92, 255, 0.12); color: #eef1f8; }
.tr-line em { font-style: normal; font-size: 0.66rem; color: #5a6377; white-space: nowrap; }
@media (max-width: 560px) {
  .tr-line { grid-template-columns: 44px 18px 1fr; }
  .tr-line em { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tr-line { opacity: 1; transform: none; transition: none; }
  .terminal__canli, .tr-nokta { animation: none; }
  .kok-line polyline { transition: none; stroke-dashoffset: 0; }
  .kok-line circle { transition: none; opacity: 1; }
}

/* --- Anlatı köprüleri (psikolojik rampa) — merkezli --- */
.kopru {
  margin: clamp(40px, 5vw, 64px) auto 0;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: var(--muted);
  display: flex; align-items: baseline; justify-content: center;
  gap: 10px; flex-wrap: wrap; text-align: center;
  border-top: 1px dashed var(--line-strong);
  padding-top: 1.5em; max-width: 580px;
}
.kopru a {
  font-weight: 700; color: var(--accent);
  white-space: nowrap;
}
.kopru a::after { content: ""; }

/* --- Hero slogan subhead --- */
.hero__slogan {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 740; letter-spacing: -0.025em; line-height: 1.2;
  color: var(--ink); margin: 0.35em 0 0.6em;
}
.hero__slogan em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- Menü: aktif sayfa göstergesi --- */
.site-nav a[aria-current="page"] {
  color: var(--accent); position: relative;
}
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 3px; right: 3px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--accent);
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--accent);
  transition: left 0.25s var(--ease-out), right 0.25s var(--ease-out);
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { left: 3px; right: 3px; }

/* --- Manifesto ana slogan-quote --- */
.manifesto__ozet {
  margin: 0 0 1.2em; padding: 0 0 0 clamp(18px, 2.4vw, 28px);
  border-left: 3px solid var(--accent);
  grid-column: 1 / -1;
}
.manifesto__ozet p {
  font-size: clamp(1.14rem, 2vw, 1.56rem);
  font-weight: 560; line-height: 1.55; letter-spacing: -0.015em;
  color: var(--ink); max-width: 46ch; margin: 0;
}
.manifesto__ozet strong { color: var(--accent); font-weight: 700; }
.manifesto__vurus {
  grid-column: 1 / -1;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 740; letter-spacing: -0.03em; line-height: 1.15;
  color: var(--ink); margin: 0 0 1.6em;
}
.manifesto__vurus em {
  font-style: normal;
  background: linear-gradient(100deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- Form güven mikrocopy --- */
.form-mikro {
  font-size: 0.76rem; color: var(--muted); text-align: center; margin: 10px 0 0;
}

/* ============================================================
   KOKPİT v2 — geniş, gerçek ekran hissi
   ============================================================ */
.kokpit-v2 { min-height: 440px; }
.kokpit-body {
  display: flex; flex-direction: column; gap: 10px; padding: 14px; min-height: 0;
}
.kv2-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.kv2 {
  background: #ffffff; border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; display: flex; flex-direction: column; gap: 2px;
  position: relative; min-width: 0;
}
.kv2__etiket {
  font-size: 0.68rem; font-weight: 680; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kv2__deger {
  font-size: clamp(1.08rem, 1.5vw, 1.4rem); font-weight: 740; letter-spacing: -0.02em;
  color: var(--ink); font-variant-numeric: tabular-nums;
  background: none; -webkit-background-clip: initial; background-clip: initial;
  -webkit-text-fill-color: initial;
}
.kv2__deger.warn { color: #d97706; }
.kv2__trend {
  font-style: normal; font-size: 0.66rem; font-weight: 700; color: #0e9f6e;
  align-self: flex-end; flex-shrink: 0; margin-left: auto;
}
.kv2__trend.warn { color: #c2610a; }
.kv2__etiket { padding-right: 0; }
.kv2-grafik {
  flex: 1; background: #ffffff; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; min-height: 0;
}
.kv2-grafik__head { display: flex; justify-content: space-between; align-items: baseline; }
.kv2-grafik__baslik { font-size: 0.76rem; font-weight: 700; color: var(--ink); }
.kv2-grafik__aralik { font-size: 0.68rem; color: var(--muted); }
.kv2-bars {
  flex: 1; display: flex; align-items: flex-end; gap: 10px; min-height: 0;
  padding: 0 4px;
}
.kv2-bar {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%;
  justify-content: flex-end; min-width: 0;
}
.kv2-bar i {
  width: 100%; max-width: 36px; height: var(--h, 40%); min-height: 5px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(49,92,255,.75), rgba(49,92,255,.2));
  transition: height 0.9s var(--ease-out);
}
.kv2-bar--son i { background: linear-gradient(180deg, #315cff, #1f4fd8); box-shadow: 0 4px 16px rgba(49,92,255,.3); }
.kv2-bar span { font-size: 0.64rem; color: var(--muted); font-weight: 600; }
.kv2-onay {
  display: grid; grid-template-columns: auto 1fr 1fr 1fr; gap: 8px; align-items: center;
  background: rgba(12,18,38,.025); border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 12px;
}
.kv2-onay__baslik {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.kv2-onay .app-tr {
  grid-template-columns: 1fr auto; padding: 4px 0; border: 0;
  font-size: 0.74rem;
}

/* app alt bar (kokpit-v2'ye özel — app-main içinde) */
.kokpit-v2 .app-main .app-alt { margin: 0 14px 10px; padding: 6px 10px; background: rgba(12,18,38,.02); border-radius: 8px; }

@media (max-width: 860px) {
  .kokpit-v2 { aspect-ratio: auto; }
  .kv2-strip { grid-template-columns: repeat(3, 1fr); }
  .kv2-onay { grid-template-columns: 1fr; gap: 4px; }
  .kv2-onay .app-tr { border-bottom: 1px dashed var(--line); padding: 5px 0; }
  .kv2-onay .app-tr:last-child { border: 0; }
}
@media (max-width: 480px) { .kv2-strip { grid-template-columns: repeat(2, 1fr); } }

/* --- Okuma satırı disiplini: prose max-width --- */
.prose p, .prose li { max-width: 68ch; }
.prose .table-scroll, .prose .card-grid { max-width: none; }

/* ============================================================
   HERO ROZETLERİ — chip/pil görünümü (CSS'i hiç yoktu!)
   ============================================================ */
.hero__badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
  margin: 0 auto; padding-top: 1.6em; border-top: 1px solid var(--line);
  max-width: 620px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.84rem; font-weight: 620; color: var(--ink-dim);
  background: #ffffff; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 8px 16px 8px 8px;
  box-shadow: 0 1px 3px rgba(16,24,48,.05);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.hero__badge:hover { border-color: rgba(31,79,216,.35); box-shadow: 0 3px 10px rgba(16,24,48,.08); }
.hero__badge i {
  font-style: normal; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(31,79,216,.08); color: var(--accent);
  font-size: 0.72rem; font-weight: 800; flex-shrink: 0;
}

/* --- Mobil bar için footer alanı (760px altı) --- */
@media (max-width: 760px) {
  .site-footer { padding-bottom: 100px; }
}

/* --- Fark kartı çıktı listesi --- */
.fark__liste {
  list-style: none; padding: 0; margin: 0 0 1.2em;
  display: flex; flex-direction: column; gap: 8px;
}
.fark__liste li {
  font-size: 0.86rem; color: var(--ink-dim); line-height: 1.45;
  padding-left: 0; display: flex; align-items: baseline; gap: 6px;
}
.fark__liste li b { color: var(--ink); font-weight: 640; flex-shrink: 0; }

/* --- Çözüm kartları: sinematik scale giriş --- */
.solution__media {
  transform: scale(0.94); opacity: 0.7;
  transition: transform 1.4s var(--ease-out), opacity 0.9s var(--ease-out);
}
.solution.reveal.in .solution__media,
.solution.in .solution__media {
  transform: scale(1); opacity: 1;
}

/* --- SSS toggle --- */
.sss-toggle {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; font: inherit; font-size: 0.92rem; font-weight: 640;
  color: var(--accent); background: transparent; cursor: pointer;
  border: 1.5px dashed rgba(31,79,216,.3); border-radius: 12px;
  padding: 14px 20px; margin-top: 20px;
  transition: border-color 0.25s, background 0.25s;
}
.sss-toggle:hover { border-color: var(--accent); background: rgba(31,79,216,.04); }
.sss-toggle span { transition: transform 0.35s var(--ease-out); }
.sss-toggle.acik span { transform: rotate(180deg); }
.sss-gizli { display: none; }
.sss-gizli.acik { display: block; }
@media (prefers-reduced-motion: reduce) {
  .solution__media { transform: none; opacity: 1; transition: none; }
}

/* ============================================================
   ÇÖZÜM KATALOĞU — 4 kategori × 4 hizmet
   ============================================================ */
.cozum-katalog {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px); margin-top: clamp(32px, 5vw, 56px);
}
.cozum-kat {
  background: #ffffff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 30px);
  box-shadow: 0 1px 2px rgba(16,24,48,.04), 0 12px 34px rgba(16,24,48,.05);
}
.cozum-kat > h3 {
  font-size: 0.86rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.cozum-grid { display: flex; flex-direction: column; gap: 6px; }
.cozum-grid a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: 10px;
  text-decoration: none; transition: background 0.2s;
}
.cozum-grid a:hover { background: rgba(31,79,216,.04); }
.cozum-grid b {
  font-size: 0.92rem; font-weight: 640; color: var(--ink);
}
.cozum-grid span {
  font-size: 0.78rem; color: var(--muted); line-height: 1.4;
}
@media (max-width: 768px) { .cozum-katalog { grid-template-columns: 1fr; } }
.solution__copy { min-width: 0; }

/* --- Entegrasyon görünümü: kompakt 3 kolon --- */
.app-body--ent .ent-src { grid-column: 1; }
.app-body--ent .ent-cizgi:first-of-type { grid-column: 2; }
.app-body--ent .ent-core { grid-column: 2; grid-row: 1; align-self: center; justify-self: center; }
.app-body--ent .ent-hedef { grid-column: 3; grid-row: 1; }
.app-body--ent .ent-cizgi.ent-cizgi--sag { display: none; }
.app-body--ent .ent-log { grid-column: 1 / -1; grid-row: 2; }

/* --- Hero pill: vurgu (ilk pill daha güçlü) --- */
.hero__badge--vurgu {
  border-color: rgba(179, 57, 46, .25);
  background: rgba(179, 57, 46, .04);
}
.hero__badge--vurgu i {
  background: rgba(179, 57, 46, .08);
  color: #b3392e;
}
.hero__badge--vurgu:hover { border-color: rgba(179, 57, 46, .4); }

/* ============================================================
   AI DESTEKLİ CANLI YARDIM (chatbot)
   ============================================================ */









.kd-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 0.85rem; line-height: 1.5; }
.kd-msg--bot { background: #f2f4f7; color: var(--ink); align-self: flex-start; border-bottom-left-radius: 4px; }
.kd-msg--user { background: #315cff; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.kd-msg a { color: #315cff; font-weight: 620; text-decoration: underline; }







@media (max-width: 480px) {  }
@media (prefers-reduced-motion: reduce) {  }

/* ============================================================
   SİNEMATİK SCROLL: mockup'lar uzaktan yaklaşarak gelir
   ============================================================ */

/* Çözüm kartları: ekran dışından scale ile yaklaşır */
.solution {
  opacity: 0;
  transform: scale(1.12) translateY(60px);
  filter: blur(6px);
  transition:
    opacity 1s cubic-bezier(.16,1,.3,1),
    transform 1.2s cubic-bezier(.16,1,.3,1),
    filter 0.8s ease;
  will-change: transform, opacity;
}
.solution.in {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: none;
}

/* Mockup panel: ekran içi hafif parallax */
.solution.in .solution__media {
  animation: mockupYaklas 1.4s cubic-bezier(.16,1,.3,1) 0.2s backwards;
}
@keyframes mockupYaklas {
  from { transform: scale(1.06) translateX(30px); opacity: 0.6; }
  to { transform: scale(1) translateX(0); opacity: 1; }
}

/* Çözüm metin: hafif gecikmeyle belirir */
.solution.in .solution__copy {
  animation: metinBelir 0.9s cubic-bezier(.16,1,.3,1) 0.35s backwards;
}
@keyframes metinBelir {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: none; }
}

/* Showcase: tam genişlik yaklaşma */
.showcase__stage {
  opacity: 0;
  transform: scale(1.08) translateY(40px);
  transition: opacity 1.2s cubic-bezier(.16,1,.3,1), transform 1.4s cubic-bezier(.16,1,.3,1);
}
.showcase__stage.in {
  opacity: 1; transform: scale(1) translateY(0);
}

/* Kokpit KPI değerleri: sayaç + scale efekti */
.kv2 {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(.34,1.56,.64,1);
}
.app-mock.in .kv2 { opacity: 1; transform: scale(1); }
.app-mock.in .kv2:nth-child(2) { transition-delay: 0.08s; }
.app-mock.in .kv2:nth-child(3) { transition-delay: 0.16s; }
.app-mock.in .kv2:nth-child(4) { transition-delay: 0.24s; }
.app-mock.in .kv2:nth-child(5) { transition-delay: 0.32s; }

/* Kanban kartları: yukarıdan düşerek gelir */
.kb-kart {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(.34,1.56,.64,1);
}
.app-mock.in .kb-kart { opacity: 1; transform: none; }
.app-mock.in .kb-kart:nth-child(2) { transition-delay: 0.1s; }
.app-mock.in .kb-kart:nth-child(3) { transition-delay: 0.2s; }
.app-mock.in .kb-kart:nth-child(4) { transition-delay: 0.3s; }
.app-mock.in .kb-kart:nth-child(5) { transition-delay: 0.4s; }

/* Fark kartları: rotate ile yaklaşır */
.fark__kart {
  opacity: 0;
  transform: perspective(800px) rotateY(-8deg) translateY(30px);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(.16,1,.3,1);
}
.fark__kart.in {
  opacity: 1;
  transform: perspective(800px) rotateY(0) translateY(0);
}

/* Terminal satırları */
.tr-line {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.terminal.in .tr-line { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .solution, .showcase__stage, .kv2, .kb-kart, .fark__kart, .tr-line {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* --- Chatbot v2: durum + typing + footer --- */


.kd-msg--typing { display: flex; gap: 4px; padding: 14px 16px; }
.kd-msg--typing span { width: 6px; height: 6px; border-radius: 50%; background: #8b94ab; animation: typingDot 1.4s ease-in-out infinite; }
.kd-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.kd-msg--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }





/* --- Form: hızlı seçim chipleri --- */
.form-hizli { margin-bottom: 18px; }
.form-hizli__baslik {
  font-size: 0.82rem; font-weight: 620; color: var(--ink);
  margin: 0 0 10px;
}
.form-hizli__secenekler { display: flex; flex-wrap: wrap; gap: 8px; }
.form-chip {
  font: inherit; font-size: 0.84rem; font-weight: 600; cursor: pointer;
  color: var(--ink-dim); background: #fff; border: 1.5px solid var(--line-strong);
  border-radius: 999px; padding: 9px 16px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.form-chip:hover { border-color: rgba(31,79,216,.4); background: rgba(31,79,216,.04); transform: translateY(-1px); }
.form-chip.secili {
  background: linear-gradient(135deg, #1f4fd8, #315cff) !important;
  border-color: #1f4fd8 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(31, 79, 216, 0.3) !important;
  transform: translateY(-2px);
}
.form-chip.secili::after {
  content: " ✓";
  font-weight: 800;
  color: #ffffff;
}

/* Teklif Sihirbazı Seçenekleri Global Stili */
.tk-op.sec, .tk-op.secili, .tk-op[aria-pressed="true"] {
  background: linear-gradient(135deg, #1f4fd8, #315cff) !important;
  color: #ffffff !important;
  border-color: #1f4fd8 !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(31, 79, 216, 0.32) !important;
  transform: translateY(-2px) !important;
}
.tk-op.sec *, .tk-op.secili * {
  color: #ffffff !important;
}
.tk-op.sec::after, .tk-op.secili::after {
  content: "✓" !important;
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: #0e9f6e !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.25) !important;
  animation: tkChk .25s cubic-bezier(.34,1.56,.64,1) !important;
  z-index: 10 !important;
}

/* --- Görsel tarama düzeltmeleri --- */
/* Hero badges mobil: taşma önle */
@media (max-width: 480px) {
  .hero__badges { gap: 8px; }
  .hero__badge { font-size: 0.78rem; padding: 7px 12px 7px 7px; }
  .hero__badge i { width: 22px; height: 22px; font-size: 0.64rem; }
}

/* Çözüm kartları: mobil'de dikey boşluk */
@media (max-width: 860px) {
  .solution { padding: 28px 0; margin-bottom: 12px; }
  .solution + .solution { margin-top: 12px; }
}

/* Kokpit KPI: çok dar ekranda font küçült */
@media (max-width: 420px) {
  .kv2__deger { font-size: 0.95rem !important; }
  .kv2__etiket { font-size: 0.62rem !important; }
}

/* Footer: mobil'de kolumnlar arası boşluk */
@media (max-width: 560px) {
  .footer-grid { gap: 28px; }
  .footer-grid nav, .footer-grid > div:last-child {
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
}

/* Chatbot: mobil'de panel daha dar */
@media (max-width: 420px) {
  
  
}

/* Teklif sayfası: radio/checkbox mobil */
@media (max-width: 640px) {
  .tk-secenekler { gap: 8px; }
  .tk-sec { padding: 10px 14px; font-size: 0.84rem; }
}

/* --- KVKK Toggle Switch --- */
.tk-kvkk {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  padding: 14px 16px; border-radius: 12px;
  background: rgba(16,24,38,.02); border: 1px solid var(--line);
  margin: 16px 0; transition: border-color 0.2s;
}
.tk-kvkk:hover { border-color: rgba(31,79,216,.15); }
.tk-kvkk input { display: none; }
.tk-kvkk__sw {
  width: 44px; height: 24px; border-radius: 99px;
  background: rgba(16,24,38,.12); position: relative; transition: background 0.3s;
  flex-shrink: 0; display: inline-block;
}
.tk-kvkk__sw::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.tk-kvkk input:checked ~ .tk-kvkk__sw { background: #315cff; }
.tk-kvkk input:checked ~ .tk-kvkk__sw::after { transform: translateX(20px); }
.tk-kvkk > span:last-child { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.tk-kvkk > span:last-child a { color: var(--accent); text-decoration: underline; }

/* ============================================================
   TAKVİM v2 — Ay görünümü + navigasyon + doluluk
   ============================================================ */
.tk-takvim { background: rgba(31,79,216,.02); border: 1.5px solid rgba(31,79,216,.1); border-radius: 18px; padding: 20px; margin-top: 16px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-title { text-align: center; flex: 1; }
.cal-title span { font-size: 1rem; font-weight: 700; color: var(--ink); display: block; }
.cal-title small { font-size: 0.68rem; color: var(--muted); }
.cal-nav { width: 40px; height: 40px; border-radius: 12px; border: 2px solid var(--line); background: #fff; font-size: 1.3rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; }
.cal-nav:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); background: rgba(31,79,216,.04); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; }
.cal-gun-ad { text-align: center; font-size: 0.68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; padding: 4px 0; }
.cal-gun-ad--hs { color: rgba(98,105,117,.5); }

.cal-gunler { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-gun {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 42px; border-radius: 10px; font-size: .88rem; font-weight: 560;
  color: var(--ink); cursor: pointer; transition: all .2s; border: 2px solid transparent;
  flex-direction: column; gap: 1px;
}
.cal-gun small { font-size: 0.52rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; line-height: 1; }
.cal-gun--bos { cursor: default; }
.cal-gun--gecmis { color: rgba(98,105,117,.3); cursor: not-allowed; }
.cal-gun--hs { color: rgba(98,105,117,.4); cursor: not-allowed; }
.cal-gun--hs.cal-gun--gecmis { color: rgba(98,105,117,.2); }
.cal-gun--bugun:not(.cal-gun--gecmis):not(.cal-gun--hs) { border-color: rgba(31,79,216,.3); background: rgba(31,79,216,.03); }
.cal-gun:not(.cal-gun--bos):not(.cal-gun--gecmis):not(.cal-gun--hs):not(.cal-gun--dolu):hover { border-color: var(--accent); background: rgba(31,79,216,.06); transform: scale(1.05); z-index: 1; }
.cal-gun--dolu { color: rgba(98,105,117,.4); cursor: not-allowed; text-decoration: line-through; }
.cal-gun--az { color: #c2610a; }
.cal-gun--secili { border-color: var(--accent) !important; background: rgba(31,79,216,.1) !important; color: var(--accent); font-weight: 700; box-shadow: 0 4px 14px rgba(31,79,216,.2); }

.cal-ok, .cal-az { position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; }
.cal-ok { background: #0e9f6e; }
.cal-az { background: #d97706; }

.cal-legend { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); }
.cal-legend__item { display: inline-flex; align-items: center; gap: 5px; font-size: 0.68rem; color: var(--muted); }
.cal-legend__dot { width: 8px; height: 8px; border-radius: 50%; }
.cal-legend__dot--ok { background: #0e9f6e; }
.cal-legend__dot--az { background: #d97706; }
.cal-legend__dot--dolu { background: rgba(98,105,117,.4); }
.cal-legend__dot--kapali { background: rgba(98,105,117,.15); }

.cal-saatler { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.cal-saatler h4 { font-size: .86rem; font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.cal-saat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 6px; }
.cal-saat {
  display: flex; align-items: center; justify-content: center; padding: 9px 6px;
  border-radius: 10px; border: 2px solid var(--line); font-size: .8rem; font-weight: 620;
  color: var(--ink-dim); cursor: pointer; transition: all .2s; background: #fff;
  font-variant-numeric: tabular-nums;
}
.cal-saat:hover:not(.cal-saat--dolu) { border-color: var(--accent); color: var(--accent); background: rgba(31,79,216,.03); }
.cal-saat--dolu { color: rgba(98,105,117,.3); cursor: not-allowed; border-style: dashed; }
.cal-saat--secili { border-color: var(--accent) !important; background: rgba(31,79,216,.08) !important; color: var(--accent) !important; font-weight: 700; box-shadow: 0 3px 10px rgba(31,79,216,.15); }
.cal-temizle { display: block; width: 100%; margin-top: 12px; padding: 10px; border: 1px dashed rgba(220,38,62,.3); border-radius: 10px; background: none; color: #b3392e; font: inherit; font-size: .8rem; font-weight: 620; cursor: pointer; transition: all .2s; }
.cal-temizle:hover { background: rgba(220,38,62,.04); border-color: rgba(220,38,62,.5); }

.cal-ozet {
  display: none; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  margin-top: 16px; padding: 16px 20px;
  background: linear-gradient(135deg, rgba(14,159,110,.06), rgba(5,150,105,.02));
  border: 1.5px solid rgba(14,159,110,.2); border-radius: 16px;
}
.cal-ozet__bilgi { display: flex; align-items: center; gap: 12px; }
.cal-ozet__ikon { font-size: 1.5rem; }
.cal-ozet__bilgi b { display: block; font-size: .92rem; font-weight: 700; color: var(--ink); }
.cal-ozet__bilgi span { display: block; font-size: .8rem; color: var(--muted); }
.cal-ozet__btn {
  background: linear-gradient(180deg, #0e9f6e, #059669); color: #fff;
  border: none; border-radius: 12px; padding: 12px 20px;
  font: inherit; font-size: .86rem; font-weight: 680; cursor: pointer;
  transition: all .2s; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(14,159,110,.2);
}
.cal-ozet__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(14,159,110,.3); }

@media (max-width: 560px) {
  .cal-gun { min-height: 36px; font-size: .82rem; }
  .cal-saat-grid { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); }
  .cal-ozet { flex-direction: column; align-items: flex-start; }
  .cal-ozet__btn { width: 100%; }
}
/* Dil seçici (EN) — header CTA önünde küçük düğme */
.dil-sec{font-size:.72rem;font-weight:800;letter-spacing:.05em;color:var(--muted);
  text-decoration:none;padding:6px 10px;border:1.5px solid var(--line);border-radius:999px;
  white-space:nowrap;transition:all .13s;flex:none;align-self:center}
.dil-sec:hover{border-color:var(--accent);color:var(--accent)}
@media (max-width:1020px){.dil-sec{display:none}}

/* ============================================================
   KODDELTA ÖZEL CANLI DESTEK (TAWK.TO) WIDGET LAUNCHER
   ============================================================ */
.kd-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  background: linear-gradient(135deg, #0b1220 0%, #132247 60%, #1f4fd8 100%);
  border: 1.5px solid rgba(49, 92, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(11, 18, 32, 0.45), 0 0 24px rgba(31, 79, 216, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  backdrop-filter: blur(12px);
}
.kd-chat-widget:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #315cff;
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.6), 0 0 32px rgba(49, 92, 255, 0.5);
}
.kd-chat-widget:active {
  transform: translateY(0) scale(0.97);
}
.kd-chat-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f4fd8, #315cff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(31, 79, 216, 0.4);
  flex-shrink: 0;
}
.kd-chat-delta {
  line-height: 1;
  transform: translateY(-1px);
}
.kd-chat-content {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.kd-chat-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.kd-chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 8px #12b76a;
  animation: kdChatPulse 2s infinite;
}
.kd-chat-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}
@keyframes kdChatPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
@media (max-width: 640px) {
  .kd-chat-widget {
    bottom: 16px;
    right: 16px;
    padding: 6px 14px 6px 8px;
  }
  .kd-chat-badge {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  .kd-chat-title {
    font-size: 12px;
  }
  .kd-chat-subtitle {
    font-size: 10px;
  }
}
