/* =============================================
   KIBRITKAFA — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;900&family=Barlow+Condensed:wght@700;900&display=swap');

/* ── CSS Variables ── */
:root {
  --orange-hot:    #F97316;
  --orange-deep:   #EA580C;
  --orange-burn:   #C2410C;
  --orange-ember:  #9A3412;
  --fire-yellow:   #FCD34D;
  --fire-bright:   #FBBF24;
  --cream:         #FEF3C7;
  --cream-light:   #FFFBEB;
  --bg-dark:       #130800;
  --bg-mid:        #1C0A00;
  --bg-warm:       #2D1200;
  --text-light:    #FEF3C7;
  --text-mid:      #FDE68A;
  --text-muted:    #D97706;
  --white:         #FFFFFF;

  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --font-cond:     'Barlow Condensed', sans-serif;

  --section-pad:   clamp(60px, 8vw, 120px);
  --container:     100%;
  --radius:        4px;
  --transition:    0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Global Custom Cursor (Sistem faresi ve el ikonu ASLA çıkmasın) ── */
*, *::before, *::after,
html, body, #hero, .hero, .hero-video-wrapper, .hero-video-wrapper iframe, .hero-video-wrapper div,
a, button, input, select, textarea, label, [role="button"], [onclick],
.btn, .hero-cta, .nav-logo, .nav-links a, .card, .work-card, .service-card, .hero-sound-btn,
.hero-drawer-trigger, .hero-mouse-shield {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"/>'), none !important;
}

body.cinema-active,
body.cinema-active *,
body.cinema-active #hero,
body.cinema-active .hero-mouse-shield {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"/>'), none !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"/>'), none !important;
  min-height: 100vh;
}

/* ── Cursor Canvas ── */
#cursor-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.2s ease;
}

body.cinema-active #cursor-canvas {
  opacity: 0 !important;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: normal;
  transition: opacity 0.25s ease;
}

/* Header (Nav) fare hareketsiz kalsa bile DAİMA görünür ve aktif kalır */
.nav,
body.cinema-active .nav {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(19, 8, 0, 0.95), transparent);
  pointer-events: none;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--fire-yellow);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
}

.nav-links {
  position: relative;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--fire-yellow);
}

/* ── Hero Section & Fullscreen Background Video ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 clamp(24px, 6vw, 100px);
  background: #0d0501;
}

.hero-video-wrapper,
.hero-video-wrapper *,
.hero-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

/* ── Hero Fare Kalkanı (Tüm tıklamaları yakalar, Vimeo iframe'inin fare okunu göstermesini kesin engeller) ── */
.hero-mouse-shield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto !important;
  background: transparent;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"/>'), none !important;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.95;
  filter: contrast(1.05) brightness(0.98);
  transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 oranında tam ekran */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 oranında tam ekran */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
  opacity: 0.95;
  filter: contrast(1.05) brightness(0.98);
  transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Hafif ve Aydınlık Sinematik Karartma (Video Net ve Belirgin) ── */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 75% 45%, rgba(249, 115, 22, 0.08) 0%, transparent 65%),
    linear-gradient(to right, rgba(14, 6, 1, 0.50) 0%, rgba(14, 6, 1, 0.22) 42%, rgba(14, 6, 1, 0.05) 80%, transparent 100%),
    linear-gradient(to top, rgba(14, 6, 1, 0.45) 0%, transparent 25%),
    linear-gradient(to bottom, rgba(14, 6, 1, 0.35) 0%, transparent 18%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Dinamik Hero İçerik (İlk Açılışta Kenara Çekilen / Mouse ile Açılan) ── */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  padding-top: 60px;
  transform: translateX(calc(-100% - 60px));
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transition: 
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

/* Mouse sol kenara gelince veya aktif olunca tam yerine açılır */
.hero-content.is-open {
  transform: translateX(0);
  opacity: 1;
  filter: blur(0px);
  pointer-events: auto;
}

/* İç elemanların kademeli ve akıcı girişi (Staggered Animation) */
.hero-content .hero-eyebrow,
.hero-content .hero-title,
.hero-content .hero-tagline,
.hero-content .hero-cta {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}

.hero-content:not(.is-open) .hero-eyebrow { transform: translateX(-40px); opacity: 0; }
.hero-content:not(.is-open) .hero-title   { transform: translateX(-60px); opacity: 0; }
.hero-content:not(.is-open) .hero-tagline { transform: translateX(-40px); opacity: 0; }
.hero-content:not(.is-open) .hero-cta     { transform: translateX(-30px); opacity: 0; }

.hero-content.is-open .hero-eyebrow { transform: translateX(0); opacity: 1; transition-delay: 0.04s; }
.hero-content.is-open .hero-title   { transform: translateX(0); opacity: 1; transition-delay: 0.10s; }
.hero-content.is-open .hero-tagline { transform: translateX(0); opacity: 1; transition-delay: 0.18s; }
.hero-content.is-open .hero-cta     { transform: translateX(0); opacity: 1; transition-delay: 0.25s; }

/* ── Sol Kenar Dikey İnce & Yüksek Sinematik Çekmece Şeridi ── */
.hero-drawer-trigger {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"/>'), none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 32px;
  height: 180px;
  padding: 14px 0 12px 0;
  background: rgba(16, 6, 2, 0.88);
  border: 1px solid rgba(249, 115, 22, 0.45);
  border-left: none;
  border-radius: 0 16px 16px 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.65), 0 0 18px rgba(249, 115, 22, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s, box-shadow 0.3s;
  user-select: none;
}

.hero-drawer-trigger:hover {
  background: rgba(28, 11, 3, 0.96);
  border-color: rgba(249, 115, 22, 0.9);
  box-shadow: 0 8px 35px rgba(249, 115, 22, 0.45);
  transform: translateY(-50%) translateX(4px);
}

/* Üstteki kibrit kor kıvılcımı */
.hero-drawer-trigger .hdt-spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5500;
  box-shadow: 0 0 10px #ff7a18, 0 0 4px #fff;
  animation: emberGlow 2s infinite ease-in-out;
}

