:root {
  --bg-color: #030305;
  --bg-secondary: #06060a;
  --bg-elevated: #0a0a12;
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --accent-cyan: #00f0ff;
  --accent-purple: #7c3aed;
  --accent-pink: #ff2d7b;
  --accent-green: #00ff88;
  --accent-orange: #ff8c00;
  --accent-yellow: #ffd700;
  --gradient-brand: linear-gradient(135deg,
      var(--accent-cyan) 0%,
      var(--accent-purple) 100%);
  --gradient-glow: linear-gradient(45deg,
      var(--accent-cyan),
      var(--accent-purple),
      var(--accent-pink),
      var(--accent-cyan));
  --gradient-warm: linear-gradient(135deg,
      var(--accent-pink) 0%,
      var(--accent-orange) 100%);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.06);
  --font-heading: "Inter", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-left: 1px solid var(--glass-border);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: var(--accent-cyan) var(--bg-secondary);
  scrollbar-width: thin;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

body.loading {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -2px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-highlight {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.loader-spinner {
  position: relative;
  width: 120px;
  height: 3px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: -10px;
}

.spinner-ring {
  display: none;
}

.loader-spinner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: var(--gradient-brand);
  border-radius: 10px;
  box-shadow: 0 0 15px var(--accent-cyan);
  animation: loader-slide 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes loader-slide {
  0% {
    transform: translateX(-50%);
    width: 30%;
  }

  100% {
    transform: translateX(250%);
    width: 50%;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-brand);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.cursor-glow {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(0, 240, 255, 0.08) 0%,
      rgba(124, 58, 237, 0.03) 35%,
      transparent 65%);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo);
  mix-blend-mode: screen;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.15s var(--ease-out-expo), width 0.3s, height 0.3s,
    background 0.3s;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

.cursor-dot.active {
  width: 40px;
  height: 40px;
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.ambient-lights {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.ambient-lights .light {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: wander 25s infinite alternate ease-in-out;
}

.light-1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12), transparent 60%);
  top: -15%;
  left: -15%;
}

.light-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle,
      rgba(124, 58, 237, 0.12),
      transparent 60%);
  bottom: -15%;
  right: -15%;
  animation-delay: -7s;
  animation-direction: alternate-reverse;
}

.light-3 {
  width: 65vw;
  height: 65vw;
  background: radial-gradient(circle,
      rgba(255, 45, 123, 0.08),
      transparent 60%);
  top: 35%;
  left: 25%;
  animation-delay: -12s;
}

.light-4 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.06), transparent 60%);
  top: 60%;
  right: 10%;
  animation-delay: -18s;
  animation-direction: alternate-reverse;
}

.light-5 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04), transparent 60%);
  bottom: 10%;
  left: -10%;
  animation-delay: -22s;
}

@keyframes wander {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(15vw, 10vh) scale(1.15);
  }

  50% {
    transform: translate(-10vw, 25vh) scale(0.9);
  }

  75% {
    transform: translate(20vw, -15vh) scale(1.1);
  }

  100% {
    transform: translate(5vw, -20vh) scale(1.05);
  }
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 240, 255, 0.015) 1px,
      transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60%at 50% 50%,
      black 20%,
      transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60%at 50% 50%,
      black 20%,
      transparent 70%);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url(data:image/svg+xml,%3Csvg\ viewBox=\'0\ 0\ 256\ 256\'\ xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cfilter\ id=\'noiseFilter\'%3E%3CfeTurbulence\ type=\'fractalNoise\'\ baseFrequency=\'0.85\'\ numOctaves=\'4\'\ stitchTiles=\'stitch\'/%3E%3C/filter%3E%3Crect\ width=\'100%25\'\ height=\'100%25\'\ filter=\'url\(%23noiseFilter\)\'/%3E%3C/svg%3E);
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

.aurora {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: -4;
  pointer-events: none;
  background: conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      rgba(0, 240, 255, 0.03) 60deg,
      transparent 120deg,
      rgba(124, 58, 237, 0.03) 180deg,
      transparent 240deg,
      rgba(255, 45, 123, 0.02) 300deg,
      transparent 360deg);
  animation: auroraRotate 30s linear infinite;
  filter: blur(80px);
}

@keyframes auroraRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.section-divider {
  width: 100%;
  height: 1px;
  position: relative;
  overflow: visible;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(0, 240, 255, 0.3),
      rgba(124, 58, 237, 0.6),
      rgba(255, 45, 123, 0.6),
      rgba(0, 240, 255, 0.3));
  background-size: 300% 100%;
  -webkit-mask-image: linear-gradient(90deg,
      transparent,
      black 15%,
      black 85%,
      transparent);
  mask-image: linear-gradient(90deg,
      transparent,
      black 15%,
      black 85%,
      transparent);
}

