/* =============================================
   AURA BİLİŞİM İLHAMLI CYBERPUNK TASARIM (YENİ)
   ============================================= */

/* Cyber Hero */
.cyber-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}

.cyber-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(15, 15, 26, 0.8) 0%, rgba(10, 10, 20, 1) 100%);
}

.cyber-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(0, 200, 83, 0.05) 2px, transparent 2px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.05) 2px, transparent 2px);
  background-size: 40px 40px, 40px 40px, 200px 200px, 200px 200px;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  animation: cyberGridMove 15s linear infinite;
  opacity: 0.8;
}

@keyframes cyberGridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 40px;
  }
}

.cyber-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: cyberPulse 8s alternate infinite ease-in-out;
}

.glow-primary {
  top: 10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
}

.glow-secondary {
  bottom: 10%;
  right: 20%;
  width: 400px;
  height: 400px;
  background: var(--accent-green);
  animation-delay: -4s;
}

@keyframes cyberPulse {
  0% {
    transform: scale(0.8) translate(0, 0);
    opacity: 0.1;
  }

  100% {
    transform: scale(1.2) translate(50px, -50px);
    opacity: 0.25;
  }
}

.cyber-hero-grid {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cyber-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1.5rem;
  max-width: 550px;
}

.cyber-action-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cyber-btn-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 1rem;
  width: 100%;
}

.cyber-btn {
  padding: 0.8rem 1.5rem;
  height: 52px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 1.05rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-btn {
  font-size: 0.85rem;
  white-space: nowrap;
  padding: 0.8rem 0.5rem;
}

.cyber-btn-solid {
  background: var(--accent-green);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
}

.cyber-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 200, 83, 0.7);
}

.cyber-btn-outline {
  background: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
}

.cyber-btn-outline:hover {
  background: rgba(0, 200, 83, 0.1);
  box-shadow: inset 0 0 15px rgba(0, 200, 83, 0.2), 0 0 15px rgba(0, 200, 83, 0.4);
  transform: translateY(-2px);
}

.cyber-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  color: var(--accent-purple-light);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: fastPulse 1.5s infinite;
}

@keyframes fastPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.cyber-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  text-align: left;
}

.gradient-text-cyber {
  background: linear-gradient(to right, var(--accent-green-light), var(--accent-purple-light), var(--accent-green));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: cyberGradient 3s linear infinite;
}

.gradient-text-green {
  background: linear-gradient(to right, #00e676, #69f0ae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
  background: linear-gradient(to right, #7c3aed, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes cyberGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.cyber-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0;
}

.cyber-query-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
}

.cyber-query-container::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-purple), var(--accent-green));
  background-size: 200%;
  border-radius: 60px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.7;
  animation: cyberGradient 3s linear infinite;
}

.cyber-query-form {
  display: flex;
  background: rgba(15, 15, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.5rem;
  backdrop-filter: blur(20px);
}

.cyber-query-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 1.1rem;
  outline: none;
}

.cyber-query-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cyber-query-btn {
  background: linear-gradient(135deg, var(--accent-green), #00b0ff);
  color: #000;
  border: none;
  border-radius: 40px;
  padding: 0 2rem;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
}

.cyber-query-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 200, 83, 0.6);
}

.cyber-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.cyber-portal-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cyber-portal {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
  border: 4px solid rgba(0, 200, 83, 0.4);
  box-shadow: 0 0 50px rgba(0, 200, 83, 0.5), inset 0 0 30px rgba(0, 200, 83, 0.5);
  animation: portalPulse 4s infinite alternate;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cyber-portal-center {
  text-align: center;
  background: rgba(10, 10, 20, 0.7);
  border: 1px solid rgba(0, 200, 83, 0.8);
  padding: 15px;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.5), inset 0 0 10px rgba(0, 200, 83, 0.2);
  z-index: 10;
}

.cyber-portal-center i {
  font-size: 2rem;
  color: #69f0ae;
  margin-bottom: 4px;
}

.cyber-portal-center span {
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0px;
}

@keyframes portalPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.3), inset 0 0 20px rgba(0, 200, 83, 0.3);
  }

  100% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 200, 83, 0.6), inset 0 0 40px rgba(0, 200, 83, 0.6);
  }
}

.cyber-floating-img {
  position: absolute;
  max-width: 150px;
  filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.5));
  animation: floatAnim 6s ease-in-out infinite;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  z-index: 20;
}

.img-laptop {
  top: 10%;
  left: -15%;
  max-width: 160px;
  animation-delay: 0s;
}

.img-phone {
  bottom: 5%;
  left: 10%;
  max-width: 90px;
  animation-delay: -2s;
}

.img-console {
  top: 45%;
  right: -20%;
  max-width: 140px;
  animation-delay: -4s;
}

