/* ============================================================
   İNNOALGOS MEDYA — logo paletine sadık karanlık tema
   ============================================================
   Renk anahtarı (logodaki devre tahtası):
   - #0a0420  derin mor-lacivert zemin
   - #4cff5a  neon yeşil   — birincil CTA, enerji
   - #3ad4ff  turkuaz       — devre dolaşımı, link vurgusu
   - #4a6cff  elektrik mavi — derinlik
   - #c845ff  magenta       — sıcak vurgu
   ============================================================ */

:root {
  /* Logo paletine sadık: derin mor-lacivert + neon devre vurguları */
  --bg: #0a0420;
  --bg-2: #110830;
  --bg-3: #1a0e44;
  --paper: #1c1248;
  --ink: #ffffff;
  --ink-2: #e6e1f5;
  --ink-dim: #a8a4c8;
  --ink-mute: #6b6688;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.20);
  --neon-green: #4cff5a;
  --neon-cyan: #3ad4ff;
  --neon-blue: #4a6cff;
  --neon-magenta: #c845ff;
  --neon-violet: #7a4eff;
  --coral: #4cff5a;          /* primary CTA — neon yeşil */
  --coral-deep: #25e635;
  --sage: #3ad4ff;           /* canlı dot — cyan */
  --sage-deep: #1bb8ee;
  --mustard: #c845ff;        /* magenta vurgu */
  --navy: #4a6cff;
  --grad-1: linear-gradient(135deg, #4cff5a 0%, #3ad4ff 100%);
  --grad-2: linear-gradient(135deg, #3ad4ff 0%, #4a6cff 100%);
  --grad-3: linear-gradient(135deg, #4a6cff 0%, #c845ff 100%);
  --grad-4: linear-gradient(135deg, #4cff5a 0%, #c845ff 100%);
  --grad-5: linear-gradient(135deg, #c845ff 0%, #4a6cff 100%);
  --grad-6: linear-gradient(135deg, #3ad4ff 0%, #c845ff 100%);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--coral); color: var(--paper); }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body { cursor: none; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; color: inherit; font: inherit; cursor: none; }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; color: var(--coral); font-weight: 500; }

/* ============================================================
   ÖZEL İMLEÇ
   ============================================================ */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; }
.cursor-dot {
  position: fixed; width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral); transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease);
}
.cursor-ring {
  position: fixed; width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--ink); transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .25s, background .25s;
}
.cursor.hover .cursor-dot { width: 0; height: 0; }
.cursor.hover .cursor-ring {
  width: 64px; height: 64px;
  background: var(--coral); border-color: var(--coral);
  mix-blend-mode: multiply;
}
.cursor.click .cursor-ring { width: 28px; height: 28px; }

@media (max-width: 900px), (hover: none) {
  body { cursor: auto; }
  .cursor { display: none; }
  a, button, [data-magnetic] { cursor: pointer; }
}

/* ============================================================
   YÜKLEME EKRANI
   ============================================================ */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 10000; display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { width: min(520px, 86vw); padding: 0 20px; }
.loader-logo {
  font-family: 'Syncopate', sans-serif; font-weight: 700;
  font-size: clamp(40px, 8vw, 96px); letter-spacing: .02em;
  text-align: center; margin-bottom: 28px; color: var(--ink);
}
.loader-logo span { display: inline-block; }
.loader-bar {
  height: 2px; background: var(--line); position: relative; overflow: hidden;
}
.loader-bar-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: var(--coral);
  transition: width .12s linear;
}
.loader-counter {
  display: flex; align-items: baseline; justify-content: flex-end;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  margin-top: 12px; color: var(--ink-dim);
}
.loader-counter .pct { margin-left: 2px; color: var(--coral); }
.loader-meta {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-mute); margin-top: 8px; letter-spacing: .1em;
}

/* ============================================================
   ARKA PLAN
   ============================================================ */
#bgCanvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; opacity: .35; pointer-events: none;
}
.grid-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  opacity: .6;
}
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 2; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================================
   NAVIGASYON
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; background: rgba(10, 4, 32, 0.65); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .4s var(--ease), border-color .4s, background .4s;
}
.nav.scrolled { padding: 14px 40px; border-bottom-color: var(--line); background: rgba(10, 4, 32, 0.92); }

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syncopate', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: .12em; color: var(--ink);
}
.nav-logo .logo-mark { color: var(--coral); animation: spin 8s linear infinite; display: inline-block; }
.nav-logo .logo-text i { color: var(--coral); font-style: normal; }
@keyframes spin { to { transform: rotate(360deg); } }

