/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --ink:       #0a0a0a;
  --ink-2:     #111111;
  --ink-3:     #1a1a1a;
  --chalk:     #ffffff;
  --chalk-2:   #a3a3a3;
  --chalk-3:   #9ca3af;
  --red:       #e60000;
  --red-hi:    #ff1a1a;
  --red-fog:   rgba(230,0,0,.08);
  --red-glow:  rgba(230,0,0,.3);

  --f-display: 'Anton', sans-serif;
  --f-body:    'DM Sans', sans-serif;
  --f-mono:    'Space Mono', monospace;

  --ease-expo: cubic-bezier(.19,1,.22,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);

  --skew: -4deg;
  /* py-20 / px-8 equivalents */
  --pad-y: 5rem;
  --pad-x: 2rem;
  --pad:   var(--pad-y);
  --container: 1200px;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; max-width: 100%; scroll-padding-top: 90px; }

/* Accessible, crawlable text (not display:none) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
body {
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}
::selection { background: var(--red); color: #fff; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   NOISE GRAIN
═══════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.045'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9990;
  opacity: .5;
  mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════ */
.js-cursor-dot  { position: fixed; top: 0; left: 0; width: 8px; height: 8px; background: var(--red); border-radius: 50%; pointer-events: none; z-index: 9995; transform: translate(-50%,-50%); }
.js-cursor-ring { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 1px solid rgba(230,0,0,.5); border-radius: 50%; pointer-events: none; z-index: 9994; transform: translate(-50%,-50%); }

/* ═══════════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════════ */
.js-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--red); z-index: 10000;
  transform-origin: left; transform: scaleX(0);
  will-change: transform;
}

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; background: var(--ink);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem; overflow: hidden;
}
.loader-bg-tape {
  position: absolute; width: 250%; height: 60px;
  background: repeating-linear-gradient(-52deg,
    var(--red) 0px, var(--red) 22px,
    #000 22px, #000 44px);
  opacity: .08;
  animation: loaderTapeMove 1s linear infinite;
}
.loader-bg-tape:nth-child(2) { top: 70%; animation-direction: reverse; animation-duration: 1.4s; }
.loader-bg-tape:nth-child(1) { top: 25%; }
@keyframes loaderTapeMove { from { transform: translateX(-30%); } to { transform: translateX(0%); } }

.loader-word {
  font-family: var(--f-display);
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  position: relative; z-index: 1;
  overflow: hidden; line-height: 1;
}
.loader-word span { display: inline-block; transform: translateY(110%); }
.loader-word .accent { color: var(--red); }

.loader-bar-wrap { width: 240px; height: 1px; background: rgba(255,255,255,.08); position: relative; z-index: 1; overflow: hidden; }
.loader-bar-fill { height: 100%; background: var(--red); width: 0%; }
.loader-pct { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .2em; color: var(--chalk-2); position: relative; z-index: 1; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  min-height: 70px;
  height: auto;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .85rem var(--pad-x);
  background: transparent;
  pointer-events: auto;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease, -webkit-backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.is-stuck {
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.06);
}

.nav-brand {
  font-family: var(--f-display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
}
.nav-brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  animation: navPulse 2.4s ease-in-out infinite;
}
@keyframes navPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.7)} }

.nav-brand-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  min-width: 0;
}
.nav-brand-name {
  white-space: nowrap;
  line-height: 1.1;
}
.nav-brand-person {
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .04em;
  text-transform: none;
  color: rgba(255,255,255,.7);
  opacity: .7;
  white-space: nowrap;
  line-height: 1.2;
}
.nav-brand-sep {
  margin-right: .15rem;
  opacity: .55;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.15rem;
  flex-shrink: 0;
  list-style: none;
}
.nav-links > li {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--chalk-2);
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .35s var(--ease-expo);
}
.nav-links a:not(.nav-cta):hover { color: var(--chalk); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta-wrap {
  margin-left: 1.25rem;
}
.nav-cta {
  padding: 9px 22px;
  background: var(--red);
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff !important;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
  transition: transform .2s var(--ease-expo), box-shadow .3s ease-in-out;
}
.nav-cta::after { display: none !important; content: none !important; }
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-101%);
  transition: transform .35s var(--ease-expo);
  pointer-events: none;
}
.nav-cta:hover {
  transform: translateY(-1px);
  color: #fff !important;
  box-shadow: 0 6px 28px rgba(230, 0, 0, 0.6), 0 0 40px rgba(230, 0, 0, 0.35);
}
.nav-cta:hover::before { transform: translateX(0); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--chalk); transition: .3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════════ */
.mobile-nav {
  position: fixed; inset: 0; background: var(--ink-2);
  z-index: 980; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--f-display); font-size: clamp(2.5rem, 8vw, 4rem);
  text-transform: uppercase; color: var(--chalk-2);
  transition: color .25s, transform .3s;
}
.mobile-nav a:hover { color: var(--red); transform: skewX(-4deg); }

