/* =============================================
   DIJITAL İKİZ — PREMIUM REDESIGN
   ============================================= */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img, svg { display: block; }
a { text-decoration: none; }
button { font-family: inherit; }

/* ── DESIGN TOKENS (Kurumsal, sade) ── */
:root {
  --black:    #0a0a0f;
  --surface:  #111118;
  --lift:     #16161d;
  --line:     rgba(255,255,255,0.06);
  --line-hi:  rgba(255,255,255,0.1);
  --blue:     #2563eb;
  --violet:   #2563eb;
  --cyan:     #64748b;
  --green:    #0d9488;
  --t1:       #e2e8f0;
  --t2:       #94a3b8;
  --t3:       #475569;
  --font:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:     cubic-bezier(0.4,0,0.2,1);
  --r:        8px;
  --r-lg:     12px;
  --r-xl:     16px;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── VURGU RENGİ (gradient yok, tek renk) ── */
.grad { color: var(--blue); }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.navbar.scrolled .nav-inner {
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--line);
}

/* logo */
.logo { display: flex; align-items: center; gap: 9px; }
.logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: 6px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.95rem; color: #fff;
  flex-shrink: 0;
}
.logo-name { font-weight: 600; font-size: 1rem; color: var(--t1); letter-spacing: -0.01em; }

/* nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--t2);
  font-size: 0.875rem; font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--t1); background: rgba(255,255,255,0.06); }

/* nav CTA */
.btn-nav {
  font-size: 0.875rem; font-weight: 600;
  color: var(--t1);
  background: rgba(255,255,255,0.09);
  border: 1px solid var(--line-hi);
  padding: 8px 18px;
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-nav:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.2); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--t1); border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  padding: 10px 16px 16px;
  background: rgba(5,5,8,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--t2); font-size: 0.95rem; font-weight: 500;
  padding: 11px 12px; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--t1); background: rgba(255,255,255,0.06); }
.mobile-cta {
  margin-top: 8px;
  background: var(--blue) !important;
  color: #fff !important;
  text-align: center;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.cta-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 0.9rem; font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background 0.2s var(--ease), opacity 0.2s;
}
.cta-primary:hover { background: #1d4ed8; opacity: 1; }
.cta-primary.full { width: 100%; }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--t2);
  font-size: 0.95rem; font-weight: 500;
  padding: 13px 20px;
  border-radius: var(--r);
  border: 1px solid var(--line-hi);
  background: transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.cta-ghost svg { width: 15px; height: 15px; }
.cta-ghost:hover { color: var(--t1); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.5; }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(400%); }
}
@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,-20px) scale(1.05); }
  66%     { transform: translate(-20px,15px) scale(0.97); }
}

.reveal-fast { animation: fadeUp 0.65s var(--ease) both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

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

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 132px 24px 80px;
  width: 100%;
  overflow: hidden;
  background: var(--black) url('assets/hero-bg.jpg') center / cover no-repeat;
  background-attachment: scroll;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.72);
  z-index: 0;
}
.hero-body,
.hero-visual { position: relative; z-index: 1; }

.hero-body { text-align: center; max-width: 720px; margin: 0 auto; }

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t2);
  margin-bottom: 24px;
}
.label-dot {
  width: 4px; height: 4px;
  background: var(--t3); border-radius: 50%;
}

.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--t2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.desktop-br { display: none; }
@media (min-width: 640px) { .desktop-br { display: block; } }

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 44px;
}

.hero-proof {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  font-size: 0.8rem; color: var(--t2);
  padding: 0 24px;
  max-width: fit-content;
  margin: 0 auto;
}
.proof-item strong { color: var(--t1); font-weight: 700; }
.proof-sep { width: 1px; height: 14px; background: var(--line-hi); margin: 0 20px; }

/* ─────────────────────────────────────────────
   HERO VISUAL (Dashboard)
───────────────────────────────────────────── */
.hero-visual {
  position: relative;
  margin-top: 64px;
}