@keyframes flowGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  box-shadow: 0 0 15px var(--accent-cyan), 0 0 40px rgba(0, 240, 255, 0.3);
  animation: floatOrb1 8s ease-in-out infinite;
}

.orb-2 {
  width: 4px;
  height: 4px;
  background: var(--accent-purple);
  box-shadow: 0 0 12px var(--accent-purple), 0 0 30px rgba(124, 58, 237, 0.3);
  animation: floatOrb2 10s ease-in-out infinite;
}

.orb-3 {
  width: 5px;
  height: 5px;
  background: var(--accent-pink);
  box-shadow: 0 0 12px var(--accent-pink), 0 0 30px rgba(255, 45, 123, 0.3);
  animation: floatOrb3 12s ease-in-out infinite;
}

@keyframes floatOrb1 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }

  25% {
    transform: translate(100px, -60px);
    opacity: 1;
  }

  50% {
    transform: translate(-50px, -120px);
    opacity: 0.5;
  }

  75% {
    transform: translate(80px, -30px);
    opacity: 0.9;
  }
}

@keyframes floatOrb2 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }

  33% {
    transform: translate(-80px, -90px);
    opacity: 1;
  }

  66% {
    transform: translate(60px, -40px);
    opacity: 0.4;
  }
}

@keyframes floatOrb3 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: translate(-120px, -80px);
    opacity: 1;
  }
}

.hero-spotlight {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center,
      rgba(0, 240, 255, 0.08) 0%,
      rgba(124, 58, 237, 0.04) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: spotlightPulse 6s ease-in-out infinite alternate;
}

@keyframes spotlightPulse {
  0% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

.cursor-trail-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-cyan);
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.1s ease;
  box-shadow: 0 0 6px var(--accent-cyan);
}

.badge,
.section-tag {
  position: relative;
  overflow: hidden;
}

.badge::after,
.section-tag::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  transform: skewX(-25deg);
  animation: shineSweep 4s ease-in-out infinite;
}

@keyframes shineSweep {

  0%,
  100% {
    left: -75%;
  }

  50% {
    left: 125%;
  }
}

.section-header h2 {
  background-size: 200% 200% !important;
  animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.tech-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.03),
      transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}

.tech-item {
  position: relative;
  overflow: hidden;
}

.tech-item:hover::after {
  left: 150%;
}

.nav-link:hover {
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.logo:hover .logo-highlight {
  animation: glitchText 0.3s ease forwards;
}

@keyframes glitchText {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 1px);
    text-shadow: 2px 0#ff2d7b, -2px 0#00f0ff;
  }

  40% {
    transform: translate(2px, -1px);
    text-shadow: -2px 0#ff2d7b, 2px 0#00f0ff;
  }

  60% {
    transform: translate(-1px, 2px);
    text-shadow: 1px 0#7c3aed, -1px 0#00f0ff;
  }

  80% {
    transform: translate(1px, -2px);
    text-shadow: -1px 0#7c3aed, 1px 0#ff2d7b;
  }

  100% {
    transform: translate(0);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
  }
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--accent-cyan),
      var(--accent-purple),
      transparent);
}

footer::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 15%;
  right: 15%;
  height: 20px;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 240, 255, 0.08),
      rgba(124, 58, 237, 0.08),
      transparent);
  filter: blur(8px);
  pointer-events: none;
}

@keyframes statGlow {
  0% {
    filter: drop-shadow(0 0 0px transparent);
  }

  100% {
    filter: drop-shadow(0 0 8px currentColor);
  }
}

.faq-item.faq-open {
  border-left: 2px solid var(--accent-cyan) !important;
  box-shadow: -5px 0 15px rgba(0, 240, 255, 0.1);
}

.submit-btn {
  background-size: 200% 200% !important;
  animation: gradientShift 3s ease-in-out infinite;
}

.contact-form input:focus,
.contact-form textarea:focus {
  animation: inputFocusPulse 2s ease-in-out infinite;
}

@keyframes inputFocusPulse {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
  }

  50% {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.25),
      0 0 5px rgba(124, 58, 237, 0.1);
  }
}

.scroll-progress {
  background: linear-gradient(90deg,
      var(--accent-cyan),
      var(--accent-purple),
      var(--accent-pink),
      var(--accent-cyan)) !important;
  background-size: 300% 100% !important;
  animation: scrollProgressGradient 4s linear infinite;
}

