/* ==========================================================================
   HEXA DİJİTAL - AWWWARDS PREMIUM TASARIM (60 FPS OPTIMIZED)
   Geliştirici: HM
========================================================================== 
*/

/* Yazıların yumuşakça değişmesi için geçiş efekti */
.fade-transition {
  transition: opacity 0.4s ease-in-out;
}

/* GENEL YAPI */
.tech-story-section {
  color: var(--text-main);
  padding: 100px 0px;
}

.tech-story-container {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}

/* SABİT SOL TARAF */
.story-sticky-left {
  position: sticky;
  top: 20vh;
  min-width: 0;
}

.story-sticky-left h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-main);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.story-sticky-left p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.8;
}

/* AKAN SAĞ TARAF */
.story-scroll-right {
  display: flex;
  flex-direction: column;
  gap: 120px;
  min-width: 0;
}

.phase-block {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.phase-number {
  font-size: 2.5rem;
  color: var(--neon-mint);
  letter-spacing: 10px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid var(--border-neon);
  padding-bottom: 10px;
  width: fit-content;
}

.phase-block h3 {
  font-size: 2.5rem;
  color: var(--text-main);
  margin: 0;
}

/* YENİ: TEKNOLOJİ -> AMAÇ KARTLARI */
.tech-philosophies {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.philo-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  padding: 30px 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

/* Sol tarafa ince neon bir çizgi ekleyerek kartı belirginleştirdik */
.philo-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--border-neon);
  transition: all 0.3s ease;
}

.philo-item:hover {
  background: rgba(1, 253, 208, 0.04);
  border-color: rgba(1, 253, 208, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.philo-item:hover::before {
  background: var(--neon-mint);
}

/* Üst Kısım: Hangi Teknoloji? */
.tech-header {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
}

.philo-tech {
  font-size: 1.1rem;
  color: var(--neon-mint);
  font-weight: 800;
  letter-spacing: 1px;
}

/* Alt Kısım: Ne İçin Kullanıyoruz? */
.tech-purpose {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 5px;
}

.purpose-label {
  font-size: 0.9rem;
  font-weight: 800;

  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;

  /* YENİ EKLENEN KISIM: Şık Alt Çizgi */
  border-bottom: 2px solid var(--neon-mint);
  /* Neon mint renginin hafif saydam hali */
  padding-bottom: 5px;
  /* Çizgi ile yazı arasındaki boşluk */
  width: fit-content;
  /* Çizginin sadece yazının uzunluğu kadar olmasını sağlar */
}

.tech-purpose p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-main);
  /* Paragraf rengini açtık ki okuması kolay olsun */
  margin: 0;
}

/* MOBİL UYARLAMA */
@media (max-width: 768px) {
  .tech-story-section {
    padding: 60px 10px;
  }

  .tech-story-container {
    gap: 15px;
    grid-template-columns: 40% 60%;
  }

  .story-sticky-left h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .story-sticky-left p {
    font-size: 0.85rem;
    line-height: 1.35;
  }

  .story-scroll-right {
    gap: 60px;
  }

  .philo-item {
    padding: 20px 20px 20px 25px;
  }

  .philo-tech {
    font-size: 0.9rem;
  }

  .tech-purpose p {
    font-size: 0.9rem;
  }
}

:root {
  --neon-mint: #00ffd1;
  --soft-cyan: #00ffd1;
  --bg-dark: #020a10;
  --card-bg: #00253d;
  --card-hover: #002034;
  --deep-space: #01060a;
  --electric-blue: #0070ff;
  --text-main: #fdfdfd;
  --text-muted: #f7f7f7;
  --border-neon: rgba(0, 255, 209, 0.12);
}

@font-face {
  font-family: "Agale";
  src: url("../fonts/Agale.woff2") format("opentype");
  font-display: swap;
}

.cls-1 {
  fill: #01fdd0;
}

.cls-2 {
  fill: #00010100;
}

.cls-3 {
  fill: #06f7cc;
}

.cls-4 {
  fill: #02fccf;
}

.cls-5 {
  fill: #fdfdfd;
}


/* ==========================================================================
   1. GLOBAL RESET & TEMEL AYARLAR
========================================================================== 
*/

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

body {
  font-family: "Space Grotesk", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}


button {
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

svg {
  display: block;
  vertical-align: middle;
}

.fill-white {
  fill: #ffffff;
}

.container-fluid {
  width: 90%;
  max-width: 90rem;
  margin: 0 auto;
}

.main-layout {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.text-gradient-white {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, #ffffff 25%, var(--neon-mint) 100%);
}

.text-gradient-cyan {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, var(--neon-mint));
}

/* 1. Tarayıcının orijinal çirkin scrollbar'ını tamamen siliyoruz (Zıplamayı da bitirir) */
::-webkit-scrollbar {
  display: none !important;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* 2. Bizim Tasarladığımız Yeni Scrollbar */
.custom-scrollbar {
  position: fixed;
  top: 0;
  right: 2px;
  width: 6px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.03);
  z-index: 9999;
  opacity: 0;
  /* Başlangıçta gizli (Senin istediğin gibi) */
  visibility: hidden;
  /* Yola tıklanabilsin diye */
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.custom-scroll-thumb {
  width: 100%;
  height: 0px;
  /* Boyutu JS ile sayfa uzunluğuna göre hesaplanacak */
  background-color: var(--neon-mint);
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 209, 0.6);
  will-change: transform;
  /* Üzerine gelince el işareti çıkar */
}



/* Mobilde çubuğu çok daha zarif ve ince yapıyoruz */
@media (max-width: 768px) {
  .custom-scrollbar {
    width: 3px;
  }
}

/* ==========================================================================
   2. ARKA PLAN VE IŞIK EFEKTLERİ
========================================================================== 
*/

.light-wrapper {
  position: fixed;
  top: -20%;
  left: -10%;
  width: 130%;
  height: 150%;
  transform: rotate(-25deg) translateZ(0);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.ray {
  position: absolute;
  top: 0;
  mix-blend-mode: screen;
  animation: flow 12s ease-in-out infinite alternate;
  will-change: transform;
}

.ray-1 {
  left: 10%;
  width: 45%;
  height: 100%;
  background: linear-gradient(180deg, var(--soft-cyan) 0%, rgba(0, 112, 255, 0.3) 40%, transparent 100%);
  opacity: 0.5;
}

.ray-2 {
  left: 0%;
  width: 25%;
  height: 90%;
  background: linear-gradient(180deg, var(--electric-blue) 0%, transparent 100%);
  opacity: 0.5;
}

.ray-3 {
  left: 40%;
  width: 35%;
  height: 110%;
  background: linear-gradient(180deg, var(--electric-blue) 0%, transparent 100%);
  opacity: 0.4;
  animation-delay: -6s;
}

@keyframes flow {
  from {
    transform: translate3d(0, -5%, 0) scaleX(1);
    opacity: 0.3;
  }

  to {
    transform: translate3d(0, 8%, 0) scaleX(1.15);
    opacity: 0.6;
  }
}

/* ==========================================================================
   3. SPLASH (AÇILIŞ) EKRANI
========================================================================== 
*/

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.splash-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: blur(130px);
  opacity: 0.3;
  background: radial-gradient(circle at center, rgba(0, 255, 209, 0.1) 0%, transparent 70%);
}

.splash-blob {
  position: absolute;
  border-radius: 50%;
  transform: translateZ(0);
  will-change: transform;
}

.splash-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-logo-container {
  margin-bottom: 1.5rem;
}

.splash-logo {
  width: 7rem;
  height: 7rem;
  will-change: transform, opacity;
}

.splash-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  height: 0;
  width: auto;
}

