@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Mono:wght@300;400&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:      #060606;
  --white:      #EDECE8;
  --white-60:   rgba(237,236,232,0.6);
  --white-30:   rgba(237,236,232,0.3);
  --white-10:   rgba(237,236,232,0.1);
  --white-05:   rgba(237,236,232,0.05);
  --border:     rgba(237,236,232,0.07);
  --border-mid: rgba(237,236,232,0.14);
  --surface:    #0C0C0C;
  --surface2:   #111111;
  --muted:      #3E3E3E;
  --muted2:     #252525;
  --green:      #6fcf97;
  --red:        #eb5757;
  --fd:         'Bebas Neue', sans-serif;
  --fb:         'DM Sans', sans-serif;
  --fm:         'DM Mono', monospace;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fb);
  cursor: none;
  overflow-x: hidden;
}

/* ─── CURSOR ─── */
#cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(237,236,232,0.75);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: transform;
  transition: width .3s cubic-bezier(.16,1,.3,1),
              height .3s cubic-bezier(.16,1,.3,1),
              background .3s ease,
              border-color .3s ease;
}
#cursor.is-hover {
  width: 68px; height: 68px;
  background: rgba(237,236,232,0.1);
  border-color: rgba(237,236,232,1);
}
#cursor.is-link { width: 18px; height: 18px; background: var(--white); border-color: var(--white); }
#cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 4px; height: 4px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
}
#cursor-text {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  font-family: var(--fm);
  font-size: 8px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transform: translate(-50%, 30px);
  opacity: 0;
  transition: opacity .2s;
  white-space: nowrap;
}

/* ─── PROGRESS ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 1px; width: 0%;
  background: var(--white);
  z-index: 1001;
  pointer-events: none;
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 56px;
  transition: padding .5s ease, background .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  padding: 14px 56px;
  background: rgba(6,6,6,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
}
.nav-logo {
  font-family: var(--fd);
  font-size: 18px; letter-spacing: 5px;
  color: var(--white);
  text-decoration: none;
  z-index: 101;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(237,236,232,0.65);
  text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: var(--fm);
  font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase;
  border: 0.5px solid var(--white-30);
  padding: 10px 24px;
  color: var(--white);
  text-decoration: none;
  border-radius: 2px;
  transition: background .25s, border-color .25s, color .25s;
}
.nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ── Hamburger ── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 101;
}
.nav-burger span {
  display: block; height: 1px; width: 100%;
  background: var(--white);
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s, width .35s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav-drawer {
  display: none;
  position: fixed; inset: 0;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.nav-drawer.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-drawer a {
  font-family: var(--fd);
  font-size: clamp(40px, 10vw, 64px);
  letter-spacing: 3px;
  color: var(--white-30);
  text-decoration: none;
  line-height: 1.15;
  transition: color .25s;
  display: block;
}
.nav-drawer a:hover { color: var(--white); }
.nav-drawer-foot {
  position: absolute; bottom: 40px; left: 32px;
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted2);
}

/* ─── HERO ─── */
#hero {
  height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 64px;
  position: relative; overflow: hidden;
}
#hero > *:not(canvas) { position: relative; z-index: 1; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(6,6,6,0.7) 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  border: 0.5px solid var(--border);
  pointer-events: none; will-change: transform;
}
.orb-1 { width: 560px; height: 560px; top: -140px; right: -140px; border-color: var(--border); }
.orb-2 { width: 300px; height: 300px; top: 60px; right: 80px; border-color: var(--border-mid); }
.orb-3 {
  width: 100px; height: 100px; top: 180px; right: 260px;
  background: rgba(237,236,232,0.012);
  border-color: rgba(237,236,232,0.18);
}
.hero-eye {
  font-family: var(--fm); font-size: 9px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
  overflow: hidden;
}
.hero-eye::before { content:''; width: 24px; height: 0.5px; background: var(--muted); flex-shrink:0; }
.hero-eye-inner { display: block; }