.dash-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.dash-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--line);
}
.chrome-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red    { background: #ff5f56; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.chrome-url {
  flex: 1; text-align: center;
  font-size: 0.72rem; color: var(--t3); letter-spacing: 0.01em;
}
.chrome-status {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
}
.chrome-status.live { color: #10b981; }

.dash-body { display: flex; height: 290px; }

/* Dashboard sidebar */
.dash-sidebar {
  width: 180px; flex-shrink: 0;
  border-right: 1px solid var(--line);
  padding: 16px 0;
  background: rgba(0,0,0,0.2);
}
.ds-logo {
  display: flex; align-items: center; gap: 7px;
  padding: 0 14px 16px;
  font-size: 0.8rem; font-weight: 700; color: var(--t2);
  border-bottom: 1px solid var(--line); margin-bottom: 8px;
}
.ds-logo-mark {
  width: 22px; height: 22px;
  background: var(--blue);
  border-radius: 4px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.65rem; color: #fff;
}
.ds-nav { list-style: none; display: flex; flex-direction: column; gap: 2px; padding: 0 8px; }
.ds-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  font-size: 0.78rem; color: var(--t3);
  border-radius: 8px; cursor: pointer;
  transition: all 0.2s;
}
.ds-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.ds-item:hover { color: var(--t2); background: rgba(255,255,255,0.04); }
.ds-item.active { color: var(--t1); background: rgba(255,255,255,0.06); }

/* Dashboard main */
.dash-main {
  flex: 1; display: flex; flex-direction: column; gap: 12px;
  padding: 16px 20px; overflow: hidden;
}

.dash-query-bar {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 6px; padding: 10px 14px;
}
.dq-label {
  display: block; font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--t2); margin-bottom: 3px;
}
.dq-typing { font-size: 0.8rem; color: var(--t1); line-height: 1.5; }
.cursor { animation: blink 1s step-end infinite; color: var(--blue); font-weight: 700; }

.dash-metrics { display: flex; gap: 10px; }
.metric-card {
  flex: 1; background: rgba(255,255,255,0.04);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.mc-label { font-size: 0.62rem; color: var(--t3); text-transform: uppercase; letter-spacing: 0.08em; }
.mc-value { font-size: 1.4rem; font-weight: 800; color: var(--t1); line-height: 1.1; letter-spacing: -0.03em; }
.mc-value.accent { color: var(--blue); }
.mc-value.green  { color: var(--green); }
.mc-sub { font-size: 0.62rem; color: var(--t3); }

.dash-chart-area {
  flex: 1; background: rgba(255,255,255,0.02);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; display: flex; flex-direction: column; gap: 10px;
}
.chart-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.chart-title { font-size: 0.75rem; font-weight: 600; color: var(--t2); }
.chart-badge {
  font-size: 0.65rem; color: var(--t2);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  padding: 3px 8px; border-radius: 4px; white-space: nowrap;
}

.chart-bars { display: flex; flex-direction: column; gap: 6px; }
.cbar-row { display: flex; align-items: center; gap: 8px; }
.cbar-label { font-size: 0.68rem; color: var(--t3); width: 90px; flex-shrink: 0; white-space: nowrap; }
.cbar-track { flex: 1; height: 7px; background: rgba(255,255,255,0.05); border-radius: 100px; overflow: hidden; }
.cbar-fill { height: 100%; border-radius: 100px; width: 0; background: var(--c); transition: width 1.3s cubic-bezier(0.4,0,0.2,1); }
.anim-bar.bar-ready .cbar-fill { width: var(--w); }
.cbar-pct { font-size: 0.68rem; font-weight: 700; color: var(--t1); width: 28px; text-align: right; }

.dash-insight {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 6px; padding: 8px 12px; margin-top: auto;
}
.di-icon { color: var(--blue); font-size: 0.75rem; flex-shrink: 0; margin-top: 1px; }
.dash-insight p { font-size: 0.72rem; color: var(--t2); line-height: 1.5; }
.dash-insight strong { color: var(--t1); }

/* Float cards */
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px; padding: 12px 16px;
}
.float-card .fc-icon { font-size: 1.2rem; }
.float-card div { display: flex; flex-direction: column; }
.float-card strong { font-size: 0.8rem; font-weight: 700; color: var(--t1); }
.float-card span  { font-size: 0.72rem; color: var(--t2); }
.fc-1 { bottom: 40px; left: -40px; animation: fadeUp 0.8s 0.8s both; }
.fc-2 { top: 60px;    right: -30px; animation: fadeUp 0.8s 1s both; }