.splash-title-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.splash-title {
  font-family: "Agale", sans-serif;
  line-height: 0.8;
  font-size: clamp(4.5rem, 10vw, 8.5rem);
  padding: 0 2.5rem;
  font-weight: normal;
}

.splash-subtitle {
  font-family: "Agale", sans-serif;
  color: var(--neon-mint);
  letter-spacing: 0.7em;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  padding: 0 2.5rem 0.5rem;
  margin-left: 0.7em;
}

.mark-piece {
  opacity: 0;
}

@media (min-width: 768px) {
  .splash-wrapper {
    flex-direction: row;
  }

  .splash-logo-container {
    margin-bottom: 0;
  }

  .splash-logo {
    width: 13rem;
    height: 13rem;
  }

  .splash-text-container {
    align-items: flex-start;
    height: auto;
    width: 0;
  }

  .splash-title-wrapper {
    justify-content: flex-start;
  }

  .splash-title {
    padding: 0 3.5rem;
  }

  .splash-subtitle {
    padding: 0 3.5rem;
    margin-left: 0;
  }
}

/* ==========================================================================
   4. NAVBAR (ÜST MENÜ)
========================================================================== 
*/

.navbar {
  width: 100%;
  max-width: 95%;
  margin: 1.5rem auto 0;
  position: sticky;
  top: 1.5rem;
  z-index: 40;

  /* Arka planı biraz daha şeffaf yapıyoruz ki altından geçenler belli olsun */
  background-color: rgba(2, 10, 16, 0.4);
  /* Senin --bg-dark renginin saydam hali */

  /* İŞTE CAM EFEKTİNİ VEREN KODLAR: */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Safari ve iOS cihazlar için zorunlu */

  /* Cam hissiyatını artırmak için ince bir iç ışık (gölge) ekliyoruz */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);

  border: 1px solid var(--border-neon);
  border-radius: 100px;
  transition: all 0.4s ease;
  transform: translateZ(0);
  will-change: transform;
}

.nav-inner {
  padding: 0.6rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.nav-brand:hover .nav-logo {
  transform: scale3d(1.05, 1.05, 1) rotate(-5deg);
}

.nav-logo {
  width: 4.5rem;
  height: 4.5rem;
  transition: transform 0.4s;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  width: max-content;
}

.text-hexa {
  font-family: "Agale", sans-serif;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}

.text-dijital {
  font-family: "Agale", sans-serif;
  font-size: 1rem;
  color: var(--neon-mint);
  letter-spacing: 0.35em;
  margin-right: -0.42em;
  text-transform: capitalize;
}

.nav-menu {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  transition: color 0.3s, background 0.3s;
}

.nav-item:hover .nav-link {
  color: var(--neon-mint);
  background-color: rgba(0, 255, 209, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-outline {
  border: 1px solid rgba(0, 255, 209, 0.3);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  background: rgba(0, 255, 209, 0.03);
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--neon-mint);
  color: var(--bg-dark);
  transform: translate3d(0, -2px, 0);
}

@media (max-width: 992px) {

  /* Genel & Menü */
  .hidden-mobile {
    display: none;
  }

  .nav-brand {
    position: relative;
    z-index: 50;
  }

  /* --- HAMBURGER BUTONU --- */
  .modern-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    width: 36px;
    height: 30px;
    z-index: 50;
    position: relative;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
  }

  .modern-menu-btn .line {
    height: 2px;
    background-color: var(--neon-mint);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
    border-radius: 2px;
    transform-origin: center;
  }

  .modern-menu-btn .line-1 {
    width: 100%;
  }

  .modern-menu-btn .line-2 {
    width: 75%;
  }

  .modern-menu-btn .line-3 {
    width: 50%;
  }

  .modern-menu-btn.active .line-1 {
    transform: translateY(8px) rotate(45deg);
    background-color: #fff;
  }

  .modern-menu-btn.active .line-2 {
    opacity: 0;
    transform: translateX(10px);
  }

  .modern-menu-btn.active .line-3 {
    width: 100%;
    transform: translateY(-8px) rotate(-45deg);
    background-color: #fff;
  }

  /* --- MOBİL MENÜ ARKA PLANI VE ANİMASYONU --- */
  /* --- MOBİL MENÜ ARKA PLANI VE ANİMASYONU --- */
  .nav-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;

    background: linear-gradient(135deg, rgba(2, 10, 16, 0.98) 0%, rgba(10, 20, 30, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;

    clip-path: circle(0px at calc(100% - 40px) 40px);
    transition: clip-path 0.7s cubic-bezier(0.86, 0, 0.07, 1);

    /* İŞTE BURASI: 45 yerine -1 yapıyoruz! */
    z-index: -1;
    border-radius: 44px;
    margin: 0;
    padding: 0;
  }

  /* Menü açıldığında daire tüm ekranı kaplar */
  .nav-menu.active {
    clip-path: circle(150% at calc(100% - 40px) 40px);
  }



  /* --- MENÜ ELEMANLARI VE SIRALI GEÇİŞ --- */
  .nav-item {
    list-style: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* Menü açıldığında elemanlar sırayla yukarı kayarak belirir */
  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-menu.active .nav-item:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-menu.active .nav-item:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-menu.active .nav-item:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-menu.active .nav-item:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-menu.active .nav-item:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-menu.active .nav-item:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav-menu.active .nav-item:nth-child(8) {
    transition-delay: 0.45s;
  }

  /* --- LİNKLERİN TASARIMI --- */
  .nav-link {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
  }

  /* Hover / Dokunma Efekti: Alttan çıkan neon çizgi */
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--neon-mint);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--neon-mint);
  }

  .nav-item:hover .nav-link,
  .nav-menu.active .nav-item.active .nav-link {
    color: #fff;
    background: transparent;
  }

  .nav-item:hover .nav-link::after,
  .nav-menu.active .nav-item.active .nav-link::after {
    width: 100%;
  }
}