.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-size: 13px; letter-spacing: .04em; position: relative;
  display: flex; align-items: center; gap: 6px;
  color: var(--ink-dim); transition: color .3s; font-weight: 500;
}
.nav-link span {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--coral); opacity: .8;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--coral); transition: width .4s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 100px;
  font-size: 13px; letter-spacing: .04em; font-weight: 500;
  background: var(--coral); color: var(--paper);
  border: 1px solid var(--coral);
  box-shadow: 0 4px 14px rgba(76, 255, 90, 0.25);
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }

/* Mobil hamburger */
.nav-toggle {
  display: none; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--ink); border-radius: 100px;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--paper);
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo { font-size: 12px; }
}

/* ============================================================
   MOBİL MENÜ
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: var(--paper);
  padding: 100px 28px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%);
  transition: transform .6s var(--ease-out);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  display: flex; align-items: baseline; gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px; font-weight: 500; letter-spacing: -.02em;
  padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: padding-left .4s var(--ease-out), color .3s;
}
.mobile-menu nav a span {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--coral); letter-spacing: .1em;
}
.mobile-menu nav a i {
  font-style: normal; transition: color .3s;
}
.mobile-menu nav a:hover, .mobile-menu nav a:active {
  padding-left: 12px;
}
.mobile-menu nav a:hover i, .mobile-menu nav a:active i { color: var(--coral); }
.mobile-menu-foot {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.mobile-menu-foot a { color: var(--mustard); font-size: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; z-index: 3;
  min-height: 100vh; padding: 140px 40px 80px;
  display: grid; grid-template-columns: 1fr 280px; gap: 60px;
}

.hero-meta {
  position: absolute; top: 110px; left: 40px; right: 40px;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-dim); letter-spacing: .15em;
}
.hero-meta-item { display: flex; align-items: center; gap: 8px; }
.hero-meta-item .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage);
  box-shadow: 0 0 0 4px rgba(212, 255, 58, 0.2);
  animation: blink 1.6s infinite;
}
@keyframes blink {
  0%,100% { box-shadow: 0 0 0 4px rgba(212, 255, 58, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(212, 255, 58, 0); }
}

.hero-content { display: flex; flex-direction: column; justify-content: center; gap: 36px; max-width: 1100px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 8px; background: var(--paper);
  border-radius: 100px; width: fit-content;
  border: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-dim); letter-spacing: .15em;
}
.tag-line {
  width: 32px; height: 32px; background: var(--coral); border-radius: 50%;
  display: inline-block; position: relative;
}
.tag-line::after {
  content: '✦'; position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--paper); font-size: 14px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 9vw, 168px);
  font-weight: 500; line-height: .95; letter-spacing: -.04em;
  color: var(--ink);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block; transform: translateY(110%);
  animation: wordRise 1.1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(2) .word { animation-delay: .15s; }
.hero-title .line:nth-child(3) .word { animation-delay: .3s; }
.hero-title .line:nth-child(3) .word:last-child { animation-delay: .45s; }
@keyframes wordRise { to { transform: translateY(0); } }

.hero-title .italic {
  font-style: italic; font-weight: 300;
  background: var(--grad-1); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .strike { color: var(--ink-mute); text-decoration: line-through; text-decoration-color: var(--coral); text-decoration-thickness: 4px; }

.hero-title .glitch { position: relative; color: var(--coral); }
.hero-title .glitch::before, .hero-title .glitch::after {
  content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%;
  background: var(--bg);
}
.hero-title .glitch::before { color: var(--mustard); animation: glitchA 3s infinite linear alternate-reverse; clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%); }
.hero-title .glitch::after { color: var(--navy); animation: glitchB 2.4s infinite linear alternate-reverse; clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%); }
@keyframes glitchA { 0%,90%,100% { transform: translate(0); } 92% { transform: translate(-3px, 1px); } 96% { transform: translate(2px, -1px); } }
@keyframes glitchB { 0%,90%,100% { transform: translate(0); } 93% { transform: translate(2px, -2px); } 97% { transform: translate(-2px, 1px); } }

.hero-sub {
  max-width: 620px; opacity: 0; animation: fadeUp 1s var(--ease-out) .8s forwards;
}
.hero-sub p { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.65; color: var(--ink-2); }
@keyframes fadeUp { from { opacity:0; transform: translateY(20px);} to { opacity:1; transform: translateY(0);} }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 1s forwards;
}

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-radius: 100px;
  font-size: 15px; letter-spacing: .02em; font-weight: 500;
  overflow: hidden; transition: color .4s, transform .3s, box-shadow .3s;
  border: 1.5px solid var(--line-strong);
  min-height: 56px;
}
.btn-primary {
  background: var(--coral); color: var(--paper); border-color: var(--coral);
  box-shadow: 0 6px 22px rgba(76, 255, 90, 0.3);
}
.btn-primary .btn-bg {
  position: absolute; inset: 0; background: var(--ink);
  transform: translateY(101%); transition: transform .5s var(--ease-out);
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
.btn-primary:hover .btn-bg { transform: translateY(0); }
.btn-text, .btn-icon { position: relative; z-index: 2; }
.btn-icon { transition: transform .4s; font-size: 18px; }
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-ghost {
  background: var(--paper); color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hero-scroll {
  position: absolute; bottom: 30px; left: 40px;
  display: flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--ink-dim); letter-spacing: .25em;
}
.scroll-line {
  width: 1.5px; height: 50px;
  background: linear-gradient(var(--coral), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -30%; left: 0; width: 100%; height: 30%;
  background: var(--bg); animation: scrollDown 2s infinite;
}
@keyframes scrollDown { 0% { top: -30%; } 100% { top: 110%; } }

.hero-side {
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
  border-left: 1px solid var(--line); padding-left: 28px;
}
.side-block {
  opacity: 0; animation: fadeUp 1s var(--ease-out) forwards;
  padding: 12px 16px; background: var(--paper); border-radius: 16px;
  border: 1px solid var(--line);
}
.side-block:nth-child(1) { animation-delay: 1.1s; }
.side-block:nth-child(2) { animation-delay: 1.2s; }
.side-block:nth-child(3) { animation-delay: 1.3s; }
.side-num {
  font-family: 'Syncopate', sans-serif; font-weight: 700;
  font-size: 52px; letter-spacing: -.02em; line-height: 1;
  color: var(--coral);
}
.side-num i { font-size: 18px; font-style: normal; opacity: .7; color: var(--ink); }
.side-label { font-size: 12px; color: var(--ink-dim); margin-top: 6px; letter-spacing: .04em; line-height: 1.4; }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 80px; gap: 40px; }
  .hero-side { flex-direction: row; border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 28px; flex-wrap: wrap; }
  .hero-side .side-block { flex: 1; min-width: 130px; }
  .hero-meta { left: 24px; right: 24px; top: 100px; }
  .hero-scroll { left: 24px; bottom: 20px; }
}
@media (max-width: 600px) {
  .hero { padding: 110px 20px 70px; }
  .hero-meta { font-size: 10px; }
  .hero-scroll { display: none; }
  .side-num { font-size: 38px; }
  .btn { padding: 16px 26px; font-size: 14px; min-height: 52px; width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; width: 100%; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; overflow: hidden; background: var(--ink); color: var(--paper);
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Syncopate', sans-serif; font-weight: 700;
  font-size: clamp(24px, 4vw, 56px); letter-spacing: .02em;
}
.marquee-track .m-dot { color: var(--coral); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.about, .services, .projects, .process, .cta {
  position: relative; z-index: 3; padding: 140px 40px;
}
@media (max-width: 768px) {
  .about, .services, .projects, .process, .cta { padding: 90px 20px; }
}

.section-head {
  display: flex; gap: 16px; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink-dim); letter-spacing: .2em; margin-bottom: 60px;
}
.section-num { color: var(--coral); font-weight: 600; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
.about-headline {
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 500; line-height: 1.05; letter-spacing: -.03em; color: var(--ink);
}
.about-headline .hl { color: var(--coral); }
.about-headline .hl2 { color: var(--sage-deep); }
.about-headline .italic {
  font-style: italic; font-weight: 300;
  background: var(--grad-3); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-text p { color: var(--ink-2); font-size: 17px; margin-bottom: 18px; }
.about-list { list-style: none; margin-top: 28px; border-top: 1px solid var(--line); }
.about-list li {
  padding: 18px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: baseline;
  font-size: 16px; transition: padding-left .4s var(--ease-out), color .3s;
}
.about-list li:hover { padding-left: 12px; color: var(--coral); }
.about-list span { color: var(--coral); font-family: 'JetBrains Mono', monospace; font-size: 18px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-list li { padding: 14px 0; font-size: 15px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-title {
  font-size: clamp(44px, 8vw, 132px);
  font-weight: 500; letter-spacing: -.04em; line-height: .95;
  margin-bottom: 70px; color: var(--ink);
}
.services-title .q { color: var(--coral); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden;
}
.service-card {
  position: relative; padding: 44px 32px; background: var(--paper);
  transition: background .5s, transform .6s var(--ease-out);
  overflow: hidden;
  transform-style: preserve-3d;
}
.service-card::before {
  content: attr(data-num); position: absolute; top: 24px; right: 28px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-mute); letter-spacing: .1em;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: var(--coral); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.service-card:hover { background: var(--bg); }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-icon { color: var(--coral); transform: scale(1.12) rotate(-6deg); }

.service-icon {
  color: var(--ink); margin-bottom: 28px;
  transition: color .4s, transform .5s var(--ease-out);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--bg); border-radius: 16px;
}
.service-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-icon { background: rgba(76, 255, 90, 0.1); }

.service-card h3 {
  font-size: clamp(22px, 2vw, 30px); font-weight: 500;
  line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 14px; color: var(--ink);
}
.service-card p { color: var(--ink-2); font-size: 15px; margin-bottom: 22px; line-height: 1.55; }
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.service-tags span {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  padding: 5px 10px; background: var(--bg); border-radius: 100px;
  color: var(--ink-2); letter-spacing: .03em;
}

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; border-radius: 20px; }
  .service-card { padding: 32px 24px; }
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects-title {
  font-size: clamp(36px, 6vw, 96px);
  font-weight: 500; line-height: 1.02; letter-spacing: -.03em;
  margin-bottom: 70px; color: var(--ink);
}
.projects-title .italic {
  font-style: italic; font-weight: 300;
  background: var(--grad-2); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.projects-list { border-top: 1px solid var(--line); }
.project-row {
  position: relative; display: grid;
  grid-template-columns: 60px 1fr 1fr 100px 60px;
  gap: 24px; align-items: center;
  padding: 32px 24px; border-bottom: 1px solid var(--line);
  transition: padding-left .5s var(--ease-out), background .4s;
}
.project-row:hover { padding-left: 48px; background: var(--paper); }
.project-row .p-num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink-mute);
}
.project-row .p-name {
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 400; letter-spacing: -.02em; color: var(--ink);
  transition: color .4s;
}
.project-row:hover .p-name {
  font-style: italic;
  background: var(--grad-3); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.project-row .p-cat { color: var(--ink-dim); font-size: 14px; }
.project-row .p-year { font-family: 'JetBrains Mono', monospace; color: var(--ink-mute); font-size: 12px; }
.project-row .p-arrow {
  font-size: 28px; color: var(--ink-mute);
  transition: color .4s, transform .4s var(--ease-out);
}
.project-row:hover .p-arrow { color: var(--coral); transform: translate(4px, -4px); }

.project-row .p-preview {
  position: fixed; pointer-events: none;
  width: 320px; height: 220px; top: 0; left: 0;
  opacity: 0; transform: translate(-50%, -50%) scale(.8);
  transition: opacity .4s, transform .4s var(--ease-out);
  z-index: 50; overflow: hidden; border-radius: 8px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}
.project-row.show-preview .p-preview { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.p-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-preview-inner { width: 100%; height: 100%; }
.g1 { background: var(--grad-1); }
.g2 { background: var(--grad-2); }
.g3 { background: var(--grad-3); }
.g4 { background: var(--grad-4); }
.g5 { background: var(--grad-5); }
.g6 { background: var(--grad-6); }

.projects-cta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 50px; padding-top: 36px; border-top: 1px solid var(--line);
  flex-wrap: wrap; gap: 20px;
}
.projects-cta span { color: var(--ink-2); font-size: 17px; }

@media (max-width: 768px) {
  .project-row { grid-template-columns: 32px 1fr 32px; gap: 14px; padding: 22px 12px; }
  .project-row:hover { padding-left: 22px; }
  .project-row .p-cat, .project-row .p-year { display: none; }
  .project-row .p-arrow { font-size: 22px; }
  .projects-cta { flex-direction: column; align-items: flex-start; }
  .projects-cta .btn { width: 100%; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-title {
  font-size: clamp(36px, 6vw, 96px);
  font-weight: 500; line-height: 1.02; letter-spacing: -.03em;
  margin-bottom: 80px; max-width: 1100px; color: var(--ink);
}
.process-title .italic {
  font-style: italic; font-weight: 300;
  background: var(--grad-1); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px;
}
.step {
  position: relative; padding: 32px 24px 28px;
  background: var(--paper); border-radius: 20px;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.15);
  border-color: var(--coral);
}
.step-num {
  font-family: 'Syncopate', sans-serif; font-weight: 700;
  font-size: 32px; color: var(--coral); margin-bottom: 14px;
}
.step-line {
  position: absolute; top: 50px; left: 100%; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--coral), transparent);
}
.step:last-child .step-line { display: none; }
.step h3 { font-size: 22px; margin-bottom: 12px; font-weight: 500; color: var(--ink); }
.step p { font-size: 14px; color: var(--ink-2); margin-bottom: 18px; line-height: 1.55; }
.step-time {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--coral); padding: 5px 10px;
  background: rgba(76, 255, 90, 0.08); border-radius: 100px;
}

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step-line { display: none; }
}
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: 160px 40px;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 32px 32px 0 0;
  margin-top: 40px;
}
.cta-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--coral); letter-spacing: .2em; margin-bottom: 28px;
}
.cta-title {
  font-size: clamp(40px, 9vw, 156px);
  font-weight: 500; line-height: .95; letter-spacing: -.04em;
  margin-bottom: 56px; color: var(--paper);
}
.cta-title .line { display: block; }
.cta-title .italic {
  font-style: italic; font-weight: 300;
  background: var(--grad-5); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.cta-mail {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: 'Syncopate', sans-serif; font-weight: 700;
  font-size: clamp(16px, 3vw, 36px); letter-spacing: .02em;
  padding: 20px 36px; background: var(--coral); color: var(--paper);
  border-radius: 100px; margin-bottom: 56px;
  transition: all .4s var(--ease);
  box-shadow: 0 10px 30px rgba(76, 255, 90, 0.35);
  word-break: break-all;
}
.cta-mail:hover {
  background: var(--paper); color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(76, 255, 90, 0.2);
}
.cta-mail-arrow { transition: transform .4s; }
.cta-mail:hover .cta-mail-arrow { transform: translate(6px, -6px); }

.cta-channels {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 70px;
}
.cta-channels a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 13px; transition: all .3s;
}
.cta-channels a i { font-style: normal; color: var(--mustard); }
.cta-channels a:hover { background: var(--coral); border-color: var(--coral); }
.cta-channels a:hover i { color: var(--paper); }

.cta-info {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  max-width: 800px; margin: 0 auto; padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-info > div { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.info-label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(255, 255, 255, 0.5); letter-spacing: .2em;
}
.info-value { font-size: 16px; }

@media (max-width: 700px) {
  .cta { padding: 100px 20px; border-radius: 24px 24px 0 0; }
  .cta-info { grid-template-columns: 1fr; gap: 22px; }
  .cta-mail { padding: 16px 24px; gap: 12px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 3;
  padding: 50px 40px 30px;
  background: var(--ink); color: var(--paper);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 16px; padding-bottom: 32px;
}
.footer-brand {
  font-family: 'Syncopate', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: .1em;
}
.footer-brand .logo-mark { color: var(--coral); }
.footer-brand i { color: var(--coral); font-style: normal; }
.footer-tag { color: rgba(255, 255, 255, 0.6); font-size: 14px; }

.footer-bot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(255, 255, 255, 0.5); letter-spacing: .08em;
}
.footer-bot a { transition: color .3s; }
.footer-bot a:hover { color: var(--coral); }
.footer-tech { color: rgba(255, 255, 255, 0.7); }

@media (max-width: 700px) {
  .footer { padding: 40px 20px 24px; }
  .footer-bot { flex-direction: column; gap: 10px; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   LOGO PALETİ — DARK MODE OVERRIDES
   ============================================================ */

