/* ===== LOCAL FONTS ===== */
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-Thin.ttf') format('truetype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-ThinItalic.ttf') format('truetype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-ExtraLightItalic.ttf') format('truetype'); font-weight: 200; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-SemiBoldItalic.ttf') format('truetype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-ExtraBoldItalic.ttf') format('truetype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('Poppins13/Poppins-BlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #fc4b58;
  --navy: #08223b;
  --bg: #0a0a0f;
  --bg2: #0f0f18;
  --bg3: #13131e;
  --text: #e8e8f0;
  --muted: #888899;
  --border: rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

.label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

nav.solid {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 48px; }

.nav-links {
  display: flex;
  gap: 56px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover { background: #e03a46; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* ===== PAGE HERO (iç sayfalar) ===== */
.page-hero {
  padding: 180px 0 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(252,75,88,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-line {
  width: 48px; height: 2px;
  background: var(--red);
  margin-bottom: 18px;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.page-hero h1 em {
  font-family: 'Raleway', serif;
  font-style: italic;
  color: var(--red);
}

.page-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.85;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.breadcrumb a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== HERO (ana sayfa) ===== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap { position: absolute; inset: 0; z-index: 0; }

.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,34,59,0.45) 0%,
    rgba(10,10,15,0.35) 50%,
    rgba(252,75,88,0.08) 100%
  );
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background-image: url('../asset/hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.60;
  transition: opacity 0.5s ease;
}

.hero-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,15,0.55) 0%,
    rgba(10,10,15,0.20) 50%,
    rgba(10,10,15,0.65) 100%
  );
}

#hero:hover .hero-fallback { opacity: 0.72; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--red);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 28px;
}

.hero-title em {
  font-family: 'Raleway', serif;
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(13px, 1.5vw, 16px);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

.hero-vision {
  font-family: 'Raleway', serif;
  font-style: italic;
  font-size: clamp(12px, 1.2vw, 14px);
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim-d0 { animation-delay: 0.1s; }
.hero-anim-d1 { animation-delay: 0.3s; }
.hero-anim-d2 { animation-delay: 0.5s; }
.hero-anim-d3 { animation-delay: 0.65s; }
.hero-anim-d4 { animation-delay: 0.8s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: #e03a46;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(252,75,88,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.btn-ghost:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(252,75,88,0.08);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 44px;
  background: #fff;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s;
}

.play-btn:hover { color: var(--red); }

.play-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.play-btn:hover .play-icon {
  border-color: var(--red);
  background: rgba(252,75,88,0.15);
}

.play-icon svg { fill: #fff; margin-left: 3px; }

/* ===== SERVICE STRIP ===== */
.service-strip {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
}

.service-strip-inner {
  display: flex;
  gap: 60px;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.service-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.strip-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SD-FEATURE LINK ===== */
.sd-feature-link {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.sd-feature-link:hover { color: var(--red); }

/* ===== ACCORDION ===== */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.accordion-item.open { border-color: rgba(252,75,88,0.4); }
.accordion-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.accordion-q h3 {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--red);
  transition: transform 0.3s ease;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-a { max-height: 400px; }
.accordion-a p {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

/* ===== BRANDS TRACK ===== */
.brands-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: brands-marquee 20s linear infinite;
}

@keyframes brands-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.brands-track:hover { animation-play-state: paused; }

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  flex-shrink: 0;
}

.brand-item img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8) opacity(0.5);
  transition: filter 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0) brightness(1) opacity(1);
}

/* ===== SECTION COMMON ===== */
section { padding: 120px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header { margin-bottom: 70px; }
.section-header.center { text-align: center; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  color: #fff;
  margin-top: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.8;
}

.section-header.center .section-desc { margin: 20px auto 0; }

/* ===== STATS ===== */
#stats, .stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: #fff;
  letter-spacing: 2px;
}

.stat-number span { color: var(--red); }

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 10px;
}

/* ===== SERVICES ===== */
#services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--bg3);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(252,75,88,0.30);
  margin-bottom: 28px;
  transition: color 0.4s;
  position: relative;
  padding-left: 16px;
}

.service-num::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 40px;
  background: var(--red);
  border-radius: 2px;
}

.service-card:hover .service-num { color: rgba(252,75,88,0.55); }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.service-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.3s;
}

.service-link:hover { gap: 14px; }

/* ===== PRODUCTION ===== */
#production { background: var(--bg); padding: 140px 0; }

.production-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.production-visual { position: relative; }

.production-frame {
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.production-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252,75,88,0.05), transparent);
}