/* ==========================================================================
   5. HERO BÖLÜMÜ (ANA EKRAN VE PETEK)
========================================================================== 
*/

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  padding: 4rem 0 2rem;
  overflow: hidden;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 850px;
  width: 100%;
}

.hero-text-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%) translateZ(0);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 255, 209, 0.08);
  border: 1px solid var(--border-neon);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--neon-mint);
  border-radius: 50%;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: var(--neon-mint);
  opacity: 0.5;
  animation: pulse-dot-optimized 2s infinite ease-in-out;
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neon-mint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes pulse-dot-optimized {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.2;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.hero-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-size: clamp(3.2rem, 5vw + 1rem, 6.5rem);
  color: #fff;
}

.hero-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 40rem;
  font-size: clamp(1.1rem, 1vw + 0.5rem, 1.25rem);
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 38rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* --- 3D Honeycomb (Petek) Arka Planı --- */
.hero-visual-wrapper {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  z-index: 1;
  width: 800px;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.wrapper-3d {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.interactive-honeycomb {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 200ms ease-out;
  transform: rotateX(20deg) rotateY(-20deg);
  will-change: transform;
}

.honeycomb-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  width: 120px;
  height: 138px;
  margin-left: -60px;
  margin-top: -69px;
}

.hex-item {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.hex-data-svg {
  width: 400px;
  height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible;
}

.hex-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hex-inner {
  position: absolute;
  inset: 0.25rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.4s ease;
  will-change: background, box-shadow;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, #00ffd075 100%);
}

.dot-item {
  position: absolute;
  border-radius: 50%;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  background-color: #fff;
  box-shadow: 0 0 10px #fff;
  /* Animasyonun başlamasını 2 saniye bekletiyoruz (GSAP bitene kadar) */
  animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  animation-delay: 2s;
}


.bg-cyan {
  background-color: var(--neon-mint);
  box-shadow: 0 0 15px var(--neon-mint);
}

@keyframes pulse-glow {
  50% {
    opacity: 0.4;
  }
}

.animate-float {
  animation: float-slow 8s ease-in-out infinite;
  will-change: transform;
  transform: scale(clamp(0.65, 0.2 + 0.08vw, 2.5));
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translate3d(0, 0px, 0) rotateX(0deg);
  }

  50% {
    transform: translate3d(0, -15px, 0) rotateX(2deg);
  }
}

.animate-data {
  animation: data-flow 1.5s linear infinite;
}

@keyframes data-flow {
  to {
    stroke-dashoffset: -24;
  }
}


/* ==========================================================================
   6. BENTO GRID (SÜRECİMİZ - MAT KARTLAR)
========================================================================== 
*/

.section-how-we-work {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}


.services-header-wrapper {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--neon-mint);
  text-transform: uppercase;
  background: rgba(0, 255, 209, 0.08);
  border: 1px solid var(--border-neon);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}

.section-desc {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 650px;
}

.text-cyan {
  color: var(--neon-mint);
  font-weight: 600;
}

.hexa-bento-grid {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 2;
  grid-template-columns: 1.3fr 1fr;
  grid-template-areas: "analyze code" "analyze design" "launch launch";
}

.step-analyze {
  grid-area: analyze;
  min-height: 600px;
}

.step-code {
  grid-area: code;
  min-height: 280px;
}

.step-design {
  grid-area: design;
  min-height: 280px;
}

.step-launch {
  grid-area: launch;
  min-height: 250px;
}

.hexa-card {
  background: var(--card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 32px;
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
  /* DİKKAT: 'transform' değerini transition'dan çıkardık, sadece renk geçişleri kaldı */
  transition: border-color 0.4s ease, background-color 0.4s ease;
  will-change: transform;
}

/* GSAP kaydırma animasyonu bittikten sonra bu class eklenecek ve hover pürüzsüzleşecek */
.hexa-card.hover-ready {
  transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.hexa-card:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(0, 255, 209, 0.6);
  background: var(--card-hover);
}

.card-content {
  position: relative;
  z-index: 5;
  max-width: 65%;
}

.step-indicator {
  font-family: "Agale", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 255, 209, 0.3);
  opacity: 0.5;
  margin-bottom: 20px;
  transition: color 0.4s;
}

.hexa-card:hover .step-indicator {
  color: rgba(0, 255, 209, 0.1);
  -webkit-text-stroke-color: var(--neon-mint);
}

.hexa-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.hexa-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.hexa-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hexa-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hexa-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--neon-mint);
  border-radius: 50%;
}

.card-lottie {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  transform: translateZ(0);
}

.hexa-card:hover .card-lottie {
  opacity: 1;
}

.lottie-pos-1 {
  width: 500px;
  height: 500px;
  right: 0px;
  bottom: -15%;
}

.lottie-pos-2 {
  width: 220px;
  height: 220px;
  right: 0px;
  top: 65%;
  transform: translate3d(0, -50%, 0);
}

.lottie-pos-3 {
  width: 300px;
  height: 300px;
  right: 0px;
  top: 65%;
  transform: translate3d(0, -50%, 0);
}

.lottie-pos-4 {
  width: 300px;
  height: 300px;
  right: 30px;
  bottom: 0;
}

/* ==========================================================================
   7. GENİŞLEYEN AKORDEON BÖLÜMÜ
========================================================================== 
*/

.section-expand-services {
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

.accordion-gallery {
  display: flex;
  height: 550px;
  gap: 16px;
  margin: 40px auto 0;
  contain: layout;
}

.acc-panel {
  flex: 1;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.3, 1), background-color 0.4s;
  display: flex;
  align-items: center;
  will-change: flex;
}

.acc-panel:hover,
.acc-panel.active {
  flex: 3.5;
  background: var(--card-hover);
  border-color: rgba(0, 255, 209, 0.4);
}

.acc-bg-number {
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: "Agale", sans-serif;
  font-size: 15rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.6s ease;
}

.acc-panel:hover .acc-bg-number,
.acc-panel.active .acc-bg-number {
  color: rgba(0, 255, 209, 0.03);
  transform: translate3d(-20px, 20px, 0) scale(1.1);
}

.vertical-title {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 5;
  transition: opacity 0.3s;
}