/* Ortadaki dikey şık yazı */
.hero-drawer-trigger .hdt-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--cream);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.92;
  transition: color 0.3s, letter-spacing 0.3s;
}

.hero-drawer-trigger:hover .hdt-vertical-text {
  color: #fff;
  letter-spacing: 0.32em;
}

/* Alttaki zarif ok */
.hero-drawer-trigger .hdt-arrow {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--orange-hot);
  font-weight: 900;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}

.hero-content.is-open ~ .hero-drawer-trigger .hdt-arrow,
.hero.drawer-open .hero-drawer-trigger .hdt-arrow {
  transform: rotate(180deg);
  color: #ffaa44;
}

@keyframes emberGlow {
  0%, 100% {
    transform: scale(0.9);
    box-shadow: 0 0 8px #ff5500, 0 0 2px #fff;
    opacity: 0.85;
  }
  50% {
    transform: scale(1.25);
    box-shadow: 0 0 14px #ff7a18, 0 0 6px #fff;
    opacity: 1;
  }
}

/* ── Hero Sound Toggle Button ── */
.hero-sound-btn {
  position: absolute;
  bottom: 32px;
  right: clamp(24px, 6vw, 100px);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 8, 2, 0.75);
  border: 1px solid rgba(254, 243, 199, 0.25);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 1.2s ease, background var(--transition), border-color var(--transition);
}

.hero-sound-btn:hover {
  background: rgba(249, 115, 22, 0.25);
  border-color: var(--orange-hot);
  color: var(--fire-yellow);
}

/* ── Ekrana Tıklayınca Çıkan Sinematik Ses Bildirimi (Floating Sound Toast) ── */
.hero-sound-toast {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  z-index: 25;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(16, 6, 2, 0.90);
  border: 1px solid rgba(249, 115, 22, 0.55);
  border-radius: 9999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(249, 115, 22, 0.35);
  color: var(--cream);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  user-select: none;
}

.hero-sound-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.hero-sound-toast .hst-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.hero-sound-toast .hst-text {
  color: var(--cream);
}

