/* 
  Otoajans.com - CSS Tasarım Sistemi
  Premium Midnight Indigo (Lüks Mor/Mavi) Teması & Çekici Sektörü Uyum Tasarımı
 */

:root {
  /* Renk Paleti - Lüks Midas Tarzı Gece Teması */
  --bg-dark-primary: #020205; /* Derin Siyah */
  --bg-dark-secondary: #070911; /* Gece Mavisi */
  --bg-dark-tertiary: #0e111d; /* Koyu Slate */
  
  --primary: #fbbf24; /* Parlak Kehribar Altın - Çekici tepe lambası vurgusu */
  --primary-glow: rgba(251, 191, 36, 0.15);
  --primary-hover: #f59e0b;
  
  --accent: #6366f1; /* Canlı Midas Indigo/Mor - Rezervasyon vurgusu */
  --accent-glow: rgba(99, 102, 241, 0.2);
  --accent-hover: #4f46e5;
  
  --success: #10b981;
  --text-primary: #ffffff; /* Saf Beyaz */
  --text-secondary: #94a3b8; /* Slate Gümüş */
  --text-muted: #64748b;
  
  --border-color: rgba(255, 255, 255, 0.05);
  --border-focus: rgba(99, 102, 241, 0.4);
  
  /* Lüks Koyu Glassmorphism Ayarları */
  --glass-bg: rgba(8, 9, 17, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: rgba(0, 0, 0, 0.5);
  
  /* Font Aileleri */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Geçişler */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  font-family: var(--font-body);
  background-color: var(--bg-dark-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  /* Yatay kayma jestini tarayıcı düzeyinde kapat — mobilde sola/sağa kaydırma kasma ve kaymayı kökten engeller */
  overscroll-behavior-x: none;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: #020205;
  color: #ffffff;
  /* Lüks Gece Mavisi/Indigo Degrade (Nokta Izgara mobilde kaldırıldı) */
  background-image: 
    linear-gradient(180deg, #020205 0%, #060813 50%, #0f122c 100%), /* Koyu Gece Mavisi Zemin */
    radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.26) 0%, transparent 65%), /* Luminous Indigo Parlaması */
    radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.02) 0%, transparent 40%); /* Hafif Altın Esintisi */
  background-size: 100% 100%, 100% 100%, 100% 100%;
  /* background-attachment: fixed kaldırıldı — mobil cihazlarda her scroll frame'inde tam sayfa repaint'e zorlayarak ciddi lag yaratır */
  /* Yalnızca dikey kaydırmaya izin ver — yatay jest algılaması kapalı */
  touch-action: pan-y;
}

/* Yalnızca masaüstü ekranlar için detaylı nokta ızgarası (GPU performansı korumak için mobilde devre dışı) */
@media (min-width: 1025px) {
  body {
    background-image: 
      linear-gradient(180deg, #020205 0%, #060813 50%, #0f122c 100%),
      radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.26) 0%, transparent 65%),
      radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.02) 0%, transparent 40%),
      radial-gradient(rgba(255, 255, 255, 0.05) 1.2px, transparent 1.2px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 28px 28px;
  }
}

/* Arka Plan Yumuşak Parlama Efektleri (Royal Violet / Indigo) */
/* position: fixed kullanılıyor — absolute yerine fixed sayfa boyutunu etkilemez ve yatay scrollbar oluşmaz */
body::before {
  content: '';
  position: fixed;
  top: 15%;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -2;
  pointer-events: none;
  will-change: transform;
}

body::after {
  content: '';
  position: fixed;
  bottom: 25%;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(165, 180, 252, 0.04) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -2;
  pointer-events: none;
  will-change: transform;
}

/* Scrollbar Tasarımı */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--bg-dark-primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Layout Helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 2.8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.8rem auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.15);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Premium Cam Kartı (Glassmorphic Card) */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 15px 35px var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(251, 191, 36, 0.08);
}

/* Buton Stilleri */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, #070911 0%, #1e1b4b 100%);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(251, 191, 36, 0.05);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #020205;
  border-color: #fbbf24;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(251, 191, 36, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-accent {
  background: transparent;
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #020205;
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35);
}