.v-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-mint);
}

.v-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  white-space: nowrap;
}

.acc-panel:hover .vertical-title,
.acc-panel.active .vertical-title {
  opacity: 0;
  pointer-events: none;
}

.expanded-content {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(20px, 0, 0);
  padding: 0 50px;
  width: 100%;
  min-width: 400px;
  z-index: 5;
  position: relative;
  transition: opacity 0.4s, transform 0.4s;
}

.acc-panel:hover .expanded-content,
.acc-panel.active .expanded-content {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.2s;
}

.exp-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.exp-icon {
  font-size: 3rem;
  color: var(--neon-mint);
}

.exp-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-list li {
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s, color 0.3s;
}

.exp-list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 2px;
  background: var(--neon-mint);
  transition: width 0.3s ease;
}

.exp-list li:hover {
  color: #fff;
  transform: translate3d(10px, 0, 0);
}

.exp-list li:hover::before {
  width: 16px;
}

.acc-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s;
  mix-blend-mode: luminosity;
}

.acc-panel:hover .acc-bg-image,
.acc-panel.active .acc-bg-image {
  opacity: 0.15;
}

/* --- MOBİL UYUMLU SERVİSLER --- */
@media (max-width: 991px) {

  /* Genel Kapsayıcı: Sabit yüksekliği kaldırıp dikey akışa geçiyoruz */
  .accordion-gallery {
    flex-direction: column;
    height: auto;
    gap: 12px;
    margin-top: 20px;
    display: flex;
    /* Alt alta dizilimi garanti eder */
  }

  /* Kartlar: Sağa genişlemek yerine aşağı genişleyecek */
  .acc-panel {
    width: 100%;
    flex: none !important;
    /* Masaüstündeki flex: 1 özelliğini kapatır */
    height: 70px;
    /* Başlangıçta (kapalıyken) yükseklik */
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    /* İçeriği dikey sırala */
    align-items: flex-start;
    justify-content: flex-start;
  }

  /* Aktif/Hover Durumu: Kartın aşağı doğru açılması */
  .acc-panel:hover,
  .acc-panel.active {
    flex: none !important;
    height: auto;
    /* İçerik kadar uzasın */
    min-height: 380px;
    /* Çok kısa kalmaması için */
    background: var(--card-hover);
    padding-bottom: 30px;
  }

  /* Dikey Yazıları Yataya Çeviriyoruz */
  .vertical-title {
    position: relative;
    /* Absolute'u iptal edip en üste sabitliyoruz */
    flex-direction: row;
    /* Numara ve metni yan yana getir */
    justify-content: flex-start;
    height: 70px;
    min-height: 70px;
    padding: 0 25px;
    gap: 15px;
    opacity: 1 !important;
    /* Mobilde her zaman görünür */
  }

  .v-text {
    writing-mode: horizontal-tb;
    /* Yazıyı düzelt */
    transform: rotate(0deg);
    /* Döndürmeyi kaldır */
    font-size: 1.1rem;
    color: #fff;
  }

  /* Kart Açıldığında Başlığı Hafiflet (İsteğe bağlı) */
  .acc-panel:hover .vertical-title,
  .acc-panel.active .vertical-title {
    opacity: 0.5 !important;
  }

  /* Genişleyen İçerik Alanı */
  .expanded-content {
    opacity: 0;
    visibility: hidden;
    padding: 10px 25px 20px 25px;
    width: 100%;
    min-width: 100%;
    /* Taşmayı önle */
    transform: translateY(10px);
    /* Masaüstündeki sağdan gelişi aşağıdan gelişe çevir */
    transition: all 0.4s ease;
  }

  .acc-panel:hover .expanded-content,
  .acc-panel.active .expanded-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.2s;
  }

  /* Mobil Tipografi Ayarları */
  .exp-header {
    gap: 15px;
    margin-bottom: 20px;
  }

  .exp-icon {
    font-size: 2rem;
  }

  .exp-header h3 {
    font-size: 1.5rem;
  }

  .exp-list {
    gap: 12px;
  }

  .exp-list li {
    font-size: 1rem;
  }

  /* Arka plandaki dev rakam mobilde çok yer kaplamasın */
  .acc-bg-number {
    font-size: 7rem;
    top: auto;
    bottom: -10px;
    right: 0px;
  }
}

/* ==========================================================================
   8. KAYAN TEKNOLOJİ ŞERİDİ (MARQUEE)
========================================================================== 
*/

.section-tech-marquee {
  padding: 40px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border-neon);
  border-bottom: 1px solid var(--border-neon);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}

.marquee-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--card-bg) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--card-bg) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  cursor: default;
  transition: transform 0.3s ease;
}

.tech-icon {
  font-size: 1.5rem;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}

.tech-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.marquee-item:hover .tech-icon {
  filter: grayscale(0);
  opacity: 1;
  transform: scale3d(1.1, 1.1, 1);
}

.marquee-item:hover .tech-name {
  color: var(--neon-mint);
  -webkit-text-stroke: 0px;
}

@keyframes scroll-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

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

/* ==========================================================================
   9. SEÇİLMİŞ İŞLER (STACKING CARDS)
========================================================================== 
*/

.section-selected-works {
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

.stacked-cards-wrapper {
  margin-top: 60px;
  position: relative;
  padding-bottom: 50px;
}

.stacked-card {
  position: sticky;
  top: 20vh;
  padding-top: calc(var(--index) * 30px);
  margin-bottom: 50px;
  transform: translateZ(0);
  will-change: transform;
}

.card-1 {
  --index: 1;
  z-index: 1;
  top: 15vh;
}

.card-2 {
  --index: 2;
  z-index: 2;
  top: 17vh;
}

.card-3 {
  --index: 3;
  z-index: 3;
  top: 19vh;
}

.card-4 {
  --index: 4;
  z-index: 4;
  top: 21vh;
}

.solid-card {
  background: var(--card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 40px;
  display: flex;
  /* Sabit 60vh yerine min-height veriyoruz ki içerik çok uzarsa kart taşmayı engellesin */
  min-height: 60vh;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}

.solid-card:hover {
  border-color: rgba(0, 255, 209, 0.4);
}

.project-info {
  flex: 0 0 45%;
  /* 80px 60px çok fazlaydı, içeriye nefes aldıracak kadar daralttık */
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
}

.meta-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #001015;
  background: var(--neon-mint);
  padding: 6px 14px;
  border-radius: 50px;
}

.meta-year {
  color: var(--text-muted);
  font-weight: 600;
}

.project-title {
  /* 2.8rem dar alan için çok büyük, 2.3rem ideal bir manşet boyutudur */
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 15px;
  /* 25px'ten 15px'e çektik */
  letter-spacing: -0.03em;
}

.project-desc {
  /* Fontu çok hafif küçültüp, alttaki boşluğu azalttık */
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  /* 40px'ten 25px'e çektik */
  max-width: 95%;
}

.btn-project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(0, 255, 209, 0.3);
  transition: color 0.3s, border-color 0.3s;
}

