/* ═══════════════════════════════════════════════════════
   NAPCREATE — style.css  v2.0
   Renk değiştirmek için sadece :root bloğunu düzenleyin.
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* ── Ana renkler ── */
  --black:      #0d0d0d;
  --white:      #ffffff;
  --off-white:  #f8f7f5;
  --orange:     #ff482a;
  --purple:     #6e2cff;

  /* ── Gri skalası ── */
  --gray-100:   #f2f0ee;
  --gray-200:   #e4e2de;
  --gray-400:   #9a9690;
  --gray-600:   #58554f;
  --border:     #e8e5e0;

  /* ── Liquid Glass ── */
  --glass-bg:         rgba(255,255,255,0.08);
  --glass-bg-light:   rgba(255,255,255,0.55);
  --glass-border:     rgba(255,255,255,0.2);
  --glass-shadow:     0 8px 32px rgba(0,0,0,0.18);

  --font: 'Neue Haas Grotesk Display Pro','HelveticaNeue-Light','Helvetica Neue',Helvetica,Arial,sans-serif;

  /* ── Max genişlik ── */
  --max-w: 2000px;
  --page-pad: 4rem;
}

html { scroll-behavior: smooth; }

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

/* ── Sayfa genişlik sınırı ── */
.page-wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

/* ═══ NAV ══════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem 0;
  background: transparent;
  transition: background .4s, box-shadow .3s, backdrop-filter .4s;
}
nav.scrolled {
  background: var(--glass-bg-light);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 1px 0 var(--glass-border), 0 4px 24px rgba(0,0,0,0.07);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  padding: 0 var(--page-pad);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: inline-flex; align-items: center;
  color: var(--white);
  transition: color .35s ease, opacity .2s;
}
nav.scrolled .nav-logo { color: var(--black); }
.nav-logo-img { height: 38px; width: auto; display: block; }
.nc-logo-svg {
  height: 36px; width: auto; display: block;
  color: inherit;
  transition: color .35s ease;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.6);
  text-decoration: none; letter-spacing: 0.01em; transition: color .2s;
}
nav.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover { color: var(--white) !important; }
nav.scrolled .nav-links a:hover { color: var(--black) !important; }

/* Liquid glass nav CTA */
.nav-cta {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.9) !important;
  padding: 0.52rem 1.35rem; border-radius: 2rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.01em;
  text-decoration: none; transition: all .3s;
}
nav.scrolled .nav-cta {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff !important;
  backdrop-filter: none;
}
.nav-cta:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  transform: translateY(-1px);
  backdrop-filter: none;
}

/* ═══ BUTTONS ══════════════════════════════════════════ */
.btn-dark {
  display: inline-block; background: var(--black); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 2rem;
  font-family: var(--font); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-dark:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,72,42,0.35);
}
.btn-outline {
  display: inline-block; background: transparent; color: var(--white);
  padding: 0.9rem 2rem; border-radius: 2rem;
  font-family: var(--font); font-size: 0.85rem; font-weight: 400;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.35);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-block; background: var(--white); color: var(--black);
  padding: 0.9rem 2rem; border-radius: 2rem;
  font-family: var(--font); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; transition: opacity .2s;
  line-height: 1.2;
}
.btn-white:hover { opacity: 0.85; }
.btn-orange {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 2rem;
  font-family: var(--font); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; transition: all .25s;
  line-height: 1.2;
}
.btn-orange:hover {
  background: #e03a20;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255,72,42,0.3);
}

/* Liquid Glass Buton */
.btn-glass {
  display: inline-block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: var(--white);
  padding: 0.9rem 2rem; border-radius: 2rem;
  font-family: var(--font); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; transition: all .3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 16px rgba(0,0,0,0.15);
  line-height: 1.2;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 24px rgba(0,0,0,0.2);
}

