/* ================================================================
   DX MEDYA — Premium Teknoloji Stüdyosu
   style.css | v2 — Kalite Revizyonu
================================================================ */

/* Google Fonts — sadece kullanılan weightler */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Arka planlar — biraz daha az siyah, net fark var aralarında */
  --bg-deep:       #080D18;
  --bg-main:       #0C1120;
  --bg-card:       #111827;   /* Tailwind gray-900 eşdeğeri — daha okunabilir */
  --bg-card-hover: #161f30;
  --bg-section-alt:#0A0F1C;

  /* Renkler — kırmızı ölçülü, gold sadece premium noktalarda */
  --accent:        #C8102E;   /* DX imza kırmızısı */
  --accent-soft:   rgba(200, 16, 46, 0.10);
  --accent-border: rgba(200, 16, 46, 0.22);
  --gold:          #B8953F;   /* daha mat, daha premium */
  --gold-soft:     rgba(184, 149, 63, 0.10);

  /* Metin — kontrast oranları WCAG AA geçer */
  --text-primary:  #EDF0F7;   /* ~12:1 kontrast */
  --text-secondary:#A0A8C0;   /* ~5.5:1 — WCAG AA, mobil okunabilirlik */
  --text-muted:    #56607A;   /* ~3:1 — sadece dekoratif metinlerde */

  /* Kenarlıklar */
  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;

  /* Fontlar */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Geçiş */
  --ease: 0.25s ease;
}

/* Azaltılmış hareket tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* Focus visible — erişilebilirlik */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Tipografi ────────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}
.lead {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── Layout ───────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Butonlar ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--ease), box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #a8001f;
  border-color: #a8001f;
  box-shadow: 0 6px 20px rgba(200,16,46,0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-wa {
  background: #1a7a6e;
  color: #fff;
  border-color: #1a7a6e;
}
.btn-wa:hover { background: #155f55; border-color: #155f55; }

.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }

/* ── Navigation ───────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  /* Başlangıçta saydam ama biraz opaklık ile her arka plana karşı okunabilir */
}
#nav.scrolled {
  background: rgba(8, 13, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.dx-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
/* İnce çapraz çizgi — "X" sinyali */
.dx-mark::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 140%;
  background: rgba(255,255,255,0.22);
  transform: rotate(-28deg);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.logo-text span { color: var(--accent); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--ease);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after, .nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
}
/* override hover so active keeps underline without hover triggering 2 underlines */
.nav-links a:not(.active):hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(8,13,24,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 99;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--text-primary); }
.mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-cta .btn { justify-content: center; }

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
/* Subtle glow — sadece sağ üstte, tek renk */
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.07) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
/* Grid — hafif, sadece hero'da */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 35%, black 0%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* Üst badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #22c55e; /* yeşil = "aktif/canlı" */
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}
/* Hero başlık */
.hero-title { margin-bottom: 20px; }
.hero-title .line-accent { color: var(--accent); }
/* Kısa özellik satırları — ne yaptığımızı anında anlar */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-pill {
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
}
.hero-desc { margin-bottom: 36px; max-width: 500px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}
/* İstatistikler */
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); }












/* ── Bölüm ortak ──────────────────────────────────────────────── */
section { position: relative; }
.section-pad { padding: 96px 0; }
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.section-header .eyebrow { margin-bottom: 12px; }
.section-header .display-lg { margin-bottom: 12px; }
.section-header .lead { margin-top: 8px; }
/* Çizgi ayırıcı — kırmızı değil, nötr */
.section-rule {
  width: 32px; height: 2px;
  background: var(--border-strong);
  margin: 14px auto 0;
  border-radius: 1px;
}

/* ── Hizmet Kartları ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.svc-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}
/* Kırmızı yalnızca hover üst çizgisinde */
.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity var(--ease);
}
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}
.svc-num {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--ease);
}
.svc-card:hover .svc-link { color: var(--accent); }

