/* ============================================================
   eKoruma - Futuristic Theme v3
   Vibrant, Full, Impactful Design
   ============================================================ */

:root {
  --primary: #00d4ff;
  --primary-dark: #0099cc;
  --secondary: #0066ff;
  --accent: #00ffcc;
  --purple: #7c3aed;
  --pink: #ec4899;
  --bg-dark: #0a0f1c;
  --bg-darker: #060912;
  --bg-card: rgba(15, 23, 42, 0.8);
  --text: #ffffff;
  --text-muted: #94a3b8;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow-cyan: 0 0 40px rgba(0, 212, 255, 0.4);
  --glow-purple: 0 0 40px rgba(124, 58, 237, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s;
}

.header.scrolled {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo img {
  width: 180px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 580px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background: rgba(0, 212, 255, 0.1);
}

.dropdown-item > i,
.dropdown-item > svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: white !important;
  stroke: white !important;
  transition: all 0.3s;
}

.dropdown-cta> i,
.dropdown-cta > svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: white !important;
  stroke: white !important;
  transition: all 0.3s;
}



.dropdown-item:hover > i,
.dropdown-item:hover > svg {
  color: var(--primary) !important;
  stroke: var(--primary) !important;
  transform: scale(1.1);
}

.dropdown-title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}

.dropdown-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dropdown-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--glass-border);
}

.dropdown-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.dropdown-cta:hover {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2));
  border-color: rgba(236, 72, 153, 0.4);
}

.dropdown-cta > i:first-child {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.dropdown-cta .dropdown-title {
  color: var(--pink);
}

.dropdown-cta .cta-arrow {
  margin-left: auto;
  color: var(--pink);
  transition: transform 0.3s;
}

.dropdown-cta:hover .cta-arrow {
  transform: translateX(5px);
}

.nav-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.language-btn {
  min-width: 100px;
  gap: 8px;
}

.language-btn .dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.language-switcher.active .dropdown-icon {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.language-switcher.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.language-option:hover {
  background: var(--glass-bg);
  color: var(--primary);
}

.language-option.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.language-flag {
  font-size: 1.25rem;
  line-height: 1;
}

#currentLang {
  font-weight: 600;
  min-width: 25px;
  text-align: center;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.mobile-language-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.mobile-language-option:hover,
.mobile-language-option.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  box-shadow: var(--glow-purple);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 212, 255, 0.1);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================================
   HERO - Full Impact
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* Animated Gradient Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.3), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124, 58, 237, 0.2), transparent),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(0, 255, 204, 0.15), transparent),
    linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Grid Pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.4), rgba(0, 102, 255, 0.2));
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.2));
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 255, 204, 0.2);
  top: 50%;
  left: 30%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Yükselen partiküller */
.particle--rise {
  animation: particleRise linear infinite;
}

@keyframes particleRise {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
    transform: translateY(95vh) translateX(10px) scale(1);
  }
  50% {
    transform: translateY(50vh) translateX(-10px) scale(1);
    opacity: 0.8;
  }
  95% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-10vh) translateX(5px) scale(0.5);
    opacity: 0;
  }
}

/* Yüzen partiküller (rastgele hareket) */
.particle--float {
  animation: particleFloat ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -40px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translate(-20px, -80px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translate(40px, -40px) rotate(270deg);
    opacity: 1;
  }
}

/* Titreşen partiküller */
.particle--twinkle {
  animation: particleTwinkle ease-in-out infinite;
}

@keyframes particleTwinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Dönen partiküller */
.particle--orbit {
  animation: particleOrbit linear infinite;
}

@keyframes particleOrbit {
  0% {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
    opacity: 0.7;
  }
}

/* Partikül renk varyasyonları */
.particle--cyan {
  background: var(--primary);
  box-shadow: 0 0 15px var(--primary), 0 0 30px var(--primary);
}

.particle--purple {
  background: var(--purple);
  box-shadow: 0 0 15px var(--purple), 0 0 30px var(--purple);
}

.particle--accent {
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
}

.particle--pink {
  background: var(--pink);
  box-shadow: 0 0 15px var(--pink), 0 0 30px var(--pink);
}

.particle--white {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Partikül boyut varyasyonları */
.particle--xs { width: 2px; height: 2px; }
.particle--sm { width: 4px; height: 4px; }
.particle--md { width: 6px; height: 6px; }
.particle--lg { width: 8px; height: 8px; }

/* Connecting lines between particles */
.particle-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  transform-origin: left center;
  animation: lineFade 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lineFade {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Hero Content */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--accent);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.hero-title .line {
  display: block;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--purple));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 50px;
}