/* Logo görüntüsü — büyük ve parlak */
.nav-logo { gap: 14px; }
.logo-mark {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(76, 255, 90, 0.6)) drop-shadow(0 0 24px rgba(58, 212, 255, 0.35));
  animation: logoFloat 4s ease-in-out infinite;
}
.nav.scrolled .logo-mark { width: 46px; height: 46px; }
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 12px rgba(76, 255, 90, 0.6)) drop-shadow(0 0 24px rgba(58, 212, 255, 0.35));
  }
  50% {
    transform: translateY(-3px) scale(1.04);
    filter: drop-shadow(0 0 18px rgba(58, 212, 255, 0.75)) drop-shadow(0 0 32px rgba(200, 69, 255, 0.4));
  }
}
.nav-logo .logo-text { font-size: 13px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-brand .logo-mark { width: 44px; height: 44px; margin-right: 0; animation: none; vertical-align: middle; }
@media (max-width: 600px) {
  .logo-mark { width: 44px; height: 44px; }
  .nav-logo .logo-text { font-size: 10px; }
  .nav-logo { gap: 10px; }
}

/* CTA butonu — dolu yeşil + koyu metin */
.btn-primary { color: var(--bg) !important; font-weight: 600; }
.btn-primary .btn-bg { background: var(--neon-cyan); }
.btn-primary:hover { color: var(--bg) !important; }

.nav-cta { color: var(--bg) !important; font-weight: 600; }
.nav-cta:hover { background: var(--neon-cyan); border-color: var(--neon-cyan); color: var(--bg) !important; }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--coral); color: var(--bg); border-color: var(--coral); }