.hero-title {
  font-family: var(--fd);
  font-size: clamp(96px, 13.5vw, 200px);
  line-height: .875; letter-spacing: -3px;
}
.title-line { display: block; overflow: hidden; }
.title-inner { display: block; }
.title-inner.outline { color: transparent; -webkit-text-stroke: .7px var(--white); }

.hero-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-top: 44px;
}
.hero-sub {
  font-family: var(--fm); font-size: 10px;
  letter-spacing: 2px; color: rgba(237,236,232,0.6);
  line-height: 2;
}
.hero-scroll {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(237,236,232,0.45);
}
.scroll-track {
  width: 1px; height: 48px;
  background: rgba(237,236,232,0.3); position: relative; overflow: hidden;
}
.scroll-track::after {
  content:''; position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%; background: var(--white-60);
  animation: scrollDrop 2.4s ease-in-out infinite 2s;
}
@keyframes scrollDrop { 0%{top:-100%} 100%{top:100%} }

/* ─── SECTION LABEL ─── */
.sec-label {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted2); padding: 18px 56px 14px;
  border-top: 0.5px solid var(--border);
  display: flex; align-items: center; gap: 16px;
}
.sec-label::after { content:''; flex:1; height: 0.5px; background: var(--border); }

/* ─── ABOUT ─── */
#about {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid var(--border);
}
.about-l {
  padding: 72px 56px; border-right: 0.5px solid var(--border);
  position: relative; overflow: hidden;
}
/* Çok hafif gezinen gradient — arka plan */
.about-l::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,236,232,0.035) 0%, transparent 70%);
  top: -80px; left: -80px;
  animation: aboutOrb 9s ease-in-out infinite;
  pointer-events: none;
}
.about-l::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,236,232,0.025) 0%, transparent 70%);
  bottom: 40px; right: 30px;
  animation: aboutOrb 12s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes aboutOrb {
  0%,100% { transform: translate(0, 0); }
  33%     { transform: translate(30px, 20px); }
  66%     { transform: translate(-15px, 35px); }
}
/* ── About Word — clip reveal ── */
.about-word {
  font-family: var(--fd);
  font-size: clamp(52px, 6vw, 88px);
  line-height: .92; letter-spacing: 1px;
}
.aw-line {
  display: block; overflow: hidden; cursor: default;
  line-height: 1.05;  /* kelimeler arasında boşluk */
}
.aw-inner {
  display: block;
  transform: translateY(105%);
  transition: color .4s, -webkit-text-stroke .4s;
}
.aw-inner.ol {
  color: transparent;
  -webkit-text-stroke: .5px var(--white);
}
/* Hover: solid ↔ outline toggle */
.aw-line:hover .aw-inner:not(.ol) {
  color: transparent;
  -webkit-text-stroke: .5px var(--white);
}
.aw-line:hover .aw-inner.ol {
  color: var(--white);
  -webkit-text-stroke: 0px transparent;
}

/* Reveal sonrası blink — JS 'blink' class ekleyecek */
.aw-inner.blink {
  animation: awBlink 4s ease-in-out infinite;
}
.aw-inner.ol.blink {
  animation: awBlinkOl 4s ease-in-out infinite;
}
@keyframes awBlink {
  0%,100% { opacity: 1; }
  48%      { opacity: 1; }
  50%      { opacity: .15; }
  52%      { opacity: 1; }
  72%      { opacity: 1; }
  74%      { opacity: .15; }
  76%      { opacity: 1; }
}
@keyframes awBlinkOl {
  0%,100% { opacity: 1; -webkit-text-stroke: .5px var(--white); }
  48%     { opacity: 1; }
  50%     { opacity: .12; }
  52%     { opacity: 1; }
  72%     { opacity: 1; }
  74%     { opacity: .12; }
  76%     { opacity: 1; }
}

/* ── KPI ── */
.about-kpis {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 32px; border-top: 0.5px solid var(--border);
}
.kpi-item { display: flex; flex-direction: column; }
.kpi-num {
  font-family: var(--fd); font-size: 44px; letter-spacing: 1px;
}
.kpi-lbl {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(237,236,232,0.4); margin-top: 4px;
}
/* Animasyonlu ince çizgi */
.kpi-bar {
  margin-top: 10px;
  width: 100%; height: 1px;
  background: var(--border);
  overflow: hidden;
}
.kpi-bar-fill {
  display: block; height: 100%;
  background: var(--white);
  width: 0%;
  transition: width 1.6s cubic-bezier(.16,1,.3,1);
}
.kpi-bar-fill.active { width: 100%; }