.img-desktop {
  top: -10%;
  left: 35%;
  max-width: 160px;
  animation-delay: -1s;
}

.img-tablet {
  bottom: 5%;
  right: -5%;
  max-width: 110px;
  animation-delay: -3s;
}

.img-macbook {
  bottom: 25%;
  left: -15%;
  max-width: 130px;
  animation-delay: -1.5s;
}

.cyber-portal-stat {
  position: absolute;
  background: #12141c;
  border: 1px solid rgba(0, 200, 83, 0.8);
  border-radius: 20px;
  padding: 0.8rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(0, 200, 83, 0.1);
  animation: floatAnim 6s ease-in-out infinite;
  z-index: 5;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.stat-1 {
  top: 10%;
  right: -10%;
  animation-delay: -1s;
}

.stat-2 {
  bottom: -15%;
  left: 40%;
  animation-delay: -3s;
}

.stat-3 {
  top: 50%;
  left: -20%;
  animation-delay: -5s;
}

.cyber-portal-stat .stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #69f0ae, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.cyber-portal-stat .stat-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #a3a3c2;
  margin-top: 0.5rem;
  text-transform: none;
  letter-spacing: 0px;
}

@keyframes floatAnim {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  33% {
    transform: translate(8px, -15px) rotate(2deg);
  }

  66% {
    transform: translate(-8px, -8px) rotate(-1deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

/* Infinite Marquee */
.cyber-marquee-wrapper {
  overflow: hidden;
  background: rgba(10, 10, 20, 0.8);
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  white-space: nowrap;
  position: relative;
}

.cyber-marquee-wrapper::before,
.cyber-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
}

.cyber-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(15, 15, 26, 1), transparent);
}

.cyber-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(15, 15, 26, 1), transparent);
}

.cyber-marquee {
  display: flex;
  margin-bottom: 1.5rem;
}

.cyber-marquee-reverse {
  display: flex;
}

.cyber-marquee .cyber-marquee-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
}

.cyber-marquee-reverse .cyber-marquee-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  animation: scrollMarqueeReverse 45s linear infinite;
}

.cyber-marquee-content span {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  margin: 0 1rem;
  transition: color 0.3s, text-shadow 0.3s;
}

.cyber-marquee-content span:hover {
  color: var(--accent-green);
  text-shadow: 0 0 10px var(--accent-green);
}

.cyber-marquee-content .dot {
  color: var(--accent-purple);
  font-size: 1rem;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollMarqueeReverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Light Mode Compatibilities */
[data-theme="light"] .cyber-hero-bg {
  background: radial-gradient(circle at center, rgba(240, 242, 245, 0.8) 0%, rgba(220, 225, 235, 1) 100%);
}

[data-theme="light"] .cyber-badge-top {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: var(--accent-purple);
}

[data-theme="light"] .cyber-btn-solid {
  color: #fff;
}

[data-theme="light"] .cyber-query-btn {
  color: #fff;
}

[data-theme="light"] .cyber-portal-stat {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 200, 83, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cyber-portal-stat .stat-text {
  color: #555;
}

[data-theme="light"] .cyber-glow {
  opacity: 0.1;
}

[data-theme="light"] .cyber-floating-img {
  mix-blend-mode: multiply;
}

[data-theme="light"] .cyber-grid {
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.1) 1px, transparent 1px);
}

[data-theme="light"] .cyber-title {
  color: #1a1a2e;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cyber-query-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cyber-query-input {
  color: #1a1a2e;
}

[data-theme="light"] .cyber-query-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .cyber-stat-item .stat-number {
  color: #1a1a2e;
}

[data-theme="light"] .cyber-marquee-wrapper {
  background: rgba(240, 242, 245, 0.8);
}

[data-theme="light"] .cyber-marquee-wrapper::before {
  background: linear-gradient(to right, rgba(240, 242, 245, 1), transparent);
}
[data-theme="light"] .cyber-marquee-wrapper::after {
  background: linear-gradient(to left, rgba(240, 242, 245, 1), transparent);
}

[data-theme="light"] .cyber-marquee-content span {
  color: rgba(0,0,0,0.2);
}

/* Card Enhancements (Neon/Glassmorphism Borders) */
[data-theme="dark"] .category-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .step-card {
  position: relative;
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

[data-theme="dark"] .category-card::before,
[data-theme="dark"] .why-card::before,
[data-theme="dark"] .step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.5), rgba(124, 58, 237, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

[data-theme="dark"] .category-card:hover::before,
[data-theme="dark"] .why-card:hover::before,
[data-theme="dark"] .step-card:hover::before {
  opacity: 1;
}

/* Mobil Uyumlu */