.hero-scroll-hint {
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* ══════════════════════════════════════════════════════════
   SİNEMA MODU (Fare Hareketsizliğinde Saf Video Görünümü)
   ══════════════════════════════════════════════════════════ */
.hero.cinema-mode .hero-content {
  opacity: 0 !important;
  transform: translateY(-12px) !important;
  pointer-events: none !important;
}

.hero.cinema-mode .hero-video-overlay {
  opacity: 0 !important;
}

.hero.cinema-mode .hero-video,
.hero.cinema-mode .hero-video-iframe {
  opacity: 1 !important;
  filter: none !important; /* Video orijinal renk ve canlılığıyla saf görünür */
}

.hero.cinema-mode .hero-scroll-hint,
.hero.cinema-mode .hero-sound-btn {
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--orange-hot);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 14rem);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-title span {
  color: var(--orange-hot);
  display: block;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: var(--orange-hot);
  color: var(--bg-dark);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-cta::after {
  content: '→';
  transition: transform var(--transition);
}

.hero-cta:hover {
  background: var(--fire-bright);
  transform: translateY(-2px);
}

.hero-cta:hover::after {
  transform: translateX(4px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-hint svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 2;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Marquee Strip (Kesintisiz Sonsuz Akış) ── */
.marquee-strip {
  width: 100%;
  background: var(--orange-hot);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  display: flex;
  user-select: none;
}

.marquee-inner {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: marqueeInfinite 24s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--bg-dark);
  letter-spacing: 0.12em;
  padding: 0 24px;
  user-select: none;
  font-weight: 700;
}

.marquee-content span.sep {
  color: var(--bg-dark);
  opacity: 0.45;
  padding: 0 4px;
}

@keyframes marqueeInfinite {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ── Section Shared ── */
.section {
  width: 100%;
  padding: var(--section-pad) clamp(24px, 6vw, 100px);
  position: relative;
}

.section-label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.92;
  color: var(--cream);
  letter-spacing: -0.01em;
}

/* ── About Section ── */
.about {
  background: var(--bg-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 600px;
}

.about-match-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.about-match-container::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, rgba(251, 191, 36, 0.1) 45%, transparent 70%);
  pointer-events: none;
  will-change: transform;
}

.about-match-svg {
  height: 90%;
  animation: matchSway 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes matchSway {
  0%, 100% { transform: rotate(-2deg); }
  50%       { transform: rotate(2deg); }
}

.about-content {
  padding: 40px 0;
}

.about-text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 32px;
  max-width: 500px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--orange-hot);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════
   SERVICES-PRO — Professional Cinema Layout
   4 × 9:16 cards with grain, hover reveal, film chrome
══════════════════════════════════════════════ */

.services-pro {
  background: #0a0200;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

/* Subtle angled background accent */
.services-pro::before {
  content: '';
  position: absolute;
  top: -200px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Section Header ── */
.sp-header {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 680px;
}

.sp-label-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.sp-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange-hot);
}

.sp-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange-hot);
}

.sp-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 9rem);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.sp-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(254, 243, 199, 0.4);
}

.sp-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
  max-width: 460px;
}

/* ── Showcase Grid ── */
.sp-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
  align-items: end;
}

/* Staggered heights — cards are different heights for dynamic feel */
.sp-card--1 { padding-top: 40px; }
.sp-card--2 { padding-top: 0; }
.sp-card--3 { padding-top: 60px; }
.sp-card--4 { padding-top: 20px; }

/* ── Individual Card ── */
.sp-card {
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0d0402;
  cursor: default;
  will-change: transform;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-card:hover {
  transform: translateY(-14px) scale(1.025);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(249, 115, 22, 0.6),
    0 0 50px rgba(249, 115, 22, 0.18);
}

/* ── Video Background ── */
.sp-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sp-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) brightness(0.75);
  transform: scale(1.08);
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease;
  pointer-events: none;
  user-select: none;
}

.sp-card:hover .sp-card-video {
  transform: scale(1.0);
  filter: saturate(1.1) brightness(0.88);
}

/* Film grain texture overlay */
.sp-card-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Deep cinematic gradient */
.sp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top,
      rgba(6, 2, 0, 0.97) 0%,
      rgba(6, 2, 0, 0.82) 35%,
      rgba(6, 2, 0, 0.35) 58%,
      rgba(6, 2, 0, 0.50) 100%
    ),
    linear-gradient(135deg, rgba(249, 115, 22, 0.07) 0%, transparent 50%);
  transition: background 0.5s ease;
  pointer-events: none;
}

.sp-card:hover::after {
  background:
    linear-gradient(to top,
      rgba(6, 2, 0, 0.95) 0%,
      rgba(6, 2, 0, 0.72) 38%,
      rgba(6, 2, 0, 0.18) 62%,
      rgba(6, 2, 0, 0.38) 100%
    ),
    linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0%, transparent 50%);
}

/* ── Card Chrome (text overlay) ── */
.sp-card-chrome {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 20px 26px;
}

/* Top row: number + category pill */
.sp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sp-card-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.05em;
  line-height: 1;
  transition: color 0.4s ease;
}

.sp-card:hover .sp-card-num {
  color: rgba(249, 115, 22, 0.9);
}