/* Marquee — devre tahtası hissi */
.marquee {
  background: var(--bg-2);
  color: var(--ink);
  border-top-color: var(--line);
  border-bottom-color: var(--line);
}
.marquee-track .m-dot { color: var(--neon-magenta); }
.marquee-track span:nth-child(4n+1) { color: var(--neon-green); }
.marquee-track span:nth-child(4n+3) { color: var(--neon-cyan); }
.marquee-track span:nth-child(4n+5) { color: var(--neon-blue); }

/* CTA bölümü — derin gradient */
.cta {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(76, 255, 90, 0.10), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(200, 69, 255, 0.10), transparent 50%),
    var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.cta-title { color: var(--ink); }
.cta-mail {
  background: var(--coral); color: var(--bg);
  box-shadow: 0 0 0 1px var(--coral), 0 10px 40px rgba(76, 255, 90, 0.35);
}
.cta-mail:hover { background: var(--neon-cyan); color: var(--bg); box-shadow: 0 0 0 1px var(--neon-cyan), 0 14px 50px rgba(58, 212, 255, 0.4); }

.cta-channels a { background: rgba(255,255,255,0.04); border-color: var(--line); color: var(--ink); }
.cta-channels a:hover { background: var(--coral); border-color: var(--coral); color: var(--bg); }
.cta-channels a:hover i { color: var(--bg); }