/* ── About Right ── */
.about-r {
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
/* Scan line — çok subtil */
.about-r::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(237,236,232,0.06) 50%, transparent 100%);
  top: -1px;
  animation: scanLine 7s linear infinite;
  pointer-events: none;
}
@keyframes scanLine {
  0%   { top: -1px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.about-body {
  font-size: 15px; font-weight: 300;
  line-height: 1.9; color: var(--white-60); max-width: 440px;
  display: flex; flex-direction: column;
}
.about-body strong { color: var(--white); font-weight: 500; }

/* Her satır clip ile gelecek */
.ab-line {
  display: block;
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
  line-height: 1.9;
}
.ab-line.active { opacity: 1; transform: translateY(0); }
.ab-line.ab-gap { height: .6em; }

/* "Nury" adı — subtle glow */
.nury-name {
  color: var(--white); font-weight: 600;
  position: relative; display: inline-block;
}
.nury-name::after {
  content: '';
  position: absolute; left: -2px; right: -2px; bottom: 1px;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s .8s cubic-bezier(.16,1,.3,1);
}
.nury-name.active::after { transform: scaleX(1); }

/* ── Text link — shimmer ── */
.text-link {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 36px;
  font-family: var(--fm); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 12px 20px 12px 0;
  border-bottom: 0.5px solid rgba(237,236,232,0.25);
  transition: gap .35s, border-color .35s, padding-left .35s, letter-spacing .35s;
  width: fit-content;
  position: relative;
}
/* Sol taraftan büyüyen dolgu */
.text-link::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(237,236,232,0.04);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
/* Shimmer şeridi */
.text-link::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(237,236,232,0.1), transparent);
  animation: shimmer 4s ease-in-out infinite 1.5s;
  pointer-events: none;
}
@keyframes shimmer { 0%{left:-80%} 100%{left:180%} }
.text-link:hover {
  gap: 22px;
  padding-left: 8px;
  border-color: rgba(237,236,232,0.6);
  letter-spacing: 2.5px;
}
.text-link:hover::before { transform: scaleX(1); }

/* ─── SERVICES ─── */
#services {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 0.5px solid var(--border);
}
.svc {
  position: relative; overflow: hidden;
  padding: 32px 28px 36px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.svc:nth-child(4n) { border-right: none; }
.svc:nth-child(n+5) { border-bottom: none; }
.svc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
  transition: opacity .5s ease, transform .6s cubic-bezier(.16,1,.3,1), filter .5s ease;
  transform: scale(1.03);
  filter: grayscale(50%) brightness(.5);
}
.svc:hover .svc-bg {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0%) brightness(.7);
}
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,.9) 30%, rgba(6,6,6,.4) 70%, rgba(6,6,6,.15) 100%);
  opacity: 1;
  transition: background .5s ease;
}
.svc:hover .svc-overlay {
  background: linear-gradient(to top, rgba(6,6,6,.85) 20%, rgba(6,6,6,.2) 70%, rgba(6,6,6,.05) 100%);
}
.svc-inner { position: relative; z-index: 2; }
.svc-num {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 1px; color: var(--muted2); margin-bottom: 20px;
}
.svc-icon {
  font-size: 20px; margin-bottom: 16px;
  display: block;
}
.svc-title {
  font-size: 13px; font-weight: 500;
  color: var(--white-60); margin-bottom: 8px;
  transition: color .3s; letter-spacing: .3px;
}
.svc:hover .svc-title { color: var(--white); }
.svc-desc {
  font-size: 11px; color: var(--muted);
  line-height: 1.65; transition: color .3s;
}
.svc:hover .svc-desc { color: rgba(237,236,232,.55); }
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-top: 14px; opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s .1s, transform .35s .1s;
}
.svc:hover .svc-tags { opacity: 1; transform: translateY(0); }
.svc-tag {
  font-family: var(--fm); font-size: 7px;
  letter-spacing: 1px; text-transform: uppercase;
  border: 0.5px solid var(--muted2); color: var(--muted);
  padding: 3px 8px; border-radius: 2px;
}
.svc-arrow {
  position: absolute; top: 24px; right: 22px;
  font-size: 16px; color: var(--muted2); z-index: 2;
  transition: color .3s, transform .3s;
}
.svc:hover .svc-arrow { color: var(--white-60); transform: translate(4px,-4px); }