/* ═══════════════════════════════════════════
   WARNING TAPE / MARQUEE
═══════════════════════════════════════════ */
.w-tape {
  width: 100%; overflow: hidden; padding: 14px 0;
  background: var(--red); position: relative; z-index: 2;
}
.w-tape.elevated { z-index: 5; }
.w-tape.dark { background: var(--ink-3); }
.w-tape-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  will-change: transform;
  animation: tapeRoll 40s linear infinite;
}
.w-tape.rev .w-tape-track {
  animation-direction: reverse;
  animation-duration: 48s;
}
@keyframes tapeRoll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.w-tape-item {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  padding: 0;
  flex-shrink: 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.w-tape.dark .w-tape-item { color: var(--chalk-2); }
.w-tape-item::after {
  content: '◆';
  opacity: .45;
  font-weight: 400;
  font-size: .7em;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6.5rem var(--pad-x) var(--pad-y);
  overflow: hidden;
  background: var(--ink);
}

#hero-cv {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 0;
  opacity: .55;
}

.hero-gradient {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 65% 40%, rgba(230,0,0,.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10,10,10,.5) 0%, transparent 40%, rgba(10,10,10,.85) 100%);
}

/* Grafiti SVG overlay */
.hero-grafiti {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cpath d='M30 80 Q80 40 140 90 T260 80' stroke='%23e60000' stroke-width='1.8' fill='none' opacity='.05'/%3E%3Cpath d='M80 200 L130 170 L125 220 Z' stroke='%23e60000' stroke-width='1.2' fill='none' opacity='.04'/%3E%3Cpath d='M350 60 Q400 30 460 70 Q510 100 470 130' stroke='%23ffffff' stroke-width='1' fill='none' opacity='.025'/%3E%3Ccircle cx='490' cy='280' r='45' stroke='%23e60000' stroke-width='1' fill='none' opacity='.04'/%3E%3Cpath d='M20 380 Q70 350 120 390 T220 380' stroke='%23ffffff' stroke-width='.8' fill='none' opacity='.02'/%3E%3Cpath d='M400 400 L460 370 L480 420 L430 450 Z' stroke='%23e60000' stroke-width='1' fill='none' opacity='.035'/%3E%3Cpath d='M160 480 Q200 455 250 485 Q300 515 270 540' stroke='%23ffffff' stroke-width='.9' fill='none' opacity='.022'/%3E%3Cpath d='M520 160 L570 140 M530 178 L568 160' stroke='%23e60000' stroke-width='1' fill='none' opacity='.04'/%3E%3C/svg%3E");
  background-size: 600px 600px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 9vw, 8.5rem);
  line-height: 1.08;
  letter-spacing: .01em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: .08em;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}
.hero-title-row {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
  line-height: 1.08;
}
.hero-title-word {
  display: inline-block;
  will-change: transform, opacity;
  transform: translateY(110%);
  opacity: 0;
  line-height: 1.08;
  padding-right: .04em;
}
.hero-title-word.stroke {
  -webkit-text-stroke: 2px var(--chalk);
  color: transparent;
  paint-order: stroke fill;
}
.hero-title-word.red { color: var(--red); }

.hero-bottom {
  margin-top: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  width: 100%;
}
.hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--chalk-2);
  max-width: 440px;
  line-height: 1.75;
  margin: 0;
}
.hero-cta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--red);
  color: #fff;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
  transition: transform .25s var(--ease-expo), box-shadow .3s ease-in-out;
}
.btn-primary span.btn-icon { transition: transform .3s var(--ease-expo); }
.btn-primary:hover {
  transform: skewX(-3deg) translateY(-2px);
  box-shadow: 0 6px 28px rgba(230, 0, 0, 0.6), 0 0 40px rgba(230, 0, 0, 0.35);
}
.btn-primary:hover .btn-icon { transform: translateX(5px); }
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transform: translateX(-100%);
  transition: transform .5s var(--ease-expo);
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--chalk-2);
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
  transition: border-color .3s, color .3s, transform .25s;
}
.btn-ghost:hover { border-color: var(--chalk); color: var(--chalk); transform: translateY(-2px); }