.btn-project-link .arrow {
  color: var(--neon-mint);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.btn-project-link:hover {
  color: var(--neon-mint);
  border-bottom-color: var(--neon-mint);
}

.btn-project-link:hover .arrow {
  transform: translate3d(5px, -5px, 0);
}

.project-visual {
  flex: 1;
  background: #01080c;
  position: relative;
  overflow: hidden;
}

.mockup-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  opacity: 0.8;
}

.solid-card:hover .mockup-image {
  transform: scale3d(1.05, 1.05, 1);
  opacity: 1;
}

@media (max-width: 991px) {

  /* Stacking efektinin çalışması için kapsayıcıyı serbest bırak */
  .section-selected-works {
    overflow: visible !important;
  }

  /* Kartların yapışma (sticky) ayarları */
  .stacked-card {
    position: sticky;
    /* Mobilde kartların birbirinden ne kadar görüneceğini ayarlar */
    padding-top: 0 !important;
    margin-bottom: 60px;
    /* Kartlar arasındaki boşluk */
  }

  .card-1 {
    top: 15vh !important;
  }

  .card-2 {
    top: 16vh !important;
  }

  .card-3 {
    top: 17vh !important;
  }

  .card-4 {
    top: 18vh !important;
  }

  .solid-card {
    display: flex;
    flex-direction: column;
    /* Yan yana duruşu zorla */
    min-height: 70vh !important;
    /* Masaüstündeki 60vh mobilde çok fazla, 40vh ideal */
    height: 40vh;
    border-radius: 20px;
    align-items: stretch;
  }

  .project-info {
    flex: 0 0 60%;
    /* Metin alanı %60 */
    padding: 20px;
    justify-content: center;
  }

  .project-visual {
    flex: 0 0 40%;
    /* Görsel alanı %40 */
    display: block !important;
  }

  /* Mobilde yazıların okunabilmesi için boyut küçültme */
  .project-title {
    font-size: 1.1rem !important;
    /* Başlık çok yer kaplamasın */
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .project-desc {
    font-size: 0.9rem !important;
    /* Açıklama fontunu küçültüyoruz */
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    /* Yazı çok uzunsa 4 satırda keser */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .meta-tag {
    font-size: 0.6rem;
    padding: 3px 8px;
    letter-spacing: 1px;
  }

  .meta-year {
    font-size: 0.7rem;
  }

  .btn-project-link {
    font-size: 0.8rem;
    padding-bottom: 2px;
  }
}

/* Çok küçük ekranlar için (iPhone SE vb.) */
@media (max-width: 480px) {
  .solid-card {
    height: 45vh;
    /* Biraz daha yükseklik verelim */
  }

  .project-info {
    flex: 0 0 65%;
  }

  .project-visual {
    flex: 0 0 35%;
  }
}

/* ==========================================================================
   10. GÖRSEL VİTRİN (YATAY SCROLL GALERİ)
========================================================================== 
*/

.section-showcase-gallery {
  padding: 60px 0;
  position: relative;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.showcase-header {
  padding: 0 5%;
  margin-bottom: 60px;
}

.showcase-track-container {
  width: 100%;
  position: relative;
}

.showcase-track {
  display: flex;
  gap: 3vw;
  padding: 0 5vw;
  width: max-content;
  will-change: transform;
}

.showcase-item {
  width: 35vw;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-item:hover .s-image {
  transform: scale(1.03);
}

.s-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.s-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.s-info span {
  font-size: 0.9rem;
  color: var(--neon-mint);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   11. SİNEMATİK GÖRSEL (VİZYON BÖLÜMÜ)
========================================================================== 
*/

.section-cinematic-vision {
  padding: 50px 0 150px;
  position: relative;
  z-index: 5;
}

.vision-text-floating {
  position: relative;
  z-index: 10;
  margin-bottom: -80px;
  margin-left: 5%;
}

.cinematic-image-wrapper {
  width: 100%;
  height: 75vh;
  min-height: 500px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: translateZ(0);
}

.cinematic-image {
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(1, 6, 10, 0.8) 0%, rgba(1, 6, 10, 0.2) 50%, rgba(1, 6, 10, 0.8) 100%);
  pointer-events: none;
}

/* ==========================================================================
   12. DEVASA TİPOGRAFİ (YATAY SCROLL YAZISI)
========================================================================== 
*/

.section-giant-type {
  height: 100vh;
  width: 100%;
  background-color: var(--bg-dark);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.giant-type-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.giant-type-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15vw;
  padding: 0 10vw;
  width: max-content;
  will-change: transform;
}

.massive-text {
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
  flex-shrink: 0;
}

.massive-text.text-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
}

.section-vision-desc {
  padding: 60px 0 150px;
  position: relative;
  z-index: 5;
  background-color: var(--bg-dark);
}

/* ==========================================================================
   13. FELSEFEMİZ (SOL YAZI & SAĞ VİDEO)
========================================================================== 
*/

.section-manifesto-fluid {
  padding: 150px 0;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* Yeni Grid Yapısı */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  /* Sol taraf yazılar için biraz daha geniş */
  gap: 5vw;
  align-items: center;
}

.manifesto-left {
  display: flex;
  flex-direction: column;
}

.manifesto-text-area {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.fluid-subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.fluid-subtitle {
  color: var(--neon-mint);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.fluid-line {
  height: 1px;
  width: 60px;
  background-color: var(--neon-mint);
  opacity: 0.5;
}

/* Yazı boyutunu grid'e göre ufak bir tık revize ettik */
.giant-title {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -0.03em;
}

.fluid-desc {
  font-size: clamp(1.1rem, 1.2vw, 1.25rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 90%;
  font-weight: 300;
}

.fluid-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.f-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.f-val {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
}

.f-label {
  color: var(--neon-mint);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.f-stat-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
}

/* --- SAĞ TARAF: VİDEO STİLLERİ --- */
.manifesto-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 209, 0.2);
  /* İnce neon çerçeve */
  /* Derinlik gölgesi */
  transform: translateZ(0);
  /* Performans için */
}

/* Videonun üzerine karanlık bir degrade atıyoruz ki siteye tam uyum sağlasın */
.manifesto-video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 10, 16, 0.2) 0%, rgba(0, 255, 209, 0.05) 100%);
  pointer-events: none;
}

.manifesto-video {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  /* Şık, hafif kareye yakın sinematik oran */
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.1);
  /* Karanlık temaya uyması için */
  border-radius: 22px;
}