/* ─── STATS ─── */
#stats {
  border-top: 0.5px solid var(--border);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-cell {
  padding: 56px 40px;
  border-right: 0.5px solid var(--border);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-family: var(--fd);
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: 1px; line-height: 1;
}
.stat-l {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}
.stat-d {
  font-size: 12px; font-weight: 300;
  color: var(--muted2); margin-top: 6px; line-height: 1.5;
}

/* ─── PORTFOLIO ─── */
#portfolio { border-top: 0.5px solid var(--border); }
.pf-bar {
  display: flex; border-bottom: 0.5px solid var(--border);
  overflow-x: auto;
}
.pf-bar::-webkit-scrollbar { display: none; }
.pf-btn {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); padding: 14px 24px;
  border-right: 0.5px solid var(--border);
  white-space: nowrap; cursor: none;
  transition: color .25s, background .25s;
  position: relative;
}
.pf-btn::after {
  content:''; position: absolute;
  bottom: 0; left: 0; width: 0; height: .5px;
  background: var(--white); transition: width .4s ease;
}
.pf-btn.active { color: var(--white); }
.pf-btn.active::after { width: 100%; }
.pf-btn:hover:not(.active) { color: var(--white-60); background: var(--surface); }

.pf-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
}
.pf-item {
  aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  cursor: none; background: var(--surface);
  transition: opacity .5s ease, transform .5s ease;
}
.pf-item.out {
  display: none !important;
  pointer-events: none;
}
.pf-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s;
  filter: grayscale(20%) brightness(.85);
}
.pf-item:hover .pf-img { transform: scale(1.06); filter: grayscale(0%) brightness(.9); }
.pf-cap {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,.82) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px 22px;
  opacity: 0; transition: opacity .35s;
}
.pf-item:hover .pf-cap { opacity: 1; }
.pf-cat {
  font-family: var(--fm); font-size: 7px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 5px;
}
.pf-ttl { font-size: 13px; font-weight: 500; color: var(--white); }

/* ─── BLOG ─── */
#blog { border-top: 0.5px solid var(--border); }
.blog-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 0.5px solid var(--border);
}
.blog-card {
  padding: 36px 32px;
  border-right: 0.5px solid var(--border);
  text-decoration: none; color: inherit;
  display: block; transition: background .3s;
  position: relative;
}
.blog-card:last-child { border-right: none; }
.blog-card:hover { background: var(--surface); }
.blog-date {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted2); margin-bottom: 14px;
}
.blog-tag {
  display: inline-block;
  font-family: var(--fm); font-size: 7px;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: .5px solid var(--muted2); color: var(--muted);
  padding: 3px 9px; border-radius: 2px; margin-bottom: 14px;
}
.blog-h {
  font-size: 16px; font-weight: 500;
  line-height: 1.4; color: var(--white-60);
  margin-bottom: 12px;
  transition: color .3s;
}
.blog-card:hover .blog-h { color: var(--white); }
.blog-excerpt {
  font-size: 12px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
}
.blog-read {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px;
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted2); transition: color .3s, gap .3s;
}
.blog-card:hover .blog-read { color: var(--white-60); gap: 14px; }