.sp-card-pill {
  font-family: var(--font-cond);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(254, 243, 199, 0.75);
  background: rgba(10, 4, 1, 0.65);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.sp-card:hover .sp-card-pill {
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(249, 115, 22, 0.8);
  color: #fff;
}

/* Bottom block: title + desc + list */
.sp-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(6px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-card:hover .sp-card-bottom {
  transform: translateY(0);
}

.sp-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 1);
}

.sp-card-desc {
  font-size: 0.8rem;
  color: rgba(254, 243, 199, 0.62);
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
  max-width: 100%;
}

/* Capability list */
.sp-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease 0.05s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.sp-card:hover .sp-card-list {
  opacity: 1;
  transform: translateY(0);
}

.sp-card-list li {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(254, 243, 199, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-card-list li::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--orange-hot);
  flex-shrink: 0;
  opacity: 0.8;
}

/* ── Bottom CTA ── */
.sp-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: clamp(56px, 7vw, 96px);
}

.sp-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 18px 40px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  border-radius: 999px;
  background: rgba(14, 6, 1, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    gap 0.35s ease;
}

.sp-cta:hover {
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.9);
  color: #fff;
  gap: 20px;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.25);
}

.sp-cta svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-cta:hover svg {
  transform: translateX(5px);
}

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
  .sp-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .sp-card--1,
  .sp-card--2,
  .sp-card--3,
  .sp-card--4 {
    padding-top: 0;
  }
}

@media (max-width: 540px) {
  .services-pro {
    padding: 60px 20px;
  }
  .sp-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 340px;
    margin: 0 auto;
  }
  .sp-card {
    aspect-ratio: 9 / 16;
  }
}

/* 9:16 Dikey Sinema Kartı */
.service-card-916 {
  aspect-ratio: 9 / 16;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(254, 243, 199, 0.14);
  background: #0d0501;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  user-select: none;
}

.service-card-916:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(249, 115, 22, 0.75);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(249, 115, 22, 0.3);
}

/* Arka plan 9:16 Medya (Video / Görsel) */
.service-card-916 .sc-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.service-card-916 .sc-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.08);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s ease;
  pointer-events: none;
}

.service-card-916:hover .sc-video {
  transform: scale(1.08);
  filter: brightness(1.0) contrast(1.15);
}

/* 9:16 Sinematik Karartma Katmanı */
.service-card-916 .sc-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: 
    linear-gradient(to top, rgba(9, 3, 1, 0.96) 0%, rgba(9, 3, 1, 0.75) 42%, rgba(9, 3, 1, 0.20) 70%, rgba(9, 3, 1, 0.45) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(249, 115, 22, 0.15) 0%, transparent 60%);
  transition: background 0.4s ease;
}

.service-card-916:hover .sc-overlay {
  background: 
    linear-gradient(to top, rgba(9, 3, 1, 0.94) 0%, rgba(9, 3, 1, 0.65) 45%, rgba(9, 3, 1, 0.10) 70%, rgba(9, 3, 1, 0.30) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
}

/* Kartın Üst Alanı: Rozet & Numara */
.service-card-916 .sc-header {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0 20px;
}

.service-card-916 .sc-badge {
  font-family: var(--font-cond);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange-hot);
  background: rgba(18, 7, 2, 0.75);
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 5px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.service-card-916:hover .sc-badge {
  background: rgba(249, 115, 22, 0.25);
  border-color: rgba(249, 115, 22, 0.8);
  color: #fff;
}

.service-card-916 .service-number {
  position: static;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  transition: color 0.3s, transform 0.3s;
}

.service-card-916:hover .service-number {
  color: var(--orange-hot);
  transform: scale(1.08);
}

/* Kartın Alt Alanı: Başlık, Spot Açıklama, Etiketler */
.service-card-916 .sc-body {
  position: relative;
  z-index: 3;
  padding: 0 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-916:hover .sc-body {
  transform: translateY(-4px);
}

.service-card-916 .service-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.service-card-916 .service-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
  max-width: 100%;
  margin-bottom: 4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
}

.service-card-916 .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.service-card-916 .service-tag {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(22, 9, 2, 0.7);
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 4px 9px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.service-card-916:hover .service-tag {
  border-color: rgba(249, 115, 22, 0.7);
  color: var(--orange-hot);
  background: rgba(35, 14, 3, 0.85);
}

/* ══════════════════════════════════════════════
   PORTFOLIO-PRO — Professional 16:9 Cinema Grid
   Same design language as services-pro
══════════════════════════════════════════════ */

.portfolio-pro {
  background: #06020000;
  background: linear-gradient(to bottom, #080200, #0a0200);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}

/* Orange glow accent (mirrored from services-pro) */
.portfolio-pro::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Section Header ── */
.pp-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(48px, 6vw, 80px);
  flex-wrap: wrap;
  gap: 28px;
}

.pp-header-left {
  max-width: 600px;
}

.pp-header-right {
  display: flex;
  align-items: flex-end;
  padding-bottom: 8px;
}

.pp-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(254, 243, 199, 0.4);
}

.pp-hint svg {
  color: var(--orange-hot);
  opacity: 0.7;
}

/* ── 16:9 Grid Layout ── */
.pp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}

/* ── Individual Card ── */
.pp-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0d0402;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  width: 100%;
  will-change: transform;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-card:hover {
  transform: translateY(-8px) scale(1.018);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(249, 115, 22, 0.55),
    0 0 40px rgba(249, 115, 22, 0.15);
  z-index: 2;
}

/* ── Media Layer ── */
.pp-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pp-card-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.8) brightness(0.72);
  transform: scale(1.07);
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease;
}