/* ==========================================================================
   14. YORUMLAR (TEKİL KUTUSUZ BÖLÜM)
========================================================================== 
*/

.section-testimonial-fluid {
  padding: 60px 0 150px;
  position: relative;
  z-index: 5;
}

.testimonial-single {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.huge-quote-mark {
  font-family: "Agale", sans-serif;
  font-size: 10rem;
  line-height: 0;
  color: var(--neon-mint);
  opacity: 0.15;
  margin-bottom: 60px;
}

.testimonial-huge-text {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.testimonial-author-fluid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.author-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-title {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   15. FOOTER & CTA (İLETİŞİM)
========================================================================== 
*/

/* --- FOOTER GENEL --- */
.fluid-footer {
  padding: 80px 0 40px;
  background: var(--deep-space);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.footer-cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
  gap: 50px;
}

/* --- SOL: YAZI ALANI --- */
.footer-title-area {
  max-width: 550px;
}

.footer-huge-title {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  -webkit-text-stroke-color: var(--neon-mint);
  transition: all 0.4s ease;
}

.footer-huge-title:hover .text-outline {
  -webkit-text-stroke-color: var(--neon-mint);
  text-shadow: 0 0 20px rgba(0, 255, 209, 0.2);
}

.footer-huge-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* --- SAĞ: DÖNÜŞEN KART ALANI --- */
.footer-meeting-area {
  width: 100%;
  max-width: 420px;
}

.meeting-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  width: 100%;
  height: 380px;
  /* Kayma animasyonu için sabit yükseklik şart */
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.meeting-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 209, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.meeting-inline-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Textarea'yı da bu kurala dahil ettik */
.meeting-inline-form input,
.meeting-inline-form select,
.meeting-inline-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.meeting-inline-form input:focus,
.meeting-inline-form select:focus,
.meeting-inline-form textarea:focus {
  outline: none;
  border-color: var(--neon-mint);
  background: rgba(0, 255, 209, 0.05);
}

.meeting-inline-form textarea {
  resize: none;
  /* Kullanıcının köşeden tutup formu bozmasını engeller */
}

/* Ön ve Arka Yüz Yerleşim ve Animasyonu */
.meeting-front,
.meeting-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.meeting-front {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.meeting-back {
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px);
}

/* Butona basılınca form-active class'ı eklenir ve yüzler yer değiştirir */
.meeting-card.form-active .meeting-front {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
}

.meeting-card.form-active .meeting-back {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Ön Yüz İçerik Stilleri */
.meeting-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 255, 209, 0.1);
  color: var(--neon-mint);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.meeting-card:hover .meeting-icon-wrapper {
  transform: scale(1.05) rotate(-5deg);
}

.meeting-front h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.meeting-front p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Arka Yüz (Form) İçerik Stilleri */
.back-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.back-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.back-btn:hover {
  background: var(--neon-mint);
  color: var(--deep-space);
  border-color: var(--neon-mint);
}

.back-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

.meeting-inline-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meeting-inline-form input,
.meeting-inline-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.meeting-inline-form input:focus,
.meeting-inline-form select:focus {
  outline: none;
  border-color: var(--neon-mint);
  background: rgba(0, 255, 209, 0.05);
}

.meeting-inline-form select option {
  background: var(--deep-space);
  color: #fff;
}

.inline-input-group {
  display: flex;
  gap: 10px;
}

/* Ortak Buton Stilleri */
.meeting-action-btn,
.submit-meeting-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--neon-mint);
  color: var(--deep-space);
  padding: 14px 20px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.meeting-action-btn i,
.submit-meeting-btn i {
  transition: transform 0.3s ease;
}

.meeting-action-btn:hover,
.submit-meeting-btn:hover {
  background: #fff;
  transform: scale(1.02);
}

.meeting-action-btn:hover i {
  transform: translateX(5px);
}

.submit-meeting-btn:hover i {
  transform: translateY(-3px) translateX(3px);
}

/* --- ALT BÖLÜM: 3 KOLONLU LİNKLER --- */
.footer-bottom-fluid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.f-tagline {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 15px;
  max-width: 80%;
}

.f-col-title {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.02em;
}

.f-links-col,
.f-social-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.f-links-col a,
.f-social-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  transition: all 0.3s ease;
}

.f-links-col a:hover,
.f-social-col a:hover {
  color: var(--neon-mint);
  transform: translateX(8px);
}

.f-social-col a i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.f-social-col a:hover i {
  transform: scale(1.1);
}

.footer-copyright {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.copyright-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

/* --- ÖZEL TAKVİM (FLATPICKR) TEMASI --- */
.flatpickr-calendar {
  background: var(--deep-space) !important;
  border: 1px solid rgba(0, 255, 209, 1) !important;
  border-radius: 16px !important;
  font-family: 'Space Grotesk', sans-serif !important;
}

.flatpickr-month,
.flatpickr-weekday {
  color: #fff !important;
  fill: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--deep-space) !important;
  color: #fff !important;
}

span.flatpickr-weekday {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 600;
}

.flatpickr-day {
  color: #fff !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.flatpickr-day:hover {
  background: rgba(0, 255, 209, 0.5) !important;
  border-color: transparent !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:focus,
.flatpickr-day.selected:hover {
  background: var(--neon-mint) !important;
  border-color: var(--neon-mint) !important;
  color: var(--deep-space) !important;
  font-weight: 700 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.15) !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: var(--deep-space) !important;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  border-top-color: var(--deep-space) !important;
}

/* --- FORM BAŞARI MESAJI STİLLERİ --- */
.form-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  animation: fadeIn 0.5s ease forwards;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--neon-mint);
  margin-bottom: 15px;
}

