/* ==========================================================================
   Revvtuned - Premium Sliding Automotive Theme Stylesheet
   ========================================================================== */

:root {
  --bg-black: #040404;
  --bg-dark: #0a0a0a;
  --bg-card: rgba(15, 15, 20, 0.75);
  --primary-red: #ff2a20;
  --primary-red-glow: rgba(255, 42, 32, 0.4);
  --primary-gold: #cab17d;
  --text-white: #ffffff;
  --text-gray: #aaaaaa;
  --border-solid: rgba(255, 255, 255, 0.1);
  --border-red: rgba(255, 42, 32, 0.3);
  
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slide: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: 'Exo 2', sans-serif;
  background: var(--bg-black);
  color: var(--text-white);
  -webkit-tap-highlight-color: transparent;
}

/* Custom Scrollbar inside inner-scrollables */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 42, 32, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* --- Loading Screen --- */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--transition-normal);
}
#loading-screen.hide {
  opacity: 0;
  pointer-events: none;
}
.loading-logo {
  height: 48px;
  width: auto;
  margin-bottom: 30px;
}
.loader-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}
.loader-ring .outer {
  position: absolute;
  inset: 0;
  border: 4px solid #111;
  border-radius: 50%;
}
.loader-ring .spinner {
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  border-top-color: var(--primary-red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loader-ring .inner {
  position: absolute;
  inset: 8px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.progress-bar {
  width: 250px;
  height: 4px;
  background: #111;
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.loading-text {
  margin-top: 15px;
  color: #666;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.loading-dots {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}
.loading-dots span {
  width: 6px;
  height: 6px;
  background: var(--primary-red);
  border-radius: 50%;
  animation: bounce 0.6s ease-in-out infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.15s; }
.loading-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Shared Navigation Header --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(4,4,5,0.9) 0%, transparent 100%);
  backdrop-filter: blur(5px);
}
.navbar-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  height: 38px;
  width: 125px;
  display: block;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 42, 32, 0.15);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}
.platform-btn:hover {
  background: rgba(255, 42, 32, 0.3);
  border-color: rgba(255, 42, 32, 0.6);
  box-shadow: 0 0 15px rgba(255, 42, 32, 0.2);
}
.platform-btn svg {
  width: 16px;
  height: 16px;
}

/* Language Selector styling */
.language-selector select {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid var(--border-solid);
  color: var(--text-white);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ff2a20' stroke-width='3' 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 10px center;
  transition: border-color var(--transition-normal);
}
.language-selector select:hover {
  border-color: var(--primary-red);
}
.language-selector select option {
  background: var(--bg-dark);
  color: #fff;
}

/* --- Side Dot Navigation Menu --- */
.side-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: block;
  background: rgba(15, 15, 20, 0.85);
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.side-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 32px;
  right: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.side-nav .nav-items {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.nav-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-dot .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(4, 4, 4, 0.8);
  transition: all var(--transition-normal);
}
.nav-dot:hover .dot {
  border-color: var(--primary-red);
  background: rgba(255, 42, 32, 0.3);
  transform: scale(1.1);
}
.nav-dot.active .dot {
  border-color: var(--primary-red);
  background: var(--primary-red);
  box-shadow: 0 0 12px var(--primary-red-glow);
  transform: scale(1.15);
}
.nav-dot.home-dot .dot {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-dot.home-dot .dot svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-normal);
}
.nav-dot.home-dot:hover .dot svg,
.nav-dot.home-dot.active .dot svg {
  color: #fff;
}
.nav-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--border-solid);
  border-radius: 6px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.nav-dot:hover .nav-tooltip,
.nav-dot.active .nav-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* --- Viewport & Section Sliding System --- */
#main {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s var(--transition-normal);
}
#main.show {
  opacity: 1;
}
.slider-container {
  height: 600%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-slide);
  will-change: transform;
}
.section {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: relative;
  flex-shrink: 0;
}
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,4,5,0.4) 0%, rgba(4,4,5,0.2) 50%, rgba(4,4,5,0.9) 100%);
}
.section-bg .video-dots {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.5) 1.5px, transparent 1.5px);
  background-size: 5px 5px;
  z-index: 1;
  pointer-events: none;
}
.section-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 95px 24px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.inner-scrollable {
  /* ensures children scrolling does not break slider container Y scroll */
  overflow-y: auto;
}

