:root {
  --brand-blue: #06B6D4;
  --brand-purple: #9333ea;
  --brand-pink: #ec4899;
  --brand-dark: #0a0612;
  --text-main: #ffffff;
  --text-muted: #a39eb0;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: #000;
  color: var(--text-main);
  overflow-x: hidden;
}

/* --- SABIT ARKA PLAN --- */
.fixed-bg {
  position: fixed; inset: 0; z-index: -1;
  background: var(--brand-dark);
}
.bg-pulse {
  position: absolute; top: -20vh; left: -10vw; width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(147,51,234,0.15) 0%, transparent 60%);
  filter: blur(80px); animation: pulseFloat 10s alternate infinite;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.2;
}
.bg-stars {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.1px 1.1px at 40px 70px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.2px 1.2px at 150px 240px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 200px 100px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.3px 1.3px at 300px 400px, #fff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 400px 250px, #fff, rgba(0,0,0,0)),
    radial-gradient(1.1px 1.1px at 500px 10px, #fff, rgba(0,0,0,0));
  background-size: 600px 600px;
  animation: starMove 100s linear infinite;
  opacity: 0.3;
}
@keyframes starMove {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-600px) scale(1.1); }
}

/* Shooting Stars */
.shooting-stars {
  position: absolute; inset: 0; pointer-events: none;
}
.shooting-stars span {
  position: absolute; width: 4px; height: 4px; background: #fff;
  border-radius: 50%; box-shadow: 0 0 10px #fff, 0 0 20px #fff;
  opacity: 0; animation: shooting 5s linear infinite;
}
.shooting-stars span::before {
  content: ''; position: absolute; top: 50%; width: 150px; height: 1px;
  background: linear-gradient(90deg, #fff, transparent);
  transform: translateY(-50%);
}

.shooting-stars span:nth-child(1) { top: 10%; left: 80%; animation-delay: 0s; }
.shooting-stars span:nth-child(2) { top: 30%; left: 90%; animation-delay: 2s; animation-duration: 4s; }
.shooting-stars span:nth-child(3) { top: 60%; left: 70%; animation-delay: 4.5s; animation-duration: 6s; }

@keyframes shooting {
  0% { transform: rotate(-45deg) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: rotate(-45deg) translateX(-1000px); opacity: 0; }
}

.lens-flare {
  position: fixed;
  top: 20%; left: 30%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
  animation: flareMove 20s infinite alternate;
}
@keyframes flareMove {
  0% { transform: translate(-10%, -10%) scale(1); opacity: 0.3; }
  100% { transform: translate(20%, 10%) scale(1.5); opacity: 0.5; }
}
/* --- SCROLL MANTIĞI --- */
.scroll-container {
  display: block;
  position: relative;
  z-index: 1;
}
.panel {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0;
  background: transparent !important; 
  box-shadow: none !important;
  border-top: none !important;
}

/* --- SİNEMATİK "KAMERA AÇISI" SCROLL-DRIVEN ANİMASYON --- */
@supports (animation-timeline: view()) {
  /* Sahne 2: Teknoloji Tanıtım (Kamera İçe Kayar) */
  .split-left { animation: cinePanLeft linear both; animation-timeline: view(); animation-range: entry 10% cover 45%; }
  .split-right { animation: cinePanRight linear both; animation-timeline: view(); animation-range: entry 10% cover 45%; }
  .feature-list li:nth-child(1) { animation: cineRise linear both; animation-timeline: view(); animation-range: entry 30% cover 50%; }
  .feature-list li:nth-child(2) { animation: cineRise linear both; animation-timeline: view(); animation-range: entry 35% cover 55%; }
  .feature-list li:nth-child(3) { animation: cineRise linear both; animation-timeline: view(); animation-range: entry 40% cover 60%; }

  /* Sahne 3: İstatistik (Aşırı Geniş Kamera Açısı) */
  .marquee-giant { animation: cineFocusSuper linear both; animation-timeline: view(); animation-range: entry 0% cover 40%; }
  .stat-card:nth-child(1) { animation: cineZoomIn linear both; animation-timeline: view(); animation-range: entry 15% cover 35%; }
  .stat-card:nth-child(2) { animation: cineZoomIn linear both; animation-timeline: view(); animation-range: entry 25% cover 45%; }
  .stat-card:nth-child(3) { animation: cineZoomIn linear both; animation-timeline: view(); animation-range: entry 35% cover 55%; }

  /* Sahne 4: Kapanış CTA */
  .cta-box h2 { animation: cineFocus linear both; animation-timeline: view(); animation-range: entry 0% cover 25%; }
  .cta-box p { animation: cineRise linear both; animation-timeline: view(); animation-range: entry 0% cover 25%; }
  .btn-wa { animation: cineZoomIn linear both; animation-timeline: view(); animation-range: entry 0% cover 25%; }
}

/* SİNEMATOGRAFİK KEYFRAMES (Lens Blur, Scale, Darkness Modülasyonu) */
@keyframes cineFocusSuper {
  from { opacity: 0; filter: blur(80px) brightness(0); transform: scale(2) translateZ(100px); }
  to { opacity: 1; filter: blur(0px) brightness(1); transform: scale(1) translateZ(0); }
}
@keyframes cineFocus {
  from { opacity: 0; filter: blur(40px) brightness(0.5); transform: scale(1.3); }
  to { opacity: 1; filter: blur(0px) brightness(1); transform: scale(1); }
}
@keyframes cinePanLeft {
  from { opacity: 0; filter: blur(20px); transform: translateX(-15vw) scale(0.9); }
  to { opacity: 1; filter: blur(0px); transform: translateX(0) scale(1); }
}
@keyframes cinePanRight {
  from { opacity: 0; filter: blur(20px); transform: translateX(15vw) scale(0.9); }
  to { opacity: 1; filter: blur(0px); transform: translateX(0) scale(1); }
}
@keyframes cineRise {
  from { opacity: 0; filter: blur(15px); transform: translateY(10vh); }
  to { opacity: 1; filter: blur(0px); transform: translateY(0); }
}
@keyframes cineZoomIn {
  from { opacity: 0; filter: blur(20px) brightness(0); transform: scale(0.6) translateY(5vh); }
  to { opacity: 1; filter: blur(0px) brightness(1); transform: scale(1) translateY(0); }
}

/* --- HEADER --- */
.glass-header {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px; z-index: 100;
  pointer-events: none; /* Let clicks pass through except on links */
}
.glass-header > * { pointer-events: auto; }
.logo { height: 60px; transition: transform 0.3s; filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); }
.logo:hover { transform: scale(1.05); }
.nav-menu {
  display: flex; gap: 32px; align-items: center;
}
.nav-menu a {
  color: #fff; text-decoration: none; font-weight: 500; font-size: 1.1rem;
  transition: color 0.3s; display: flex; align-items: center;
}
.nav-menu a:hover { color: var(--brand-pink); }