.stat-box {
  text-align: left;
  padding: 20px 30px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central Shield */
.shield-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.shield-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 70%);
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.shield-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: white;
  box-shadow: var(--glow-cyan);
  animation: shieldFloat 6s ease-in-out infinite;
  overflow: hidden;
}

.shield-icon img {
  width: 60%;
  height: auto;
  max-width: 120px;
  display: block;
}

@keyframes shieldFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -55%) rotate(5deg); }
}

/* Orbiting Rings */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  animation: orbitSpin 20s linear infinite;
}

.orbit-1 {
  width: 300px;
  height: 300px;
  border-style: dashed;
}

.orbit-2 {
  width: 380px;
  height: 380px;
  animation-direction: reverse;
  animation-duration: 25s;
}

.orbit-3 {
  width: 460px;
  height: 460px;
  border-style: dotted;
  animation-duration: 30s;
}

@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbit Icons */
.orbit-item {
  position: absolute;
  width: 55px;
  height: 55px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  animation: counterSpin 20s linear infinite;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.orbit-2 .orbit-item {
  animation-direction: reverse;
  animation-duration: 25s;
}

.orbit-3 .orbit-item {
  animation-duration: 30s;
}

@keyframes counterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Position orbit items */
.orbit-1 .orbit-item:nth-child(1) { top: -27px; left: 50%; margin-left: -27px; }
.orbit-1 .orbit-item:nth-child(2) { bottom: -27px; left: 50%; margin-left: -27px; }
.orbit-1 .orbit-item:nth-child(3) { left: -27px; top: 50%; margin-top: -27px; }
.orbit-1 .orbit-item:nth-child(4) { right: -27px; top: 50%; margin-top: -27px; }

.orbit-2 .orbit-item:nth-child(1) { top: 15%; left: -27px; }
.orbit-2 .orbit-item:nth-child(2) { top: 15%; right: -27px; }
.orbit-2 .orbit-item:nth-child(3) { bottom: 15%; left: -27px; }
.orbit-2 .orbit-item:nth-child(4) { bottom: 15%; right: -27px; }

/* Floating Cards */
.floating-card {
  position: absolute;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  animation: float 5s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.floating-card-1 {
  top: 5%;
  right: -20px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 20%;
  left: -40px;
  animation-delay: -2s;
}

.floating-card-3 {
  bottom: 5%;
  right: 10%;
  animation-delay: -4s;
}

.floating-card-4 {
  top: 8%;
  left: -30px;
  animation-delay: -1s;
}

.floating-card-5 {
  bottom: 25%;
  left: -10px;
  animation-delay: -3s;
}

.floating-card-6 {
  top: 18%;
  right: 5%;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.floating-card .card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.floating-card .card-icon i {
  font-size: 18px;
}

.floating-card .card-icon.multiple {
  width: auto;
  padding: 6px 8px;
  gap: 8px;
  background: transparent;
}

.floating-card .card-icon.multiple i {
  color: var(--primary);
  background: rgba(255,255,255,0.06);
  padding: 6px;
  border-radius: 8px;
  font-size: 16px;
}

.floating-card .card-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.floating-card .card-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  position: relative;
}

.services-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 212, 255, 0.1), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(124, 58, 237, 0.1), transparent 50%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 25px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

/* Responsive: 2 cols for <=900px, 1 for <=600px */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card { padding: 28px; }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin-bottom: 30px;
  box-shadow: var(--glow-cyan);
  transition: transform 0.4s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 20px;
}

/* ============================================================
   KIDS PROTECTION SECTION
   ============================================================ */
.kids-protection {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-darker);
}

.kids-protection-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(236, 72, 153, 0.15), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(124, 58, 237, 0.15), transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.08), transparent 60%);
}

.kids-protection-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.kids-protection-content {
  max-width: 550px;
}

.kids-badge {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2)) !important;
  color: var(--pink) !important;
}

.kids-badge i {
  color: var(--pink) !important;
}

.kids-protection-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 25px;
}

.kids-protection-description strong {
  color: var(--text);
  font-weight: 600;
}

.kids-hashtag {
  margin-bottom: 30px;
}

.kids-hashtag span {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.5px;
}

.kids-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.kids-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.kids-stat > i {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}

.kids-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kids-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.kids-protection-video {
  position: relative;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
}

.video-container::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--primary));
  border-radius: 26px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(15px);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .kids-protection-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .kids-protection-content {
    max-width: 100%;
  }

  .kids-stats {
    justify-content: center;
  }

  .kids-protection-content .btn {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .kids-stats {
    flex-direction: column;
    gap: 15px;
  }

  .kids-stat {
    justify-content: center;
  }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--purple));
}

