@import "services.css";

:root {
  --neon-cyan: #00ccff;
  --dark-space: #020e1f;
  --violet-nebula: #652c90;
  --magenta-star: #b23cdb;
  --light-white: #e6f9ff;
  --glow-cyan: 0 0 20px rgba(0, 204, 255, 0.8);
  --glow-intense: 0 0 40px rgba(0, 204, 255, 1);
  --gradient-main: linear-gradient(
    135deg,
    var(--dark-space) 0%,
    var(--violet-nebula) 100%
  );
  --gradient-reverse: linear-gradient(
    135deg,
    var(--violet-nebula) 0%,
    var(--dark-space) 100%
  );
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  background: var(--dark-space);
  color: var(--light-white);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  opacity: 0;
}

.cursor-follower {
  width: 40px;
  height: 40px;
  background: rgba(0, 204, 255, 0.1);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0;
}

@media (min-width: 1024px) {
  .cursor,
  .cursor-follower {
    opacity: 1;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(2, 14, 31, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 204, 255, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(2, 14, 31, 0.98);
  box-shadow: 0 10px 40px rgba(0, 204, 255, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.nav-logo {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-decoration: none;
  text-shadow: var(--glow-cyan);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo:hover {
  text-shadow: var(--glow-intense);
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--light-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover {
  color: var(--neon-cyan);
}

.nav-cta {
  background: linear-gradient(135deg, var(--neon-cyan), var(--violet-nebula));
  color: var(--dark-space);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--glow-cyan);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.nav-cta:hover::before {
  width: 300px;
  height: 300px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-intense);
  color: var(--light-white);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: 0;
  border: 0;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--neon-cyan);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--neon-cyan);
}

@media (max-width: 1200px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(2, 14, 31, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 204, 255, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(2, 14, 31, 0.8) 100%
  );
}

.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid rgba(0, 204, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #00ff00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.title-line {
  display: block;
}

.title-gradient {
  background: linear-gradient(135deg, #00ccff, #b23cdb, #00ccff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.typewriter {
  display: inline-block;
  min-width: 300px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(0, 204, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #00ccff;
  display: block;
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ccff, #b23cdb, #00ccff);
  border-radius: 50px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
  filter: blur(5px);
}

.btn-glow:hover::before {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-trust {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 204, 255, 0.2);
}

.trust-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.trust-logos img {
  height: 40px;
  width: auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,204,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  transform: rotate(-15deg);
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  from {
    transform: translateX(0) rotate(-15deg);
  }

  to {
    transform: translateX(100px) rotate(-15deg);
  }
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--light-white);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--violet-nebula));
  color: var(--dark-space);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--glow-cyan);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.btn-primary:hover::after {
  animation: shine 0.5s ease;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-intense);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--neon-cyan);
  color: var(--dark-space);
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-3d-element {
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital-system {
  width: 400px;
  height: 400px;
  position: relative;
  animation: rotate-slow 30s linear infinite;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.orbit {
  position: absolute;
  border: 2px solid rgba(0, 204, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 300px;
  height: 300px;
  animation: rotate-reverse 20s linear infinite;
}

.orbit-2 {
  width: 250px;
  height: 250px;
  animation: rotate-slow 25s linear infinite;
}

.orbit-3 {
  width: 350px;
  height: 350px;
  animation: rotate-reverse 35s linear infinite;
}

@keyframes rotate-reverse {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.orbit-element {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: var(--glow-cyan);
}

.orbit-1 .orbit-element {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-2 .orbit-element {
  bottom: -10px;
  right: 20%;
}

.orbit-3 .orbit-element {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

.central-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--violet-nebula));
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark-space);
  box-shadow: 0 0 50px rgba(0, 204, 255, 0.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes spin-slow {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.central-logo .logo-rotor {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark-space);
  opacity: 0.85;
  animation: spin-slow 12s linear infinite;
}

.central-logo .logo-fixed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Orbitron", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #eafbff;
  text-shadow: 0 0 18px rgba(0, 204, 255, 0.6);
  pointer-events: none;
}

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

  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

.services {
  padding: 6rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-cyan),
    transparent
  );
}

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

.section-badge {
  display: inline-block;
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--magenta-star));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(2, 14, 31, 0.8);
  border: 2px solid rgba(0, 204, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 204, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 40px rgba(0, 204, 255, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--violet-nebula));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neon-cyan);
}

.service-description {
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.8;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-features li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-features li {
  opacity: 1;
}

.service-card:hover .service-features li::before {
  transform: translateX(5px);
}

.expertise {
  padding: 6rem 2rem;
  background: var(--gradient-reverse);
  position: relative;
  overflow: hidden;
}

.expertise-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expertise-content {
  position: relative;
  z-index: 2;
}

.expertise-list {
  list-style: none;
  margin-top: 2rem;
}

.expertise-item {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(0, 204, 255, 0.05);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expertise-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 204, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.expertise-item:hover::before {
  left: 100%;
}

.expertise-item:hover {
  transform: translateX(10px);
  background: rgba(0, 204, 255, 0.1);
  box-shadow: 0 5px 20px rgba(0, 204, 255, 0.2);
}

.expertise-item h3 {
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(2, 14, 31, 0.8);
  border: 2px solid rgba(0, 204, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.stat-number {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-cyan), var(--magenta-star));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.8;
}

.process {
  padding: 6rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--neon-cyan),
    var(--violet-nebula)
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  padding: 2rem;
  background: rgba(2, 14, 31, 0.8);
  border: 2px solid rgba(0, 204, 255, 0.2);
  border-radius: 20px;
  margin: 0 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--dark-space);
  border: 3px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
  z-index: 2;
}