/* scroll indicator */
.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: var(--pad-y);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
}
.hero-scroll-line { width: 1px; height: 72px; background: linear-gradient(180deg, transparent, var(--red)); animation: scrollBeat 2s ease-in-out infinite; }
@keyframes scrollBeat { 0%,100%{transform:scaleY(.3) translateY(-30px);opacity:0} 60%{transform:scaleY(1) translateY(0);opacity:1} }
.hero-scroll-label { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .2em; color: var(--chalk-3); writing-mode: vertical-rl; }

/* ═══════════════════════════════════════════
   WHAT WE DO
═══════════════════════════════════════════ */
.sec-neler {
  background: var(--ink-2);
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}

/* Subtle grafiti bg in neler section */
.sec-neler::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cpath d='M50 100 Q110 60 180 110 T320 100' stroke='%23e60000' stroke-width='1.5' fill='none' opacity='.035'/%3E%3Cpath d='M100 250 L160 210 L155 270 Z' stroke='%23e60000' stroke-width='1' fill='none' opacity='.03'/%3E%3Ccircle cx='400' cy='150' r='55' stroke='%23e60000' stroke-width='1.2' fill='none' opacity='.03'/%3E%3Cpath d='M60 400 Q130 365 200 405 Q270 445 230 480' stroke='%23ffffff' stroke-width='.8' fill='none' opacity='.015'/%3E%3Cpath d='M350 350 L420 320 L440 380 L380 410 Z' stroke='%23e60000' stroke-width='1' fill='none' opacity='.025'/%3E%3C/svg%3E");
  background-size: 500px 500px;
}

.neler-inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.neler-grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(2rem, 5vw, 4rem); }

.neler-col-left { position: sticky; top: 100px; height: fit-content; }

.sec-eyebrow {
  font-family: var(--f-mono); font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem;
}
.sec-eyebrow::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--red); }

.contact-left .sec-eyebrow {
  font-size: 1rem;
  letter-spacing: .28em;
  gap: 14px;
  margin-bottom: 1.4rem;
}
.contact-left .sec-eyebrow::before {
  width: 28px;
}

.sec-h2 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem,4.5vw,4.5rem);
  text-transform: uppercase; line-height: .92;
  letter-spacing: .01em;
}
.sec-h2 .line { display: block; overflow: hidden; }
.sec-h2 .line-inner { display: block; transform: translateY(100%); }
.sec-h2 .red { color: var(--red); }

.neler-col-left .body-text { font-size: .95rem; color: var(--chalk-2); line-height: 1.6; margin-top: 1.5rem; }
.neler-col-left .btn-primary { margin-top: 2.5rem; }

.neler-items { display: flex; flex-direction: column; gap: .35rem; }

.neler-item {
  padding: 2rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.neler-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }

/* Red fill on hover */
.neler-item .item-fill {
  position: absolute; inset: 0;
  background: var(--red-fog);
  transform: translateX(-102%);
  transition: transform .5s var(--ease-expo);
  z-index: 0;
}
.neler-item:hover .item-fill { transform: translateX(0); }
.neler-item > * { position: relative; z-index: 1; }

.item-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(230,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .15rem;
  transition: border-color .35s, background .35s;
}
.item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.neler-item:hover .item-icon {
  border-color: var(--red);
  background: rgba(230,0,0,.08);
}

.item-body h3 {
  font-family: var(--f-display); font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: .65rem;
}
.item-body p { font-size: .88rem; color: var(--chalk-2); line-height: 1.6; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.sec-hizmet {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}

.sec-hizmet-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: 3rem;
}

.hizmet-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  background: transparent;
}

.h-card {
  background: var(--ink-2); padding: 2.85rem 2rem;
  position: relative; overflow: hidden;
  transition: background .4s;
  cursor: default;
}
/* Diagonal red stripe reveal on hover */
.h-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: -60%; width: 50%; height: 3px;
  background: var(--red);
  transform: skewX(-40deg);
  transition: left .45s var(--ease-expo);
}
.h-card:hover { background: var(--ink-3); }
.h-card:hover::before { left: 110%; }

/* Grafiti watermark per card */
.h-card-grafiti {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M20 50 Q60 20 100 55 T180 50' stroke='%23e60000' stroke-width='2' fill='none' opacity='.12'/%3E%3Cpath d='M40 120 L80 90 L75 140 Z' stroke='%23e60000' stroke-width='1.5' fill='none' opacity='.1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  transition: opacity .4s;
}
.h-card:hover .h-card-grafiti { opacity: 1; }