.pp-card:hover .pp-card-poster {
  transform: scale(1.0);
  filter: saturate(1.05) brightness(0.85);
}

/* Deep cinematic gradient (same recipe as services-pro) */
.pp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top,
      rgba(6, 2, 0, 0.96) 0%,
      rgba(6, 2, 0, 0.72) 30%,
      rgba(6, 2, 0, 0.22) 55%,
      rgba(6, 2, 0, 0.45) 100%
    ),
    linear-gradient(145deg, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.pp-card:hover::after {
  background:
    linear-gradient(to top,
      rgba(6, 2, 0, 0.92) 0%,
      rgba(6, 2, 0, 0.58) 32%,
      rgba(6, 2, 0, 0.12) 60%,
      rgba(6, 2, 0, 0.36) 100%
    ),
    linear-gradient(145deg, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
}

/* ── Card Chrome ── */
.pp-card-chrome {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px 22px;
}

/* Top row: category pill + year */
.pp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pp-card-year {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease;
}

.pp-card:hover .pp-card-year {
  color: rgba(249, 115, 22, 0.8);
}

/* Bottom row: play button + title/desc */
.pp-card-bottom {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

/* Circular play button */
.pp-card-play-btn {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 1.5px solid rgba(249, 115, 22, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.pp-card-play-btn svg {
  width: 16px;
  height: 16px;
  color: rgba(254, 243, 199, 0.85);
  margin-left: 3px;
  transition: color 0.3s ease;
}

.pp-card:hover .pp-card-play-btn {
  background: rgba(249, 115, 22, 0.3);
  border-color: rgba(249, 115, 22, 0.9);
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.4);
}

.pp-card:hover .pp-card-play-btn svg {
  color: #fff;
}

/* Featured card — bigger play btn */
.pp-card--featured .pp-card-play-btn {
  width: 60px;
  height: 60px;
}

.pp-card--featured .pp-card-play-btn svg {
  width: 22px;
  height: 22px;
}

/* Text area */
.pp-card-text {
  flex: 1;
  min-width: 0;
  transform: translateY(4px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pp-card:hover .pp-card-text {
  transform: translateY(0);
}

.pp-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  color: #fff;
  line-height: 1.07;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 1);
  margin-bottom: 6px;
}

.pp-card--featured .pp-card-title {
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.pp-card-desc {
  font-size: 0.76rem;
  color: rgba(254, 243, 199, 0.55);
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease 0.05s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.pp-card:hover .pp-card-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
  .pp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 580px) {
  .portfolio-pro {
    padding: 60px 20px;
  }
  .pp-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .pp-header-right {
    align-items: flex-start;
  }
}


/* ── Contact Section ── */
.contact {
  background: var(--bg-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-tagline {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--cream);
}

.contact-detail-value a {
  color: var(--orange-hot);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-detail-value a:hover {
  color: var(--fire-bright);
}

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(253, 230, 138, 0.25);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange-hot);
  background: rgba(249, 115, 22, 0.08);
}

.form-textarea {
  min-height: 140px;
}

.form-submit {
  align-self: flex-start;
  padding: 16px 40px;
  background: var(--orange-hot);
  color: var(--bg-dark);
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: none;
  transition: background var(--transition), transform var(--transition);
  position: relative;
}

.form-submit:hover {
  background: var(--fire-bright);
  transform: translateY(-2px);
}

.form-submit.sending {
  opacity: 0.7;
  pointer-events: none;
}

.form-message {
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* ── Footer ── */
.footer {
  width: 100%;
  background: #0A0400;
  padding: 40px clamp(24px, 6vw, 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(249, 115, 22, 0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fire-yellow);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-social-link {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social-link:hover {
  color: var(--orange-hot);
}

/* ── Divider ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Cinematic Video Modal ── */
.site-video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 3, 1, 0.92);
  backdrop-filter: blur(16px);
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: #150802;
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(249, 115, 22, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.site-video-modal.active .video-modal-container {
  transform: scale(1);
}

.video-modal-header {
  padding: 16px 24px;
  background: rgba(14, 6, 1, 0.8);
  border-bottom: 1px solid rgba(254, 243, 199, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-modal-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.video-modal-tag {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-hot);
}

.video-modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.1;
}

.video-modal-close-btn {
  background: rgba(254, 243, 199, 0.08);
  border: 1px solid rgba(254, 243, 199, 0.15);
  color: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.video-modal-close-btn:hover {
  background: var(--orange-hot);
  color: #000;
  border-color: var(--orange-hot);
  transform: scale(1.05);
}

.video-modal-player-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}

.video-modal-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Portfolio Card Video Play Center Badge (Üstüne gelince görünen buton) */
.portfolio-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.95);
  border: 2px solid rgba(254, 243, 199, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #130800;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease,
              visibility 0.3s ease,
              box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
  z-index: 5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 24px rgba(249, 115, 22, 0.45);
  pointer-events: none;
}

.portfolio-card-play svg {
  margin-left: 3px;
  width: 24px;
  height: 24px;
}

.portfolio-card:hover .portfolio-card-play {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  background: var(--fire-bright);
}

.portfolio-card:active .portfolio-card-play {
  transform: translate(-50%, -50%) scale(0.9);
}

/* ── Sinecera-Style About Pillars ── */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.pillar-item {
  background: rgba(249, 115, 22, 0.04);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.pillar-item:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: var(--orange-hot);
  transform: translateY(-2px);
}

.pillar-num {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange-hot);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  display: block;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 6px;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Team & Directors Section ── */
.team {
  background: var(--bg-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  background: var(--bg-mid);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-hot), var(--fire-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.team-card:hover {
  background: var(--bg-warm);
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-hot), var(--orange-ember));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--bg-dark);
  margin-bottom: 20px;
  border: 2px solid rgba(254, 243, 199, 0.2);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}

.team-role {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Pipeline Section ── */
.pipeline {
  background: var(--bg-mid);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pipeline-card {
  background: var(--bg-dark);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition);
}

.pipeline-card:hover {
  background: var(--bg-warm);
  border-color: var(--orange-hot);
  transform: translateY(-4px);
}

.pipeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pipeline-badge {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--orange-hot);
  padding: 4px 10px;
  border-radius: 2px;
}

.pipeline-time {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fire-yellow);
}

.pipeline-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
}

.pipeline-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.pipeline-footer {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(249, 115, 22, 0.1);
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* ── DIRECTORS SECTION ── */
.directors-section {
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 100px);
  position: relative;
  background: var(--bg-dark);
}

.directors-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 800px;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}

@media (max-width: 900px) {
  .directors-grid {
    grid-template-columns: 1fr;
  }
}

.director-card {
  background: #150903;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.director-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-glow);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.director-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0f0703;
}

.director-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(85%) contrast(1.1);
  transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.director-card:hover .director-img {
  filter: grayscale(15%) contrast(1.05);
  transform: scale(1.04);
}

.director-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.director-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.director-role {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 12px;
}

.director-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.director-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.director-tag {
  font-size: 0.72rem;
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: var(--cream-soft);
  border-radius: 2px;
}

/* ── TEAM SECTION ── */
.team-section {
  padding: clamp(60px, 8vw, 120px) 0 clamp(60px, 8vw, 120px) 0;
  position: relative;
  background: #000000;
}

/* Başlık kısmına yatay padding ver — ızgara değil */
.team-header {
  padding: 0 clamp(24px, 6vw, 100px);
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 900px;
}

.team-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
}

/* Izgara: küçük yan boşluk — ama çok dar değil */
.team-portrait-grid {
  padding: 0 clamp(12px, 2vw, 32px);
}


/* ══════════════════════════════════════════════════
   EKİP 9:16 PORTRE IZGARASI
   ══════════════════════════════════════════════════ */

/*
  Kaç kart koyarsan koy, hepsi eşit genişlikte yan yana dizilir
  ve toplam satır genişliğini soldan sağa kaplar.
  Mobilde 2'ye sarılır.
*/
.team-portrait-grid {
  display: flex;
  flex-wrap: nowrap;         /* Masaüstünde tek satır */
  gap: 8px;
  align-items: flex-start;
}

/* ── Sinematik Sağ / Sol Gezinme Okları (Carousel Arrows) ── */
.carousel-nav-wrap {
  position: relative;
  width: 100%;
}

.carousel-arrow {
  display: none;
}

@media (max-width: 768px) {
  .carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(14, 6, 1, 0.78);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--cream);
    border-radius: 50%;
    z-index: 25;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.75), 0 0 12px rgba(249, 115, 22, 0.2);
    transition: all 0.2s ease;
  }

  .carousel-arrow:active {
    transform: translateY(-50%) scale(0.92);
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.25);
  }

  .carousel-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
  }

  .carousel-arrow.prev {
    left: 10px;
  }

  .carousel-arrow.next {
    right: 10px;
  }

  /* Hizmetlerimiz (Services) Mobilde Yatay Kaydırma */
  .services-section, .services {
    overflow: hidden;
  }

  .services-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 10px 24px 20px !important;
    background: transparent !important;
    border: none !important;
    scrollbar-width: none !important;
  }

  .services-grid::-webkit-scrollbar {
    display: none !important;
  }

  .service-card,
  .service-card-916 {
    flex: 0 0 78vw !important;
    max-width: 310px !important;
    aspect-ratio: 9 / 16 !important;
    scroll-snap-align: center !important;
    border-radius: 14px !important;
  }

  /* Portfolyo (Projeler) Mobilde Yatay Kaydırma */
  .portfolio-scroll-container {
    overflow: hidden;
  }

  .portfolio-track,
  .portfolio-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 10px 24px 20px !important;
    scrollbar-width: none !important;
  }

  .portfolio-track::-webkit-scrollbar,
  .portfolio-grid::-webkit-scrollbar {
    display: none !important;
  }

  .portfolio-card {
    flex: 0 0 84vw !important;
    max-width: 340px !important;
    scroll-snap-align: center !important;
    border-radius: 8px !important;
  }
}