/* ── Projeler ─────────────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proj-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  display: flex;
  flex-direction: column;
}
.proj-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.proj-card.featured { grid-column: span 2; }
.proj-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.proj-card.featured .proj-thumb { height: 190px; }
.proj-thumb-label {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.04em;
  user-select: none;
}
.proj-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
}
.badge-live  { background: rgba(34,197,94,0.12);  color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.badge-dev   { background: var(--gold-soft);       color: var(--gold); border: 1px solid rgba(184,149,63,0.2); }
.badge-soon  { background: rgba(139,92,246,0.1);   color: #a78bfa; border: 1px solid rgba(167,139,250,0.18); }

/* Thumb gradyanları — daha yumuşak */
.t-proptech { background: linear-gradient(145deg, #0e1e38, #160b20); }
.t-pdf      { background: linear-gradient(145deg, #1c0a0e, #280610); }
.t-dx       { background: linear-gradient(145deg, #0c1a14, #0d1826); }
.t-alu      { background: linear-gradient(145deg, #181310, #0e0f1a); }
.t-saas     { background: linear-gradient(145deg, #110f1d, #1a0c1a); }
.t-web      { background: linear-gradient(145deg, #0b1420, #10151e); }

.proj-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.proj-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.proj-body p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.62; margin-bottom: 14px; flex: 1; }
.proj-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.proj-tag {
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}


/* Metrik kutusu — gold accent sadece burada */
.metrics-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.metrics-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0.6;
}
.metrics-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.metrics-title span { color: var(--gold); }
.metrics-sub { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.65; }











/* ── Süreç ────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 16px;
  text-align: center;
  position: relative;
  transition: border-color var(--ease);
}
.process-step:hover { border-color: var(--border-strong); }
.p-num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.p-icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.process-step h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.process-step p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* ── CTA Bölümü ───────────────────────────────────────────────── */
.cta-section { padding: 80px 0; }
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Tek, sade glow — merkez üstte */
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 480px; height: 240px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-box .display-lg { margin-bottom: 12px; }
.cta-box .lead { max-width: 440px; margin: 0 auto 36px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}

.footer-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 240px;
  margin: 14px 0 20px;
}
.footer-social { display: flex; gap: 8px; }
.soc-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  transition: border-color var(--ease), color var(--ease);
}
.soc-btn:hover { border-color: var(--border-strong); color: var(--text-primary); }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--text-primary); }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.contact-row-icon { color: var(--text-muted); font-size: 0.85rem; margin-top: 1px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

/* ── Scroll Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

/* ── Sayfa Hero (alt sayfalar) ────────────────────────────────── */
.page-hero {
  padding: 130px 24px 72px;
  background: var(--bg-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero .display-xl { margin-bottom: 16px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--text-secondary); }

/* ── İletişim form ────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  transition: border-color var(--ease);
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: #111827; }

/* Hizmetler sayfası spesifik */
.svc-detail { padding: 72px 0; border-bottom: 1px solid var(--border); }
.svc-detail:last-child { border-bottom: none; }
.svc-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.svc-detail-inner.rev { direction: rtl; }
.svc-detail-inner.rev > * { direction: ltr; }
.svc-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.svc-visual .bg-icon {
  position: absolute;
  bottom: -12px; right: 8px;
  font-size: 5rem;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}
.feat-list { position: relative; z-index: 1; }
.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.feat-item:last-child { border-bottom: none; }
.feat-item::before {
  content: '✓';
  width: 20px; height: 20px;
  border: 1px solid rgba(200,16,46,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--accent);
  flex-shrink: 0;
  background: var(--accent-soft);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.tag {
  font-size: 0.72rem;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-card.featured { grid-column: span 1; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-inner { grid-template-columns: 1fr; gap: 28px; }
  .svc-detail-inner.rev { direction: ltr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .display-xl { font-size: 2rem; }
}

/* ================================================================
   DX MEDYA — style.css | v3 Eklentileri
   Güven + Dönüşüm Odaklı Revizyonlar
================================================================ */

/* ── Ürün Dashboard Mockup (Hero Sağ) ────────────────────────── */
.product-showcase {
  position: relative;
  user-select: none;
}
.showcase-window {
  background: #0e1420;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
}
/* Sahte tarayıcı çubuğu */
.window-bar {
  background: #151c2c;
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.window-dots { display: flex; gap: 5px; }
.window-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.dot-red   { background: #ff5f57; }
.dot-amber { background: #febc2e; }
.dot-green { background: #28c840; }
.window-url {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
/* Dashboard içeriği */
.dashboard-body { padding: 16px; }
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dash-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}
.dash-badge {
  font-size: 0.62rem;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.18);
  font-weight: 600;
}
/* KPI kartları */
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.kpi-card {
  background: #131c2e;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}
.kpi-label {
  font-size: 0.58rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.kpi-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.kpi-delta {
  font-size: 0.58rem;
  margin-top: 2px;
  color: #4ade80;
}
/* Küçük bar chart */
.mini-chart { margin-bottom: 12px; }
.chart-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(200,16,46,0.25);
  transition: background var(--ease);
  min-height: 4px;
}
.chart-bar.active { background: var(--accent); }
/* Liste satırları */
.dash-rows { display: flex; flex-direction: column; gap: 6px; }
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: #131c2e;
  border: 1px solid var(--border);
  border-radius: 7px;
}
.dash-row-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
}
.dash-row-val {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
}
.dash-row-status {
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 600;
}
.status-live { background: rgba(34,197,94,0.1); color: #4ade80; }
.status-beta { background: var(--gold-soft); color: var(--gold); }

/* Floating badge üstte solda */
.showcase-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(200,16,46,0.35);
}

/* ── Sektörler Bölümü ─────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: border-color var(--ease), transform var(--ease);
  cursor: default;
}
.sector-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.sector-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.sector-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}
.sector-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Güven Kartları (Neden DX) ────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: border-color var(--ease);
}
.trust-card:hover { border-color: var(--border-strong); }
.trust-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent);
  margin-top: 1px;
  font-weight: 700;
}
.trust-text h4 {
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-primary);
  line-height: 1.3;
}
.trust-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Güven istatistikleri (genişletilmiş) ─────────────────────── */
.stats-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  divide: var(--border);
}
.stat-band-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-band-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.stat-band-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
}


/* ── Footer Grid v3 — Desktop base ───────────────────────────── */
.footer-grid-v3 {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 52px;
}

@media (max-width: 1100px) {
  .footer-grid-v3 { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer-grid-v3 { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 420px) {
  .footer-grid-v3 { grid-template-columns: 1fr; }
}

/* ── Proje kartı v3 etiketleri ────────────────────────────────── */
.proj-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.proj-label {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
}
.proj-label.type { border-color: var(--accent-border); color: var(--accent); background: var(--accent-soft); }
.proj-label.tech { border-color: rgba(184,149,63,0.2); color: var(--gold); background: var(--gold-soft); }

/* ── Responsive güncellemeler ─────────────────────────────────── */
@media (max-width: 1024px) {
  .sectors-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-band-item:nth-child(3) { border-right: none; }
  .stat-band-item:nth-child(4), .stat-band-item:nth-child(5) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-band-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .stat-band-item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-row { grid-template-columns: repeat(3, 1fr); }
}

/* ================================================================
   DX MEDYA — B2B Dönüşüm & Güven Revizyonu
================================================================ */



/* ── CTA Süreç Adımları ───────────────────────────────────────── */
.cta-process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cta-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.cta-step-n {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-step-arrow {
  color: var(--text-muted);
  font-size: 0.8rem;
}
@media (max-width: 600px) {
  .cta-step-arrow { display: none; }
  .cta-process-steps { gap: 8px; }
}

/* ── Vaka Çalışması Kartları ──────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.case-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
/* Üst aksanlı çizgi — sadece vaka kartlarında gold */
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  opacity: 0.5;
}
.case-sector {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.case-sector-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.case-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.case-challenge {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.55;
}
.case-challenge strong {
  color: var(--text-secondary);
  font-weight: 500;
}
/* Sonuç metrikleri */
.case-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: rgba(255,255,255,0.025);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.case-result-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.case-result-metric {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  flex-shrink: 0;
}
.case-result-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.case-type {
  margin-top: 14px;
  display: flex;
  gap: 6px;
}

/* ── Garantiler / Taahhütler bandı ───────────────────────────── */
.guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 56px;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.guarantee-item .g-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── İletişim form sıralaması düzeltmesi ─────────────────────── */
/* "Süreç ne?" — form üstünde micro süreç açıklaması */
.form-process {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.form-process-step {
  flex: 1;
  padding: 10px 8px;
  text-align: center;
  border-right: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.form-process-step:last-child { border-right: none; }
.form-process-step strong {
  display: block;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1px;
}
.form-process-step.active strong { color: var(--accent); }

/* ── Hakkımızda sayfası — kurucu mesajı ──────────────────────── */
.founder-block {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 56px;
}
.founder-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7b0018);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid var(--border-strong);
}
.founder-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}
.founder-quote::before { content: '"'; color: var(--accent); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-right: 4px; }
.founder-quote::after  { content: '"'; color: var(--accent); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-left: 4px; }
.founder-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.founder-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
@media (max-width: 600px) {
  .founder-block { grid-template-columns: 1fr; gap: 20px; }
  .founder-avatar { width: 60px; height: 60px; font-size: 1.4rem; }
  .case-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; }
  .guarantee-row { gap: 16px; }
  .form-process { flex-direction: column; }
  .form-process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .form-process-step:last-child { border-bottom: none; }
}

/* ── Screen reader only — erişilebilirlik yardımcısı ─────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Footer WhatsApp butonu — genişlik kısıtlaması ───────────── */
.footer-col .btn-wa {
  max-width: 180px;
  width: auto;
}
/* Mobilde tam genişlik olabilir */
@media (max-width: 640px) {
  .footer-col .btn-wa {
    max-width: 100%;
    width: 100%;
  }
}
