:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --fg: #f4f4f4;
  --muted: #8d8d8d;
  --accent: #BAF500;
  --accent-ink: #050505;
  --line: rgba(255,255,255,.1);
  --header-bg: transparent;
  --header-sticky: rgba(5,5,5,.86);
  --footer-bg: #050505;
  --serif: "Syne", sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
  --h1: clamp(2.6rem, 7vw, 6.4rem);
  --h2: clamp(2rem, 4.4vw, 3.6rem);
  --h3: 1.8rem;
  --body-size: 16px;
  --small: 13px;
  --nav-size: 13px;
  --btn-size: 13px;
  --h1-mobile: clamp(2.1rem, 12vw, 3.2rem);
  --h2-mobile: clamp(1.6rem, 8vw, 2.4rem);
  --wrap: 1280px;
  --section-pad: 44px;
  --section-pad-m: 28px;
  --btn-radius: 0px;
  --btn-pad-x: 22px;
  --btn-border: 1px solid #BAF500;
  --anim-ms: 800ms;
  --anim-ease: ease;
  --reveal-shift: 24px;
  --logo-header: 54px;
  --logo-footer: 84px;
  --logo-mobile: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.kurgu-body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: var(--body-size);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 {
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0 0 .4em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}
h1 { font-size: var(--h1); font-weight: 800; }
h2 { font-size: var(--h2); font-weight: 700; }
h3 { font-size: var(--h3); font-weight: 600; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; color: #000; padding: 8px 12px; z-index: 99; }

.kurgu-logo,
.footer-logo,
.logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: var(--logo-header);
  max-height: 4.5rem;
  object-fit: contain;
  object-position: left center;
}
.kurgu-logo--footer,
.footer-logo {
  max-width: var(--logo-footer);
  max-height: 6rem;
  margin-bottom: 16px;
}
.kurgu-logo--mobile { max-width: var(--logo-mobile); max-height: 3.5rem; }
.kurgu-logo--crm { max-width: 72px; max-height: 72px; margin-bottom: 24px; }
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 180px;
}
.logo-mobile { display: none; }
@media (max-width: 768px) {
  .logo.has-mobile .logo-desktop { display: none; }
  .logo.has-mobile .logo-mobile { display: block; }
  .logo.has-mobile .kurgu-logo--mobile,
  .logo.has-mobile .logo-mobile img {
    max-width: var(--logo-mobile);
    max-height: 3.5rem;
  }
  .kurgu-logo--header {
    max-width: var(--logo-mobile);
    max-height: 3.5rem;
  }
}