.h-card-icon { width: 40px; height: 40px; margin-bottom: 1.5rem; }
.h-card-icon svg { width: 100%; height: 100%; stroke: var(--red); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.h-card-tag { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--chalk-3); margin-bottom: .6rem; }
.h-card h3 { font-family: var(--f-display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: .75rem; }
.h-card p { font-size: .84rem; color: var(--chalk-2); line-height: 1.6; }
.h-card-arrow {
  position: absolute; top: 2.5rem; right: 2rem;
  opacity: 0; transform: translate(-8px, 8px);
  transition: opacity .3s, transform .3s;
}
.h-card-arrow svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; }
.h-card:hover .h-card-arrow { opacity: 1; transform: translate(0,0); }

/* ═══════════════════════════════════════════
   DIGITAL GROWTH (Sosyal Medya & Reklam)
═══════════════════════════════════════════ */
.sec-growth {
  background: var(--ink-2);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.growth-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}
.growth-header {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.growth-lead {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--chalk-2);
  line-height: 1.6;
  max-width: 34rem;
}

.growth-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.growth-card {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  padding: clamp(2rem, 4vw, 3.25rem);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.growth-card--offset {
  margin-top: 3.5rem;
  min-height: 380px;
}

.growth-card-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(230,0,0,.45) 0%, transparent 55%),
    linear-gradient(160deg, transparent 35%, rgba(230,0,0,.22) 100%);
  opacity: 0;
  transition: opacity .55s var(--ease-expo);
}
.growth-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border: 1px solid transparent;
  transition: border-color .45s var(--ease-expo);
}
.growth-card:hover .growth-card-glow { opacity: 1; }
.growth-card:hover::after { border-color: rgba(230,0,0,.35); }

.growth-card-body {
  position: relative;
  z-index: 1;
  transition: transform .45s var(--ease-expo);
}
.growth-card:hover .growth-card-body {
  transform: translateY(-10px);
}

.growth-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .4s, background .4s;
}
.growth-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.growth-card-icon svg .ig-dot {
  fill: #e60000;
  stroke: none;
}
.growth-card:hover .growth-card-icon {
  border-color: rgba(230,0,0,.5);
  background: rgba(230,0,0,.08);
}

.growth-card-tag {
  display: block;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .85rem;
}
.growth-card h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 1rem;
}
.growth-card p {
  font-size: 1rem;
  color: var(--chalk-2);
  line-height: 1.75;
  max-width: 36rem;
}
.growth-card-points {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
}
.growth-card-points li {
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--chalk-2);
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.1);
  cursor: default;
  transition:
    background .3s ease-in-out,
    color .3s ease-in-out,
    border-color .3s ease-in-out;
}
.growth-card-points li:hover {
  background: #e60000;
  color: #0a0a0a;
  border-color: #e60000;
}

.growth-card-arrow {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(8px, 8px) scale(.85);
  transition: opacity .4s var(--ease-expo), transform .4s var(--ease-expo);
}
.growth-card-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.growth-card:hover .growth-card-arrow {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ═══════════════════════════════════════════
   PLATFORMS
═══════════════════════════════════════════ */
.sec-platform {
  background: var(--ink-2);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}

.platform-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

/* Orbit system */
.platform-vis {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.orbit-root {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
}
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  transform: translate(-50%, -50%);
  will-change: transform;
}
.or-a {
  width: 160px;
  height: 160px;
  animation: orbitSpin 22s linear infinite;
}
.or-b {
  width: 280px;
  height: 280px;
  animation: orbitSpin 34s linear infinite reverse;
}
.or-c {
  width: 400px;
  height: 400px;
  border-style: dashed;
  border-color: rgba(230,0,0,.18);
  animation: orbitSpin 48s linear infinite;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Places satellite on the ring at --start angle */
.orbit-placer {
  position: absolute;
  inset: 0;
  transform: rotate(var(--start, 0deg));
}

/*
  Counter-rotate the whole node so labels stay horizontal (0°).
  Cancels both ring spin AND the placer's --start offset.
*/
.orbit-node {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform-origin: center center;
  will-change: transform;
}
.or-a .orbit-node {
  animation: orbitKeepUpright 22s linear infinite;
}
.or-b .orbit-node {
  animation: orbitKeepUpright 34s linear infinite reverse;
}
.or-c .orbit-node {
  animation: orbitKeepUpright 48s linear infinite;
}
@keyframes orbitKeepUpright {
  from {
    transform: translate(-50%, -50%) rotate(calc(var(--start, 0deg) * -1));
  }
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--start, 0deg) * -1 - 360deg));
  }
}