.cta-info { border-top-color: var(--line); }
.info-label { color: var(--ink-dim); }
.info-value { color: var(--ink); }

/* Footer */
.footer { background: var(--bg-2); color: var(--ink); border-top: 1px solid var(--line); }
.footer-tag { color: var(--ink-dim); }
.footer-bot { color: var(--ink-mute); border-top-color: var(--line); }
.footer-tech { color: var(--ink-dim); }

/* Mobil menü */
.mobile-menu { background: var(--bg); color: var(--ink); }
.mobile-menu nav a { border-bottom-color: rgba(255,255,255,0.08); color: var(--ink); }
.mobile-menu-foot { border-top-color: rgba(255,255,255,0.10); color: var(--ink-dim); }
.mobile-menu-foot a { color: var(--coral); }

.nav-toggle { background: var(--coral); }
.nav-toggle span { background: var(--bg); }

/* Hero meta dot — neon yeşil glow */
.hero-meta-item .dot {
  background: var(--neon-green);
  box-shadow: 0 0 0 4px rgba(76, 255, 90, 0.20), 0 0 12px var(--neon-green);
}
@keyframes blink {
  0%,100% { box-shadow: 0 0 0 4px rgba(76, 255, 90, 0.25), 0 0 12px var(--neon-green); }
  50% { box-shadow: 0 0 0 8px rgba(76, 255, 90, 0), 0 0 6px var(--neon-green); }
}