/* --- HEADER / NAV BAR --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; /* width:100% yerine left+right: sayfa taşsa bile header daima tam ekran genişliğinde kalır */
  z-index: 100;
  background: rgba(2, 2, 5, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-normal);
  /* overflow: hidden burada OLMAMALI — mobil dropdown menü
     position:absolute ile header'dan aşağıya taşıyor, overflow:hidden
     o menüyü gözünmez yapardı */
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(2, 2, 5, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  min-width: 0; /* Flex shrink için gerekli */
  /* overflow: hidden burada da OLMAMALI — aynı sebep */
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0; /* Logo genelişmez, sabit kalır */
  min-width: 0;   /* Flex context'te güvenli shrink için gerekli */
}

.logo span.logo-accent {
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--primary);
  -webkit-text-fill-color: initial;
  margin-left: 0.25rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.mobile-cta-only {
  display: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  flex-shrink: 0;  /* Hamburger hiçbir koşulda küçülmez ve sağa itilmez */
  padding: 0.5rem; /* Dokunma alanını genişlet — kolay basılır */
  margin-left: 0.5rem; /* Logo ile minimum boşluk */
}

/* --- HERO SECTION --- */
.hero {
  padding: 140px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  background: linear-gradient(to right, #ffffff 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  color: var(--primary);
  -webkit-text-fill-color: initial;
  background: none;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.35);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

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

.stat-val {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glowing-sphere {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
  animation: pulse-sphere 8s infinite alternate ease-in-out;
  will-change: transform, filter;
}

@keyframes pulse-sphere {
  0% { transform: scale(1); filter: blur(20px); }
  100% { transform: scale(1.2); filter: blur(35px); }
}

/* Modern Çekici Çizimi / Logo Mockup */
.hero-mockup-wrapper {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.truck-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  animation: float-illustration 4s ease-in-out infinite;
  will-change: transform;
}

@keyframes float-illustration {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- WHY US / FEATURES --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  padding: 2.25rem 1.75rem;
  text-align: left;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 1.6rem;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: scale(1.05) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- INTERACTIVE SIMULATOR (TELEFON EKRANI) --- */
.simulator-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.sim-controls-card {
  padding: 3rem;
}

.sim-controls-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.sim-controls-card .desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.control-group {
  margin-bottom: 1.8rem;
}

.control-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

/* Renk Seçici Butonları */
.color-picker {
  display: flex;
  gap: 0.8rem;
}

.color-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.color-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.color-dot.active {
  border-color: #fff;
}

.color-dot.active::after {
  transform: translate(-50%, -50%) scale(1);
}

.dot-yellow { background: #eab308; }
.dot-red { background: #ef4444; }
.dot-blue { background: #3b82f6; }
.dot-green { background: #10b981; }

/* İnput Grubu */
.text-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.text-input-wrapper span {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sim-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.sim-input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

/* Feature Toggles */
.toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.toggle-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.toggle-btn.active {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

/* Telefon Cihaz Mockup */
.phone-mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-shell {
  width: 320px;
  height: 640px;
  background: #06070a;
  border-radius: 40px;
  border: 12px solid #141622; /* Lüks Koyu Titanyum Çerçeve */
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 50px rgba(99, 102, 241, 0.15), inset 0 0 2px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Kamera Çentiği (Notch) */
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 24px;
  background: #141622; /* Çerçeve rengiyle uyumlu */
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-notch::before {
  content: '';
  width: 40px;
  height: 4px;
  background: #1f2235;
  border-radius: 2px;
}

/* Telefon İçi Çekici Ekranı */
.phone-screen {
  flex: 1;
  background: #f8fafc;
  color: #0f172a;
  overflow-y: auto;
  overflow-x: hidden;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  scrollbar-width: none; /* Hide scrollbar for clean look */
}

.phone-screen::-webkit-scrollbar {
  display: none;
}

/* Simüle Edilen Çekici Sitesinin Elemanları (Premium Mobil UI) */
.tow-sim-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.2rem 1rem 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.tow-sim-logo {
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.tow-sim-logo i {
  color: var(--primary-tow);
}

.tow-sim-phone-link {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-tow) 0%, var(--primary-tow-dark) 100%);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  box-shadow: 0 3px 10px rgba(var(--primary-tow-rgb), 0.3);
  transition: var(--transition-fast);
}

/* Telefon Canlı Tema Sınıfları */
.phone-screen.theme-yellow {
  --primary-tow: #eab308;
  --primary-tow-light: #fef9c3;
  --primary-tow-dark: #ca8a04;
  --primary-tow-glow: rgba(234, 179, 8, 0.06);
  --primary-tow-rgb: 234, 179, 8;
}
.phone-screen.theme-red {
  --primary-tow: #ef4444;
  --primary-tow-light: #fee2e2;
  --primary-tow-dark: #b91c1c;
  --primary-tow-glow: rgba(239, 68, 68, 0.06);
  --primary-tow-rgb: 239, 68, 68;
}
.phone-screen.theme-blue {
  --primary-tow: #3b82f6;
  --primary-tow-light: #dbeafe;
  --primary-tow-dark: #1d4ed8;
  --primary-tow-glow: rgba(59, 130, 246, 0.06);
  --primary-tow-rgb: 59, 130, 246;
}
.phone-screen.theme-green {
  --primary-tow: #10b981;
  --primary-tow-light: #d1fae5;
  --primary-tow-dark: #047857;
  --primary-tow-glow: rgba(16, 185, 129, 0.06);
  --primary-tow-rgb: 16, 185, 129;
}

.tow-sim-hero {
  padding: 2.2rem 1rem;
  background-image: 
    linear-gradient(180deg, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.95) 100%),
    url('images/sim_bg_tow.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tow-sim-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(var(--primary-tow-rgb), 0.12);
  color: var(--primary-tow);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 750;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(var(--primary-tow-rgb), 0.3);
}

.tow-sim-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tow-sim-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

.tow-sim-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 0.5rem;
}

.tow-sim-btn-call {
  background: linear-gradient(135deg, var(--primary-tow) 0%, var(--primary-tow-dark) 100%);
  color: #fff;
  font-weight: 750;
  font-size: 0.85rem;
  padding: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: pulse-sim-btn 2.5s infinite;
  box-shadow: 0 5px 15px rgba(var(--primary-tow-rgb), 0.3);
}

@keyframes pulse-sim-btn {
  0% { transform: scale(1); box-shadow: 0 5px 15px rgba(var(--primary-tow-rgb), 0.3); }
  50% { transform: scale(1.03); box-shadow: 0 8px 20px rgba(var(--primary-tow-rgb), 0.45); }
  100% { transform: scale(1); box-shadow: 0 5px 15px rgba(var(--primary-tow-rgb), 0.3); }
}

.tow-sim-btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 750;
  font-size: 0.85rem;
  padding: 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.tow-sim-services {
  padding: 1.5rem 1rem;
  background: #ffffff;
}

.tow-sim-section-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tow-sim-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 1px;
  width: 3px;
  background: var(--primary-tow);
  border-radius: 10px;
}

.tow-sim-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.tow-sim-service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.015);
  transition: var(--transition-fast);
}

.tow-sim-service-card i {
  font-size: 1.1rem;
  color: var(--primary-tow);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-tow-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.tow-sim-service-card p {
  font-weight: 700;
  font-size: 0.7rem;
  color: #334155;
}

/* Ekstra özellik alanları */
.tow-sim-map-card {
  background: #ffffff;
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
  display: none; /* Dynamic visibility */
}

.tow-sim-map-card.show {
  display: block;
}

.tow-sim-map-placeholder {
  height: 110px;
  background-color: #f1f5f9;
  background-image: 
    radial-gradient(#cbd5e1 1.2px, transparent 1.2px), 
    radial-gradient(#cbd5e1 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-weight: 700;
  font-size: 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.tow-sim-map-placeholder i {
  font-size: 1.5rem;
  color: var(--primary-tow);
  margin-bottom: 0.4rem;
  animation: pulse-pin-map 2s infinite ease-in-out;
}

@keyframes pulse-pin-map {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0px rgba(var(--primary-tow-rgb), 0)); }
  50% { transform: scale(1.2); filter: drop-shadow(0 0 8px rgba(var(--primary-tow-rgb), 0.6)); }
}

.tow-sim-reviews {
  background: #fafcfd;
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
  display: none; /* Dynamic visibility */
}

.tow-sim-reviews.show {
  display: block;
}

.tow-sim-review-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  padding: 0.8rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.01);
}

.tow-sim-review-user {
  font-weight: 750;
  font-size: 0.7rem;
  color: #1e293b;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.tow-sim-review-stars {
  color: #f59e0b;
}

.tow-sim-review-text {
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.4;
}

.tow-sim-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 1.5rem 1rem 3.5rem 1rem;
  text-align: center;
  font-size: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* Alt Sabit Hızlı Arama Çubuğu (Yolda kalanlar için can simidi) */
.tow-sim-sticky-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  display: none; /* Dynamic visibility */
  z-index: 45;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.03);
}

.tow-sim-sticky-bar.show {
  display: block;
}

.tow-sim-sticky-btn {
  background: linear-gradient(135deg, var(--primary-tow) 0%, var(--primary-tow-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 750;
  font-size: 0.85rem;
  padding: 0.65rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(var(--primary-tow-rgb), 0.25);
  animation: pulse-sticky 2s infinite;
}

@keyframes pulse-sticky {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* --- HOW WE WORK / PROCESS SECTION --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.process-card {
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.process-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.process-card:hover .process-number {
  opacity: 0.7;
  transform: translateY(-3px) scale(1.1);
  text-shadow: 0 0 20px var(--primary-glow);
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.process-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Satış Kancası - Ücretsiz Demo Banner Kartı */
.demo-banner-card {
  padding: 4rem 3rem;
  border-color: rgba(245, 158, 11, 0.2);
  background: radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.05) 0%, transparent 60%), var(--glass-bg);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.04);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.demo-banner-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.demo-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.demo-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.demo-banner-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.demo-banner-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.demo-banner-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* --- PRICING SECTION --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.08);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-header {
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.price-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.price-amount {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 0.3rem;
}

.pricing-card.popular .price-amount {
  color: var(--primary);
}

.price-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex: 1;
}

.price-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-features li i {
  color: var(--primary);
  font-size: 1rem;
}

.price-features li.disabled {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none; /* Çizgiyi kaldırıp kontrastı artırarak göz yorulmasını engelledik */
}

.price-features li.disabled i {
  color: rgba(239, 68, 68, 0.85); /* Pakete dahil olmayan özellikler için belirgin kırmızı X işareti */
}

/* --- FAQ SECTION --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition-normal);
  color: var(--text-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Safe upper bound for text height */
  margin-top: 0.5rem;
}

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

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-desc {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.contact-detail-text p {
  font-size: 1rem;
  font-weight: 500;
}

.contact-form-card {
  padding: 3.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.form-control {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- FOOTER --- */
.footer {
  background: #04050a; /* Premium Koyu Gece Alt Bilgisi */
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 4rem 0 2rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-secondary);
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
}

.footer-title {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom p {
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  /* Arka plan büyük bulanık kürelerin GPU kasmasını ve iOS Safari'de sağa taşma yapmasını engellemek için mobilde tamamen gizle */
  body::before, body::after {
    display: none !important;
  }

  .glass-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(8, 10, 18, 0.96) !important;
  }

  .floating-badge {
    display: none !important;
  }

  /* Mobilde tüm animasyonları durdur — GPU baskısı azalır, scroll akıcılaşır */
  .animate-float-slow,
  .animate-float-medium,
  .animate-float-fast {
    animation: none !important;
  }

  .hero-glowing-sphere {
    animation: none !important;
  }

  /* Pulse animasyonlarını mobilde durdur */
  .pulse-red, .pulse-indigo, .pulse-amber, .pulse-green,
  .tow-sim-btn-call, .tow-sim-sticky-btn,
  .badge-pulse-green, .badge-pulse-amber, .badge-pulse-indigo,
  .pulse-dot, .tow-sim-map-placeholder i {
    animation: none !important;
  }

  /* SVG flow-dash animasyonunu durdur — stroke-dashoffset her frame'de repaint tetikler */
  .flow-path {
    animation: none !important;
    stroke: rgba(251, 191, 36, 0.3) !important;
  }

  /* =============================================
     BACKDROP-FILTER TAMAMI MOBILDE KAPALI
     backdrop-filter GPU'yu composition aşamasında
     her scroll frame'inde yeniden çalıştırır.
     Mobilde tüm blur efektleri devre dışı.
     ============================================= */

  /* Header blur kapat */
  .header,
  .header.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(2, 2, 5, 0.97) !important;
  }

  /* Live ticker blur kapat */
  .live-ticker-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(8, 10, 18, 0.98) !important;
  }

  /* Mockup window blur kapat */
  .premium-mockup-window {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 11, 22, 0.98) !important;
  }

  /* Legal modal blur kapat */
  .legal-modal-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(2, 2, 5, 0.92) !important;
  }

  .legal-modal-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Tow sim header blur kapat */
  .tow-sim-header,
  .tow-sim-sticky-bar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-grid, .simulator-layout, .calculator-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .contact-info {
    gap: 2rem;
  }

  /* Smooth scroll mobilde kekeme yaratır — auto ile native hız kullanılır */
  html {
    scroll-behavior: auto !important;
  }

  /* Hamburger Menü & Mobil Navigasyon Kırılma Noktası (1024px - Tablet Uyum) */
  .nav-links {
    display: none; /* Hide standard menu on mobile/tablet */
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0; /* viewport'a sabitler, sayfa taşmasından etkilenmez */
    background: rgba(8, 9, 12, 0.98);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem;
    gap: 1.5rem;
    align-items: center;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideDownMenu 0.3s ease forwards;
  }

  #header-cta-wrapper {
    display: none !important; /* Hide CTA button parent wrapper on tablet to free up flex space */
  }

  .mobile-cta-only {
    display: block;
    width: 100%;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  @keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 768px) {
  .hero-visual {
    display: none;
  }

  /* Mobil cihazlarda hero istatistiklerinin taşmasını engellemek için dikey listeleme */
  .hero-stats {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  /* Uzun başlıkların mobilde sağa taşmasını engelleme */
  h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .container {
    padding: 0 1.25rem !important; /* Reduce horizontal margin padding on mobile for breathing room */
  }

  /* Mobilde kart taşmalarını ve sağa kaymayı engellemek için 1 sütunlu ızgara zorlaması */
  .features-grid,
  .testimonials-grid,
  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Kartların mobilde sıkışmasını ve butonların taşmasını engellemek için iç boşluk optimizasyonu */
  .contact-form-card {
    padding: 1.5rem 1.25rem !important;
  }
  
  .feature-card,
  .process-card,
  .pricing-card {
    padding: 1.75rem 1.25rem !important;
  }

  /* Demo banner'ın mobilde sıkışıp taşmasını engellemek için iç boşluk ve boyut ayarları */
  .demo-banner-card {
    padding: 2.5rem 1.25rem !important;
  }

  .demo-banner-card h2 {
    font-size: 1.6rem !important;
  }

  .demo-banner-card p {
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Simülatör kontrol kartının mobilde sıkışıp dikey taşma yapmasını önlemek için iç boşluk azaltma */
  .sim-controls-card {
    padding: 1.5rem 1.25rem !important;
  }

  /* Simülatör toggle butonlarının metinlerinin yan yana sığmayıp taşmasını önlemek için tek sütun yapısı */
  .toggle-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* Akış şeması oklarının mobilde esneyip yanlara taşmasını önlemek için hizalama sabitleme */
  .journey-arrow {
    align-self: center !important;
    justify-content: center !important;
  }

  .mobile-cta-only {
    display: block;
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   OTO AJANS - NİŞ SEKTÖR SİMÜLATÖR EK CSS SINIFLARI
   ========================================================================== */

/* Canlı Renk Tema Sınıfları */
.phone-screen.theme-turkuaz {
  --primary-tow: #06b6d4;
  --primary-tow-light: #ecfeff;
  --primary-tow-dark: #0891b2;
  --primary-tow-glow: rgba(6, 182, 212, 0.06);
  --primary-tow-rgb: 6, 182, 212;
}

.phone-screen.theme-gold {
  --primary-tow: #f59e0b;
  --primary-tow-light: #fefbeb;
  --primary-tow-dark: #d97706;
  --primary-tow-glow: rgba(245, 158, 11, 0.06);
  --primary-tow-rgb: 245, 158, 11;
}

.phone-screen.theme-silver {
  --primary-tow: #94a3b8;
  --primary-tow-light: #f8fafc;
  --primary-tow-dark: #475569;
  --primary-tow-glow: rgba(148, 163, 184, 0.06);
  --primary-tow-rgb: 148, 163, 184;
}

.phone-screen.theme-indigo {
  --primary-tow: #6366f1;
  --primary-tow-light: #e0e7ff;
  --primary-tow-dark: #4f46e5;
  --primary-tow-glow: rgba(99, 102, 241, 0.06);
  --primary-tow-rgb: 99, 102, 241;
}

/* İnteraktif Kontrol Seçim Elemanları */
.sim-select {
  background: var(--bg-dark-secondary);
  color: var(--text-primary);
  cursor: pointer;
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
}
.sim-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

/* Galeri Filtre Sekmeleri Stilleri */
.galeri-tab {
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-radius: 6px;
  font-size: 0.55rem;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
  transition: var(--transition-fast);
}
.galeri-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-tow);
}
.galeri-tab.active {
  background: var(--primary-tow) !important;
  color: #000 !important;
  border-color: var(--primary-tow) !important;
}

/* Galeri Dinamik İlan Kartı Animasyonlu Geçişler */
.galeri-sim-card {
  display: flex;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.5rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  border-width: 0;
  padding: 0;
}
.galeri-sim-card.show {
  opacity: 1;
  transform: scale(1);
  max-height: 120px;
  margin-bottom: 0.5rem;
  border-width: 1px;
  padding: 0.5rem;
}

/* Galeri Banner ve Ekstra Modüller için Animasyonlu Gösterim */
.galeri-sim-nakit-banner {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-bottom: 0 !important;
  border-width: 0 !important;
  padding: 0 !important;
}
.galeri-sim-nakit-banner.show {
  opacity: 1 !important;
  max-height: 100px !important;
  margin-bottom: 0.8rem !important;
  border-width: 1px !important;
  padding: 0.6rem !important;
}

.galeri-sim-whatsapp {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-bottom: 0 !important;
  border-width: 0 !important;
  padding: 0 !important;
}
.galeri-sim-whatsapp.show {
  opacity: 1 !important;
  max-height: 150px !important;
  margin-bottom: 0.8rem !important;
  border-width: 1px !important;
  padding: 0.8rem !important;
}

/* ==========================================================================
   HERO PREMIUM MAC OS MOCKUP & FLOATING BADGES
   ========================================================================== */

/* Tarayıcı Mockup Penceresi */
.premium-mockup-window {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 11, 22, 0.65) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.7), 
    0 0 50px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 5;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-mockup-window:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(251, 191, 36, 0.3); /* Amber accent border on hover */
  box-shadow: 
    0 40px 80px -15px rgba(0, 0, 0, 0.8), 
    0 0 60px rgba(251, 191, 36, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Tarayıcı Üst Bar (Header) */
.mockup-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.2rem;
  background: rgba(4, 5, 10, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* macOS Kırmızı, Sarı, Yeşil Butonları */
.mockup-dots {
  display: flex;
  gap: 0.4rem;
  position: absolute;
  left: 1.2rem;
}

.mockup-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #10b981; }

/* Güvenli Adres Çubuğu */
.mockup-address {
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

/* İçerik Gövdesi */
.mockup-body {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(251, 191, 36, 0.03) 0%, transparent 80%);
}

.mockup-body img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
  animation: none !important;
}

.premium-mockup-window:hover .mockup-body img {
  transform: scale(1.02);
}

/* --- HAVADA ASILI 3D VERİ KARTLARI (FLOATING BADGES) --- */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.1rem;
  border-radius: 14px;
  background: rgba(10, 11, 22, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.4), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  z-index: 10;
  transition: all 0.3s ease;
}

.floating-badge:hover {
  transform: scale(1.08) !important;
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6), 
    0 0 15px rgba(251, 191, 36, 0.2);
}

.floating-badge i {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.floating-badge div {
  display: flex;
  flex-direction: column;
}

.floating-badge div strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.floating-badge div span {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-top: 1px;
}

/* Konumlandırmalar */
.badge-top-left {
  top: 12%;
  left: -35px;
}

.badge-bottom-right {
  bottom: 12%;
  right: -30px;
}

.badge-center-top {
  top: -20px;
  right: 25px;
}

/* Yüzen Animasyon Tanımları (Senkronize Olmayan Farklı Hızlar) */
.animate-float-slow {
  animation: floatSlow 6s infinite ease-in-out;
  will-change: transform;
}

.animate-float-medium {
  animation: floatMedium 5s infinite ease-in-out;
  will-change: transform;
}

.animate-float-fast {
  animation: floatFast 4s infinite ease-in-out;
  will-change: transform;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes floatMedium {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}

@keyframes floatFast {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
  .badge-top-left {
    left: -15px;
  }
  .badge-bottom-right {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .premium-mockup-window {
    max-width: 100%;
    margin: 2rem 0;
  }
  
  .floating-badge {
    padding: 0.6rem 0.9rem;
  }
  
  .floating-badge i {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .floating-badge div strong {
    font-size: 0.75rem;
  }
  
  .badge-top-left {
    top: 5%;
    left: 10px;
  }
  
  .badge-bottom-right {
    bottom: 5%;
    right: 10px;
  }
  
  .badge-center-top {
    top: -15px;
    right: 20px;
  }
}

/* Pulsing status indicator dot inside floating badges */
.badge-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 12;
}

.badge-pulse-green {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-dot-green 2s infinite ease-in-out;
}

.badge-pulse-amber {
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
  animation: pulse-dot-amber 2s infinite ease-in-out;
}

.badge-pulse-indigo {
  background: #6366f1;
  box-shadow: 0 0 8px #6366f1;
  animation: pulse-dot-indigo 2s infinite ease-in-out;
}

@keyframes pulse-dot-green {
  0% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulse-dot-amber {
  0% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(251, 191, 36, 0); }
  100% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

@keyframes pulse-dot-indigo {
  0% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6); }
  50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(99, 102, 241, 0); }
  100% { transform: scale(0.85); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

/* ==========================================================================
   PRICING TRUST BADGE (Option 2)
   ========================================================================== */
.pricing-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem auto 0 auto;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.15);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.03);
  font-size: 0.9rem;
  color: var(--text-primary);
  max-width: 650px;
  text-align: left;
}

.pricing-trust-badge strong {
  color: var(--primary);
}

@media (max-width: 768px) {
  .pricing-trust-badge {
    border-radius: 16px;
    font-size: 0.8rem;
    padding: 0.8rem 1.2rem;
    margin-top: 1.2rem;
    text-align: center;
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* ==========================================================================
   JOURNEY FLOW CARD (Option 3)
   ========================================================================== */
.journey-flow-card {
  padding: 3rem;
  margin: 3.5rem 0;
  border-color: rgba(99, 102, 241, 0.15);
  background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.04) 0%, transparent 60%), var(--glass-bg);
  box-shadow: 0 0 35px rgba(99, 102, 241, 0.03);
  text-align: center;
}

.journey-flow-header {
  margin-bottom: 2.5rem;
}

.journey-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.journey-flow-card h3 {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #fff 50%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.journey-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.journey-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}

.node-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  position: relative;
}

/* Glowing Pulsing animations for node circles */
.pulse-red {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
  animation: pulse-r 2s infinite ease-in-out;
}
.pulse-indigo {
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  animation: pulse-i 2s infinite ease-in-out;
}
.pulse-amber {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fbbf24;
  animation: pulse-a 2s infinite ease-in-out;
}
.pulse-green {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  animation: pulse-g 2s infinite ease-in-out;
}

@keyframes pulse-r {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 15px 4px rgba(239, 68, 68, 0.15); }
}
@keyframes pulse-i {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
  50% { box-shadow: 0 0 15px 4px rgba(99, 102, 241, 0.15); }
}
@keyframes pulse-a {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
  50% { box-shadow: 0 0 15px 4px rgba(251, 191, 36, 0.15); }
}
@keyframes pulse-g {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 0 15px 4px rgba(16, 185, 129, 0.15); }
}