.orbit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red-glow), 0 0 28px rgba(230,0,0,.25);
  flex-shrink: 0;
}
.orbit-label {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--chalk-2);
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(10,10,10,.85);
  transform: none;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px;
  height: 76px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: .7rem;
  letter-spacing: .1em;
  color: #fff;
  text-transform: uppercase;
  box-shadow: 0 0 70px var(--red-glow);
}

.platform-text .sec-h2 { margin-bottom: 1.5rem; }
.platform-text .body-text { font-size: .95rem; color: var(--chalk-2); line-height: 1.6; margin-bottom: 2rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.p-tag {
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.1);
  font-family: var(--f-mono); font-size: .63rem;
  letter-spacing: .08em; color: var(--chalk-2);
  transition: border-color .3s, color .3s, background .3s;
}
.p-tag:hover { border-color: var(--red); color: var(--chalk); background: var(--red-fog); }

/* ═══════════════════════════════════════════
   TECH STACK
═══════════════════════════════════════════ */
.sec-tech {
  background: var(--ink);
  padding: var(--pad-y) 0;
  position: relative;
  overflow: hidden;
}
.tech-header {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.tech-lead {
  margin-top: 1.15rem;
  max-width: 36rem;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  line-height: 1.6;
  color: var(--chalk-2);
}

.tech-marquee {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tech-row {
  overflow: hidden;
  width: 100%;
}
.tech-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: techRoll 38s linear infinite;
  will-change: transform;
}
.tech-row--rev .tech-track {
  animation-name: techRollRev;
  animation-duration: 44s;
}
.tech-track:hover { animation-play-state: paused; }

@keyframes techRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes techRollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.tech-chip {
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: .7rem 1.25rem;
  border: 1px solid rgba(255,255,255,.08);
  white-space: nowrap;
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, opacity .3s ease;
}
.tech-chip:hover {
  color: #e60000;
  border-color: rgba(230,0,0,.45);
  box-shadow: 0 0 18px rgba(230,0,0,.35);
}

.tech-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  min-height: 118px;
  padding: 1.25rem .75rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.015);
  color: rgba(255,255,255,.38);
  opacity: .72;
  cursor: default;
  transition:
    opacity .3s ease,
    color .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    background .3s ease,
    transform .3s ease;
}
.tech-icon {
  display: flex;
  width: 34px;
  height: 34px;
  color: inherit;
}
.tech-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.tech-name {
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
}
.tech-item:hover {
  opacity: 1;
  color: #e60000;
  border-color: rgba(230,0,0,.55);
  background: rgba(230,0,0,.06);
  box-shadow:
    0 0 0 1px rgba(230,0,0,.15),
    0 0 28px rgba(230,0,0,.35);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════ */
.sec-portfolio {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.portfolio-header {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: 3rem;
}
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  background: transparent;
  justify-content: center;
}

.p-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  border: 1px solid rgba(230,0,0,.55);
  transition: box-shadow .5s var(--ease-expo), border-color .5s var(--ease-expo);
}
.p-item-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity .55s var(--ease-expo),
    transform .7s var(--ease-expo);
  z-index: 0;
}
.p-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.p-item:hover {
  border-color: var(--red);
  box-shadow:
    0 0 12px rgba(230,0,0,.55),
    0 0 28px rgba(230,0,0,.35),
    0 0 48px rgba(230,0,0,.18);
}
.p-item:hover .p-item-bg {
  opacity: 1;
  transform: scale(1.05);
}

.p-item-over {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.25) 10%, rgba(10,10,10,.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  z-index: 1;
  transition: background .5s var(--ease-expo);
}
.p-item:hover .p-item-over {
  background: linear-gradient(180deg, transparent 15%, rgba(10,10,10,.88) 100%);
}
.p-item-tag { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }
.p-item h3 { font-family: var(--f-display); font-size: 1.15rem; text-transform: uppercase; letter-spacing: .02em; margin-bottom: .2rem; }
.p-item p { font-size: .78rem; color: var(--chalk-2); }