.mobile-menu-controls { display: none; }

/* Hamburger Button */
.hamburger-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  padding: 10px; z-index: 200;
}
.hamburger-btn span {
  display: block; width: 30px; height: 2px;
  background: #fff; transition: 0.3s;
}
.hamburger-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px); z-index: 150;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: 0.4s;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 30px; text-align: center;
}
.mobile-nav a {
  color: #fff; text-decoration: none; font-size: 2rem; font-weight: 800;
  transition: 0.3s;
}
.mobile-nav a:hover { color: var(--brand-pink); }

.btn-premium {
  padding: 10px 24px; background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
  border-radius: 8px; font-weight: 700; color: #fff; text-decoration: none;
  box-shadow: 0 4px 15px rgba(236,72,153,0.4); transition: transform 0.3s;
}
.btn-premium:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(236,72,153,0.6); }

/* Royal Button (Mobile Hero CTA) */
.btn-royal {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 45px; border-radius: 50px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
  color: #fff; text-decoration: none; font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(236,72,153,0.3);
  animation: buttonPulse 2s infinite alternate;
  border: 1px solid rgba(255,255,255,0.2);
}

@keyframes buttonPulse {
  0% { transform: scale(1); box-shadow: 0 5px 20px rgba(236,72,153,0.4); }
  100% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(236,72,153,0.7), 0 0 30px rgba(236,72,153,0.4); }
}

/* --- ORTAK PANEL İÇERİĞİ --- */
.panel-content {
  width: 100%; max-width: 1400px; padding: 0 40px;
  position: relative; z-index: 10;
}