/* ─────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: rgba(255,255,255,0.015);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--t3); margin-bottom: 18px;
}
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-inner span {
  font-size: 0.9rem; font-weight: 600;
  color: var(--t3); padding: 0 24px;
  white-space: nowrap;
  transition: color 0.2s;
}
.marquee-inner span:hover { color: var(--t2); }
.marquee-inner .sep { color: var(--t3); padding: 0; }

/* ─────────────────────────────────────────────
   STATS
───────────────────────────────────────────── */
.stats-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-block:last-child { border-right: none; }
.sb-num {
  display: block;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--t1);
  line-height: 1;
  margin-bottom: 12px;
}
.sb-num em { font-style: normal; font-size: 0.55em; vertical-align: middle; }
.sb-text { font-size: 0.82rem; color: var(--t2); line-height: 1.5; max-width: 180px; margin: 0 auto; }

/* ─────────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────────── */
.section { padding: 96px 0; }

.sec-head {
  text-align: center;
  margin-bottom: 64px;
}
.sec-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--t2);
  margin-bottom: 12px;
}
.sec-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--t1);
  margin-bottom: 14px;
}
.sec-head p {
  font-size: 1.05rem; color: var(--t2);
  max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────── */
.how-steps { display: flex; flex-direction: column; gap: 2px; }

.how-step {
  display: grid;
  grid-template-columns: 56px 1fr 320px;
  gap: 32px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 36px 36px 28px;
  transition: border-color 0.25s;
}
.how-step:hover { border-color: var(--line-hi); }

.how-connector {
  height: 24px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.how-connector::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}

.hs-num {
  font-size: 2rem; font-weight: 700;
  color: var(--t3);
  line-height: 1; padding-top: 4px;
}

.hs-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--t1); margin-bottom: 10px; }
.hs-body p  { font-size: 0.9rem; color: var(--t2); line-height: 1.7; margin-bottom: 16px; }
.hs-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.hs-list li {
  font-size: 0.82rem; color: var(--t2);
  display: flex; align-items: center; gap: 8px;
}
.hs-list li::before { content: '→'; color: var(--blue); font-size: 0.8rem; flex-shrink: 0; }

/* Step visuals */
.hs-visual {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  min-height: 130px;
}

.hv-upload { display: flex; flex-direction: column; gap: 8px; }
.hv-file {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: var(--t2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 10px;
}
.hv-file svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.hv-progress { margin-top: 4px; }
.hv-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; margin-bottom: 4px; }
.hv-fill { height: 100%; width: 87%; background: var(--blue); border-radius: 4px; }
.hv-progress span { font-size: 0.65rem; color: var(--t3); }

.hv-profiles { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.hv-profile {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 7px 10px;
  font-size: 0.7rem; color: var(--t2); font-weight: 600;
}
.pt { font-size: 0.6rem; }
.pt.green  { color: var(--green); }
.pt.yellow { color: #fbbf24; }

.hv-result { display: flex; align-items: center; gap: 16px; }
.hv-score { text-align: center; }
.hv-pct { display: block; font-size: 2rem; font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -0.04em; }
.hv-pct small { font-size: 0.9rem; }
.hv-lbl { font-size: 0.65rem; color: var(--t2); white-space: nowrap; }
.hv-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.hvb { height: 6px; background: rgba(255,255,255,0.05); border-radius: 100px; overflow: hidden; }
.hvb-f { height: 100%; border-radius: 100px; }

/* ─────────────────────────────────────────────
   FEATURE TABS
───────────────────────────────────────────── */
.feat-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.feat-layout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; }

.feat-tabs { display: flex; flex-direction: column; gap: 4px; }

.feat-tab {
  display: flex; align-items: center; gap: 14px;
  background: none; border: 1px solid transparent;
  border-radius: var(--r); padding: 16px;
  cursor: pointer; text-align: left;
  transition: all 0.22s var(--ease);
}
.feat-tab:hover { background: rgba(255,255,255,0.03); border-color: var(--line); }
.feat-tab.active {
  background: rgba(255,255,255,0.04);
  border-color: var(--line-hi);
}
.ft-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--t3);
  transition: background 0.2s, color 0.2s;
}
.ft-icon svg { width: 16px; height: 16px; }
.feat-tab.active .ft-icon { background: rgba(255,255,255,0.06); color: var(--t1); }