.p-item-link {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.7);
  transition: opacity .3s, transform .3s;
  z-index: 2;
}
.p-item-link svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; }
.p-item:hover .p-item-link { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════════
   CLIENTS
═══════════════════════════════════════════ */
.sec-clients {
  background: var(--ink-2);
  padding: var(--pad-y) 0;
  overflow: hidden;
}
.clients-label {
  text-align: center; font-family: var(--f-mono); font-size: .62rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--chalk-3);
  margin-bottom: 2.5rem;
  padding-inline: var(--pad-x);
}
.mq-row { overflow: hidden; padding: 5px 0; }
.mq-row + .mq-row { margin-top: 10px; }
.mq-track { display: flex; gap: 1.25rem; width: max-content; animation: mRoll 36s linear infinite; will-change: transform; }
.mq-row:nth-child(3) .mq-track { animation-direction: reverse; animation-duration: 42s; }
@keyframes mRoll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.mq-track:hover { animation-play-state: paused; }
.mq-chip {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,.07);
  font-family: var(--f-mono); font-size: .68rem;
  letter-spacing: .06em; color: var(--chalk-2); white-space: nowrap;
  transition: border-color .3s, color .3s;
}
.mq-chip:hover { border-color: var(--red); color: var(--chalk); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.sec-contact {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}
.contact-left .sec-h2 { margin-bottom: 1.5rem; }
.contact-left .body-text { font-size: .95rem; color: var(--chalk-2); line-height: 1.6; margin-bottom: 2.5rem; }

.c-dets {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.c-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  background: #111111;
  border: 1px solid rgba(255,255,255,.07);
  transition: border-color .35s, background .35s, box-shadow .35s, transform .35s var(--ease-expo);
}
.c-link:hover {
  border-color: rgba(230,0,0,.45);
  background: #151515;
  box-shadow: 0 0 0 1px rgba(230,0,0,.15), 0 0 24px rgba(230,0,0,.12);
  transform: translateY(-2px);
}
.c-link--static {
  cursor: default;
}
.c-link--static:hover {
  transform: none;
  border-color: rgba(255,255,255,.07);
  background: #111111;
  box-shadow: none;
}
.c-link-ico {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(230,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .35s, border-color .35s;
}
.c-link-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.c-link:hover .c-link-ico {
  background: rgba(230,0,0,.1);
  border-color: var(--red);
}
.c-link-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.c-link-label {
  font-family: var(--f-mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--chalk-3);
}
.c-link-value {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--chalk);
  line-height: 1.2;
  word-break: break-word;
}
.c-link-arrow {
  font-family: var(--f-mono);
  color: var(--red);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s var(--ease-expo);
  flex-shrink: 0;
}
.c-link:hover .c-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* FORM */
.c-form {
  border: 1px solid rgba(255,255,255,.08);
  padding: clamp(1.75rem, 3vw, 3rem);
  background: #0f0f0f;
}
.f-row { margin-bottom: 1.25rem; }
.f-lbl {
  display: block;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--chalk-3);
  margin-bottom: 8px;
}
.f-field {
  width: 100%;
  background: #111111;
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: 2px solid rgba(255,255,255,.18);
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: .95rem;
  color: #ffffff;
  outline: none;
  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}