/* ── MOBİL 3D COVERFLOW & SONSUZ KAYDIRMA MODU ── */
@media (max-width: 768px) {
  .team-section {
    overflow: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .team-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .team-portrait-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 30px calc(50vw - 110px); /* Merkezleme dolgusu (kart genişliği ~220px) */
    scrollbar-width: none; /* Firefox */
  }

  .team-portrait-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .team-portrait {
    flex: 0 0 220px !important;
    max-width: 220px !important;
    width: 220px !important;
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.82);
    opacity: 0.38;
    filter: blur(1.2px) grayscale(0.5);
    z-index: 1;
  }

  /* Merkezdeki Aktif Kişi (Önde, Büyük, Canlı ve Net) */
  .team-portrait.is-center {
    transform: scale(1.08) !important;
    opacity: 1 !important;
    filter: blur(0px) grayscale(0) !important;
    z-index: 10 !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75), 0 0 24px rgba(249, 115, 22, 0.2);
  }

  .team-portrait.is-center .team-portrait-info .tp-name {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  }

  .team-portrait.is-center .team-portrait-info .tp-role {
    color: var(--orange-hot);
    font-weight: 800;
  }
}

.team-portrait {
  flex: 1 1 0;              /* eşit genişlik — kaç kart varsa o kadar pay */
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* 9:16 dikey blok — çerçeve yok, saf siyah zemin */
.team-portrait-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000000;
  overflow: hidden;
  border: none;
  outline: none;
}