@keyframes scrollProgressGradient {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 300% 0%;
  }
}

.back-to-top.visible {
  animation: backToTopFloat 3s ease-in-out infinite;
}

@keyframes backToTopFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.cyber-attack-map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 700px;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-image: url(../images/world_map.svg);
  background-size: 100%auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  filter: invert(1) drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 60%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at center,
      black 60%,
      transparent 95%);
}

#cyber-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@media (max-width: 992px) {
  .cyber-attack-map {
    background-size: cover;
    mask-image: radial-gradient(ellipse at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center,
        black 60%,
        transparent 100%);
  }
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3));
}

.text-gradient-alt {
  background: linear-gradient(135deg,
      var(--accent-purple) 0%,
      var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.4));
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(0, 240, 255, 0.08);
  color: var(--accent-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 240, 255, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(0, 240, 255, 0.06);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-cyan);
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn svg {
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6), 0 0 45px rgba(124, 58, 237, 0.4),
    0 15px 40px rgba(0, 0, 0, 0.5);
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: var(--gradient-glow);
  background-size: 400%;
  z-index: -1;
  border-radius: 60px;
  filter: blur(12px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-glow:hover::before {
  opacity: 1;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400%0;
  }

  100% {
    background-position: 0 0;
  }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-ripple {
  overflow: hidden;
}

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn-nav-contact {
  background: rgba(0, 240, 255, 0.1) !important;
  padding: 8px 24px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(0, 240, 255, 0.2) !important;
  color: var(--accent-cyan) !important;
}

.btn-nav-contact:hover {
  background: rgba(0, 240, 255, 0.2) !important;
  border-color: var(--accent-cyan) !important;
}

.pulse-anim {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.3);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 240, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

.float-anim {
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s var(--ease-out-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay {
  animation: fadeSlideIn 1s 0.4s forwards;
  opacity: 0;
}

.fade-delay-2 {
  animation: fadeSlideIn 1s 0.7s forwards;
  opacity: 0;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideInCenter {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.bg-alternate {
  background-color: var(--bg-secondary) !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.5s var(--ease-out-expo);
  padding: 20px 0;
}

header.scrolled {
  background: rgba(3, 3, 5, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.logo-highlight {
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.nav-menu>ul {
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

.custom-lang-switcher {
  position: relative;
  margin-left: 10px;
  border-left: 1px solid var(--glass-border);
  padding-left: 15px;
  cursor: pointer;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  padding: 5px;
}

.custom-lang-switcher:hover .lang-current {
  color: var(--text-primary);
}

.lang-current svg {
  transition: transform 0.3s ease;
}

.custom-lang-switcher:hover .lang-current svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 15px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  list-style: none;
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 240, 255, 0.1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.custom-lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
  color: var(--text-primary);
  background: rgba(0, 240, 255, 0.1);
  padding-left: 25px;
  padding-right: 15px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
  transform-origin: right;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 0.4s var(--ease-out-expo);
  border-radius: 2px;
}

.mobile-menu-btn span:nth-child(1) {
  margin-bottom: 5px;
}

.mobile-menu-btn span:nth-child(2) {
  margin-bottom: 5px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(3, 3, 5, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overlay-link {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
  transform: translateY(30px);
  opacity: 0;
}

.mobile-overlay.active .overlay-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-overlay.active .overlay-link:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-overlay.active .overlay-link:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-overlay.active .overlay-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-overlay.active .overlay-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-overlay.active .overlay-link:nth-child(5) {
  transition-delay: 0.3s;
}

.overlay-link:hover {
  color: #fff;
  background: rgba(0, 240, 255, 0.05);
}

.overlay-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out-expo) 0.35s;
}

.mobile-overlay.active .overlay-footer {
  opacity: 1;
  transform: translateY(0);
}

.overlay-footer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.section-padding {
  padding: 120px 0;
}

.bg-alternate,
.services {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.network-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 18px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
}

.hero-content {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.hero-text {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 30px;
  letter-spacing: -3px;
  line-height: 1.1;
  font-weight: 800;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  max-width: 650px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeSlideInCenter 1s 1.2s forwards;
  opacity: 0;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 10px;
  background: var(--accent-cyan);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(10px);
    opacity: 0.2;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.glass {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
      rgba(255, 255, 255, 0.04),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}

.glass:hover .card-glow {
  opacity: 1;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.15),
      transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 240, 255, 0.2),
    inset 0 0 15px rgba(124, 58, 237, 0.1);
}

.partners-section {
  padding: 60px 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(6, 6, 10, 0.5) 50%,
      rgba(0, 0, 0, 0) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 5px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 10%,
      black 90%,
      transparent);
  mask-image: linear-gradient(to right,
      transparent,
      black 10%,
      black 90%,
      transparent);
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollMarquee 50s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partner-logo span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  transition: color 0.4s ease;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.partner-logo:hover span {
  color: var(--accent-cyan);
}

.partner-logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.partner-logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
  transform: scale(1.1);
}

.partner-logo span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  z-index: 10;
  padding: 40px 35px;
}

.service-card-inner {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(0, 240, 255, 0.15),
      rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  position: relative;
  z-index: 2;
}

.icon-box svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 30px;
  text-align: left;
  transition: all 0.5s var(--ease-out-expo);
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg,
      rgba(0, 240, 255, 0.1),
      rgba(0, 240, 255, 0.02));
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.15);
  transform: scale(1.05);
}

.feature-icon.icon-purple {
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.1),
      rgba(124, 58, 237, 0.02));
  border-color: rgba(124, 58, 237, 0.15);
  color: var(--accent-purple);
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.08);
}