.f-field::placeholder { color: #777777; }
.f-field:hover {
  border-color: rgba(255,255,255,.22);
}
.f-field:focus {
  background: #141414;
  border-color: rgba(230,0,0,.55);
  border-bottom-color: #e60000;
  box-shadow:
    0 0 0 1px rgba(230,0,0,.35),
    0 0 18px rgba(230,0,0,.28),
    0 0 36px rgba(230,0,0,.12);
}
textarea.f-field { resize: vertical; min-height: 120px; }

.f-consent {
  margin-bottom: 1rem;
  margin-top: .15rem;
}
.f-consent-label {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  cursor: pointer;
  user-select: none;
}
.f-check {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: #111111;
  border: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  position: relative;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.f-check:hover {
  border-color: rgba(230,0,0,.45);
}
.f-check:focus-visible {
  outline: none;
  border-color: #e60000;
  box-shadow:
    0 0 0 1px rgba(230,0,0,.35),
    0 0 14px rgba(230,0,0,.28);
}
.f-check:checked {
  background: var(--red);
  border-color: var(--red);
}
.f-check:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.f-consent-text {
  font-family: var(--f-body);
  font-size: .82rem;
  line-height: 1.65;
  color: var(--chalk-2);
}
.f-consent-text a {
  color: var(--chalk);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(230,0,0,.7);
  transition: color .25s ease, text-decoration-color .25s ease;
}
.f-consent-text a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}

.f-submit {
  width: 100%; padding: 15px;
  background: var(--red); border: none;
  font-family: var(--f-mono); font-size: .72rem;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; cursor: pointer; margin-top: .5rem;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
  transition: transform .2s var(--ease-expo), box-shadow .3s ease-in-out;
}
.f-submit:hover {
  transform: skewX(-3deg);
  box-shadow: 0 6px 28px rgba(230, 0, 0, 0.6), 0 0 40px rgba(230, 0, 0, 0.35);
}
.f-submit::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.1); transform: translateX(-101%);
  transition: transform .4s var(--ease-expo);
}
.f-submit:hover::after { transform: translateX(0); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.04);
  padding: var(--pad-y) var(--pad-x) 2.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 3vw, 3rem);
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-brand-name .red { color: var(--red); }
.footer-brand p {
  font-size: .82rem;
  color: #a3a3a3;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.soc-row { display: flex; gap: .65rem; flex-wrap: wrap; align-items: center; }
.soc-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, background .25s, transform .25s;
  flex-shrink: 0;
}
.soc-link:hover {
  border-color: var(--red);
  background: var(--red-fog);
  transform: translateY(-2px);
}
.soc-link svg {
  width: 18px;
  height: 18px;
  fill: var(--chalk-2);
  display: block;
  flex-shrink: 0;
}
.soc-link:hover svg { fill: #fff; }
.footer-col h3 {
  font-family: var(--f-display);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .82rem; color: #9ca3af; transition: color .25s; line-height: 1.6; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}
.footer-bottom p { font-family: var(--f-mono); font-size: .62rem; color: #9ca3af; line-height: 1.6; }
.footer-bottom a { color: var(--red); }

/* AI / SEO crawlable context — visible in DOM, visually subdued */
.ai-context-block {
  max-width: var(--container);
  margin: 1.25rem auto 0;
  padding: 0 var(--pad-x) 1rem;
}
.ai-context-block p {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: .7rem;
  line-height: 1.65;
  color: var(--chalk-3);
  opacity: .55;
  max-width: 52rem;
}
.ai-faq {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x) 1.5rem;
}
.ai-faq-item {
  margin-bottom: .65rem;
}
.ai-faq-item h3 {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  color: var(--chalk-3);
  opacity: .5;
  margin-bottom: .2rem;
}
.ai-faq-item p {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: .65rem;
  line-height: 1.6;
  color: var(--chalk-3);
  opacity: .45;
  max-width: 48rem;
}

/* ═══════════════════════════════════════════
   WHATSAPP
═══════════════════════════════════════════ */
.wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.35);
  transition: transform .3s var(--ease-expo), box-shadow .3s;
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,.5);
}
.wa-btn svg {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  fill: #fff;
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25d366;
  z-index: 0;
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .65; }
  70%  { transform: scale(1.75); opacity: 0; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ═══════════════════════════════════════════
   SECTION INTRO STRIPS (JS hooks)
═══════════════════════════════════════════ */
.reveal-strip {
  position: absolute; inset: 0; z-index: 20; pointer-events: none;
  background: var(--red); transform: scaleX(0); transform-origin: left;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hizmet-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .growth-grid { grid-template-columns: 1fr 1fr; }
  .growth-card--offset { margin-top: 0; }

  .nav-links { gap: 1.5rem; }
  .nav-cta-wrap { margin-left: 1rem; }
  .nav-brand-text {
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
  }
  .nav-brand-sep { display: none; }
  .nav-brand-person {
    font-size: .65rem;
    opacity: .65;
  }
  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  :root {
    --pad-y: 4rem;
    --pad-x: 1.5rem;
  }
  .neler-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .neler-col-left { position: static; }
  .platform-inner { grid-template-columns: 1fr; }
  .platform-vis { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sec-hizmet-header { flex-direction: column; align-items: flex-start; }
  .neler-item {
    padding: 1.75rem 1rem;
    gap: 1rem;
  }
  .item-icon {
    width: 42px;
    height: 42px;
  }
  .growth-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .growth-card,
  .growth-card--offset {
    margin-top: 0;
    min-height: 0;
  }
}
@media (max-width: 768px) {
  :root {
    --pad-y: 3.5rem;
    --pad-x: 1.25rem;
  }

  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    min-height: 100svh;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }
  .hero-content {
    padding-right: 0;
  }
  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.75rem);
    line-height: 1.12;
    gap: .12em;
  }
  .hero-title-row {
    padding-bottom: .08em;
  }
  .hero-title-word.stroke {
    -webkit-text-stroke-width: 1.5px;
  }
  .hero-scroll { display: none; }

  .hero-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    margin-top: 1.75rem;
  }
  .hero-desc {
    max-width: 100%;
    font-size: .95rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 1rem; /* gap-4 */
  }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost {
    width: 100%;
    padding-inline: 1.25rem;
  }
  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }

  .sec-h2 {
    font-size: clamp(1.85rem, 8vw, 2.75rem);
    line-height: 1.05;
  }
  .growth-card h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }
  .c-link-value { font-size: 1rem; }
  .item-body h3 { font-size: 1.15rem; }
  .h-card h3 { font-size: 1.05rem; }
  .h-card { padding: 1.75rem 1.35rem; }
  .p-item-over { padding: 1.35rem; }
  .p-item h3 { font-size: 1rem; }

  section[class^="sec-"],
  .site-footer,
  .hero {
    overflow-x: hidden;
  }

  .port-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .neler-grid,
  .hizmet-grid,
  .growth-grid,
  .platform-inner,
  .contact-inner,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .growth-card,
  .growth-card--offset {
    margin-top: 0;
    min-height: 0;
  }

  .platform-vis { display: none; }
  .sec-hizmet-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .neler-item {
    padding: 1.5rem .85rem;
    gap: .9rem;
  }
  .item-body p,
  .h-card p,
  .body-text {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .c-form { padding: 1.5rem 1.15rem; }
  .c-link { padding: 1rem .95rem; }
  .c-link-value { overflow-wrap: anywhere; }

  .mq-chip { max-width: 80vw; overflow: hidden; text-overflow: ellipsis; }

  .wa-btn {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
    z-index: 9999;
  }

  .w-tape-track { gap: 2.25rem; }
  .w-tape-item { gap: 2.25rem; font-size: .9rem; }

  .tech-marquee {
    margin-bottom: 1.5rem;
  }
  .tech-track {
    animation-duration: 52s;
    gap: .75rem;
  }
  .tech-row--rev .tech-track {
    animation-duration: 58s;
  }
  .tech-chip {
    font-size: .62rem;
    padding: .55rem 1rem;
    letter-spacing: .12em;
  }
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
  }
  .tech-item {
    min-height: 100px;
    padding: 1rem .5rem;
  }
  .tech-icon {
    width: 28px;
    height: 28px;
  }

  .footer-brand p,
  .footer-col a {
    overflow-wrap: anywhere;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.1rem, 12.5vw, 2.85rem);
    line-height: 1.14;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .orbit-ring,
  .orbit-node,
  .wa-pulse,
  .tech-track { animation: none !important; }
  .orbit-node {
    transform: translate(-50%, -50%) rotate(calc(var(--start, 0deg) * -1));
  }
}