/* ─── TESTIMONIALS ─── */
#testimonials { border-top: 0.5px solid var(--border); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 0.5px solid var(--border);
}
.testi-card {
  padding: 40px 36px;
  border-right: 0.5px solid var(--border);
  position: relative;
}
.testi-card:last-child { border-right: none; }
.testi-quote {
  font-family: var(--fd); font-size: 72px;
  line-height: .7; color: var(--muted2);
  margin-bottom: 18px; display: block;
  letter-spacing: -2px;
}
.testi-body {
  font-size: 14px; font-weight: 300;
  line-height: 1.8; color: var(--white-60);
  margin-bottom: 28px;
}
.testi-sep {
  width: 24px; height: 0.5px;
  background: var(--border-mid);
  margin-bottom: 20px;
}
.testi-name {
  font-family: var(--fm); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white);
}
.testi-role {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted2); margin-top: 4px;
}
.testi-stars {
  position: absolute; top: 40px; right: 32px;
  font-size: 10px; letter-spacing: 2px;
  color: rgba(237,236,232,0.2);
}

/* ─── CONTACT ─── */
#contact {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid var(--border);
}
.ct-l {
  padding: 80px 56px; border-right: 0.5px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
}
.ct-title {
  font-family: var(--fd);
  font-size: clamp(52px, 5.5vw, 76px);
  letter-spacing: 2px; line-height: .9;
}
.ct-title .ol { color: transparent; -webkit-text-stroke: .5px var(--white); }
.ct-items { margin-top: 48px; }
.ct-row {
  display: flex; gap: 20px;
  padding: 16px 0; border-bottom: .5px solid var(--border);
  align-items: baseline;
}
.ct-row:first-child { border-top: .5px solid var(--border); }
.ct-k {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(237,236,232,0.4); min-width: 72px;
}
.ct-v {
  font-size: 13px; font-weight: 300;
  color: rgba(237,236,232,0.75);
}
.ct-r { padding: 80px 56px; }
.form { display: flex; flex-direction: column; }
.fg {
  border-bottom: .5px solid var(--border);
  transition: border-color .3s; margin-bottom: 0;
  position: relative;
}
.fg:focus-within { border-color: var(--white-30); }
.fg label {
  font-family: var(--fm); font-size: 7.5px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(237,236,232,0.45); display: block;
  padding-top: 22px; padding-bottom: 6px;
}
.fg input, .fg textarea {
  width: 100%; background: transparent;
  border: none; outline: none;
  font-family: var(--fb); font-size: 14px;
  font-weight: 300; color: var(--white);
  padding-bottom: 18px; resize: none;
}

/* Custom select ── */
.fg-select { position: relative; }
.fg-select::after {
  content: '↓';
  position: absolute; right: 0; bottom: 18px;
  font-size: 12px; color: var(--muted);
  pointer-events: none;
  transition: transform .3s, color .3s;
}
.fg-select:focus-within::after { transform: rotate(180deg); color: var(--white-60); }
.fg select {
  width: 100%; background: transparent;
  border: none; outline: none;
  font-family: var(--fb); font-size: 14px;
  font-weight: 300; color: var(--white);
  padding-bottom: 18px; resize: none;
  cursor: pointer; appearance: none;
  -webkit-appearance: none;
}
.fg select option {
  background: #111;
  color: var(--white);
  font-size: 13px;
  padding: 8px;
}
.fg select:focus { color: var(--white); }

/* Honeypot — gizli, asla görünmemeli */
.fg-honeypot { display: none !important; visibility: hidden !important; position: absolute !important; left: -9999px !important; }

.fg textarea { min-height: 90px; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(237,236,232,0.28); }
.form-foot {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 36px;
}
.btn-submit {
  font-family: var(--fm); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  background: var(--white); color: var(--black);
  border: none; padding: 16px 36px;
  cursor: none; border-radius: 2px; font-weight: 500;
  transition: transform .2s, background .2s;
  position: relative; overflow: hidden;
}
.btn-submit:disabled { opacity: 0.5; pointer-events: none; }
.btn-submit:active { transform: scale(.98); }
.btn-submit::after {
  content:''; position: absolute; inset: 0;
  background: rgba(0,0,0,.1); transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.btn-submit:hover::after { transform: translateX(0); }
.form-note {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 1px; color: var(--muted2);
}
.form-msg {
  font-family: var(--fm); font-size: 10px;
  letter-spacing: 1px; margin-top: 16px; display: none;
}
.form-msg.ok { color: var(--green); display: block; }
.form-msg.err { color: var(--red); display: block; }

/* ─── FOOTER ─── */
footer {
  border-top: .5px solid var(--border);
  padding: 28px 56px;
  display: flex; justify-content: space-between; align-items: center;
}
.foot-logo {
  font-family: var(--fd); font-size: 14px;
  letter-spacing: 5px; color: var(--muted2);
}
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted2); text-decoration: none;
  transition: color .25s;
}
.foot-links a:hover { color: var(--muted); }
.foot-copy {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 1px; color: var(--muted2);
}