/* Hero tag — koyu kart */
.hero-tag { background: var(--paper); border-color: var(--line); color: var(--ink-dim); }
.tag-line { background: var(--coral); }
.tag-line::after { color: var(--bg); }

/* Hero title accents */
.hero-title .strike { text-decoration-color: var(--neon-magenta); color: var(--ink-mute); }
.hero-title .glitch { color: var(--neon-green); }
.hero-title .glitch::before { color: var(--neon-magenta); background: var(--bg); }
.hero-title .glitch::after { color: var(--neon-cyan); background: var(--bg); }

/* Yan istatistik blokları */
.side-block { background: var(--paper); border-color: var(--line); }
.side-num { color: var(--neon-green); text-shadow: 0 0 12px rgba(76, 255, 90, 0.4); }
.side-num i { color: var(--ink); }

/* Servis kartları - koyu */
.services-grid { background: var(--line); border-color: var(--line); }
.service-card { background: var(--paper); }
.service-card:hover { background: var(--bg-3); }
.service-card h3 { color: var(--ink); }
.service-card p { color: var(--ink-dim); }
.service-icon { background: var(--bg-3); color: var(--ink); }
.service-icon svg { stroke: currentColor; }
.service-card:hover .service-icon { background: rgba(76, 255, 90, 0.15); color: var(--coral); }
.service-tags span { background: var(--bg-3); color: var(--ink-dim); }