/* İçine konan img / video tam kaplar */
.team-portrait-media img,
.team-portrait-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
}

.team-portrait-media video {
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-portrait:hover .team-portrait-media video,
.team-portrait.active .team-portrait-media video {
  opacity: 1;
  transform: scale(1.02);
}

/* İsim + ünvan — ortalı */
.team-portrait-info {
  padding: 10px 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.tp-name {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.1vw, 1.05rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.1;
}

.tp-role {
  font-family: var(--font-cond);
  font-size: clamp(0.62rem, 0.75vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-hot);
}


/* ── Brief Form Options (Pills) ── */
.brief-options-wrap {
  margin-bottom: 20px;
}

.brief-label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 10px;
  display: block;
}

.brief-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brief-pill {
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: var(--cream);
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.brief-pill:hover {
  border-color: var(--orange-hot);
  background: rgba(249, 115, 22, 0.15);
}

.brief-pill.active {
  background: var(--orange-hot);
  border-color: var(--orange-hot);
  color: var(--bg-dark);
  font-weight: 700;
}

/* ── Newsletter Strip ── */
.newsletter-strip {
  background: var(--bg-warm);
  border-top: 1px solid rgba(249, 115, 22, 0.15);
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  padding: 60px clamp(24px, 6vw, 100px);
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 12px;
}

.newsletter-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--cream);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--orange-hot);
}