.stats-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.stat-item .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  display: block;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  -webkit-text-fill-color: white;
  background: none;
}

.stat-item .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  padding: 120px 0;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Connection Line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--purple));
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  transition: all 0.4s;
}

.step-number span {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--glass-border);
  border-radius: 50%;
  animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  box-shadow: var(--glow-cyan);
  transform: scale(1.1);
}

.process-step:hover .step-number span {
  -webkit-text-fill-color: white;
  background: none;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-description {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features {
  padding: 120px 0;
  position: relative;
  background: var(--bg-darker);
}

.features-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(0, 212, 255, 0.1), transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(124, 58, 237, 0.1), transparent 50%);
}

.features-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}

.features-visual {
  position: relative;
}

.features-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.features-image {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.features-image-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border-radius: 26px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
}

/* Code Terminal */
.code-terminal {
  position: absolute;
  top: 30px;
  right: -60px;
  width: 280px;
  background: var(--bg-darker);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--glass-border);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot:nth-child(1) { background: #ff5f57; }
.terminal-dot:nth-child(2) { background: #ffbd2e; }
.terminal-dot:nth-child(3) { background: #28ca42; }

.terminal-body {
  padding: 20px;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--primary);
  max-height: 250px;
  overflow: hidden;
}

.code-line {
  margin-bottom: 6px;
  opacity: 0;
  animation: typeIn 0.5s forwards;
}

@keyframes typeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Features List */
.features-content .section-header {
  text-align: left;
  margin-bottom: 50px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  gap: 24px;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.3s;
}

.feature-item:hover {
  transform: translateX(15px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
}

.feature-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-card.featured .author-avatar {
  background: rgba(255, 255, 255, 0.2);
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.testimonial-card.featured .author-title {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
}

.cta-orb-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent 70%);
  top: -200px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite;
}

.cta-orb-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent 70%);
  bottom: -150px;
  right: -50px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  backdrop-filter: blur(20px);
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 0 30px;
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 25px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  font-size: 20px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 50px;
  height: 50px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-5px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  margin-bottom: 25px;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.2);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-disclaimer i {
  width: 18px;
  height: 18px;
  color: #ffc107;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 20px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 28, 0.98), rgba(15, 23, 42, 0.98));
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 80px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list > li {
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.mobile-nav-list > li:last-child {
  border-bottom: none;
}

.mobile-nav-list > li > a:not(.mobile-dropdown-toggle) {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.mobile-nav-list > li > a:not(.mobile-dropdown-toggle):hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
  transform: translateX(5px);
}

/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.mobile-dropdown-toggle:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

.mobile-dropdown.active .mobile-dropdown-toggle {
  background: rgba(0, 212, 255, 0.15);
  color: var(--primary);
}

.mobile-dropdown-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 1000px;
  margin-top: 8px;
  opacity: 1;
}

.mobile-dropdown-menu li {
  margin-bottom: 0;
  padding: 0;
}

.mobile-dropdown-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  padding: 12px 16px 12px 32px;
  border-radius: 10px;
  margin: 4px 0;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
}

.mobile-dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 18px;
  width: 4px;
  height: 4px;
  background: rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.1);
  padding-left: 36px;
}

.mobile-dropdown-menu a:hover::before {
  background: var(--primary);
  width: 6px;
  height: 6px;
}

.mobile-dropdown-special {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.mobile-dropdown-special a {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 204, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.mobile-dropdown-special a::before {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.mobile-dropdown-special a:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 204, 0.1));
  border-color: var(--primary);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.4);
}

.mobile-menu-btn i {
  width: 20px;
  height: 20px;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: var(--glow-cyan);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .features-wrapper {
    grid-template-columns: 1fr;
  }

  .features-visual {
    display: none;
  }
}

@media (max-width: 992px) {
  .nav-menu, .nav-buttons {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .services-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-content {
    padding: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-disclaimer {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    font-size: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .references-track {
    animation-duration: 15s;
  }
}

/* ============================================================
   REFERENCES (Marka Logoları)
   ============================================================ */
.references {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
}

.references::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.references::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.references .section-header {
  margin-bottom: 50px;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.reference-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 12px;
  padding: 20px;
  height: 80px;
  transition: all 0.4s ease;
  position: relative;
}

.reference-item:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.reference-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3))
          drop-shadow(0 0 12px rgba(0, 212, 255, 0.2));
}

.reference-item:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5))
          drop-shadow(0 0 20px rgba(0, 212, 255, 0.4))
          drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
}

.reference-item.placeholder {
  background: linear-gradient(135deg, var(--glass), rgba(0, 212, 255, 0.05));
}