/* --- PANEL 1: HERO --- */
.type-hero {
  display: flex; justify-content: space-between; align-items: center;
}
.hero-text-block { max-width: 600px; }
.badge-glow {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  background: rgba(236,72,153,0.1); border: 1px solid var(--brand-pink);
  color: var(--brand-pink); font-weight: 700; font-size: 0.85rem; letter-spacing: 2px;
  margin-bottom: 32px; text-transform: uppercase;
}
.mega-title {
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1.05; font-weight: 900;
  margin-bottom: 24px;
}
.text-gradient {
  background: linear-gradient(90deg, #fff, var(--brand-pink), var(--brand-blue), #fff);
  -webkit-background-clip: text; 
  background-clip: text; 
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite, softGlow 3s ease-in-out infinite alternate;
}

@keyframes softGlow {
  from { text-shadow: 0 0 10px rgba(255,255,255,0); }
  to { text-shadow: 0 0 20px rgba(236, 72, 153, 0.4); }
}
.hero-desc {
  font-size: 1.15rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 40px;
  max-width: 600px;
}
.hero-desc span {
  opacity: 0;
  display: inline-block;
  animation: charFade 0.05s forwards;
  animation-delay: calc(var(--i) * 0.04s);
}

@keyframes charFade {
  to { opacity: 1; }
}


@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.mobile-hero-cta { display: none; }
.desktop-only { display: flex; }

/* Hero Çemberleri */
.hero-visual-center {
  position: relative; width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.cyber-ring {
  position: absolute; border-radius: 50%; border: 2px solid transparent;
}
.ring-1 {
  width: 100%; height: 100%; border-top-color: var(--brand-pink);
  animation: spin3D 10s linear infinite;
}
.ring-2 {
  width: 80%; height: 80%; border-right-color: var(--brand-blue);
  animation: spin3D 7s linear infinite reverse;
}
.ring-3 {
  width: 60%; height: 60%; background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
  border: 1px solid rgba(6,182,212,0.4); animation: pulseCore 3s ease-in-out infinite alternate;
}
@keyframes spin3D {
  0% { transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(60deg) rotateY(360deg) rotateZ(360deg); }
}
@keyframes pulseCore {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* --- PANEL 2: SPLIT TEKNOLOJİ --- */
.type-split {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 120px; align-items: center;
}
.split-right { transform: translateX(50px); }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.section-desc { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; }
.feature-grid { 
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; 
}
.f-item {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  padding: 15px 20px; border-radius: 12px; display: flex; align-items: center; gap: 12px;
  transition: all 0.3s ease;
}
.f-item:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.f-item svg { width: 22px; height: 22px; stroke: var(--brand-blue); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.f-item span { font-weight: 500; font-size: 1rem; color: #fff; line-height: 1.2; }



/* Mobil Yayinci Mockup */
.mobile-mockup {
  position: relative; width: 300px; height: 600px; margin: 0 auto;
  background: #000; border: 8px solid #222; border-radius: 40px;
  box-shadow: 0 0 50px rgba(6,182,212,0.2); overflow: hidden;
  transform: rotate(-5deg); transition: transform 0.5s;
}
.mobile-mockup:hover { transform: rotate(0deg) scale(1.05); }
.mockup-screen {
  width: 100%; height: 100%; background: linear-gradient(to bottom, #111, #2d1b4e);
  display: flex; flex-direction: column; padding: 20px;
  position: relative; /* Base for absolute input */
}
.stream-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.stream-live { background: #ff0055; color: #fff; padding: 4px 10px; border-radius: 8px; font-weight: 700; font-size: 0.8rem; animation: pulseCore 1s infinite alternate;}
.stream-viewers { 
  background: rgba(0,0,0,0.5); padding: 4px 10px; border-radius: 8px; font-size: 0.75rem; 
  min-width: 80px; text-align: center; display: flex; gap: 4px; align-items: center; justify-content: center;
}
.stream-viewers span { min-width: 45px; display: inline-block; }

/* Dinamik İzleyici Sayısı Efekti */
.stream-viewers span::after {
  content: "";
  animation: viewerFluctuate 5s infinite;
}
@keyframes viewerFluctuate {
  0% { content: "14.2K"; }
  25% { content: "14.1K"; }
  50% { content: "14.3K"; }
  75% { content: "14.2K"; }
  100% { content: "14.4K"; }
}
.stream-chat { 
  display: flex; flex-direction: column; gap: 8px; 
  height: 480px; /* Telefonun tüm alt kısmını kapsasın */
  overflow: hidden; justify-content: flex-start;
  margin-top: 10px;
  position: relative;
  z-index: 5; /* Input bar (10) arkasında kalsın */
  /* En alttan başlayacak maske */
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}
.chat-line { 
  background: rgba(255,255,255,0.05); padding: 8px; border-radius: 10px; 
  font-size: 0.7rem; width: 100%; border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px;
  animation: chatContinuousScroll 30s linear infinite;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}
.avatar {
  width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--brand-pink);
  object-fit: cover; background: #222; flex-shrink: 0;
}
.chat-line strong { color: var(--brand-pink); display: block; font-size: 0.7rem; margin-bottom: 1px; }
.chat-line span { color: #fff; font-size: 0.65rem; text-align: left; }

/* Simüle edilmiş Input Bar - TAM ALTTA SABİT */
.stream-input-sim {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 10px 15px; background: rgba(255,255,255,0.08);
  border-radius: 25px; display: flex; justify-content: space-between; align-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  z-index: 10;
}
.input-placeholder { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.input-send { color: var(--brand-blue); display: flex; align-items: center; }

@keyframes chatContinuousScroll {
  /* En alttan (input bar'ın arkasından) başlayıp yukarı süzülme */
  0% { transform: translateY(420px); }
  100% { transform: translateY(-1350px); }
}



/* --- PANEL 3: ISTATISTIK --- */
/* --- PANEL 3: BENTO SERVICES GRID (ICONLESS) --- */
.type-stats {
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.marquee-giant { width: 100vw; overflow: hidden; white-space: nowrap; margin-bottom: 20px; }
.marquee-track {
  display: inline-block; font-size: clamp(4rem, 10vw, 8rem); font-weight: 900;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.1);
  animation: scrollGiant 40s linear infinite;
}
@keyframes scrollGiant { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- PANEL 3: MEGA SERVICE PANEL --- */
.mega-service-panel {
  width: 95%; max-width: 1300px; background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 40px;
  padding: 60px; position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px); margin-top: 20px;
}
.b-brand { 
  font-size: 0.85rem; font-weight: 800; 
  color: var(--brand-pink); letter-spacing: 6px; opacity: 0.9;
  margin-bottom: 20px;
}
.mega-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }

.b-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; color: #fff; line-height: 1; }
.b-desc { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 40px; max-width: 500px; }

.mega-feature-groups { display: block; width: 100%; }
.m-group h4 { font-size: 0.8rem; color: var(--brand-pink); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; font-weight: 800; }
.grid-list { display: grid !important; grid-template-columns: 1fr 1fr; gap: 20px 40px; }

.b-list { list-style: none; display: flex; flex-direction: column; }
.b-list li { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 500; display: flex; align-items: center; gap: 15px; transition: color 0.3s; }
.b-list li:hover { color: #fff; }
.b-list li::before { 
  content: ""; width: 8px; height: 8px; border-radius: 50%; 
  background: #ff4d4d; box-shadow: 0 0 10px #ff0000;
  animation: livePulse 1.5s infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0% { transform: scale(0.8); opacity: 0.6; box-shadow: 0 0 5px #ff0000; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 15px #ff0000; }
  100% { transform: scale(0.8); opacity: 0.6; box-shadow: 0 0 5px #ff0000; }
}

.career-growth-sim {
  display: flex !important; align-items: flex-end !important; gap: 20px; height: 280px;
  background: rgba(0,0,0,0.3); padding: 40px; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.05);
}
.growth-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 15px; flex: 1; height: 100%; justify-content: flex-end; }
.growth-bar-wrap span { font-size: 0.7rem; color: var(--text-muted); font-weight: 800; letter-spacing: 1px; }
.growth-bar {
  width: 100%; border-radius: 8px 8px 2px 2px;
  background: linear-gradient(to top, var(--brand-blue), var(--brand-pink));
  transform-origin: bottom;
  animation: growCareerFull 3s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate !important;
}
.bar-1 { height: 100%; animation-delay: 0s; background: linear-gradient(to top, var(--brand-pink), #fff); }
.bar-2 { height: 70%; animation-delay: 0.5s; }
.bar-3 { height: 60%; animation-delay: 1s; }
.bar-4 { height: 85%; animation-delay: 1.5s; }

@keyframes growCareerFull {
  0% { transform: scaleY(0.3); opacity: 0.5; }
  100% { transform: scaleY(1); opacity: 1; box-shadow: 0 0 30px rgba(6,182,212,0.4); }
}

/* --- PANEL 4: FAQ --- */
.type-faq {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  view-timeline-name: --panel4; view-timeline-axis: block;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; width: 90%; max-width: 1100px;
  margin-top: 50px;
}
.faq-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  padding: 35px; border-radius: 24px; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(10px);
}
.faq-card:hover {
  background: rgba(255,255,255,0.05); border-color: var(--brand-pink);
  transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.faq-question {
  font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 15px;
  display: flex; align-items: center; gap: 15px;
}
.faq-question::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-pink);
  box-shadow: 0 0 10px var(--brand-pink);
  animation: livePulse 1.5s infinite;
}
.faq-answer { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

/* FAQ Scroll Animasyonları (Senkronize & Staggered) */
.type-faq .reveal-text { 
  animation: revealUp both; 
  animation-timeline: --panel4; 
  animation-range: entry 10% cover 40%; 
}
.reveal-faq-card {
  opacity: 0;
  animation: faqReveal both;
  animation-timeline: --panel4;
}
@keyframes faqReveal {
  0% { opacity: 0; transform: scale(0.9) translateY(40px); filter: blur(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.reveal-faq-card[style*="--stagger: 1"] { animation-range: entry 20% cover 50%; }
.reveal-faq-card[style*="--stagger: 2"] { animation-range: entry 25% cover 55%; }
.reveal-faq-card[style*="--stagger: 3"] { animation-range: entry 30% cover 60%; }
.reveal-faq-card[style*="--stagger: 4"] { animation-range: entry 35% cover 65%; }


/* --- PANEL 5: CTA (İletişim) --- */
.type-cta {
  display: flex; flex-direction: column; height: 100vh; justify-content: center; align-items: center; text-align: center;
  view-timeline-name: --panel5; view-timeline-axis: block;
}
.type-cta .mega-title { animation: revealUp both; animation-timeline: --panel5; animation-range: entry 10% cover 30%; }
.cta-box { max-width: 750px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 40px; }
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  background: #25D366; color: #fff; text-decoration: none; font-size: 1.2rem; font-weight: 800;
  padding: 16px 45px; border-radius: 50px; transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 40px rgba(37,211,102,0.5); }
.btn-wa svg { width: 28px; height: 28px; }
.contact-info { display: flex; gap: 32px; color: var(--text-muted); font-size: 1.1rem; margin-top: 20px; }
.panel-footer {
  width: 100%; max-width: 1100px;
  display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); 
  padding-top: 30px; margin-top: 60px;
  color: var(--text-muted); font-size: 0.85rem;
}


/* FAB Sabit (Royal Style) */
.fab-royal {
  position: fixed; bottom: 30px; right: 30px; 
  padding: 12px 28px; border-radius: 50px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-pink));
  color: #fff; text-decoration: none; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(236,72,153,0.4); z-index: 1000; 
  animation: buttonPulse 2s infinite alternate;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
}

@media (max-width: 600px) {
  .fab-royal { 
    bottom: 20px; right: 20px; 
    padding: 10px 20px; font-size: 0.85rem;
  }
}

/* --- PANEL 3 SCROLL ANIMATIONS --- */
.mega-service-panel {
  view-timeline-name: --panel3;
  view-timeline-axis: block;
}

/* Raven Medya & Başlık: Alttan Gelme */
.reveal-text {
  animation: revealUp both;
  animation-timeline: --panel3;
  animation-range: entry 10% cover 30%;
}

@keyframes revealUp {
  0% { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Daktilo Efekti: Kelime kelime belirme (Layout bozulmaması için) */
.reveal-typewriter span {
  display: inline-block;
  opacity: 0;
  white-space: pre; /* Boşlukları korumak için */
  animation: typeWord both linear;
  animation-timeline: --panel3;
}
.reveal-typewriter span:nth-child(1) { animation-range: entry 20% cover 22%; }
.reveal-typewriter span:nth-child(2) { animation-range: entry 22% cover 24%; }
.reveal-typewriter span:nth-child(3) { animation-range: entry 24% cover 26%; }
.reveal-typewriter span:nth-child(4) { animation-range: entry 26% cover 28%; }
.reveal-typewriter span:nth-child(5) { animation-range: entry 28% cover 30%; }
.reveal-typewriter span:nth-child(6) { animation-range: entry 30% cover 32%; }
.reveal-typewriter span:nth-child(7) { animation-range: entry 32% cover 34%; }
.reveal-typewriter span:nth-child(8) { animation-range: entry 34% cover 36%; }
.reveal-typewriter span:nth-child(9) { animation-range: entry 36% cover 38%; }

@keyframes typeWord {
  0% { opacity: 0; filter: blur(5px); transform: translateY(5px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Hizmet Maddeleri: Yanlardan Kayma */
.reveal-item {
  animation: slideInLeft both;
  animation-timeline: --panel3;
  animation-range: entry 30% cover 50%;
}
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}
.reveal-item[style*="--stagger: 2"] { animation-range: entry 32% cover 52%; }
.reveal-item[style*="--stagger: 3"] { animation-range: entry 34% cover 54%; }
.reveal-item[style*="--stagger: 4"] { animation-range: entry 36% cover 56%; }
.reveal-item[style*="--stagger: 5"] { animation-range: entry 38% cover 58%; }
.reveal-item[style*="--stagger: 6"] { animation-range: entry 40% cover 60%; }

/* 3D Grafik: Fade + Scale + Perspective */
.reveal-3d {
  animation: reveal3D both;
  animation-timeline: --panel3;
  animation-range: entry 20% cover 50%;
  transform-style: preserve-3d;
}
@keyframes reveal3D {
  0% { opacity: 0; transform: perspective(1000px) rotateY(30deg) scale(0.8) translateZ(-100px); }
  100% { opacity: 1; transform: perspective(1000px) rotateY(0) scale(1) translateZ(0); }
}

/* Testimonial Wall */
.testimonial-wall {
  display: flex; justify-content: center; width: 100%; height: 500px; overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  padding: 20px;
}
.testimonial-track {
  display: flex; flex-direction: column; gap: 20px;
}
.track-1 { animation: scrollUpSmooth 30s linear infinite; }

@keyframes scrollUpSmooth {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 10px)); }
}

.t-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  padding: 20px; border-radius: 20px; display: flex; gap: 15px; width: 320px;
  backdrop-filter: blur(10px); transition: transform 0.3s, border-color 0.3s;
}
.t-card:hover { transform: scale(1.02); border-color: var(--brand-pink); }
.t-avatar { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--brand-pink); object-fit: cover; }
.t-content strong { display: block; color: var(--brand-pink); font-size: 0.9rem; margin-bottom: 4px; }
.t-content p { font-size: 0.85rem; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.t-stars { color: #facc15; font-size: 0.7rem; letter-spacing: 2px; }

/* --- MOBIL RESPONSIVE --- */
@media (max-width: 900px) {
  .testimonial-wall { 
    height: 350px; 
    gap: 15px; 
    flex-direction: row; /* Keep side-by-side if they scroll same way */
    justify-content: center;
  }
  .track-2 { display: none; } /* Hide 2nd track on mobile for cleaner look if scrolling same way */
  .t-card { width: 100%; max-width: 320px; padding: 12px; margin: 0 auto; }
  .t-avatar { width: 40px; height: 40px; }
  .t-content p { font-size: 0.75rem; }

  /* 4 Adımda & FAQ Grid Fix */
  .faq-grid { 
    grid-template-columns: 1fr !important; 
    gap: 15px; 
    padding: 0 10px;
  }
  
  .panel-content { 
    padding: 80px 20px; 
    width: 100%;
    box-sizing: border-box;
  }

  .mega-title { font-size: 2.2rem; line-height: 1.1; }
  .section-title { font-size: 1.8rem; }
  .logo { height: 48px; }
  .nav-menu { display: none; }
  .mobile-menu-controls { display: block; }
  
  .panel-content { padding: 0 24px; margin-top: 80px; }
  
  .desktop-only { display: none !important; }
  .mobile-hero-cta { display: block; margin-top: 20px; }
  .mobile-hero-cta .btn-wa { width: 100%; max-width: 300px; font-size: 1.1rem; }

  .type-hero { flex-direction: column; text-align: center; gap: 40px; padding-top: 40px; }
  .hero-visual-center { width: 70vw; height: 70vw; margin-top: 30px; }
  .scroll-indicator { justify-content: center; }
  
  .type-split { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .feature-list { align-items: center; }
  .mobile-mockup { transform: rotate(0); height: 400px; width: 220px; }
  
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .stat-card { padding: 20px; }
  .stat-num { font-size: 3rem; }
  
  .contact-info { flex-direction: column; gap: 12px; }
  .panel-footer { flex-direction: column; gap: 12px; text-align: center; align-items: center; }
}