.newsletter-btn {
  padding: 14px 28px;
  background: var(--orange-hot);
  color: var(--bg-dark);
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--fire-bright);
}

/* ── S.S.S. (FAQ) Accordion ── */
.faq-section {
  background: var(--bg-mid);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 48px auto 0;
}

.faq-item {
  background: rgba(22, 9, 2, 0.6);
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(30, 12, 3, 0.85);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--orange-hot);
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--orange-hot);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

/* WhatsApp Hızlı İletişim Butonu */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #000;
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: #000;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .pipeline-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

/* ── Mobile Hamburger Buton & Menü Drawer ── */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
  display: block;
}

@media (max-width: 768px) {
  body { cursor: auto; }

  /* Mobilde kibrit ve alev ASLA kaybolmasın (Sinema modunda bile daima aktif) */
  #cursor-canvas,
  body.cinema-active #cursor-canvas { 
    display: block !important; 
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none !important;
    z-index: 99999 !important;
  }
  #lighting-overlay { display: none; }

  /* 🎬 Mobilde Hero Video: Sağı solu kaybolmasın, yanlardan tam sıfırlansın */
  .hero {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 clamp(20px, 5vw, 40px) clamp(30px, 6vh, 60px);
  }

  .hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-video,
  .hero-video-iframe,
  .hero-video-wrapper iframe,
  .hero-video-wrapper > div {
    position: absolute !important;
    top: 35% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9;
    transform: translateY(-50%) !important;
    object-fit: contain !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-video-overlay {
    background: 
      linear-gradient(to top, rgba(14, 6, 1, 0.55) 0%, rgba(14, 6, 1, 0.18) 50%, transparent 100%),
      linear-gradient(to bottom, rgba(14, 6, 1, 0.30) 0%, transparent 20%);
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* 🎬 Mobilde bekleyince overlay yavaşça kalksın, video orijinal netliğiyle parlasın */
  .hero.cinema-mode .hero-video-overlay {
    opacity: 0 !important;
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .hero.cinema-mode .hero-video,
  .hero.cinema-mode .hero-video-iframe,
  .hero.cinema-mode .hero-video-wrapper iframe,
  .hero.cinema-mode .hero-video-wrapper > div {
    opacity: 1 !important;
    filter: none !important;
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  /* Mobilde Dinamik Kenar Çekmecesi */
  .hero-content {
    position: relative;
    z-index: 10;
    padding-top: 0;
    margin-top: auto;
    transform: translateX(calc(-100% - 40px));
    opacity: 0;
    filter: blur(6px);
    pointer-events: none;
    transition: 
      transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.65s ease,
      filter 0.65s ease;
  }

  .hero-content.is-open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    filter: blur(0px) !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  .hero-drawer-trigger {
    width: 26px;
    height: 140px;
    padding: 10px 0 8px 0;
    top: 55%;
    border-radius: 0 12px 12px 0;
  }

  .hero-drawer-trigger .hdt-vertical-text {
    font-size: 0.62rem;
    letter-spacing: 0.20em;
  }

  .hero-drawer-trigger .hdt-arrow {
    font-size: 0.95rem;
  }

  .hero.cinema-mode .hero-scroll-hint,
  .hero.cinema-mode .hero-sound-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4.4rem);
    line-height: 0.92;
  }

  .hero-sound-btn {
    bottom: 16px;
    right: 20px;
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(14, 6, 1, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-bright);
    flex-direction: column;
    padding: 90px 32px 40px;
    gap: 22px;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    display: flex !important;
  }

  .nav-links.mobile-open {
    right: 0 !important;
  }

  .nav-links a {
    font-size: 1.15rem;
    letter-spacing: 0.15em;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-height: 300px;
    aspect-ratio: auto;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-stats {
    gap: 24px;
  }
}