/* ─── GSAP INITIAL STATES ─── */
.gs-up    { opacity: 0; transform: translateY(40px); }
.gs-left  { opacity: 0; transform: translateX(-48px); }
.gs-right { opacity: 0; transform: translateX(48px); }
.gs-scale { opacity: 0; transform: scale(.94); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  body { cursor: auto; }
  #cursor, #cursor-dot, #cursor-text { display: none; }

  /* Navbar */
  #navbar { padding: 18px 24px; }
  #navbar.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  #hero { padding: 0 24px 48px; }
  .hero-title { font-size: clamp(72px, 18vw, 120px); }

  /* Labels */
  .sec-label { padding: 16px 24px 12px; }

  /* About */
  #about { grid-template-columns: 1fr; }
  .about-l { border-right: none; border-bottom: .5px solid var(--border); padding: 48px 24px; }
  .about-r { padding: 48px 24px; }
  .about-kpis { gap: 28px; }

  /* Services */
  #services { grid-template-columns: repeat(2,1fr); }
  .svc:nth-child(4n) { border-right: .5px solid var(--border); }
  .svc:nth-child(2n) { border-right: none; }
  .svc:nth-child(n+7) { border-bottom: none; }

  /* Stats */
  #stats { grid-template-columns: repeat(2,1fr); }
  .stat-cell { padding: 36px 24px; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-top: .5px solid var(--border); }
  .stat-cell:nth-child(4) { border-top: .5px solid var(--border); }

  /* Portfolio */
  .pf-grid { grid-template-columns: repeat(2,1fr); }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { border-right: none; border-bottom: .5px solid var(--border); }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: .5px solid var(--border); }
  .testi-card:last-child { border-bottom: none; }

  /* Contact */
  #contact { grid-template-columns: 1fr; }
  .ct-l { border-right: none; border-bottom: .5px solid var(--border); padding: 48px 24px; }
  .ct-r { padding: 48px 24px; }

  /* Footer */
  footer { flex-direction: column; gap: 20px; align-items: flex-start; padding: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(60px, 20vw, 90px); }
  #services { grid-template-columns: 1fr; }
  .svc { border-right: none !important; }
  .svc:nth-child(n+8) { border-bottom: none; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-btn { padding: 12px 16px; font-size: 7px; }
  .about-kpis { flex-direction: column; gap: 20px; }
}


/* ════════════════════════════════════════
   BLOG SAYFALARI
════════════════════════════════════════ */
/* blog.css — NURYMEDIA Blog Stilleri */

/* ── Genel ── */
.blog-post-page,
.blog-list-page {
  cursor: none;
}
.blog-post-page *,
.blog-list-page * {
  cursor: none;
}

/* Blog sayfalarında navbar fixed çalışsın */
.blog-post-page #navbar,
.blog-list-page #navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
}

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 18px 56px;
  border-bottom: 0.5px solid var(--border);
  margin-top: 72px; /* fixed navbar yüksekliği */
}
.breadcrumb ol {
  display: flex; align-items: center; gap: 10px;
  list-style: none;
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .25s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current] { color: var(--white-30); }

/* ── Blog listesi başlık ── */
.blog-header {
  padding: 64px 56px 40px;
  border-bottom: 0.5px solid var(--border);
  /* breadcrumb'dan sonra geliyor, margin gerekmez */
}
.blog-main-title {
  font-family: var(--fd);
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 2px; line-height: .9;
  margin-bottom: 16px;
}
.blog-main-sub {
  font-family: var(--fm); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted);
}