/* Premium Carbon Background style */
.bg-carbon {
  background-color: var(--bg-black);
  /* Carbon fiber micro-pattern background */
  background-image: 
    linear-gradient(45deg, #070709 25%, transparent 25%), 
    linear-gradient(-45deg, #070709 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #070709 75%), 
    linear-gradient(-45deg, transparent 75%, #070709 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
}

/* Title and Content Areas inside Sections */
.inner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  flex: 1 0 auto;
}
.title-area {
  text-align: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.title-area h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 4.5vw, 42px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.title-area p {
  color: var(--text-gray);
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 300;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}
.content-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* --- Section 1: Home (Ana Sayfa) --- */
.section[data-section="home"] .section-content {
  justify-content: center;
}
.home-title {
  text-align: center;
  margin-bottom: auto;
  margin-top: auto;
}
.home-title h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 4.5vw, 46px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.9);
  line-height: 1.35;
  letter-spacing: 0.5px;
}
.services-grid-home {
  width: 100%;
  max-width: 1100px;
  margin-top: auto;
  margin-bottom: 60px;
}
.services-grid-home .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .services-grid-home .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid-home .grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}
.service-item-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  padding: 20px 10px;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}
.service-item-home:hover {
  transform: translateY(-8px);
  border-color: var(--primary-red);
  box-shadow: 0 8px 24px rgba(255, 42, 32, 0.2);
}
.service-item-home .icon-wrap {
  width: 56px;
  height: 56px;
  color: var(--primary-red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
  filter: drop-shadow(0 0 8px rgba(255,42,32,0.3));
}
.service-item-home:hover .icon-wrap {
  transform: scale(1.1);
}
.service-item-home h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

/* --- Section 2: Chiptuning Operations Grid --- */
.ct-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 6px;
  width: 100%;
  max-width: 1100px;
  margin: auto 0;
}
@media (min-width: 600px) {
  .ct-ops-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
}
@media (min-width: 900px) {
  .ct-ops-grid { grid-template-columns: repeat(9, 1fr); gap: 14px; }
}
.ct-op-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 10px;
  background: rgba(15, 15, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    0 10px 20px rgba(0, 0, 0, 0.3);
}
.ct-op-item:hover {
  border-color: rgba(255, 42, 32, 0.5);
  background: linear-gradient(135deg, rgba(255, 42, 32, 0.1) 0%, rgba(15, 15, 20, 0.8) 100%);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(255, 42, 32, 0.25),
    0 15px 30px rgba(0, 0, 0, 0.5);
}
.ct-op-item .ct-icon {
  width: 62px;
  height: 40px;
  color: var(--primary-red);
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
  display: block;
}
.ct-op-item:hover .ct-icon {
  transform: scale(1.08);
}
.ct-op-item h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.ct-op-item:hover h4 {
  color: #ffffff;
}

/* --- Section 3: Fiyatlandırma (Pricing) --- */
.discount-banner {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 1050px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .discount-banner { flex-direction: row; }
}
.discount-banner-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 15, 20, 0.8);
  border: 1px solid var(--border-red);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.discount-banner-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 42, 32, 0.1);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b6b;
  flex-shrink: 0;
}
.discount-banner-icon svg {
  width: 22px;
  height: 22px;
}
.discount-banner-body {
  flex: 1;
}
.discount-banner-badge {
  font-size: 8px;
  font-weight: 700;
  background: var(--primary-red);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.discount-banner-pct {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.discount-banner-pct em {
  font-style: normal;
  color: var(--primary-red);
  font-size: 22px;
}
.discount-banner-pct span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-gray);
}
.discount-banner-text {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.4;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1050px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
}
.price-card.popular {
  border-color: var(--primary-red);
  box-shadow: 0 0 20px rgba(255,42,32,0.15);
}
.price-card.popular::after {
  content: 'POPÜLER';
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--primary-red);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.plan-header { margin-bottom: 12px; }
.plan-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.plan-desc {
  font-size: 11px;
  color: var(--text-gray);
  margin-top: 4px;
  min-height: 28px;
  line-height: 1.3;
}
.plan-price {
  display: none;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.plan-price-value {
  font-family: 'Orbitron', sans-serif;
  color: #10b981;
  font-size: 28px;
  font-weight: 700;
}
.plan-price-period {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}
.plan-features {
  margin-bottom: 16px;
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.plan-feature .check-icon {
  color: #10b981;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.plan-vehicles {
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 16px;
  max-height: 140px;
  overflow-y: auto;
}
.plan-vehicle-title {
  color: #3b82f6;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 2px;
}
.plan-ops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.plan-op-tag {
  font-size: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 1px 4px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: all var(--transition-normal);
}
.plan-btn.primary {
  background: linear-gradient(135deg, var(--primary-red), #991b1b);
  border: none;
}
.plan-btn:hover {
  background: var(--primary-red);
  border-color: transparent;
  box-shadow: 0 0 15px var(--primary-red-glow);
}

.per-file-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 42, 32, 0.1);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  color: var(--primary-red);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 0 15px rgba(255,42,32,0.1);
  animation: pulseGlow 1.5s infinite alternate;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(255,42,32,0.05); border-color: rgba(255,42,32,0.3); }
  100% { box-shadow: 0 0 20px rgba(255,42,32,0.2); border-color: rgba(255,42,32,0.8); }
}
.per-file-price-btn svg {
  transition: transform var(--transition-normal);
}
.per-file-price-btn:hover svg {
  transform: translateX(4px);
}