.form-success-state h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.form-success-state p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- MOBİL UYUMLULUK --- */
/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
  .footer-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }

  .footer-meeting-area,
  .meeting-card {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom-fluid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-bottom-fluid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .f-tagline {
    max-width: 100%;
    margin: 15px 0 0;
  }

  .f-links-col,
  .f-social-col {
    align-items: flex-start;
    /* 'left' yerine 'flex-start' kullanmalıyız */
  }

  .f-links-col a:hover,
  .f-social-col a:hover {
    transform: translateX(8px);
    /* Yukarı kaymak yerine sağa kayması tasarıma daha uygun */
  }

  /* Mobilde inputlar alt alta gelsin */
  .inline-input-group {
    flex-direction: column;
    gap: 12px;
  }

  /* HAYAT KURTARAN DÜZELTME: Mobilde iç boşlukları daraltıyoruz ki elemanlara yer kalsın */
  .meeting-front,
  .meeting-back {
    padding: 25px;
  }

  /* Mobilde ön yüz yüksekliği */
  .meeting-card {
    height: 380px;
  }

  /* Mobilde form ve takvim için gereken net alan */
  .meeting-card.form-active {
    height: 680px;
  }

  /* Mobilde başarı ikonunu bir tık küçültüyoruz */
  .success-icon {
    font-size: 3rem;
  }
}

/* ==========================================================================
   16. MOBİL & TABLET UYARLAMALARI (MEDIA QUERIES)
========================================================================== 
*/

@media (max-width: 992px) {

  /* Genel & Menü */

  /* Petek & Arka Plan Mobil Optimizasyonu */
  .light-wrapper {
    background: radial-gradient(ellipse at center, rgba(0, 112, 255, 0.15) 0%, transparent 50%);
  }

  .hero-visual-wrapper {
    right: 50%;
    transform: translate(50%, -25%) scale(0.65);
    opacity: 0.75;
    pointer-events: none;
  }

  /* Sürecimiz Bento Grid Kartları Mobil Düzeltmesi (GPU Kurtarıcı) */
  .services-header-wrapper {
    text-align: left;
    margin-bottom: 40px;
  }

  .hexa-bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "analyze" "code" "design" "launch";
    gap: 16px;
  }

  .hexa-card {
    padding: 32px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background-color: #051a24 !important;
    border: 1px solid rgba(0, 255, 209, 0.15) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
  }

  .card-content {
    max-width: 100%;
  }

  .card-lottie {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 200px;
    height: 200px;
    margin: 20px auto 0;
    will-change: opacity !important;
    opacity: 1;
    transform: translateZ(0) !important;
  }

  .section-glow {
    filter: none !important;
    background: radial-gradient(circle, rgba(0, 255, 209, 0.15) 0%, transparent 60%) !important;
    transform: translateZ(0) !important;
  }

  /* Kutusuz Bölümler & Vitrin Mobil */
  .showcase-item {
    width: 75vw;
  }

  .fluid-stats {
    flex-wrap: wrap;
    gap: 30px;
  }

  .f-stat-divider {
    display: none;
  }

  .footer-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }

  .footer-bottom-fluid {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .f-links-col,
  .f-social-col {
    flex-direction: column;
    gap: 15px;
  }

  .section-tech-marquee {
    padding: 30px 0;
  }

  .marquee-item {
    padding: 0 25px;
  }

  .tech-name {
    font-size: 1.2rem;
  }

  .tech-icon {
    font-size: 1.2rem;
  }

  /* (Mobil sorgusunun içine eklenecek kısım) */
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    flex-direction: row;
  }

  .fluid-desc {
    max-width: 100%;
  }

  .manifesto-video {
    aspect-ratio: 16 / 9;
    /* Mobilde yatay dursun */
  }

  /* (Mobilde Zigzag Düzenini İptal Et) */
  .section-zigzag-services {
    padding: 60px 15px;
    /* Mobilde kenarlardan boşluk bırak */
  }

  .zigzag-row,
  .zigzag-row.reverse {
    /* Mobilde zorla alt alta getir */
    flex-direction: column !important;
    gap: 30px;
    margin-bottom: 80px;
    display: flex;
    /* Flex olduğunu tekrar teyit et */
  }

  .z-visual {
    width: 100%;
    flex: none;
    /* Flex büyümesini mobilde durdur */
  }

  .z-content {
    width: 100%;
    flex: none;
    text-align: left;
    /* Mobilde yazıları sola yasla */
  }

  .z-img {
    aspect-ratio: 16 / 9;
    /* Mobilde resimler çok yüksek olmasın */
  }

  .z-list li:hover {
    transform: none;
    /* Mobilde hover efekti kafa karıştırabilir, kapattık */
  }
}

/* ==========================================================================
   17. EKİP VİTRİNİ (CYBER ID BADGE GRID)
========================================================================== 
*/
.section-team-grid {
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

.team-badge-container {
  display: grid;
  /* 300px yerine 1fr kullanarak alanı 2 eşit parçaya böleriz */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mevcut hexa-card sınıfını kullanıyoruz ama iç yapısını özelleştiriyoruz */
.team-card {
  padding: 0;
  /* Resim tam köşelere otursun diye padding'i sıfırladık */
  display: flex;
  flex-direction: column;
}

.t-image-wrapper {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-neon);
}

.t-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.1);
  /* Başlangıçta siyah beyaz ve karizmatik */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
  will-change: transform, filter;
}

.t-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--card-bg) 100%);
  pointer-events: none;
}

.team-card:hover .t-image {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1);
  /* Üzerine gelince renkler canlanır */
}

.t-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.t-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-mint);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.t-name {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 15px;
}

.t-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 25px;
  flex-grow: 1;
  /* Sosyal ikonları hep en alta iter */
}

.t-socials {
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.t-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.t-socials a:hover {
  color: var(--neon-mint);
  transform: translateY(-2px);
}

/* Tablet ve Mobil Uyumluluk */
@media (max-width: 992px) {
  .team-badge-container {
    grid-template-columns: 1fr;
    /* Mobilde tek sütun yap */
    padding: 0 20px;
    /* Kenarlardan nefes payı */
    gap: 40px;
  }

  .t-image-wrapper {
    height: 280px;
    /* Küçük ekranlarda resim boyunu biraz daraltalım */
  }

  .t-name {
    font-size: 1.8rem;
    /* Metin boyutunu mobilde optimize et */
  }
}

@media (max-width: 480px) {
  .section-team-grid {
    padding: 40px 0;
  }

  .t-info {
    padding: 20px;
    /* İç boşlukları daralt */
  }

  .t-name {
    font-size: 1.5rem;
    /* Çok küçük ekranlar için başlık ayarı */
  }

  .t-desc {
    font-size: 0.9rem;
    /* Okunabilirliği koru */
  }
}

/* ==========================================================================
   18. S.S.S. (SOL SABİT YAZI - SAĞ KUTULU AKORDEON)
========================================================================== 
*/
.section-faq-split {
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  /* Sağdaki kutular biraz daha geniş alan kaplar */
  gap: 5vw;
  align-items: start;
  /* Grid öğelerini üstten hizalar (Sticky için şarttır) */

}

/* Sol Taraftaki Yazıyı Ekranda Sabitler */
.faq-left {
  position: sticky;
  top: 150px;
  /* Kullanıcı aşağı indikçe başlık onu takip eder */
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Kutular arası boşluk */
}

/* --- KUTUCUK TASARIMLARI --- */
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-neon);
  border-radius: 24px;
  padding: 0 40px;
  transition: all 0.4s ease;
  overflow: hidden;
  /* Akordeon animasyonu için çok önemli */
}