/* ── Filtre bar ── */
.blog-filter-bar {
  display: flex; gap: 0;
  border-bottom: 0.5px solid var(--border);
  overflow-x: auto;
}
.blog-filter-bar::-webkit-scrollbar { display: none; }
.blog-filter-btn {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); padding: 14px 24px;
  border-right: 0.5px solid var(--border);
  white-space: nowrap; cursor: pointer;
  background: none; border-top: none; border-bottom: none; border-left: none;
  transition: color .25s, background .25s;
  position: relative;
}
.blog-filter-btn::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: .5px;
  background: var(--white); transition: width .4s ease;
}
.blog-filter-btn.active { color: var(--white); }
.blog-filter-btn.active::after { width: 100%; }
.blog-filter-btn:hover:not(.active) { color: var(--white-60); background: var(--surface); }

/* ── Öne çıkan yazı ── */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
  min-height: 420px;
}
.bf-img-wrap {
  overflow: hidden; display: block;
  border-right: 0.5px solid var(--border);
}
.bf-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s;
  filter: grayscale(15%) brightness(.85);
}
.blog-featured:hover .bf-img { transform: scale(1.04); filter: grayscale(0%) brightness(.9); }
.bf-body {
  padding: 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.bf-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.bf-featured-badge {
  font-family: var(--fm); font-size: 7px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted2); border: 0.5px solid var(--muted2);
  padding: 3px 8px; border-radius: 2px;
}
.bf-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500; line-height: 1.3;
  margin-bottom: 16px;
}
.bf-title a { color: var(--white-60); text-decoration: none; transition: color .3s; }
.bf-title a:hover { color: var(--white); }
.bf-excerpt {
  font-size: 14px; font-weight: 300;
  color: var(--white-60); line-height: 1.8;
  margin-bottom: 20px;
}
.bf-meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 1.5px; color: var(--muted);
  margin-bottom: 28px;
}
.bf-read {
  font-family: var(--fm); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 0.5px solid var(--border-mid);
  display: inline-block;
  transition: border-color .3s, letter-spacing .3s;
  width: fit-content;
}
.bf-read:hover { border-color: var(--white); letter-spacing: 2.5px; }

/* ── Blog tag ── */
.blog-tag {
  font-family: var(--fm); font-size: 7px;
  letter-spacing: 2px; text-transform: uppercase;
  border: 0.5px solid var(--muted2); color: var(--muted);
  padding: 3px 9px; border-radius: 2px; display: inline-block;
}

/* ── Blog listesi grid ── */
.blog-grid-section { border-bottom: 0.5px solid var(--border); }
.blog-list-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
}
.blog-list-card {
  border-right: 0.5px solid var(--border);
  display: flex; flex-direction: column;
}
.blog-list-card:last-child { border-right: none; }
.blc-img-wrap {
  overflow: hidden; display: block;
  aspect-ratio: 16/9;
  border-bottom: 0.5px solid var(--border);
}
.blc-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .4s;
  filter: grayscale(20%) brightness(.8);
}
.blog-list-card:hover .blc-img { transform: scale(1.05); filter: grayscale(0%) brightness(.9); }
.blc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blc-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 14px;
}
.blc-date {
  font-family: var(--fm); font-size: 7px;
  letter-spacing: 1px; color: var(--muted2);
}
.blc-title {
  font-size: 16px; font-weight: 500;
  line-height: 1.4; margin-bottom: 12px; flex: 1;
}
.blc-title a { color: var(--white-60); text-decoration: none; transition: color .3s; }
.blc-title a:hover { color: var(--white); }
.blc-excerpt {
  font-size: 12px; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  margin-bottom: 20px;
}
.blc-foot {
  display: flex; justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border); padding-top: 14px;
}
.blc-read { font-family: var(--fm); font-size: 8px; letter-spacing: 1px; color: var(--muted2); }
.blc-arrow {
  color: var(--muted2); text-decoration: none; font-size: 14px;
  transition: color .3s, transform .3s; display: block;
}
.blog-list-card:hover .blc-arrow { color: var(--white-60); transform: translateX(4px); }