.ft-content { display: flex; flex-direction: column; gap: 2px; }
.ft-content strong { font-size: 0.875rem; font-weight: 700; color: var(--t2); transition: color 0.2s; }
.ft-content span   { font-size: 0.78rem; color: var(--t3); transition: color 0.2s; }
.feat-tab.active .ft-content strong { color: var(--t1); }
.feat-tab.active .ft-content span   { color: var(--t2); }

/* Panels */
.feat-panels { position: relative; }

.feat-panel {
  display: none;
  animation: fadeUp 0.4s var(--ease) both;
}
.feat-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }

.fp-content h3 { font-size: 1.4rem; font-weight: 800; color: var(--t1); letter-spacing: -0.02em; margin-bottom: 14px; }
.fp-content p   { font-size: 0.9rem; color: var(--t2); line-height: 1.7; margin-bottom: 20px; }
.fp-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fp-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: var(--t2);
}
.fp-list li svg { width: 14px; height: 14px; flex-shrink: 0; }

.fp-visual {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  min-height: 260px;
}

/* Feature panel visuals */
.fv-audience { display: flex; flex-direction: column; gap: 14px; }
.fva-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--t2); }
.fva-count { font-weight: 700; color: var(--t1); }
.fva-segments { display: flex; flex-direction: column; gap: 8px; }
.fva-seg { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--t2); }
.fva-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 100px; overflow: hidden; }
.fva-bar > div { height: 100%; border-radius: 100px; }
.fva-cities { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-top: 4px; }
.fva-city {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 4px;
}
.fva-city span:first-child { font-size: 0.58rem; font-weight: 700; color: var(--t3); letter-spacing: 0.06em; }
.fva-city span:last-child  { font-size: 0.9rem; font-weight: 800; color: var(--t1); }