.reference-item.placeholder i {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .reference-item {
    height: 60px;
    padding: 15px;
  }
}

/* ============================================================
   PROTECTED MOVIES (Korunan Eserler)
   ============================================================ */
.protected-movies {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
}

.protected-movies::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.protected-movies::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.protected-movies .section-header {
  margin-bottom: 50px;
}

.protected-movies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.protected-movie-item {
  display: flex !important;
  flex-direction: column !important;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 12px;
  transition: all 0.4s ease;
  overflow: hidden;
  width: 100%;
}

.protected-movie-item:hover {
  border-color: var(--accent);
  background: rgba(30, 41, 59, 1);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 204, 0.25);
}

.protected-movie-item .movie-poster {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  min-height: 200px;
  flex: 1;
}

.protected-movie-item .movie-poster img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.4s ease;
}

.protected-movie-item:hover .movie-poster img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.protected-movie-item .movie-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.protected-movie-item .movie-placeholder i {
  width: 50px;
  height: 50px;
  color: var(--text-muted);
}

.protected-movie-item .movie-title {
  padding: 12px 15px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.3s ease;
  min-height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

.protected-movie-item:hover .movie-title {
  color: var(--accent);
  background: rgba(15, 23, 42, 1);
}

.protected-movie-item .movie-imdb-link {
  position: absolute;
  bottom: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary);
  border-radius: 6px;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  opacity: 0;
}

.protected-movie-item:hover .movie-imdb-link {
  opacity: 1;
}

.protected-movie-item .movie-imdb-link:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.protected-movie-item .movie-imdb-link i {
  width: 12px;
  height: 12px;
}

.protected-movie-item.placeholder {
  background: linear-gradient(135deg, var(--glass), rgba(0, 255, 204, 0.05));
}

.protected-movie-item.placeholder i {
  width: 50px;
  height: 50px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .protected-movies-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .protected-movies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .protected-movie-item .movie-poster {
    min-height: 150px;
    padding: 10px;
  }

  .protected-movie-item .movie-poster img {
    max-height: 130px;
  }

  .protected-movie-item .movie-title {
    font-size: 0.8rem;
    padding: 10px 8px;
    min-height: 42px;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow-cyan);
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.hidden {
  transform: translateY(150%) !important;
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
}


.cookie-consent-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-consent-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.cookie-consent-icon i {
  width: 24px;
  height: 24px;
}

.cookie-consent-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-consent-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-consent-text a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.cookie-consent-text a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.cookie-consent-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cookie-consent-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cookie-consent-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.cookie-consent-btn-secondary {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.cookie-consent-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-color: var(--primary);
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 20px;
  }

  .cookie-consent-text h3 {
    font-size: 1rem;
  }

  .cookie-consent-text p {
    font-size: 0.85rem;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-btn {
    padding: 14px 20px;
  }
}

/* ============================================================
   COOKIE SETTINGS MODAL
   ============================================================ */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.cookie-modal:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.cookie-modal-content {
  position: relative;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  max-width: 700px;
  max-height: 90vh;
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--glow-cyan);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.cookie-modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
}

.cookie-modal-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.cookie-modal-header h2 i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.cookie-modal-close {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-muted);
}

.cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(90deg);
}

.cookie-modal-close i {
  width: 20px;
  height: 20px;
}

.cookie-modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

.cookie-modal-intro {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cookie-category {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.cookie-category:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-category-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cookie-category-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.cookie-category-badge.always-active {
  background: rgba(0, 212, 255, 0.15);
  color: var(--primary);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.cookie-category-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.cookie-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.cookie-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
}

.cookie-item strong {
  color: var(--primary);
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
}

.cookie-item span {
  color: var(--text-muted);
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  cursor: pointer;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(71, 85, 105, 0.4);
  border: 1px solid rgba(71, 85, 105, 0.6);
  border-radius: 14px;
  transition: all 0.3s;
}

.cookie-toggle-slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: all 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
  background: white;
}

.cookie-toggle:hover .cookie-toggle-slider {
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.cookie-modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.cookie-modal-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cookie-modal-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cookie-modal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.cookie-modal-btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.cookie-modal-btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border-color: var(--primary);
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .cookie-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .cookie-modal-header {
    padding: 20px;
  }

  .cookie-modal-header h2 {
    font-size: 1.2rem;
  }

  .cookie-modal-body {
    padding: 20px;
  }

  .cookie-category {
    padding: 16px;
  }

  .cookie-category-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cookie-modal-footer {
    flex-direction: column;
    padding: 16px 20px;
  }

  .cookie-modal-btn {
    width: 100%;
  }
}