.feature-card:hover .icon-purple {
  box-shadow: 0 0 35px rgba(124, 58, 237, 0.15);
}

.feature-icon.icon-pink {
  background: linear-gradient(135deg,
      rgba(255, 45, 123, 0.1),
      rgba(255, 45, 123, 0.02));
  border-color: rgba(255, 45, 123, 0.15);
  color: var(--accent-pink);
  box-shadow: 0 0 25px rgba(255, 45, 123, 0.08);
}

.feature-card:hover .icon-pink {
  box-shadow: 0 0 35px rgba(255, 45, 123, 0.15);
}

.feature-icon.icon-green {
  background: linear-gradient(135deg,
      rgba(0, 255, 136, 0.1),
      rgba(0, 255, 136, 0.02));
  border-color: rgba(0, 255, 136, 0.15);
  color: var(--accent-green);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.08);
}

.feature-card:hover .icon-green {
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.15);
}

.feature-icon.icon-orange {
  background: linear-gradient(135deg,
      rgba(255, 140, 0, 0.1),
      rgba(255, 140, 0, 0.02));
  border-color: rgba(255, 140, 0, 0.15);
  color: var(--accent-orange);
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.08);
}

.feature-card:hover .icon-orange {
  box-shadow: 0 0 35px rgba(255, 140, 0, 0.15);
}

.feature-icon.icon-yellow {
  background: linear-gradient(135deg,
      rgba(255, 215, 0, 0.1),
      rgba(255, 215, 0, 0.02));
  border-color: rgba(255, 215, 0, 0.15);
  color: var(--accent-yellow);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.08);
}

.feature-card:hover .icon-yellow {
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.15);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  min-width: 160px;
  gap: 16px;
  transition: all 0.4s var(--ease-out-expo);
}

.tech-item:hover {
  transform: translateY(-8px);
}

.tech-item img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
  transition: all 0.4s var(--ease-out-expo);
}

.tech-item:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px var(--accent-cyan));
}

.tech-item span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.tech-item:hover span {
  color: #fff;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: none;
  background: #0a0a0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), inset 0 0 80px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.map-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 100px #0a0a0f;
  pointer-events: none;
  z-index: 999;
}

.leaflet-control-attribution {
  display: none !important;
}

.dark-tooltip {
  background: rgba(10, 10, 15, 0.9) !important;
  border: 1px solid var(--accent-cyan) !important;
  color: #fff !important;
  font-family: var(--font-body);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3) !important;
  border-radius: 8px !important;
}

.leaflet-tooltip-top:before {
  border-top-color: var(--accent-cyan) !important;
}

.custom-node-icon {
  background: transparent;
  border: none;
}

@keyframes pulseNode {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md) !important;
}