/* Fareyle üzerine gelince veya kutu açılınca parlaması */
.faq-item:hover,
.faq-item.active {
  border-color: rgba(0, 255, 209, 0.4);
  background: var(--card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s;
  margin: 0;
  padding-right: 20px;
}

.faq-item.active .faq-question h3 {
  color: var(--neon-mint);
}

.faq-icon {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--neon-mint);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  line-height: 0;
}

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

/* --- AÇILIR KAPANIR CEVAP KISMI --- */
.faq-answer {
  max-height: 0;
  /* Başlangıçta kapalı */
  transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  padding-bottom: 30px;
}

.faq-answer-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .section-faq-split {
    padding: 30px 0;
  }

  .faq-grid {
    display: grid;
    /* Masaüstündeki yan yana yapıyı koruyoruz */
    grid-template-columns: 0.7fr 1.3fr;
    gap: 15px;
    align-items: start;
    /* Sticky'nin çalışması için elemanları yukarı hizalar */
  }

  .faq-left {
    position: sticky;
    /* Tam olarak istediğin 15vh boşluğu burada tanımlıyoruz */
    top: 15vh;
    z-index: 10;
  }

  .faq-left h2 {
    font-size: 1.1rem;
    line-height: 1.3;
    /* Kelimelerin kutudan taşmasını önleyen ve alt satıra iten kurallar */
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
    margin: 0;
  }

  .faq-left p {
    font-size: 0.8rem;
    margin-top: 10px;
    line-height: 1.4;
    /* Çok uzun metinlerin sticky alanını taşırmaması için */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .faq-item {
    padding: 0 12px;
    border-radius: 16px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-question h3 {
    font-size: 0.85rem;
    line-height: 1.3;
    /* Soru metinlerinin de taşmasını önler */
    word-wrap: break-word;
    white-space: normal;
  }

  .faq-icon {
    font-size: 1.2rem;
  }

  .faq-answer-inner p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* ==========================================================================
   20. ZIGZAG HİZMET DETAYLARI
========================================================================== 
*/
.section-zigzag-services {
  padding: 60px 0;
  position: relative;
  z-index: 5;
}

.zigzag-row {
  display: flex;
  align-items: center;
  gap: 6vw;
  margin-bottom: 150px;
}

.zigzag-row:last-child {
  margin-bottom: 0;
}

/* REVERSE SINIFI: Flexbox ile düzeni tersine çevirir (Yazı solda, resim sağda) */
.zigzag-row.reverse {
  display: flex;
  flex-direction: row-reverse;
}

/* Görsel Alanı */
.z-visual {
  flex: 1;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border-neon);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateZ(0);
}

.z-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 10, 16, 0.2) 0%, rgba(0, 255, 209, 0.1) 100%);
  pointer-events: none;
}

.z-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.zigzag-row:hover .z-img {
  transform: scale(1.05);
  /* Fare ile üzerine gelince görsel hafifçe büyür */
}

/* Yazı Alanı */
.z-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.z-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 35px;
}

.z-list li {
  font-size: 1.05rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s, transform 0.3s;
}

/* İkonlu Liste Elemanları */
.z-list li::before {
  content: '✦';
  color: var(--neon-mint);
  font-size: 1.2rem;
  line-height: 1;
}

.z-list li:hover {
  color: #fff;
  transform: translateX(10px);
}

@media (max-width: 992px) {

  .hero-text-glow,
  .splash-aurora {
    display: none !important;
    /* Veya background-image ile statik bulanık görsel çağır */
  }
}

/* style.css içinde gereksiz will-change tanımlarını sil veya mobilde iptal et */
@media (max-width: 992px) {

  .hexa-card,
  .hex-item,
  .dot-item,
  .z-img {
    will-change: auto !important;
  }
}

@media (max-width: 992px) {
  .noise-overlay {
    opacity: 0.02;
    /* Mümkünse mobilde tamamen gizle: display: none; */
  }

  .animate-data {
    animation: none !important;
  }
}

@media (max-width: 992px) {
  .light-wrapper {
    top: -10%;
    left: -10%;
    width: 120vw;
    height: 120vh;
    filter: none !important;
    transform: translateZ(0);
    /* GPU Hızlandırmasını zorunlu kılıyoruz */

    /* Renklerin alfa (saydamlık) değerlerini artırıp daha canlı hale getirdik */
    background:
      radial-gradient(ellipse at 20% 20%, rgba(0, 255, 209, 0.4) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 10%, rgba(0, 112, 255, 0.45) 0%, transparent 60%),
      radial-gradient(ellipse at 50% 90%, rgba(0, 112, 255, 0.35) 0%, transparent 70%);

    /* Canlılık hissi için yazdığımız yeni animasyonu çağırıyoruz */
    animation: mobile-lights-alive 8s ease-in-out infinite alternate;
  }

  .ray {
    display: none !important;
  }
}

/* Mobili yormayan (GPU tabanlı) nefes alma ve hafif kayma animasyonu */
@keyframes mobile-lights-alive {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.75;
  }

  100% {
    transform: translate3d(-3%, 3%, 0) scale(1.15);
    opacity: 1;
  }
}

html,
body {
  width: 100%;
  max-width: 100vw;
  /* Sticky çalışması için bu ikili şart */
  overflow-x: clip;
  overflow-y: visible;
}

/* Mobil Select Görünüm ve Zoom Düzeltmesi */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px !important;
  /* iOS'un otomatik zoom yapmasını kesinlikle engeller */
  background-color: transparent;
  /* Kendi özel ok ikonunu (SVG) arka plan olarak ekleyebilirsin */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Sadece iOS'ta Select focus olduğunda zoom'u engellemek için garanti yöntem */
@media screen and (-webkit-min-device-pixel-ratio:0) {

  select:focus,
  textarea:focus,
  input:focus {
    font-size: 16px;
  }
}

/* Mobil cihazlardaki mavi dokunma (tap) efektini tamamen şeffaf yapar */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Tıklandığında veya klavyeyle seçildiğinde çıkan standart çerçeveyi (outline) de kaldıralım */
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
  outline: none;
}