.journey-node h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.journey-node p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* SVG Flow Arrows & Animation */
.journey-arrow {
  flex: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-line-svg {
  width: 100%;
  height: 20px;
}

.flow-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2px;
  stroke-dasharray: 6, 6;
  animation: flow-dash 1.5s infinite linear;
}

@keyframes flow-dash {
  to {
    stroke-dashoffset: -12;
    stroke: var(--primary);
  }
}

/* Mobile responsive journey layout */
@media (max-width: 768px) {
  .journey-flow-card {
    padding: 2rem 1.2rem;
    margin: 2.5rem 0;
  }
  
  .journey-flow-card h3 {
    font-size: 1.3rem;
  }
  
  .journey-steps-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .journey-node {
    max-width: 100%;
  }
  
  .journey-arrow {
    transform: rotate(90deg);
    margin: -0.5rem 0;
    width: 30px;
    height: 30px;
  }
}

/* ==========================================================================
   OTO AJANS - DINAMIK GELIR HESAPLAYICI & LIVE TICKER STIL KURALLARI
   ========================================================================== */

/* ROI Hesaplayıcı Stilleri */
.calculator-card {
  padding: 3.5rem;
  background: radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.04) 0%, transparent 50%), var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
}

.calc-label-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.calc-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-val-display {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(245, 158, 11, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Custom Input Range Styling */
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  outline: none;
  transition: background 0.3s ease;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(245, 158, 11, 1);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(245, 158, 11, 1);
}

.calc-range-limits {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.calc-info-note {
  margin-top: 2.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.calc-info-note i {
  margin-top: 0.15rem;
}

.calculator-outputs {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.01);
}

.output-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.output-box.main-output {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.output-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.output-value {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.2s ease;
}

.output-value.gold-glow {
  color: var(--primary);
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
}

.output-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

.secondary-outputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.output-value-sub {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.25rem;
}

.output-value-sub.text-success {
  color: #10b981;
}

.btn-calc-cta {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-calc-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Live Ticker Toast Notification Box Stilleri */
/* width hesaplaması 100vw yerine max-width ile sınırlandırıldı — 100vw scrollbar genişliğini de dahil ederek yatay taşmaya yol açıyordu */
.live-ticker-container {
  position: fixed;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 9999;
  max-width: 360px;
  width: auto;
  pointer-events: none;
}

.live-ticker-card {
  pointer-events: auto;
  position: relative;
  padding: 1.25rem 1.5rem;
  background: rgba(8, 10, 18, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 158, 11, 0.08);
  border-radius: 16px;
  transform: translateY(120px) scale(0.9);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
}

.live-ticker-card.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.live-ticker-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.live-ticker-close:hover {
  color: var(--primary);
}

.live-ticker-pulse {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: ticker-pulse 1.8s infinite;
}

@keyframes ticker-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.pulse-text {
  font-size: 0.65rem;
  font-weight: 800;
  color: #10b981;
  letter-spacing: 0.08em;
}

.live-ticker-body {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ticker-icon {
  font-size: 1.4rem;
  color: #10b981;
  margin-top: 0.1rem;
}

.ticker-content p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-secondary);
}

.ticker-content strong {
  color: var(--text-primary);
}

/* Responsiveness for ROI Calculator and Ticker */
@media (max-width: 768px) {
  .calculator-card {
    padding: 1.5rem 1.25rem;
    margin: 1.5rem 0;
  }
  
  .calculator-grid {
    grid-template-columns: 1fr !important; /* Force vertical stacking on mobile */
    gap: 2rem !important;
  }
  
  .calculator-outputs {
    padding: 1.5rem 1rem;
  }
  
  .output-value {
    font-size: 2.2rem;
  }
  
  .secondary-outputs {
    grid-template-columns: repeat(3, 1fr) !important; /* Keep compact side-by-side layout instead of giant vertical stack */
    gap: 0.5rem !important;
    text-align: center;
  }

  .secondary-outputs .output-box {
    padding: 0.6rem 0.35rem !important;
  }

  .secondary-outputs .output-label {
    font-size: 0.6rem !important;
    letter-spacing: 0;
  }

  .secondary-outputs .output-value-sub {
    font-size: 0.9rem !important;
    margin-top: 0.15rem;
  }

  .calc-info-note {
    margin-top: 1.5rem !important;
    font-size: 0.75rem !important;
    padding: 0.75rem 1rem !important;
  }
  
  .live-ticker-container {
    left: 15px !important;
    right: 15px !important;
    bottom: 15px !important;
    width: auto !important;
  }
}

/* Mobil Simülatör Tab Seçici Stilleri */
.sim-mobile-tabs {
  display: none;
}

@media (max-width: 768px) {
  .sim-mobile-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    background: rgba(10, 10, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem;
    border-radius: 14px;
    /* backdrop-filter kaldırıldı — mobilde gereksiz GPU katmanı oluşturuyordu */
  }

  .sim-tab-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
  }

  .sim-tab-btn.active {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #020205;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
  }

  /* Hide the preview mockup by default on mobile, since we toggle it via tab clicks */
  .phone-mockup-container {
    display: none !important;
  }
  
  /* Make sure controls card is visible by default */
  .sim-controls-card {
    display: block !important;
  }
}

/* 24 Saat Teslimat Sayaç/Bolt Pulsing İkonu Animasyonu */
@keyframes bolt-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(16, 185, 129, 0));
  }
  50% {
    transform: scale(1.25);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
  }
}

/* ==========================================
   11. YASAL MODAL (GİZLİLİK & KULLANICI HAKLARI)
   ========================================== */
.legal-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 2, 5, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.19, 1, 0.22, 1), visibility 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.legal-modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.legal-modal-card {
  width: 90%;
  max-width: 640px;
  background: rgba(8, 10, 18, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.12);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.legal-modal-backdrop.show .legal-modal-card {
  transform: scale(1) translateY(0);
}

.legal-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.legal-modal-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
  flex-shrink: 0;
}

.legal-header-icon {
  font-size: 1.6rem;
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.45));
}

#legal-modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.legal-modal-body {
  overflow-y: auto;
  padding-right: 0.75rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.3) rgba(255, 255, 255, 0.02);
}

.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.3);
  border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Modal Copywriting Styles */
.legal-sec-title {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-sec-title i {
  color: var(--primary);
  font-size: 0.9rem;
}

.legal-text-p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.legal-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* Body scroll Lock */
body.modal-open {
  overflow: hidden !important;
  padding-right: 6px; /* Prevent scrollbar layout shift */
}