.timeline-title {
  font-size: 1.5rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta {
  padding: 6rem 2rem;
  background: var(--gradient-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 204, 255, 0.1) 0%,
    transparent 50%
  );
  animation: pulse-slow 4s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--neon-cyan), var(--magenta-star));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  padding: 4rem 2rem 2rem;
  background: rgba(2, 14, 31, 0.9);
  border-top: 1px solid rgba(0, 204, 255, 0.2);
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  color: var(--neon-cyan);
  margin-bottom: 1rem;
  text-shadow: var(--glow-cyan);
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-section h4 {
  color: var(--neon-cyan);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

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

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

.footer-links a {
  color: var(--light-white);
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  opacity: 1;
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--neon-cyan);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--neon-cyan);
  color: var(--dark-space);
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 204, 255, 0.1);
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .hero-container,
  .expertise-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .expertise-stats {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #ff6a3d, #ff4b4b);
  color: white;
  padding: 8px 12px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.with-banner .navbar {
  margin-top: 40px;
}

.hero-badges {
  padding-top: 50px;
  position: relative;
}

.with-banner .hero-badges {
  padding-top: 70px;
}

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

  .hero-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 975px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 765px) {
  .with-banner .navbar {
    margin-top: 91px;
  }

  .hero-badges {
    padding-top: 126px;
    width: 100%;
  }

  .with-banner .hero-badges {
    padding-top: 150px;
  }
}

@media (max-width: 638px) {
  .with-banner .navbar {
    margin-top: 158px;
  }

  .hero-badges {
    padding-top: 50px;
  }

  .with-banner .hero-badges {
    padding-top: 200px;
  }
}

.urgency-banner.show {
  transform: translateY(0);
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.urgency-icon {
  animation: pulse 1s infinite;
}

.urgency-timer {
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: "Orbitron", monospace;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.exit-popup-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.exit-popup {
  background: linear-gradient(135deg, #020e1f 0%, #1a1a2e 100%);
  border: 2px solid #00ccff;
  border-radius: 30px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  box-shadow: 0 0 100px rgba(0, 204, 255, 0.5);
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.exit-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: 0;
  border: 0;
  color: #00ccff;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.3s;
}

.exit-popup-close:hover {
  transform: rotate(90deg);
}

.exit-popup-content {
  /* display: grid; */
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
}

.exit-title {
  font-size: 2.5rem;
  color: #00ccff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.exit-icon {
  display: inline-block;
  animation: bounce 2s infinite;
}

.exit-offer {
  background: rgba(0, 204, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.offer-item {
  padding: 0.5rem 0;
  color: #e6f9ff;
}

.exit-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.exit-form input {
  flex: 1;
  padding: 1rem;
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid rgba(0, 204, 255, 0.3);
  border-radius: 50px;
  color: white;
  font-size: 1rem;
}

.exit-cta {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00ccff, #b23cdb);
  border: 0;
  border-radius: 50px;
  color: #020e1f;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.exit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.5);
}

.exit-testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.exit-testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .exit-popup-content {
    grid-template-columns: 1fr;
  }

  .exit-popup-right {
    display: none;
  }
}

/* === J3: Hero badges staggered fade-in === */

.hero-badge .badge-animate {
  opacity: 0;
  transform: translateY(-6px);
  animation: badgeFadeIn 0.6s ease-out forwards;
}

.hero-badge.badge-animate:nth-child(1) {
  animation-delay: 0ms;
}

.hero-badge.badge-animate:nth-child(2) {
  animation-delay: 120ms;
}

.hero-badge.badge-animate:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge.badge-animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* === J3: Social Proof (logos + testimonials) === */
.social-proof {
  padding: 2.5rem 1.5rem;
  background: rgba(2, 14, 31, 0.35);
  backdrop-filter: blur(6px);
}

.sp-separator {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-cyan),
    transparent
  );
  opacity: 0.5;
  margin: 0.5rem 0 1rem;
}

.sp-logos {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.sp-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: sp-marquee 28s linear infinite;
}

.sp-logo {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.sp-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.sp-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

@keyframes sp-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.sp-logos:hover .sp-track {
  animation-play-state: paused;
}

.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 1.5rem auto 0;
}

.sp-tt-card {
  background: rgba(0, 204, 255, 0.06);
  border: 1px solid rgba(0, 204, 255, 0.18);
  border-radius: 14px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "avatar header"
    "quote quote";
  column-gap: 1rem;
}

.sp-tt-avatar {
  grid-area: avatar;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 204, 255, 0.35);
}

.sp-tt-header {
  grid-area: header;
  align-self: center;
}

.sp-tt-name {
  font-weight: 700;
  margin: 0 0 0.15rem;
}

.sp-tt-role {
  opacity: 0.8;
  margin: 0;
  font-size: 0.95rem;
}

.sp-tt-quote {
  grid-area: quote;
  margin: 0.75rem 0 0;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .sp-testimonials {
    grid-template-columns: 1fr;
  }

  .sp-logo img {
    height: 24px;
  }
}