/* ═══ HERO ══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero.hero--no-visual { grid-template-columns: 1fr; }

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after { content: none; }

.hero-left {
  position: relative; z-index: 2;
  padding: 8rem 0 5rem;
  padding-left: max(var(--page-pad), calc((100vw - var(--max-w)) / 2 + var(--page-pad)));
  padding-right: var(--page-pad);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 3rem;
}
.hero-eyebrow, .hero-badge {
  font-size: 0.68rem; font-weight: 400;
  color: rgba(255,255,255,0.45); letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 18px; height: 1px;
  background: var(--orange); margin-right: 0.6rem;
  vertical-align: middle; opacity: 0.7;
}
.hero-title {
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 700; line-height: 0.93; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: 3rem;
}
.hero-title .line { display: block; }
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.hero-foot { display: flex; flex-direction: column; gap: 2rem; }
.hero-desc {
  font-size: 0.95rem; line-height: 1.7;
  color: rgba(255,255,255,0.5); max-width: 380px;
}
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }



.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem max(var(--page-pad), calc((100vw - var(--max-w)) / 2 + var(--page-pad))) 5rem var(--page-pad);
}
.hero-brand-img {
  width: 100%; max-width: 600px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

/* ═══ SECTIONS ══════════════════════════════════════════ */
.section {
  padding: 7rem 0;
  border-bottom: 1px solid var(--border);
}
.section-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.63rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 3rem;
}
.section-tag::before {
  content: '';
  width: 16px; height: 1px; background: var(--orange); flex-shrink: 0; opacity: 0.6;
}