.faq-item::before {
  border-radius: var(--radius-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
  gap: 20px;
}

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon span {
  position: absolute;
  background: var(--accent-cyan);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
}

.faq-icon span:first-child {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon span:last-child {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.faq-open .faq-icon span:last-child {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq-item.faq-open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 30px 24px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.parallax-bg {
  background: linear-gradient(rgba(5, 5, 8, 0.85), rgba(5, 5, 8, 0.9));
  text-align: center;
  padding: 80px 40px;
  border-color: rgba(0, 240, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%,
      rgba(0, 240, 255, 0.05) 1px,
      transparent 1px),
    radial-gradient(circle at 80% 20%,
      rgba(124, 58, 237, 0.05) 1px,
      transparent 1px),
    radial-gradient(circle at 60% 80%,
      rgba(255, 45, 123, 0.05) 1px,
      transparent 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
  animation: particleDrift 15s linear infinite;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100px);
  }
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.15rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.contact-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.contact-form {
  position: relative;
  z-index: 2;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-display {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select-wrapper.open .custom-select-display,
.custom-select-display:hover {
  border-color: rgba(0, 240, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.custom-select-display .select-icon svg {
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.custom-select-wrapper.open .custom-select-display .select-icon svg {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 240, 255, 0.15);
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
}

.custom-select-wrapper.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-options li {
  padding: 12px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-select-options li:hover {
  color: var(--text-primary);
  background: rgba(0, 240, 255, 0.1);
  padding-left: 24px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 1.05rem;
  justify-content: center;
}

.form-status {
  margin-bottom: 20px;
  padding: 0;
  border-radius: var(--radius-md);
  font-size: 1rem;
  display: none;
  text-align: left;
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-status.success {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent-green);
  border-left: 4px solid var(--accent-green);
}

.form-status.error {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 45, 123, 0.1);
  color: var(--accent-pink);
  border-left: 4px solid var(--accent-pink);
  font-weight: 500;
}

.form-status svg {
  flex-shrink: 0;
  margin-right: 12px;
}

.btn-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner-ring {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinner-anim 0.8s linear infinite;
}

@keyframes spinner-anim {
  to {
    transform: rotate(360deg);
  }
}

footer {
  background: var(--bg-secondary);
  padding: 80px 0 30px;
  border-top: 1px solid var(--glass-border);
  position: relative;
  z-index: 10;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-menus {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 18px;
  max-width: 280px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2);
}

.service-details {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.service-details li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}

.service-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--accent-cyan);
  font-size: 1.5rem;
  line-height: 1;
}

.service-details strong {
  color: #fff;
  font-weight: 600;
  margin-right: 6px;
  display: block;
  margin-bottom: 4px;
}

.service-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-menus {
    justify-content: flex-start;
    gap: 40px;
  }
}

@media (max-width: 992px) {

  .cursor-glow,
  .cursor-dot {
    display: none !important;
  }

  .hero h1 {
    font-size: 3.2rem;
    letter-spacing: -2px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-grid {
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-box h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 40px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .section-padding {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: -1.5px;
  }

  .hero-description {
    font-size: 1.05rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    gap: 12px;
  }

  .tech-item {
    padding: 20px 10px;
  }

  .tech-item img {
    height: 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-menus {
    flex-direction: column;
    gap: 30px;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .cta-box {
    padding: 50px 24px;
  }

  .overlay-link {
    font-size: 2rem;
  }

  .faq-question {
    padding: 20px 24px;
    font-size: 0.95rem;
  }

  .faq-answer-inner {
    padding: 0 24px 20px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .map-container {
    height: 350px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    letter-spacing: 1px;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .glass {
    padding: 24px;
    border-radius: var(--radius-md);
  }

  .glass::before {
    border-radius: var(--radius-md);
  }

  .tech-grid {
    gap: 10px;
  }

  .tech-item span {
    font-size: 0.8rem;
  }

  .partner-logo span {
    display: none;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .map-container {
    height: 280px !important;
  }
}

.mouse-lantern {
  position: fixed;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
      rgba(0, 240, 255, 0.04) 0%,
      rgba(124, 58, 237, 0.025) 25%,
      rgba(255, 45, 123, 0.01) 45%,
      transparent 65%);
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.section-divider {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.section-divider.active {
  opacity: 1;
}

.section-divider.active::before {
  animation: dividerSweep 1.2s ease-out forwards,
    flowGradient 6s linear infinite;
}

@keyframes dividerSweep {
  0% {
    left: 50%;
    right: 50%;
    opacity: 0;
  }

  100% {
    left: 10%;
    right: 10%;
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .mouse-lantern {
    display: none !important;
  }

  .floating-orb {
    display: none;
  }

  .hero-spotlight {
    width: 100%;
    height: 400px;
  }

  .grid-overlay {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-progress {
    transition: none;
  }

  .mouse-lantern,
  .aurora,
  .floating-orb {
    display: none !important;
  }
}

.leaflet-container {
  background: #0a0a0f !important;
}

.leaflet-tile-container img {
  transform: scale(1.01);
}

.h-captcha {
  display: flex;
  justify-content: center;
  width: 100%;
}