/* Süreç adımları */
.step { background: var(--paper); border-color: var(--line); }
.step:hover { border-color: var(--coral); box-shadow: 0 16px 40px -12px rgba(76, 255, 90, 0.2); }
.step h3 { color: var(--ink); }
.step p { color: var(--ink-dim); }
.step-time { background: rgba(76, 255, 90, 0.10); color: var(--coral); }

/* Hakkımızda */
.about-headline { color: var(--ink); }
.about-headline .hl { color: var(--neon-green); }
.about-headline .hl2 { color: var(--neon-cyan); }
.about-text p { color: var(--ink-dim); }

/* Projeler */
.projects-title { color: var(--ink); }
.project-row .p-name { color: var(--ink); }
.project-row:hover { background: var(--paper); }
.projects-cta span { color: var(--ink-dim); }

/* Servis başlığı, süreç başlığı */
.services-title, .process-title { color: var(--ink); }

/* About list hover */
.about-list li:hover { color: var(--coral); }

/* ============================================================
   SABİT WHATSAPP BUTONU
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6);
  transition: transform .35s var(--ease), box-shadow .35s, width .35s var(--ease-out);
  animation: waPulse 2.4s infinite;
  overflow: hidden;
  white-space: nowrap;
}
.wa-float svg { position: relative; z-index: 2; flex-shrink: 0; }
.wa-float .wa-tooltip {
  position: relative; z-index: 2;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  max-width: 0; opacity: 0; overflow: hidden;
  transition: max-width .4s var(--ease-out), opacity .3s, margin .3s;
}
.wa-float:hover {
  width: 230px; border-radius: 100px;
  padding: 0 22px 0 18px;
  justify-content: flex-start; gap: 12px;
  transform: translateY(-2px);
  display: inline-flex; align-items: center;
}
.wa-float:hover .wa-tooltip { max-width: 200px; opacity: 1; margin-left: 4px; }
.wa-float .wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; opacity: 0;
  animation: waRing 2.4s infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@keyframes waRing {
  0% { opacity: .8; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}
@media (max-width: 600px) {
  .wa-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .wa-float:hover { width: 56px; padding: 0; justify-content: center; }
  .wa-float:hover .wa-tooltip { display: none; }
}

/* ============================================================
   YÜKLEME EKRANI — büyük logo, ortalanmış metin
   ============================================================ */