.play-center {
  width: 80px; height: 80px;
  border: 1px solid rgba(252,75,88,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.play-center:hover {
  background: rgba(252,75,88,0.15);
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(252,75,88,0.25);
}

.play-center svg { fill: var(--red); margin-left: 5px; }

.production-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 110px; height: 110px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.production-badge strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.production-badge span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.production-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
  color: #fff;
  margin: 16px 0 28px;
}

.production-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

/* ===== WHY US ===== */
#why { background: var(--bg2); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
  color: #fff;
  margin: 16px 0 24px;
}

.why-text .tagline {
  font-family: 'Raleway', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--red);
  margin-bottom: 28px;
}

.why-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

.why-pillars { display: flex; flex-direction: column; gap: 24px; }

.pillar { display: flex; gap: 20px; align-items: flex-start; }

.pillar-icon {
  width: 48px; height: 48px;
  background: rgba(252,75,88,0.1);
  border: 1px solid rgba(252,75,88,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg { fill: var(--red); }

.pillar-content h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.pillar-content p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }

.why-visual { position: relative; display: flex; flex-direction: column; gap: 24px; }

.why-big-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 48px 44px;
  position: relative;
}

.why-big-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--red);
}

.why-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: #fff;
}

.why-big-num span { color: var(--red); }
.why-big-label { font-size: 13px; color: var(--muted); letter-spacing: 1px; margin-top: 8px; }

.why-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.why-stat-small {
  background: var(--bg3);
  padding: 32px;
  border: 1px solid var(--border);
}

.why-stat-small .num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #fff; }
.why-stat-small .num span { color: var(--red); }
.why-stat-small .lbl { font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ===== PROCESS ===== */
#process { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-step {
  background: var(--bg3);
  padding: 44px 36px;
  position: relative;
  border-top: 1px solid var(--border);
}

.process-step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  height: 3px; width: 0;
  background: var(--red);
  transition: width 0.5s;
}

.process-step:hover::before { width: 100%; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: rgba(252,75,88,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.process-step p { font-size: 13px; color: var(--muted); line-height: 1.8; }

/* ===== CTA BAND ===== */
.cta-section, #cta {
  background: linear-gradient(135deg, var(--red) 0%, #c0313d 100%);
  padding: 100px 0;
}

.cta-inner { text-align: center; }
.cta-inner .label { color: rgba(255,255,255,0.7); }

.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  margin: 20px 0 16px;
  line-height: 1.0;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
}

/* ===== CONTACT ===== */
#contact { background: var(--bg2); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-col h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  color: #fff;
  line-height: 1.05;
  margin: 16px 0 12px;
}

.contact-info-col > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 400px;
}

.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s;
}

.contact-card:hover {
  border-color: rgba(252,75,88,0.4);
  background: rgba(252,75,88,0.04);
}

.contact-card-icon {
  width: 44px; height: 44px;
  background: rgba(252,75,88,0.1);
  border: 1px solid rgba(252,75,88,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.contact-card:hover .contact-card-icon { background: rgba(252,75,88,0.18); }
.contact-card-icon svg { stroke: var(--red); fill: none; }
.contact-card-wa svg { fill: #25D366; stroke: none; }
.contact-card-body { display: flex; flex-direction: column; gap: 2px; }
.contact-card-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.contact-card-value { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); }

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 220px;
}

.contact-map iframe {
  width: 100%; height: 100%;
  display: block;
  filter: grayscale(60%) invert(90%) contrast(85%);
}

.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 44px;
}

.contact-form-wrap h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.form-group:focus-within label { color: var(--red); }

.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover { border-color: rgba(255,255,255,0.22); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }

.form-group textarea { resize: none; height: 110px; line-height: 1.7; }
.form-group select option { background: var(--bg3); color: rgba(255,255,255,0.85); }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.form-note { font-size: 11px; color: rgba(255,255,255,0.22); line-height: 1.6; }

.btn-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  flex-shrink: 0;
}

.btn-form:hover {
  background: #e03a46;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252,75,88,0.32);
}

.btn-form:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success { display: none; text-align: center; padding: 40px 20px; }