/* --- Section 4: Canlı İstatistikler (Live Stats) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 950px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.stat-card .label {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.stat-card .value {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,42,32,0.25);
}

.ls-recent {
  width: 100%;
  max-width: 950px;
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.ls-recent-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-solid);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}
.ls-table {
  width: 100%;
  border-collapse: collapse;
}
.ls-table th {
  padding: 8px 12px;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  background: rgba(0,0,0,0.25);
  text-align: left;
  letter-spacing: 0.5px;
}
.ls-table td {
  padding: 10px 12px;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
}
.ls-table tr:last-child td {
  border-bottom: none;
}
.ls-table .ls-id {
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}
.ls-table .ls-ecu {
  color: #fff;
  font-weight: 700;
}
.ls-table .ls-vtype {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}
.ls-table .ls-ops {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.ls-op-badge {
  display: inline-block;
  background: rgba(255,42,32,0.12);
  border: 1px solid var(--border-red);
  color: #ff8b85;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}
.ls-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.ls-badge.tamamlandi {
  background: rgba(16,185,129,0.15);
  border-color: rgba(16,185,129,0.3);
  color: #10b981;
}
.ls-badge.yapiliyor {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.3);
  color: #8b5cf6;
}
.ls-badge.sirada {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.3);
  color: #f59e0b;
}
.ls-badge.hata {
  background: rgba(239,68,68,0.15);
  border-color: rgba(239,68,68,0.3);
  color: #ef4444;
}
@media (max-width: 600px) {
  .ls-hide-mobile { display: none; }
}

/* --- Section 5: DTC Remover System --- */
.dtc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 950px;
  gap: 24px;
}
.dtc-steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.dtc-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.dtc-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-red);
  opacity: 0.5;
  transition: opacity var(--transition-normal);
}
.dtc-step-card:hover {
  border-color: var(--border-red);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(255, 42, 32, 0.08);
}
.dtc-step-card:hover::before {
  opacity: 1;
}
.dtc-step-num {
  width: 36px;
  height: 36px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 10px var(--primary-red-glow);
  flex-shrink: 0;
}
.dtc-step-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.dtc-step-info p {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Features grid at bottom */
.dtc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}
@media (min-width: 768px) {
  .dtc-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.dtc-feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 14px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}
.dtc-feature-box:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(255, 42, 32, 0.08);
}
.dtc-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 42, 32, 0.1);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
  transition: all var(--transition-normal);
}
.dtc-feature-box:hover .dtc-feature-icon {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 0 10px var(--primary-red-glow);
}
.dtc-feature-info h4 {
  font-size: 13px;
  color: var(--primary-gold);
  margin-bottom: 4px;
  font-family: 'Orbitron', sans-serif;
}
.dtc-feature-info p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* --- Section 6: İletişim & Randevu --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .contact-cards-container { grid-template-columns: repeat(2, 1fr); }
}
.contact-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 14px;
  backdrop-filter: blur(10px);
}
.detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,42,32,0.12);
  border: 1px solid var(--border-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  flex-shrink: 0;
}
.detail-info h4 {
  font-size: 13px;
  color: var(--primary-gold);
  margin-bottom: 4px;
}
.detail-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.directions-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-red);
  margin-top: 6px;
}
.whatsapp-btn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 4px 10px;
  border-radius: 6px;
  color: #10b981;
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
  text-decoration: none;
}
.whatsapp-btn-badge:hover {
  background: rgba(16,185,129,0.25);
}

/* Randevu Formu styling */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h3 {
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-solid);
  padding-bottom: 10px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 600px) {
  .form-row { flex-direction: row; }
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-solid);
  border-radius: 6px;
  padding: 10px;
  color: #fff;
  font-size: 12px;
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition-normal);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-red);
}
.submit-btn {
  background: var(--primary-red);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
}
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.form-status {
  font-size: 12px;
  text-align: center;
}
.form-status.success { color: #10b981; }
.form-status.error { color: #ef4444; }

.contact-right {
  height: 100%;
}
.map-wrapper {
  height: 380px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-solid);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.map-overlay-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10,10,10,0.9);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-red);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-red);
  box-shadow: 0 0 0 0 rgba(255,42,32,0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,42,32,0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255,42,32,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,42,32,0); }
}