.loader-inner {
  width: min(640px, 92vw);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.loader-logo-img {
  width: clamp(120px, 18vw, 180px);
  height: auto; margin-bottom: 28px;
  filter: drop-shadow(0 0 22px rgba(76, 255, 90, 0.55))
          drop-shadow(0 0 44px rgba(58, 212, 255, 0.35));
  animation: loaderLogoBreathe 2.4s ease-in-out infinite;
}
@keyframes loaderLogoBreathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 22px rgba(76, 255, 90, 0.55))
            drop-shadow(0 0 44px rgba(58, 212, 255, 0.35));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 28px rgba(58, 212, 255, 0.7))
            drop-shadow(0 0 56px rgba(200, 69, 255, 0.45));
  }
}
.loader-logo {
  font-size: clamp(24px, 4.5vw, 44px);
  letter-spacing: .15em;
  margin-bottom: 32px;
  width: 100%;
}
.loader-logo span { display: inline-block; color: var(--ink); }
.loader-logo em {
  font-style: normal; color: var(--coral);
  margin: 0 4px;
}
.loader-bar, .loader-counter, .loader-meta { width: 100%; }

/* ============================================================
   LIGHTBOX — tıklayınca büyük görsel popup
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(5, 2, 16, 0.92);
  backdrop-filter: blur(14px);
  display: grid; place-items: center;
  padding: 6vh 4vw;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-stage {
  position: relative; max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  transform: scale(.92); opacity: 0;
  transition: transform .55s var(--ease-out), opacity .45s;
}
.lightbox.open .lightbox-stage { transform: scale(1); opacity: 1; }
.lightbox-stage img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65),
              0 0 0 1px rgba(255, 255, 255, 0.08);
}
.lightbox-caption {
  font-family: 'Syncopate', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: .15em;
  color: var(--ink);
  padding: 8px 18px; border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--coral); color: var(--bg);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(76, 255, 90, 0.35);
  transition: transform .35s var(--ease), background .3s;
  z-index: 2;
}
.lightbox-close:hover {
  background: var(--neon-cyan);
  transform: rotate(90deg);
}
@media (max-width: 600px) {
  .lightbox { padding: 4vh 4vw; }
  .lightbox-stage img { max-height: 70vh; }
  .lightbox-close { top: 14px; right: 14px; width: 42px; height: 42px; }
}

/* PROJE SATIRLARI button'a dönüştü — eski hover preview'i kapat */
.p-preview { display: none !important; }
button.project-row {
  width: 100%; text-align: left;
  background: transparent; color: inherit; font: inherit;
  border: none; border-bottom: 1px solid var(--line);
  font-family: inherit;
  cursor: pointer;
}
@media (hover: none) { button.project-row { cursor: pointer; } }
.project-row:focus-visible { outline: 2px solid var(--coral); outline-offset: -2px; }

/* ============================================================
   FOOTER — sütun düzeni
   ============================================================ */
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .2em; color: var(--coral);
  margin-bottom: 6px;
}
.footer-col a, .footer-col span {
  font-size: 14px; color: var(--ink-dim);
  transition: color .3s;
}
.footer-col a:hover { color: var(--coral); }
@media (max-width: 800px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}