.form-success-icon {
  width: 60px; height: 60px;
  background: rgba(252,75,88,0.1);
  border: 1px solid rgba(252,75,88,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h4 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: #fff; margin-bottom: 8px; }
.form-success p { font-size: 13px; color: var(--muted); margin: 0; }

/* ===== FOOTER ===== */
footer {
  background: #05050a;
  padding: 80px 0 36px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img { height: 200px; margin-bottom: 3px; }

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(252,75,88,0.08);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--red); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.footer-contact-item span:first-child {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-contact-link {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-contact-link:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }

.footer-bottom-links { display: flex; gap: 24px; list-style: none; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--muted); }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
}

.whatsapp-btn svg { width: 30px; height: 30px; fill: #fff; }

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPing 2s ease-out infinite;
}

@keyframes waPing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-btn .wa-tooltip {
  position: absolute;
  right: 70px; top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-btn .wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #fff;
}

.whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,13,0.97);
  backdrop-filter: blur(24px);
  z-index: 1100;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}

.mm-header img { height: 28px; }

.mobile-close {
  background: none;
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.6);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-close:hover { border-color: var(--red); color: var(--red); }

.mm-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 28px 28px;
}

.mm-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.38);
  position: relative;
  transition: color 0.35s, padding-right 0.35s;
  text-align: right;
}

.mm-nav a::after {
  content: '';
  position: absolute;
  right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--red);
  border-radius: 2px;
  transition: height 0.35s ease;
}

.mm-nav a:hover,
.mm-nav a.active { color: rgba(255,255,255,0.95); padding-right: 10px; }

.mm-nav a:hover::after,
.mm-nav a.active::after { height: 55%; }

.mm-nav a .mm-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s, transform 0.35s;
  color: var(--red);
  flex-shrink: 0;
}

.mm-nav a:hover .mm-arrow,
.mm-nav a.active .mm-arrow { opacity: 1; transform: translateX(0); }

.mm-contact {
  margin-top: auto;
  padding: 22px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.mm-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row-reverse;
}

.mm-contact-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mm-contact-icon svg { stroke: var(--red); fill: none; }
.mm-contact-row span { font-size: 13px; color: rgba(255,255,255,0.6); }

.mm-footer {
  padding: 18px 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  flex-direction: row-reverse;
}

.mm-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); }

.mm-socials { display: flex; gap: 10px; }

.mm-social-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.mm-social-btn:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(252,75,88,0.12);
}

.mm-social-btn svg { width: 16px; height: 16px; }
.mm-social-btn i { font-size: 16px; line-height: 1; }

.mm-nav a .mm-arrow.ri-arrow-right-line {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s, transform 0.35s;
  color: var(--red);
}

.mm-nav a:hover .mm-arrow,
.mm-nav a.active .mm-arrow { opacity: 1; transform: translateX(0); }

.whatsapp-btn i { font-size: 30px; color: #fff; line-height: 1; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  max-width: 360px;
  background: #1a1a2a;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid var(--red);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  transform: translateX(120%);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.toast-success { border-left-color: #22c55e; }
.toast-error   { border-left-color: var(--red); }

/* ===== PARTIAL PLACEHOLDER ===== */
#site-header { min-height: 80px; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 0 30px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }

  .services-grid { grid-template-columns: 1fr; }
  .production-inner, .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-actions { flex-direction: column; }
  .production-badge { bottom: -16px; right: 0; width: 90px; height: 90px; }
  .production-badge strong { font-size: 22px; }
  .why-stat-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 140px 0 70px; }
}

/* ===== DETAY SAYFASI ORTAK ===== */
.detail-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.detail-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--cat-color, #fc4b58) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.detail-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--cat-color, #fc4b58) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat-color, #fc4b58) 25%, transparent);
  color: var(--cat-color, #fc4b58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.detail-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}
.detail-hero > .container > p,
.detail-hero p { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.8; }

.detail-main { padding: 80px 0; background: var(--bg2); }
.detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }

.detail-img {
  aspect-ratio: 4/3;
  background: var(--bg3);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cat-color, #fc4b58) 6%, transparent), transparent);
}
.detail-img-placeholder {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}

.detail-meta { display: flex; flex-direction: column; }
.detail-meta-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cat-color, #fc4b58);
}
.detail-meta-value { font-size: 15px; color: rgba(255,255,255,0.8); }
.detail-meta-desc { margin-top: 32px; }
.detail-meta-desc h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #fff; margin-bottom: 14px; }
.detail-meta-desc p { font-size: 14px; color: var(--muted); line-height: 1.9; }

.detail-visual2 { padding: 0 0 80px; background: var(--bg2); }
.detail-img2 {
  aspect-ratio: 16/7;
  background: var(--bg3);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-img2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cat-color, #fc4b58) 6%, transparent), transparent);
}

.detail-text { padding: 80px 0; background: var(--bg); }
.detail-text-inner { max-width: 780px; }
.detail-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.05;
}
.detail-text p { font-size: 15px; color: var(--muted); line-height: 1.95; margin-bottom: 20px; }