.ec-legal-ft {
  width: 100%;
  padding-top: 14px;
  border-top: 1px solid var(--border-solid);
  text-align: center;
  margin-top: 20px;
  flex-shrink: 0;
}
.ec-legal-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* --- Scroll Indicator Bar (at bottom) --- */
.scroll-indicator-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounceIndicator 1.8s infinite;
  cursor: pointer;
}
.scroll-indicator-bar svg {
  width: 16px;
  height: 16px;
}
@keyframes bounceIndicator {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* --- Pricing/ECU Lookup Slide Drawer Panel --- */
.price-slide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.price-slide-overlay.active {
  opacity: 1;
  visibility: visible;
}
.price-slide-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 750px;
  height: 100vh;
  height: 100dvh;
  background: #0d0d14;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.6);
}
.price-slide-panel.active {
  transform: translateX(0);
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-solid);
  flex-shrink: 0;
}
.panel-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-title svg { color: var(--primary-red); }
.panel-close {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  cursor: pointer;
}
.panel-close:hover {
  background: rgba(255,255,255,0.1);
}
.panel-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}

/* ECU Grid and Search Boxes inside Drawer */
.pp-top-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 480px) {
  .pp-top-grid { grid-template-columns: repeat(4, 1fr); }
}
.pp-ecu-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}
.pp-ecu-card:hover {
  border-color: rgba(255, 42, 32, 0.4);
}
.pp-ecu-card.active {
  border-color: var(--primary-red);
  box-shadow: 0 0 10px rgba(255, 42, 32, 0.15);
}
.pp-ecu-card-head {
  background: rgba(255, 42, 32, 0.1);
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pp-ecu-card-rank {
  font-family: 'Orbitron', sans-serif;
  font-size: 8px;
  color: var(--primary-gold);
}
.pp-ecu-card-name {
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pp-ecu-card-body {
  padding: 8px 10px;
}
.pp-ecu-card-info {
  font-size: 9px;
  color: var(--text-gray);
  line-height: 1.4;
}
.pp-ecu-card-stats {
  font-size: 9px;
  color: var(--primary-red);
  font-weight: 700;
  margin-top: 4px;
}

.pp-search-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 20px;
}
.pp-search-title {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pp-search-title svg { color: var(--primary-red); }
.pp-search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
}
@media (min-width: 640px) {
  .pp-search-grid { grid-template-columns: repeat(3, 1fr) auto; }
}
.pp-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pp-form-label {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.pp-form-select {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 10px;
  color: #fff;
  font-size: 12px;
}
.pp-form-select:disabled { opacity: 0.4; }
.pp-btn-search {
  background: var(--primary-red);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  height: 35px;
}
.pp-btn-search:disabled { opacity: 0.5; cursor: not-allowed; }

.pp-ops-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.pp-ops-header {
  background: rgba(255, 42, 32, 0.08);
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.pp-ops-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.pp-ops-meta {
  display: flex;
  gap: 10px;
  font-size: 10px;
  color: var(--text-gray);
}
.pp-ops-meta span { color: #fff; font-weight: 600; }
.pp-ops-table {
  width: 100%;
  border-collapse: collapse;
}
.pp-ops-table th,
.pp-ops-table td {
  padding: 8px 12px;
  font-size: 11px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pp-ops-table th {
  background: rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.pp-ops-table td.code {
  color: var(--primary-red);
  font-weight: 700;
  font-family: monospace;
}
.pp-ops-table td.price {
  color: #10b981;
  font-weight: 700;
  text-align: right;
}
.pp-ops-empty,
.pp-ops-loading {
  padding: 30px;
  text-align: center;
  color: var(--text-gray);
  font-size: 12px;
}

/* --- Section 4: Revert Original System Redesign --- */
.revert-header {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 850px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .revert-header {
    flex-direction: column;
    text-align: center;
  }
}
.revert-logo-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.revert-logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(46, 197, 79, 0.4));
}
.revert-title-block h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.revert-title-block p {
  font-size: clamp(12px, 1.3vw, 15px);
  color: var(--text-gray);
  margin-top: 4px;
}

.revert-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 850px;
  margin-bottom: 30px;
}
.revert-step-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(15, 15, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.revert-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 197, 79, 0.3);
  box-shadow: 0 12px 30px rgba(46, 197, 79, 0.08);
}
.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--primary-red-glow);
}
.step-body h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.step-body p {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 4px;
  line-height: 1.4;
}

.revert-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 850px;
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .revert-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .revert-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.revert-feature-box {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(10, 10, 12, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.revert-feature-box:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(15, 15, 18, 0.8);
}
.feature-icon {
  color: var(--primary-red);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature-content h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.feature-content p {
  font-size: 10px;
  color: var(--text-gray);
  margin-top: 4px;
  line-height: 1.3;
}