.site-header {
  position: relative; top: 0; z-index: 40;
  background: var(--header-bg);
  transition: background .35s var(--anim-ease), backdrop-filter .35s var(--anim-ease), border-color .35s var(--anim-ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-sticky { position: sticky; }
.site-header.is-on {
  background: var(--header-sticky);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.site-header.is-on .logo img,
.site-header.is-on .kurgu-logo {
  max-width: calc(var(--logo-header) * .92);
  transition: max-width .35s var(--anim-ease);
}
.header-inner {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  min-height: 84px;
}
.nav {
  margin-left: auto;
  margin-right: 8px;
}
.nav-list {
  display: flex; gap: 22px; list-style: none; margin: 0; padding: 0;
  font-size: var(--nav-size); letter-spacing: .08em; text-transform: uppercase;
}
.nav-list a {
  color: inherit;
  text-decoration: none;
  opacity: .82;
  transition: opacity .2s ease;
}
.nav-list a:hover,
.nav-list .current-menu-item > a {
  opacity: 1;
}
.header-end { display: flex; align-items: center; gap: 16px; margin-left: 0; flex-shrink: 0; }
.page-hero .breadcrumb {
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted, #8d8d8d);
  margin: 0 0 14px;
}
.page-hero .breadcrumb a {
  color: inherit;
  text-decoration: none;
  opacity: .85;
}
.page-hero .breadcrumb a:hover { opacity: 1; }
.prose .lead { font-size: 1.15rem; line-height: 1.55; max-width: 42rem; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.2em; font-size: 1.05rem; }
.menu-btn { display: none; background: none; border: 0; width: 32px; height: 22px; padding: 0; cursor: pointer; }
.menu-btn span { display: block; height: 1px; background: var(--fg); margin: 7px 0; }

.btn,
a.btn,
.site-header .btn,
.site-footer .btn,
.header-end .btn,
.elementor a.btn,
.elementor .btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 var(--btn-pad-x);
  border: var(--btn-border, 1px solid #BAF500);
  color: #050505 !important;
  background: #BAF500 !important;
  font-family: var(--sans);
  font-size: var(--btn-size); letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--btn-radius);
  transition: transform .25s var(--anim-ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover,
a.btn:hover,
.site-header .btn:hover,
.site-footer .btn:hover,
.header-end .btn:hover,
.elementor a.btn:hover,
.elementor .btn:hover {
  background: transparent !important;
  color: #BAF500 !important;
  border-color: #BAF500;
}
.btn-small { min-height: 38px; padding: 0 14px; font-size: 11px; }
.btn-ghost,
a.btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.55);
}
.btn-ghost:hover,
a.btn-ghost:hover {
  background: #BAF500 !important;
  color: #050505 !important;
  border-color: #BAF500;
}

.k-section { position: relative; isolation: isolate; }
.k-section-video,
.k-section-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.k-section-overlay { background: #000; }
.k-section-inner, .k-section > .section-head, .k-section > .intro-grid, .k-section > .stats, .k-section > .cap-grid,
.k-section > .project-grid, .k-section > .service-list, .k-section > .quotes, .k-section > .brand-row, .k-section > .blog-grid, .k-section > .cta-inner {
  position: relative; z-index: 1;
}
.k-section--full { width: 100%; }
.k-section--wide .k-section-inner { width: min(1440px, calc(100% - 48px)); margin-inline: auto; }
.k-section--narrow .k-section-inner { width: min(860px, calc(100% - 48px)); margin-inline: auto; }
.is-align-center { text-align: center; }
.is-align-right { text-align: right; }

.hero { position: relative; min-height: 100svh; overflow: hidden; background-color: #000; padding: 0; }
.hero-shell, .hero-track { min-height: inherit; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--anim-ease), transform 1.2s var(--anim-ease); }
.hero-slide.is-active { opacity: 1; position: relative; min-height: 100svh; }
.hero-slide[data-anim="zoom"].is-active .hero-visual { animation: hero-zoom 8s var(--anim-ease) both; }
.hero-slide[data-anim="slide"].is-active { animation: hero-slide-in .9s var(--anim-ease) both; }
.hero-slide[data-anim="clip"].is-active .hero-visual { animation: hero-clip 1.1s var(--anim-ease) both; }
.hero-slide.is-active .hero-line { animation: hero-line-in .7s var(--anim-ease) both; }
.hero-slide.is-active .hero-line:nth-child(1) { animation-delay: .05s; }
.hero-slide.is-active .hero-line:nth-child(2) { animation-delay: .12s; }
.hero-slide.is-active .hero-line:nth-child(3) { animation-delay: .2s; }
.hero-slide.is-active .hero-actions .hero-line { animation-delay: .28s; }
.hero-visual { position: absolute; inset: 0; min-height: 100svh; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: var(--hero-pos, center center); background-repeat: no-repeat; }
.hero-bg-mobile { display: none; }
.hero-bg-fallback { background: #0a0a0a; }
.hero-media { width: 100%; height: 100svh; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: #000; }
.hero-copy { position: absolute; left: 0; right: 0; bottom: 14vh; z-index: 2; max-width: min(var(--wrap), calc(100% - 48px)); }
.hero-slide.is-valign-top .hero-copy { top: 18vh; bottom: auto; }
.hero-slide.is-valign-center .hero-copy { top: 50%; bottom: auto; transform: translateY(-50%); }
.hero-copy h1, .hero-copy .lede { max-width: 18ch; }
.hero-slide.is-align-center .hero-copy { text-align: center; margin-inline: auto; }
.hero-slide.is-align-center .hero-copy h1, .hero-slide.is-align-center .lede { margin-inline: auto; }
.hero-slide.is-align-right .hero-copy { text-align: right; margin-left: auto; }
.lede { max-width: 36rem; font-size: 1.15rem; color: #d7d7d7; }
.eyebrow { letter-spacing: .22em; text-transform: uppercase; font-size: 12px; color: var(--muted); margin: 0 0 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-nav { position: absolute; left: 0; right: 0; bottom: 28px; z-index: 3; display: flex; align-items: center; gap: 16px; }
.hero-nav button { background: none; border: 0; color: #fff; font-size: 20px; cursor: pointer; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 28px; height: 2px; background: #444; border: 0; padding: 0; cursor: pointer; }
.hero-dots button.is-on { background: #fff; }
.hero-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.12); z-index: 4; }
.hero-progress span { display: block; height: 100%; width: 0; background: #fff; transform-origin: left center; }
@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes hero-slide-in { from { opacity: 0; transform: translateX(4%); } to { opacity: 1; transform: none; } }
@keyframes hero-clip { from { clip-path: inset(0 12% 0 12%); } to { clip-path: inset(0 0 0 0); } }
@keyframes hero-line-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (max-width: 767px) {
  .hero-bg-mobile { display: block; }
  .hero-bg-desktop { display: none; }
  .hero-bg { background-position: var(--hero-pos-m, var(--hero-pos, center center)); }
}

.intro, .stats-section, .section { padding: var(--section-pad) 0; }
.intro-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 32px; align-items: start; }
.intro-grid h2, .intro-grid p, .project-meta p, .service-row p, .quote-card p, .section-lead {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 32px; }
.stat strong { display: block; font-family: var(--serif); font-size: 2.4rem; overflow-wrap: normal; word-break: normal; color: #BAF500; }
.stat span { color: var(--muted); font-size: var(--small); letter-spacing: .08em; text-transform: uppercase; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: ticker 28s linear infinite; font-family: var(--serif); font-size: 1.4rem; letter-spacing: -.03em; }
.marquee-track span::after { content: " / "; color: #333; }

.section-head { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 18px; align-items: end; }
.section-head--analiz {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.kurgu-live-analiz {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  background: #BAF500;
  color: #050505;
  font: 700 clamp(0.78rem, 1.6vw, 0.95rem)/1 Syne, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 18px;
  box-shadow: 0 0 0 0 rgba(186, 245, 0, 0.55);
  animation: kurgu-live-glow 1.8s ease-out infinite;
  white-space: nowrap;
}
.kurgu-live-analiz:hover { filter: brightness(1.05); transform: translateY(-1px); }
.kurgu-live-analiz--nav {
  padding: 10px 12px;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  gap: 8px;
  flex-shrink: 0;
}
.kurgu-live-analiz--nav .kurgu-live-analiz__dot {
  width: 6px;
  height: 6px;
}
@media (min-width: 769px) {
  .site-header .nav {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}
.kurgu-live-analiz__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 0 0 0 rgba(5,5,5,.35);
  animation: kurgu-live-dot 1.4s ease-out infinite;
  flex-shrink: 0;
}
.kurgu-live-analiz__pulse {
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(186, 245, 0, 0.7);
  pointer-events: none;
  animation: kurgu-live-ring 1.8s ease-out infinite;
}
@keyframes kurgu-live-glow {
  0% { box-shadow: 0 0 0 0 rgba(186, 245, 0, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(186, 245, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(186, 245, 0, 0); }
}
@keyframes kurgu-live-ring {
  0% { opacity: .9; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}
@keyframes kurgu-live-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(0.85); }
}
@media (max-width: 720px) {
  .section-head--analiz { grid-template-columns: 1fr; justify-items: start; }
  .kurgu-live-analiz:not(.kurgu-live-analiz--nav) { width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
  .site-header .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .kurgu-live-analiz--nav {
    width: 100%;
    justify-content: center;
    font-size: 0.78rem;
    padding: 12px 14px;
  }
}
.text-link { align-self: end; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; border-bottom: 1px solid var(--fg); }

.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap-card { padding: 28px; border: 1px solid var(--line); background: var(--bg-2); min-height: 240px; }
.cap-card h3 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cap-card span { color: var(--muted); font-size: 12px; letter-spacing: .18em; }
.cap-card ul { margin: 16px 0 0; padding: 0; list-style: none; color: var(--muted); }
.cap-card li + li { margin-top: 6px; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.project-card { display: block; min-width: 0; }
.project-media { overflow: hidden; background: #161616; aspect-ratio: 4/5; }
.project-media img, .ph { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: transform .8s var(--anim-ease), filter .8s var(--anim-ease); }
.ph { background: #141414; min-height: 280px; }
.project-card:hover img { transform: scale(1.06); filter: grayscale(0); }
.project-meta { padding: 16px 0 8px; }
.project-brand-logo {
  display: block; width: auto; height: auto; max-height: 28px; max-width: 140px;
  object-fit: contain; filter: brightness(0) invert(1); margin: 0 0 10px;
}
.project-meta span { color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.project-meta h3 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.project-meta p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; color: var(--muted); }
.project-gallery { display: grid; gap: 16px; padding-bottom: 64px; }
.project-gallery img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 16/10; filter: grayscale(1); }

.service-list { display: grid; }
.service-row { display: grid; grid-template-columns: 70px 1fr 1.2fr auto; gap: 24px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line); min-width: 0; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row h3 { margin: 0; font-size: 1.8rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-row p, .service-row em { color: var(--muted); }
.service-row p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-row:hover h3 { transform: translateX(6px); transition: transform .3s var(--anim-ease); }

.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quote-card { margin: 0; padding: 28px; border: 1px solid var(--line); background: var(--bg-2); min-width: 0; }
.quote-card p { font-size: 1.05rem; display: -webkit-box; -webkit-line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; }
.quote-card footer { margin-top: 20px; color: var(--muted); display: grid; gap: 4px; }
.quote-photo { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.stars { color: var(--fg); letter-spacing: 3px; }

.brand-row { display: flex; flex-wrap: wrap; gap: 20px; padding-bottom: 32px; }
.brand-item {
  border: 1px solid var(--line); min-width: 300px; min-height: 156px;
  display: grid; place-items: center; padding: 30px 36px;
  color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-size: 12px;
  text-decoration: none; background: rgba(255,255,255,.02);
}
.brand-item img {
  width: auto; height: auto; max-width: 280px; max-height: 110px;
  object-fit: contain; display: block;
  filter: brightness(0) invert(1);
}
.brand-item.has-logo {
  letter-spacing: 0; text-transform: none; background: transparent;
  border-color: rgba(255,255,255,.08);
}
.brand-item.is-text span {
  opacity: .55;
}
.brand-marquee {
  overflow: hidden; width: 100%; padding: 10px 0 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brand-track {
  display: flex; align-items: center; gap: 24px; width: max-content;
  animation: kurgu-brand-ticker var(--brand-speed, 32s) linear infinite;
}
.brand-marquee.is-pause-hover:hover .brand-track { animation-play-state: paused; }
@keyframes kurgu-brand-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { min-width: 0; color: inherit; }
.blog-card span { color: var(--muted); font-size: 12px; display: block; margin: 12px 0 8px; letter-spacing: .06em; text-transform: uppercase; }
.blog-card h3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; font-size: 1.25rem; }
.blog-card p { color: var(--muted); margin: 8px 0 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; font-size: .95rem; }
.blog-card img, .blog-card .ph { aspect-ratio: 16/10; width: 100%; object-fit: cover; filter: none; background: #111; }
.blog-card:hover img { filter: none; }
.blog-single { max-width: 760px; padding-bottom: 80px; }
.blog-single .blog-hero-media { margin: 28px 0 36px; }
.blog-single .blog-hero-media img { width: 100%; height: auto; object-fit: cover; filter: none; }
.blog-single .blog-meta { color: var(--muted); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.blog-single .blog-cta {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line);
  display: grid; gap: 12px;
}
.blog-single .blog-cta .btn { justify-self: start; }

.cta { padding: var(--section-pad) 0; background: #000; border-top: 1px solid var(--line); }
.cta-inner { max-width: 720px; margin-inline: auto; width: min(var(--wrap), calc(100% - 48px)); }

.site-footer {
  border-top: 1px solid var(--line); padding: 48px 0 24px;
  background-color: var(--footer-bg);
  background-size: cover; background-position: center;
}
.site-footer.has-bg { position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; color: var(--muted); }
.footer-grid h2 { font-size: 1.1rem; color: var(--fg); }
.footer-grid p { overflow-wrap: break-word; word-break: normal; }
.social, .footer-menu { list-style: none; padding: 0; margin: 0 0 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.page-hero { padding: 140px 0 40px; }
.prose { max-width: 720px; padding-bottom: 80px; color: #d2d2d2; overflow-wrap: break-word; word-break: normal; }
.prose img { margin: 24px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; padding-bottom: 80px; }
.kurgu-form { display: grid; gap: 14px; }
.kurgu-form label { display: grid; gap: 6px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.kurgu-form input, .kurgu-form textarea {
  background: transparent; color: #fff; border: 0; border-bottom: 1px solid var(--line);
  padding: 12px 0; font: inherit;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.filters button { background: transparent; color: #fff; border: 1px solid var(--line); padding: 8px 12px; }
.filters .is-on { background: #fff; color: #000; }
.detail-media { margin-bottom: 40px; }
.detail-media img { width: 100%; max-height: 72vh; object-fit: cover; filter: grayscale(1); }
.crm-gate { min-height: 70vh; padding: 140px 0; max-width: 640px; }
.kurgu-form-ok { color: #cfcfcf; }
.kurgu-form-err { color: #ffb4b4; }
.kurgu-empty { color: var(--muted); padding: 24px 0 80px; }

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-shift)) scale(.985);
  filter: blur(2px);
  animation: none;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity calc(var(--anim-ms) + 200ms) var(--anim-ease),
    transform calc(var(--anim-ms) + 200ms) var(--anim-ease),
    filter calc(var(--anim-ms) + 200ms) var(--anim-ease);
  transition-delay: var(--stagger, 0ms);
}
.project-card .project-media,
.blog-card img,
.service-row {
  transition: transform .7s var(--anim-ease), opacity .7s var(--anim-ease), filter .7s var(--anim-ease);
}
.project-card:hover .project-media,
.blog-card:hover img {
  transform: scale(1.04);
}
.project-media img {
  transition: transform 1.1s var(--anim-ease);
}
.project-card:hover .project-media img {
  transform: scale(1.06);
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

@media (max-width: 1024px) {
  .intro-grid, .cap-grid, .project-grid, .brand-logo-grid, .quotes, .blog-grid, .footer-grid, .contact-grid, .service-row, .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-row p, .service-row em { grid-column: 2; }
}
@media (max-width: 768px) {
  h1 { font-size: var(--h1-mobile); }
  h2 { font-size: var(--h2-mobile); }
  .nav { display: none; position: absolute; inset: 84px 0 auto 0; background: var(--bg); padding: 24px; border-bottom: 1px solid var(--line); }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; }
  .menu-btn { display: block; }
  .header-phone { display: none; }
  .intro-grid, .cap-grid, .project-grid, .brand-logo-grid, .quotes, .blog-grid, .footer-grid, .contact-grid, .stats, .service-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-copy {
    bottom: max(12vh, 72px);
    left: 0;
    right: 0;
    max-width: min(100%, calc(100vw - 32px));
    width: min(var(--wrap), calc(100% - 32px));
    padding-inline: 0;
    box-sizing: border-box;
  }
  .hero-copy h1,
  .hero-copy .lede {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }
  .hero-actions .btn {
    max-width: 100%;
  }
  .intro, .stats-section, .section, .cta { padding: var(--pad-top-m, var(--section-pad-m)) 0 var(--pad-bottom-m, var(--section-pad-m)); }
  .section-head { grid-template-columns: 1fr; }
  .btn { white-space: normal; text-align: center; }
  .wrap { width: min(var(--wrap), calc(100% - 32px)); }
  .brand-item {
    min-width: min(220px, 70vw);
    min-height: 88px;
    padding: 14px 16px;
  }
  .brand-item img {
    max-width: min(180px, 54vw);
    max-height: 56px;
  }
  .brand-marquee {
    padding: 6px 0 10px;
  }
  .ksp-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .kurgu-selected-projects {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 28px 0 32px !important;
  }
  .kurgu-selected-projects .ksp-image {
    height: auto !important;
    aspect-ratio: 3 / 2 !important;
    min-height: 0 !important;
    max-height: none !important;
  }
  .kurgu-selected-projects .ksp-image img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* Brand logo grid on /projeler/ */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 80px;
}
.brand-logo-card {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 36px 28px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  text-decoration: none;
  color: inherit;
  transition: border-color .35s var(--anim-ease), background .35s var(--anim-ease), transform .35s var(--anim-ease);
}
.brand-logo-card:hover {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  transform: translateY(-2px);
}
.brand-logo-card img {
  width: auto;
  height: auto;
  max-width: min(220px, 70%);
  max-height: 88px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand-logo-card span {
  display: none;
}
@media (max-width: 768px) {
  .brand-logo-card {
    min-height: 160px;
    padding: 28px 20px;
  }
  .brand-logo-card img {
    max-width: min(180px, 62%);
    max-height: 64px;
  }
  .blog-card img,
  .blog-media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .blog-card h3,
  .blog-card .blog-title {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .brand-track, .hero-slide, .project-media img, .reveal, .reveal.is-in { animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important; }
  .brand-track { flex-wrap: wrap; width: 100%; }
  .brand-marquee { -webkit-mask-image: none; mask-image: none; }
  .kurgu-fab__pulse { animation: none !important; display: none; }
}

/* —— Sticky WhatsApp FAB —— */
.kurgu-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  pointer-events: auto;
}
.kurgu-fab__wa,
.kurgu-fab__ig {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .25s var(--anim-ease);
}
.kurgu-fab__wa {
  background: #BAF500;
  color: #050505;
}
.kurgu-fab__ig {
  background: #111;
  color: #f4f4f4;
  border: 1px solid var(--line);
}
.kurgu-fab__wa:hover,
.kurgu-fab__ig:hover { transform: scale(1.06); }
.kurgu-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(186, 245, 0, .55);
  animation: kurgu-pulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes kurgu-pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* —— Analysis popup —— */
.kurgu-analysis[hidden]:not(.is-open) { display: none !important; }
.kurgu-analysis.is-open {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.kurgu-analysis {
  position: fixed;
  inset: 0;
  z-index: 99999;
  place-items: center;
  padding: 24px;
}
.kurgu-analysis__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.kurgu-analysis__panel {
  position: relative;
  width: min(440px, 100%);
  background: #0c0c0c;
  border: 1px solid var(--line);
  padding: 28px 24px 24px;
  z-index: 1;
}
.kurgu-analysis__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.kurgu-analysis__lead { color: var(--muted); margin: 8px 0 20px; }
.kurgu-analysis__panel h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.kurgu-analysis__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.kurgu-analysis__form { margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--line); }
html.kurgu-analysis-open { overflow: hidden; }

/* —— Mini brief —— */
.kurgu-brief__progress {
  height: 2px;
  background: var(--line);
  margin-bottom: 12px;
}
.kurgu-brief__progress span {
  display: block;
  height: 100%;
  width: 25%;
  background: #BAF500;
  transition: width .35s var(--anim-ease);
}
.kurgu-brief__step-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kurgu-brief__q { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 16px; }
.kurgu-brief__cards { display: grid; gap: 10px; }
.kurgu-brief__card {
  text-align: left;
  background: var(--bg-2);
  color: #fff;
  border: 1px solid var(--line);
  padding: 16px 18px;
  font: inherit;
  cursor: pointer;
  transition: border-color .25s, transform .25s var(--anim-ease);
}
.kurgu-brief__card:hover,
.kurgu-brief__card.is-on {
  border-color: #BAF500;
  transform: translateY(-1px);
}
.kurgu-brief__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.kurgu-brief__back { margin-top: 16px; justify-self: start; }

/* —— Cap cards / micro —— */
a.cap-card {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: transform .35s var(--anim-ease), box-shadow .35s var(--anim-ease), border-color .35s;
}
a.cap-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.22);
}
.cap-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-style: normal;
  color: #BAF500;
  transition: transform .3s var(--anim-ease);
}
a.cap-card:hover .cap-card__arrow { transform: translateX(4px); }

.project-card { position: relative; }
.project-card .project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .4s var(--anim-ease);
  pointer-events: none;
}
.project-card:hover .project-media::after { background: rgba(0,0,0,.28); }
.project-card .project-meta h3 { transition: color .3s; }
.project-card:hover .project-meta h3 { color: #BAF500; }

.section-cta-row { margin-top: 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.quote-case { display: inline-block; margin-top: 10px; font-size: 13px; }

.kurgu-faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.kurgu-faq__item { border-bottom: 1px solid var(--line); }
.kurgu-faq__item summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  list-style: none;
}
.kurgu-faq__item summary::-webkit-details-marker { display: none; }
.kurgu-faq__a { padding: 0 0 20px; color: var(--muted); max-width: 42rem; }

.kurgu-process { margin: 0; padding-left: 1.2rem; color: #d2d2d2; }
.kurgu-process li + li { margin-top: 10px; }
.kurgu-service-block { padding-bottom: 48px; }
.kurgu-service-cta { padding-bottom: 80px; }
.kurgu-tools { color: var(--muted); }
.case-blocks { display: grid; gap: 28px; padding-bottom: 40px; max-width: 720px; }
.case-block h2 { font-size: 1.25rem; margin-bottom: 8px; }
.case-block p { color: #d2d2d2; }
.case-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; padding-bottom: 80px; }
.blog-related-service {
  margin: 32px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.blog-cta { display: grid; gap: 14px; margin: 40px 0 80px; }
.blog-cta__lead { color: var(--muted); }
.breadcrumb { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); }

.kurgu-services .kurgu-service.is-linked { cursor: pointer; }
.kurgu-services .kurgu-service.is-linked:hover {
  background: rgba(255,255,255,.03);
}
.kurgu-services .kurgu-service.is-linked:hover .service-arrow {
  transform: translateX(6px);
  color: #BAF500;
}
.kurgu-services .service-arrow {
  transition: transform .3s var(--anim-ease), color .3s;
}
.kurgu-services .section-cta-row {
  width: min(1400px, calc(100% - 80px));
  margin: 36px auto 0;
}
@media (max-width: 768px) {
  .kurgu-services .section-cta-row { width: min(100%, calc(100% - 40px)); }
}