.fv-gap .gap-title { font-size: 0.78rem; font-weight: 700; color: var(--t2); margin-bottom: 12px; }
.gap-items { display: flex; flex-direction: column; gap: 8px; }
.gap-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 0.8rem; color: var(--t2); }
.gi-label { flex: 1; }
.gi-score {
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; white-space: nowrap;
}
.gi-score.high { color: var(--green); background: rgba(16,185,129,0.12); }
.gi-score.med  { color: #fbbf24; background: rgba(251,191,36,0.12); }
.gi-score.low  { color: var(--t3); background: rgba(255,255,255,0.05); }

.fv-sim .sim-title { font-size: 0.78rem; font-weight: 700; color: var(--t2); margin-bottom: 14px; }
.sim-options { display: flex; flex-direction: column; gap: 8px; }
.sim-opt { display: flex; align-items: center; gap: 10px; }
.so-price { font-size: 0.8rem; font-weight: 700; color: var(--t2); width: 44px; flex-shrink: 0; }
.so-bar { flex: 1; height: 20px; background: rgba(255,255,255,0.05); border-radius: 6px; overflow: hidden; }
.so-bar > div { height: 100%; background: rgba(59,130,246,0.25); border-radius: 6px; transition: width 1s; }
.sim-opt.best .so-bar > div { background: var(--blue); }
.so-pct { font-size: 0.75rem; font-weight: 700; color: var(--t1); width: 28px; }
.so-tag { font-size: 0.62rem; font-weight: 700; color: var(--blue); background: rgba(59,130,246,0.12); padding: 2px 8px; border-radius: 100px; }

.fv-comp .comp-title { font-size: 0.78rem; font-weight: 700; color: var(--t2); margin-bottom: 12px; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; }
.comp-table th { color: var(--t3); font-weight: 600; padding: 6px 8px; text-align: left; border-bottom: 1px solid var(--line); }
.comp-table td { color: var(--t2); padding: 8px 8px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.comp-table .own { color: var(--blue); font-weight: 700; }

/* ─────────────────────────────────────────────
   DİJİTAL İKİZ FARKI (Kurumsal güven)
───────────────────────────────────────────── */
.difference-section { background: var(--black); }
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.diff-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.diff-card:hover { border-color: var(--line-hi); }
.diff-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.diff-icon svg { width: 20px; height: 20px; color: var(--t2); }
.diff-card h3 {
  font-size: 1.1rem; font-weight: 700; color: var(--t1);
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.diff-card p {
  font-size: 0.9rem; color: var(--t2); line-height: 1.65;
  margin-bottom: 16px;
}
.diff-link {
  font-size: 0.85rem; font-weight: 600; color: var(--blue);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.diff-link:hover { gap: 8px; }
@media (max-width: 900px) {
  .difference-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   INSIGHT BLOCKS (Rakam değil içgörü / Pazar istihbaratı)
───────────────────────────────────────────── */
.insight-section { background: var(--black); }
.insight-section--alt { background: var(--surface); }

.insight-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.insight-block--reverse { direction: rtl; }
.insight-block--reverse > * { direction: ltr; }

.insight-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.insight-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.insight-content { text-align: left; }
.insight-content .sec-tag { margin-bottom: 10px; }
.insight-content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--t1);
  margin-bottom: 16px;
}
.insight-content p {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .insight-block,
  .insight-block--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }
  .insight-content,
  .insight-block--reverse .insight-content { text-align: left; }
}

/* ─────────────────────────────────────────────
   MID CTA
───────────────────────────────────────────── */
.mid-cta {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mc-inner { text-align: center; }
.mc-inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; color: var(--t1); margin-bottom: 16px; }
.mc-inner p  { font-size: 1.1rem; color: var(--t2); margin-bottom: 32px; }

/* ─────────────────────────────────────────────
   SECTORS
───────────────────────────────────────────── */
.sector-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.sector-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all 0.25s var(--ease);
  display: flex; flex-direction: column; gap: 10px;
}
.sector-card:hover { border-color: var(--line-hi); background: var(--lift); }
.sc-icon { font-size: 1.8rem; }
.sector-card h3 { font-size: 1rem; font-weight: 700; color: var(--t1); }
.sector-card p  { font-size: 0.84rem; color: var(--t2); line-height: 1.6; flex: 1; }
.sc-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem; font-weight: 600; color: var(--blue);
  transition: gap 0.2s;
}
.sc-link svg { width: 13px; height: 13px; }
.sc-link:hover { gap: 8px; }

/* ─────────────────────────────────────────────
   PRICING
───────────────────────────────────────────── */
.pricing-section { background: var(--surface); border-top: 1px solid var(--line); }

.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: start; }

.price-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 24px;
  transition: border-color 0.25s;
}
.price-card:hover { border-color: var(--line-hi); }

.price-card.featured {
  background: var(--lift);
  border-color: var(--line-hi);
}
.price-card.featured:hover { border-color: var(--line-hi); }

.pc-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: #fff; font-size: 0.65rem; font-weight: 600;
  padding: 4px 12px; border-radius: 4px;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}

.pc-name  { font-size: 0.85rem; font-weight: 700; color: var(--t2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.pp-amount { font-size: 2rem; font-weight: 900; color: var(--t1); letter-spacing: -0.04em; }
.pp-per { font-size: 0.9rem; color: var(--t3); }
.pc-desc { font-size: 0.82rem; color: var(--t2); line-height: 1.55; }

.pc-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pc-features li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--t2); }
.pc-features li svg { width: 14px; height: 14px; flex-shrink: 0; }
.pc-features .off { opacity: 0.45; }