/* ══════════════════════════════════════════
   BLOG POST SAYFASI
══════════════════════════════════════════ */
.post-hero {
  position: relative;
  min-height: 480px;
  display: flex; align-items: flex-end;
  padding: 64px 56px;
  margin-top: 73px;
  overflow: hidden;
  border-bottom: 0.5px solid var(--border);
}
.post-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(20%) brightness(.45);
  transition: transform 8s ease;
}
.post-hero:hover .post-hero-bg { transform: scale(1.03); }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,.92) 0%, rgba(6,6,6,.4) 60%, rgba(6,6,6,.15) 100%);
}
.post-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.post-tag {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 12px;
}
.post-tag::before { content: ''; width: 20px; height: .5px; background: var(--muted); }
.post-title {
  font-family: var(--fb);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 500; line-height: 1.25;
  margin-bottom: 20px;
}
.post-meta {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}

/* ── Post içerik ── */
.post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px;
}
.post-body { font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--white-60); }
.post-lead {
  font-size: 18px; color: rgba(237,236,232,.8);
  line-height: 1.8; margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid var(--border);
}
.post-body h2 {
  font-family: var(--fd);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 1px; color: var(--white);
  margin: 56px 0 20px;
}
.post-body h3 {
  font-size: 16px; font-weight: 500;
  color: var(--white); margin: 36px 0 12px;
  letter-spacing: .3px;
}
.post-body p { margin-bottom: 22px; }
.post-body strong { color: var(--white); font-weight: 500; }
.post-body em { color: rgba(237,236,232,.75); font-style: italic; }
.post-body a { color: var(--white); border-bottom: 0.5px solid var(--border-mid); text-decoration: none; transition: border-color .3s; }
.post-body a:hover { border-color: var(--white); }

/* ── Paylaş ── */
.post-share {
  display: flex; align-items: center; gap: 12px;
  padding: 32px 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  margin-top: 48px;
}
.share-label {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-right: 8px;
}
.share-btn {
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); background: none;
  border: 0.5px solid var(--border); padding: 8px 16px;
  border-radius: 2px; cursor: pointer; text-decoration: none;
  transition: color .25s, border-color .25s;
}
.share-btn:hover { color: var(--white); border-color: var(--white-30); }

/* ── Önceki / Sonraki ── */
.post-nav {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 2px;
  border-top: 0.5px solid var(--border);
}
.post-nav-item {
  padding: 32px;
  text-decoration: none; color: var(--white-60);
  transition: background .3s, color .3s;
  border-right: 0.5px solid var(--border);
  display: block;
}
.post-nav-item:last-child { border-right: none; text-align: right; }
.post-nav-item:hover { background: var(--surface); color: var(--white); }
.nav-dir {
  display: block;
  font-family: var(--fm); font-size: 8px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.nav-ttl { font-size: 14px; font-weight: 400; line-height: 1.4; }

/* ── CTA ── */
.post-cta {
  border-top: 0.5px solid var(--border);
  padding: 80px 56px;
  text-align: center;
}
.post-cta-inner { max-width: 480px; margin: 0 auto; }
.post-cta-label {
  font-family: var(--fm); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.post-cta-title {
  font-family: var(--fd);
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 2px; line-height: .9;
  margin-bottom: 32px;
}
.post-cta .text-link { margin: 0 auto; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .breadcrumb { padding: 16px 24px; margin-top: 60px; }
  .blog-header { padding: 40px 24px 28px; }
  .blog-featured { grid-template-columns: 1fr; }
  .bf-img-wrap { border-right: none; border-bottom: 0.5px solid var(--border); aspect-ratio: 16/9; }
  .bf-body { padding: 32px 24px; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .blog-list-card { border-right: none; border-bottom: 0.5px solid var(--border); }
  .post-hero { padding: 40px 24px; min-height: 360px; }
  .post-wrap { padding: 48px 24px; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .post-nav-item:last-child { text-align: left; border-bottom: none; }
  .post-cta { padding: 56px 24px; }
}