/* ═══ SERVİSLER ════════════════════════════════════════ */
.svc-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-bottom: 5rem; align-items: end;
}
.svc-title {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.05;
}
.svc-sub {
  font-size: 0.92rem; line-height: 1.75;
  color: var(--gray-600); max-width: 360px; justify-self: end;
}
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.svc-card {
  padding: 2rem 1.8rem 2.5rem;
  border-left: 1px solid var(--border);
  transition: background .3s;
}
.svc-card:last-child { border-right: 1px solid var(--border); }
.svc-card:hover { background: var(--off-white); }
.svc-img-wrap {
  width: 100%; aspect-ratio: 1 / 1;
  background: var(--black);
  border-radius: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover .svc-img-wrap { transform: translateY(-4px); }
.svc-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover .svc-img { transform: scale(1.05); }
.svc-num {
  font-size: 0.6rem; font-weight: 600; color: var(--purple);
  letter-spacing: 0.15em; margin-bottom: 1.4rem;
}
.svc-name {
  font-size: 1.02rem; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 0.9rem;
}
.svc-desc { font-size: 0.78rem; line-height: 1.72; color: var(--gray-600); margin-bottom: 1.8rem; }
.svc-tags { display: flex; flex-direction: column; }
.svc-tag {
  font-size: 0.68rem; color: var(--gray-400);
  padding: 0.45rem 0; border-top: 1px solid var(--border);
}

/* ═══ STÜDYO ════════════════════════════════════════════ */
.studio-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.studio-title {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 2rem;
}
.studio-title .accent { color: var(--orange); }
.studio-body {
  font-size: 0.92rem; line-height: 1.82;
  color: var(--gray-600); margin-bottom: 1.4rem;
}
.stat-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 3rem; border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.stat-box {
  padding: 1.5rem;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat-num {
  font-size: 2.2rem; font-weight: 500; letter-spacing: -0.04em;
  color: var(--black); line-height: 1; margin-bottom: 0.3rem;
}
.stat-num.is-orange { color: var(--orange); }
.stat-lbl { font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); }
.studio-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
}
.studio-img-ph {
  width: 100%; aspect-ratio: 3/4; background: var(--gray-100);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--gray-400);
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ═══ SÜREÇ ═════════════════════════════════════════════ */
.proc-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }
.proc-sticky { position: sticky; top: 7rem; }
.proc-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 1.4rem; white-space: pre-line;
}
.proc-sub { font-size: 0.88rem; line-height: 1.78; color: var(--gray-600); margin-bottom: 2.5rem; }
.pstep {
  display: grid; grid-template-columns: 2.5rem 1fr;
  gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--border);
}
.pstep:first-child { border-top: 1px solid var(--border); }
.pnum { font-size: 0.62rem; font-weight: 600; color: var(--purple); letter-spacing: 0.12em; padding-top: 0.2rem; }
.pname { font-size: 1rem; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.pdesc { font-size: 0.78rem; line-height: 1.72; color: var(--gray-600); }

/* ═══ KAYAN MARKA BANDI ════════════════════════════════ */
.clients-section {
  padding: 2.5rem 0; overflow: hidden;
  border-bottom: 1px solid var(--border); border-top: 1px solid var(--border);
  background: var(--off-white);
}
.clients-label {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gray-400);
  text-align: center; margin-bottom: 1.6rem;
}
.clients-track-wrap { overflow: hidden; }
.clients-track {
  display: flex; align-items: center; white-space: nowrap;
  animation: marquee 28s linear infinite; width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
.cname {
  font-size: 0.95rem; font-weight: 500;
  letter-spacing: -0.01em; color: var(--black); padding: 0 2.5rem; flex-shrink: 0;
}
.cdot {
  display: inline-block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--orange); flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══ CTA ══════════════════════════════════════════════ */
.cta-section {
  padding: 9rem 0; text-align: center;
  background: var(--black); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(110,44,255,0.1) 0%, rgba(255,72,42,0.05) 50%, transparent 70%);
  left: 50%; top: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute;
  top: 3rem; right: 3rem; width: 60px; height: 60px;
  border-top: 1px solid rgba(110,44,255,0.4); border-right: 1px solid rgba(110,44,255,0.4);
}
.cta-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.cta-tag {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 2rem;
}
.cta-title {
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 500; letter-spacing: -0.05em; line-height: 0.9;
  color: var(--white); margin-bottom: 2.5rem;
}
.cta-title .orange { color: var(--orange); }
.cta-sub { font-size: 0.98rem; line-height: 1.72; color: rgba(255,255,255,0.36); max-width: 420px; margin: 0 auto 3rem; }
.cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ═══ FOOTER ═══════════════════════════════════════════ */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  color: var(--black); text-decoration: none;
  display: inline-flex; align-items: center;
}
.footer-logo span { color: var(--orange); }
.footer-logo-img { height: 30px; width: auto; display: block; }
.footer-logo .nc-logo-svg { height: 28px; }
.footer-copy { font-size: 0.7rem; color: var(--gray-400); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.7rem; color: var(--gray-400); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--black); }

/* ═══ REVEAL ANİMASYONU ════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .72s cubic-bezier(.25,.46,.45,.94), transform .72s cubic-bezier(.25,.46,.45,.94); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .14s; } .d3 { transition-delay: .21s; }

/* ═══ LIQUID GLASS KART — Genel ══════════════════════ */
.liquid-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 8px 32px rgba(0,0,0,0.2);
}

/* ═══ RESPONSIVE ═══════════════════════════════════════ */
@media (max-width: 1400px) {
  :root { --page-pad: 3rem; }
}
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.78) 100%);
  }
}
@media (max-width: 960px) {
  :root { --page-pad: 1.5rem; }
  nav { padding: 1.2rem 0; }
  .nav-links { display: none; }
  .section { padding: 5rem 0; }
  .hero-left { padding: 8rem var(--page-pad) 4rem; }
  .hero-title { font-size: clamp(2.8rem,13vw,5rem); }
  .svc-head, .studio-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card:nth-child(even) { border-right: 1px solid var(--border); }
  .studio-img, .studio-img-ph { display: none; }
  .proc-grid { grid-template-columns: 1fr; gap: 3rem; }
  .proc-sticky { position: static; }
  footer .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-glass-badge { flex-wrap: wrap; bottom: 2rem; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-left: none; border-top: 1px solid var(--border); }
  .svc-card:last-child { border-right: none; }
}