.pc-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px; border-radius: var(--r);
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s var(--ease);
}
.pc-cta.primary {
  background: var(--blue);
  color: #fff;
}
.pc-cta.primary:hover { background: #1d4ed8; }
.pc-cta.outline {
  border: 1px solid var(--line-hi);
  color: var(--t1); background: transparent;
}
.pc-cta.outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

/* ─────────────────────────────────────────────
   DEMO FORM
───────────────────────────────────────────── */
.form-section { border-top: 1px solid var(--line); }

.form-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }

.form-left .sec-tag { display: inline-block; margin-bottom: 14px; }
.form-left h2 { font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; color: var(--t1); margin-bottom: 16px; }
.form-left p   { font-size: 1rem; color: var(--t2); line-height: 1.7; margin-bottom: 36px; }

.form-benefits { display: flex; flex-direction: column; gap: 18px; }
.fb-item { display: flex; align-items: flex-start; gap: 14px; }
.fb-num {
  font-size: 0.7rem; font-weight: 700; color: var(--t2);
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  width: 28px; height: 28px; border-radius: 6px;
  display: grid; place-items: center; flex-shrink: 0;
}
.fb-item > span { font-size: 0.875rem; color: var(--t2); line-height: 1.55; padding-top: 4px; }

/* Form */
.form-right form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  backdrop-filter: blur(10px);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--t2); }
.opt { font-weight: 400; color: var(--t3); }

.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-hi);
  border-radius: 10px;
  color: var(--t1);
  font-family: var(--font);
  font-size: 0.875rem;
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b9aae' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px; cursor: pointer;
}
.field input::placeholder, .field textarea::placeholder { color: var(--t3); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
}
.field input.err, .field select.err, .field textarea.err {
  border-color: rgba(239,68,68,0.5);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.06);
}
.field-err { font-size: 0.75rem; color: #f87171; min-height: 14px; }

.field select option { background: #111119; color: var(--t1); }

.form-note { font-size: 0.75rem; color: var(--t3); text-align: center; }
.form-note a { color: var(--blue); }
.form-note a:hover { text-decoration: underline; }

/* Success */
.form-success {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 60px 32px;
  text-align: center;
}
.fs-check {
  width: 60px; height: 60px;
  background: rgba(16,185,129,0.12);
  border: 2px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem; color: var(--green);
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--t1); margin-bottom: 10px; }
.form-success p  { font-size: 0.95rem; color: var(--t2); line-height: 1.6; }
.form-success strong { color: var(--t1); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; align-items: start;
}

.foot-brand p { font-size: 0.82rem; color: var(--t3); margin: 12px 0 16px; line-height: 1.65; max-width: 220px; }
.foot-copy { font-size: 0.75rem; color: var(--t3); }

.foot-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--t1); margin-bottom: 14px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col ul a { font-size: 0.82rem; color: var(--t3); transition: color 0.2s; }
.foot-col ul a:hover { color: var(--t2); }

.foot-mail { font-size: 0.82rem; color: var(--blue); display: block; margin-bottom: 16px; transition: opacity 0.2s; }
.foot-mail:hover { opacity: 0.75; }

.foot-socials { display: flex; gap: 8px; }
.social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid; place-items: center;
  color: var(--t3);
  transition: all 0.2s;
}
.social svg { width: 16px; height: 16px; }
.social:hover { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.25); color: var(--blue); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .how-step { grid-template-columns: 48px 1fr; }
  .hs-visual { display: none; }
  .feat-layout { grid-template-columns: 1fr; }
  .feat-panel.active { grid-template-columns: 1fr; }
  .fp-visual { min-height: 200px; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-block:nth-child(2n) { border-right: none; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .fc-1, .fc-2 { display: none; }
  .dash-sidebar { display: none; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 100px 16px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { border-right: none; }
  .sector-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-right form { padding: 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; }
  .cta-primary, .cta-ghost { width: 100%; justify-content: center; }
  .proof-item { font-size: 0.75rem; }
  .proof-sep { margin: 0 12px; }
}