/* ═══════════════════════════════════════════
   PORTFOLIO PAGE — blog layout (theme tokens)
═══════════════════════════════════════════ */
.page-portfolio .hero,
.page-portfolio .sec-neler,
.page-portfolio .sec-hizmet,
.page-portfolio .sec-contact,
.page-portfolio .sec-portfolio {
  background-image: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 52%, var(--ink) 100%);
  transition: background-image 1.1s var(--ease-expo), background-color .8s var(--ease-expo);
}
.page-portfolio .sec-neler,
.page-portfolio .sec-contact {
  background-image: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 58%, var(--ink-2) 100%);
}

.page-portfolio .pf-cert {
  width: 100%;
  max-width: var(--container);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.page-portfolio .pf-cert + .pf-cert {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.page-portfolio .pf-cert-media {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.page-portfolio .pf-cert-media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  opacity: 1;
  visibility: visible;
  object-fit: contain;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.08);
}
.page-portfolio .pf-cert-copy h3 {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: .35rem 0 1.1rem;
}
.page-portfolio .pf-cert-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--chalk-2);
  margin-bottom: 1.05rem;
}
.page-portfolio .pf-cert-copy p:last-child { margin-bottom: 0; }

.page-portfolio #linkedin .c-link-ico svg {
  fill: var(--red);
  stroke: none;
}
.page-portfolio .item-body p {
  line-height: 1.8;
}

@media (max-width: 860px) {
  .page-portfolio .pf-cert {
    grid-template-columns: 1fr;
    margin-top: 2.25rem;
  }
  .page-portfolio .pf-cert-media img {
    max-width: 100%;
  }
}