.detail-back { padding: 48px 0 80px; background: var(--bg); }
.detail-back a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.detail-back a:hover { color: #fff; }
.detail-back a svg { transition: transform 0.3s; }
.detail-back a:hover svg { transform: translateX(-4px); }

/* Detay responsive */
@media(max-width:1024px) {
  .detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .detail-img2 { aspect-ratio: 4/3; }
}
@media(max-width:768px) {
  .detail-hero { padding: 120px 0 56px; }
  .detail-main { padding: 56px 0; }
  .detail-visual2 { padding: 0 0 56px; }
  .detail-text { padding: 56px 0; }
  .detail-back { padding: 32px 0 64px; }
  .other-projects { padding: 56px 0; }
}
@media(max-width:640px) {
  .detail-hero { padding: 110px 0 48px; }
  .detail-cat { font-size: 10px; padding: 5px 12px; }
  .detail-main { padding: 48px 0; }
  .detail-grid { gap: 32px; }
  .detail-visual2 { padding: 0 0 48px; }
  .detail-text { padding: 48px 0; }
  .detail-back { padding: 24px 0 56px; }
  .detail-meta-desc h3 { font-size: 22px; }
}

/* ===== DETAY SAYFASI — DİĞER İŞLER & NAVİGASYON ===== */
.other-projects { padding: 80px 0; background: var(--bg2); }

.other-proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.other-proj-item {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg3);
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.other-proj-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
}
.other-proj-item:hover .other-proj-bg { transform: scale(1.04); }

.other-proj-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.other-proj-item:hover .other-proj-bg::before { opacity: 1; }

.other-proj-bg i {
  font-size: 64px;
  color: rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
  transition: color 0.4s, text-shadow 0.4s, transform 0.4s;
}

.other-proj-item.cat-film .other-proj-bg { background: radial-gradient(ellipse at center, rgba(252,75,88,0.12) 0%, #0d0d14 70%); }
.other-proj-item.cat-film .other-proj-bg::before { background: radial-gradient(ellipse at center, rgba(252,75,88,0.22) 0%, transparent 70%); }
.other-proj-item.cat-film:hover .other-proj-bg i { color: rgba(252,75,88,0.9); text-shadow: 0 0 40px rgba(252,75,88,0.5); transform: scale(1.1); }

.other-proj-item.cat-tasarim .other-proj-bg { background: radial-gradient(ellipse at center, rgba(80,120,220,0.12) 0%, #0d0d14 70%); }
.other-proj-item.cat-tasarim .other-proj-bg::before { background: radial-gradient(ellipse at center, rgba(80,120,220,0.22) 0%, transparent 70%); }
.other-proj-item.cat-tasarim:hover .other-proj-bg i { color: rgba(100,150,255,0.9); text-shadow: 0 0 40px rgba(80,120,220,0.5); transform: scale(1.1); }

.other-proj-item.cat-dijital .other-proj-bg { background: radial-gradient(ellipse at center, rgba(160,80,220,0.12) 0%, #0d0d14 70%); }
.other-proj-item.cat-dijital .other-proj-bg::before { background: radial-gradient(ellipse at center, rgba(160,80,220,0.22) 0%, transparent 70%); }
.other-proj-item.cat-dijital:hover .other-proj-bg i { color: rgba(180,100,255,0.9); text-shadow: 0 0 40px rgba(160,80,220,0.5); transform: scale(1.1); }

.other-proj-info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.other-proj-item:hover .other-proj-info { opacity: 1; }
.other-proj-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.other-proj-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #fff; line-height: 1.1; }

.proj-nav { background: var(--bg3); border-top: 1px solid var(--border); }
.proj-nav-inner { display: grid; grid-template-columns: 1fr 1fr; }
.proj-nav-item {
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: background 0.3s;
  border: none;
}
.proj-nav-item:hover { background: var(--bg2); }
.proj-nav-item + .proj-nav-item { border-left: 1px solid var(--border); }
.proj-nav-dir {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.proj-nav-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #fff; line-height: 1; }
.proj-nav-item.next-item { align-items: flex-end; text-align: right; }

@media(max-width:768px) {
  .other-proj-grid { grid-template-columns: 1fr; }
  .proj-nav-inner { grid-template-columns: 1fr; }
  .proj-nav-item + .proj-nav-item { border-left: none; border-top: 1px solid var(--border); }
  .proj-nav-item { padding: 28px 24px; }
  .proj-nav-item.next-item { align-items: flex-start; text-align: left; }
}
