/* TSENTR KORPORATYVNYKH VPROVADZHEN FORT - Brutalist Dark Theme with Geometric Animations */
/* Color Palette: #0A192F (deep dark blue), #172A45 (elevated dark blue), #64FFDA (bright turquoise), #e8e8e8 (light gray) */

:root {
  /* Color Tokens */
  --nexo-primary: #0A192F;
  --nexo-secondary: #172A45;
  --nexo-accent: #64FFDA;
  --nexo-accent-light: #64FFDA;
  --nexo-text: #e8e8e8;
  --nexo-text-muted: #a0a0a0;
  --nexo-background: #0A192F;
  --nexo-surface: #0A192F;
  --nexo-surface-elevated: #172A45;
  --nexo-border: #1e3a5f;
  --nexo-border-light: #2a4d75;
  
  /* Typography Scale */
  --nexo-font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --nexo-font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --nexo-font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --nexo-font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --nexo-font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --nexo-font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --nexo-font-size-3xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --nexo-font-size-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --nexo-font-size-5xl: clamp(3rem, 2.4rem + 3vw, 5rem);
  
  /* Spacing Scale */
  --nexo-space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --nexo-space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
  --nexo-space-md: clamp(1rem, 0.8rem + 1vw, 2rem);
  --nexo-space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
  --nexo-space-xl: clamp(2rem, 1.6rem + 2vw, 4rem);
  --nexo-space-2xl: clamp(3rem, 2.4rem + 3vw, 6rem);
  --nexo-space-3xl: clamp(4rem, 3.2rem + 4vw, 8rem);
  
  /* Border Radius */
  --nexo-radius-sm: 0.375rem;
  --nexo-radius-md: 0.5rem;
  --nexo-radius-lg: 0.75rem;
  --nexo-radius-xl: 1rem;
  --nexo-radius-2xl: 1.5rem;
  
  /* Shadows */
  --nexo-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --nexo-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --nexo-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --nexo-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --nexo-transition-fast: 0.15s ease-out;
  --nexo-transition-normal: 0.3s ease-out;
  --nexo-transition-slow: 0.5s ease-out;
  
  /* Glassmorphism */
  --nexo-glass-bg: rgba(10, 25, 47, 0.8);
  --nexo-glass-border: rgba(100, 255, 218, 0.2);
  --nexo-glass-backdrop: blur(10px);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--nexo-font-size-base);
  line-height: 1.6;
  color: var(--nexo-text);
  background-color: var(--nexo-background);
  overflow-x: hidden;
}

/* Skip Link */
.nexo-skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--nexo-accent);
  color: var(--nexo-primary);
  padding: 8px;
  text-decoration: none;
  border-radius: var(--nexo-radius-sm);
  z-index: 1000;
  transition: var(--nexo-transition-fast);
}

.nexo-skip-link:focus {
  top: 6px;
}

/* Container */
.nexo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--nexo-space-md);
}

/* Header */
.nexo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nexo-glass-bg);
  backdrop-filter: var(--nexo-glass-backdrop);
  border-bottom: 1px solid var(--nexo-glass-border);
  transition: var(--nexo-transition-normal);
}

.nexo-nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--nexo-space-sm) var(--nexo-space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.nexo-logo {
  display: flex;
  align-items: center;
  gap: var(--nexo-space-sm);
  text-decoration: none;
  color: var(--nexo-text);
  font-weight: 700;
  font-size: var(--nexo-font-size-lg);
  transition: var(--nexo-transition-normal);
}

.nexo-logo:hover {
  color: var(--nexo-accent);
  transform: translateY(-2px);
}

.nexo-logo__icon {
  width: 32px;
  height: 32px;
  transition: var(--nexo-transition-normal);
  display: block;
}

.nexo-logo:hover .nexo-logo__icon {
  transform: scale(1.1);
  animation: logoGlow 2s ease-in-out infinite;
}

.nexo-logo:hover .nexo-logo__icon circle {
  animation: nodePulse 1.5s ease-in-out infinite;
}

.nexo-logo:hover .nexo-logo__icon line {
  animation: connectionPulse 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.6)) 
            drop-shadow(0 0 16px rgba(0, 170, 255, 0.4))
            drop-shadow(0 0 24px rgba(0, 255, 255, 0.2));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(0, 102, 255, 0.9)) 
            drop-shadow(0 0 24px rgba(0, 170, 255, 0.7))
            drop-shadow(0 0 36px rgba(0, 255, 255, 0.5));
  }
}

@keyframes nodePulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes connectionPulse {
  0%, 100% {
    opacity: 0.6;
    stroke-width: 1.5;
  }
  50% {
    opacity: 0.9;
    stroke-width: 2;
  }
}

.nexo-nav__menu {
  display: flex;
  list-style: none;
  gap: var(--nexo-space-lg);
}

.nexo-nav__link {
  color: var(--nexo-text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--nexo-transition-normal);
}

.nexo-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--nexo-accent);
  transition: var(--nexo-transition-normal);
}

.nexo-nav__link:hover::after,
.nexo-nav__link:focus::after {
  width: 100%;
}

.nexo-nav__link:hover,
.nexo-nav__link:focus {
  color: var(--nexo-accent);
}

.nexo-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--nexo-space-xs);
}

.nexo-nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--nexo-text);
  transition: var(--nexo-transition-normal);
}

/* Hero Section */
.nexo-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--nexo-background);
  border-bottom: 4px solid var(--nexo-accent);
}

.nexo-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--nexo-space-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
  padding-left: var(--nexo-space-xl);
}

.nexo-hero__title {
  font-size: var(--nexo-font-size-4xl);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: var(--nexo-space-md);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: slideInLeft 1s ease-out;
  display: flex;
  flex-direction: column;
}

.nexo-hero__title-main {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 1s ease-out;
}

.nexo-hero__accent {
  display: block;
  color: var(--nexo-accent);
  text-shadow: 4px 4px 0px var(--nexo-accent-light);
  animation: slideInLeft 1s ease-out 0.1s both, holographicShift 4s ease-in-out infinite;
  background: linear-gradient(45deg, var(--nexo-accent), var(--nexo-accent-light), var(--nexo-accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nexo-hero__subtitle {
  font-size: var(--nexo-font-size-lg);
  color: var(--nexo-text-muted);
  margin-bottom: var(--nexo-space-xl);
  font-weight: 500;
  animation: slideInLeft 1s ease-out 0.2s both;
}

.nexo-hero__actions {
  display: flex;
  gap: var(--nexo-space-md);
  animation: slideInLeft 1s ease-out 0.4s both;
}

.nexo-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-out 0.6s both;
  position: relative;
  height: 500px;
}

.nexo-hero__cards {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
}

.nexo-hero__card {
  position: absolute;
  background: linear-gradient(135deg, rgba(23, 42, 69, 0.8) 0%, rgba(10, 25, 47, 0.9) 100%);
  border: 1px solid rgba(100, 255, 218, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  overflow: hidden;
  transform-style: preserve-3d;
}

.nexo-hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(10, 25, 47, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.nexo-hero__card:hover::before {
  opacity: 1;
}

.nexo-hero__card--large {
  width: 380px;
  height: 240px;
  top: 0;
  right: 0;
  z-index: 3;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(100, 255, 218, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: slideInRight 1s ease-out 0.8s both;
}

.nexo-hero__card--medium {
  width: 280px;
  height: 200px;
  bottom: 60px;
  left: 0;
  z-index: 2;
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(100, 255, 218, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: slideInRight 1s ease-out 1s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--nexo-space-md);
}

.nexo-hero__card--small {
  width: 180px;
  height: 140px;
  top: 220px;
  left: 120px;
  z-index: 1;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(100, 255, 218, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: slideInRight 1s ease-out 1.2s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nexo-hero__card:hover {
  border-color: rgba(100, 255, 218, 0.4);
}

.nexo-hero__card:hover::before {
  opacity: 1;
}

.nexo-hero__card--large:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(-3deg) scale(1.02);
}

.nexo-hero__card--medium:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(4deg) scale(1.03);
}

.nexo-hero__card--small:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg) scale(1.05);
}

.nexo-hero__card-content {
  padding: var(--nexo-space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nexo-hero__card-graph {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nexo-hero__card-graph svg {
  width: 100%;
  height: 100%;
}

.nexo-hero__card-label {
  margin-top: var(--nexo-space-sm);
  font-size: var(--nexo-font-size-sm);
  color: var(--nexo-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nexo-hero__card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(100, 255, 218, 0.6));
}

.nexo-hero__card-icon svg {
  width: 100%;
  height: 100%;
  animation: iconPulse 3s ease-in-out infinite;
}

.nexo-hero__card-badge {
  padding: var(--nexo-space-xs) var(--nexo-space-md);
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 20px;
  font-size: var(--nexo-font-size-sm);
  color: var(--nexo-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nexo-hero__card-stats {
  text-align: center;
}

.nexo-hero__stat-value {
  font-size: var(--nexo-font-size-3xl);
  font-weight: 900;
  color: var(--nexo-accent);
  line-height: 1;
  margin-bottom: var(--nexo-space-xs);
  text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.nexo-hero__stat-label {
  font-size: var(--nexo-font-size-xs);
  color: var(--nexo-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.nexo-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.nexo-hero__mesh-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(10, 25, 47, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(23, 42, 69, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 50%);
  animation: meshGradientMove 20s ease-in-out infinite;
  filter: blur(60px);
}

@keyframes meshGradientMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(5%, -5%) scale(1.1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-5%, 5%) scale(0.9);
    opacity: 0.7;
  }
  75% {
    transform: translate(3%, 3%) scale(1.05);
    opacity: 0.75;
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(100, 255, 218, 0.6));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(100, 255, 218, 0.9));
  }
}

/* 3D Emblem Component */
.nexo-emblem-section {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-background);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.nexo-emblem-wrapper {
  perspective: 1200px;
  perspective-origin: center center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nexo-emblem-3d {
  position: relative;
  width: 300px;
  height: 300px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.nexo-emblem__layer {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  border-radius: 20px;
}

/* Base layer - deepest, creates foundation */
.nexo-emblem__layer--base {
  background: linear-gradient(135deg, 
    rgba(10, 25, 47, 0.95) 0%,
    rgba(23, 42, 69, 0.9) 50%,
    rgba(10, 25, 47, 0.95) 100%);
  transform: translateZ(-40px) scale(1.1);
  box-shadow: 
    0 0 0 2px rgba(100, 255, 218, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 40px 100px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.05),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  filter: blur(2px);
}

/* Middle layers - create depth */
.nexo-emblem__layer--mid-1 {
  background: linear-gradient(135deg,
    rgba(23, 42, 69, 0.9) 0%,
    rgba(10, 25, 47, 0.85) 50%,
    rgba(23, 42, 69, 0.9) 100%);
  transform: translateZ(-25px) scale(1.06);
  box-shadow: 
    0 0 0 1px rgba(100, 255, 218, 0.15),
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 30px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.08),
    inset 0 -1px 2px rgba(0, 0, 0, 0.25);
  filter: blur(1px);
}

.nexo-emblem__layer--mid-2 {
  background: linear-gradient(135deg,
    rgba(10, 25, 47, 0.85) 0%,
    rgba(23, 42, 69, 0.8) 50%,
    rgba(10, 25, 47, 0.85) 100%);
  transform: translateZ(-12px) scale(1.03);
  box-shadow: 
    0 0 0 1px rgba(100, 255, 218, 0.2),
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 20px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}

.nexo-emblem__layer--mid-3 {
  background: linear-gradient(135deg,
    rgba(23, 42, 69, 0.8) 0%,
    rgba(10, 25, 47, 0.75) 50%,
    rgba(23, 42, 69, 0.8) 100%);
  transform: translateZ(-5px) scale(1.01);
  box-shadow: 
    0 0 0 1px rgba(100, 255, 218, 0.25),
    0 5px 20px rgba(0, 0, 0, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -1px 1px rgba(0, 0, 0, 0.15);
}

/* Top layer - main content */
.nexo-emblem__layer--top {
  background: 
    radial-gradient(circle at 30% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(10, 25, 47, 0.3) 0%, transparent 50%),
    linear-gradient(135deg,
      rgba(23, 42, 69, 0.95) 0%,
      rgba(10, 25, 47, 0.9) 25%,
      rgba(23, 42, 69, 0.95) 50%,
      rgba(10, 25, 47, 0.9) 75%,
      rgba(23, 42, 69, 0.95) 100%);
  transform: translateZ(0px);
  box-shadow: 
    0 0 0 2px rgba(100, 255, 218, 0.3),
    0 8px 25px rgba(100, 255, 218, 0.2),
    0 15px 50px rgba(0, 0, 0, 0.4),
    0 25px 80px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(100, 255, 218, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(1px);
}

.nexo-emblem__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--nexo-space-md);
  z-index: 10;
}

.nexo-emblem__hexagon {
  width: 120px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
}

.nexo-emblem__hexagon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  background: linear-gradient(135deg,
    rgba(100, 255, 218, 0.3) 0%,
    rgba(100, 255, 218, 0.1) 50%,
    rgba(100, 255, 218, 0.3) 100%);
  box-shadow: 
    0 0 20px rgba(100, 255, 218, 0.4),
    inset 0 0 20px rgba(100, 255, 218, 0.1);
  transform: translateZ(5px);
}

.nexo-emblem__hexagon-inner {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(8px);
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  background: linear-gradient(135deg,
    rgba(10, 25, 47, 0.9) 0%,
    rgba(23, 42, 69, 0.8) 100%);
  box-shadow: 
    inset 0 0 15px rgba(0, 0, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.nexo-emblem__diamond {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(12px) rotate(45deg);
  background: linear-gradient(135deg,
    rgba(100, 255, 218, 0.8) 0%,
    rgba(100, 255, 218, 0.6) 50%,
    rgba(100, 255, 218, 0.8) 100%);
  box-shadow: 
    0 0 15px rgba(100, 255, 218, 0.6),
    0 0 30px rgba(100, 255, 218, 0.3),
    inset 0 0 10px rgba(100, 255, 218, 0.4);
}

.nexo-emblem__center {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(15px);
  background: rgba(100, 255, 218, 1);
  border-radius: 50%;
  box-shadow: 
    0 0 10px rgba(100, 255, 218, 0.8),
    0 0 20px rgba(100, 255, 218, 0.5),
    0 0 30px rgba(100, 255, 218, 0.3);
}

.nexo-emblem__text {
  font-size: var(--nexo-font-size-2xl);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--nexo-text);
  text-shadow: 
    0 0 10px rgba(100, 255, 218, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateZ(10px);
  margin-top: var(--nexo-space-md);
}

/* Glow effects */
.nexo-emblem__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.4;
  animation: emblemGlow 4s ease-in-out infinite;
}

.nexo-emblem__glow--1 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-20px);
  background: radial-gradient(circle, rgba(100, 255, 218, 0.6) 0%, transparent 70%);
  animation-delay: 0s;
}

.nexo-emblem__glow--2 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(-10px);
  background: radial-gradient(circle, rgba(100, 255, 218, 0.4) 0%, transparent 70%);
  animation-delay: 2s;
}

@keyframes emblemGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) translateZ(-20px) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) translateZ(-20px) scale(1.2);
  }
}

/* Hover effects with 3D tilt */
.nexo-emblem-3d:hover {
  transform: rotateX(-8deg) rotateY(8deg) scale(1.05);
}

.nexo-emblem-3d:hover .nexo-emblem__layer--top {
  box-shadow: 
    0 0 0 2px rgba(100, 255, 218, 0.4),
    0 12px 35px rgba(100, 255, 218, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 30px 100px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(100, 255, 218, 0.1);
}

.nexo-emblem-3d:hover .nexo-emblem__diamond {
  box-shadow: 
    0 0 20px rgba(100, 255, 218, 0.8),
    0 0 40px rgba(100, 255, 218, 0.5),
    inset 0 0 15px rgba(100, 255, 218, 0.5);
  transform: translate(-50%, -50%) translateZ(15px) rotate(45deg);
}

.nexo-emblem-3d:hover .nexo-emblem__center {
  box-shadow: 
    0 0 15px rgba(100, 255, 218, 1),
    0 0 30px rgba(100, 255, 218, 0.7),
    0 0 45px rgba(100, 255, 218, 0.4);
  transform: translate(-50%, -50%) translateZ(18px);
}

.nexo-emblem-3d:hover .nexo-emblem__glow {
  opacity: 0.7;
  animation-duration: 2s;
}

/* Responsive design */
@media (max-width: 768px) {
  .nexo-emblem-3d {
    width: 250px;
    height: 250px;
  }
  
  .nexo-emblem__hexagon {
    width: 100px;
    height: 100px;
  }
  
  .nexo-emblem__hexagon-inner {
    width: 65px;
    height: 65px;
  }
  
  .nexo-emblem__diamond {
    width: 35px;
    height: 35px;
  }
  
  .nexo-emblem__text {
    font-size: var(--nexo-font-size-xl);
  }
  
  .nexo-emblem-wrapper {
    perspective: 800px;
  }
}

/* Buttons */
.nexo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--nexo-space-sm) var(--nexo-space-lg);
  border: none;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--nexo-transition-normal);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--nexo-font-size-sm);
}

.nexo-btn--primary {
  background: linear-gradient(135deg, #0A192F 0%, #64FFDA 100%);
  color: #ffffff;
  border: 3px solid var(--nexo-accent);
  box-shadow: 6px 6px 0px var(--nexo-accent-light), 0 0 15px rgba(100, 255, 218, 0.5);
  animation: holographicButton 3s ease-in-out infinite;
}

.nexo-btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0px var(--nexo-accent-light), 0 0 25px rgba(100, 255, 218, 0.8);
  animation: holographicButtonHover 1s ease-in-out infinite;
}

.nexo-btn--secondary {
  background: transparent;
  color: var(--nexo-text);
  border: 3px solid var(--nexo-border-light);
  box-shadow: 6px 6px 0px var(--nexo-secondary);
}

.nexo-btn--secondary:hover {
  border-color: var(--nexo-accent);
  color: var(--nexo-accent);
  box-shadow: 6px 6px 0px var(--nexo-accent);
  transform: translate(-2px, -2px);
}

.nexo-btn--full {
  width: 100%;
}

/* Section Styles */
.nexo-section__header {
  text-align: center;
  margin-bottom: var(--nexo-space-2xl);
}

.nexo-section__title {
  font-size: var(--nexo-font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--nexo-space-md);
  background: linear-gradient(135deg, var(--nexo-text) 0%, var(--nexo-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nexo-section__subtitle {
  font-size: var(--nexo-font-size-lg);
  color: var(--nexo-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Industries Section */
.nexo-industries {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-surface);
  border-top: 4px solid var(--nexo-accent);
}

.nexo-industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--nexo-space-xl);
}

.nexo-industry {
  background: var(--nexo-surface-elevated);
  padding: var(--nexo-space-xl);
  border: 4px solid var(--nexo-border);
  transition: var(--nexo-transition-normal);
  position: relative;
  overflow: hidden;
}

.nexo-industry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--nexo-accent);
  transition: var(--nexo-transition-normal);
}

.nexo-industry:hover::before {
  width: 100%;
}

.nexo-industry:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--nexo-accent), 0 0 20px rgba(100, 255, 218, 0.4);
  border-color: var(--nexo-accent);
  animation: holographicCard 2s ease-in-out infinite;
}

.nexo-industry__icon {
  width: 64px;
  height: 64px;
  color: var(--nexo-accent);
  margin-bottom: var(--nexo-space-md);
  animation: holographicIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.6));
}

.nexo-industry__icon svg {
  width: 100%;
  height: 100%;
}

.nexo-industry__title {
  font-size: var(--nexo-font-size-xl);
  font-weight: 800;
  margin-bottom: var(--nexo-space-sm);
  color: var(--nexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nexo-industry__description {
  color: var(--nexo-text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* Capabilities Section */
.nexo-capabilities {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-background);
  border-top: 4px solid var(--nexo-accent-light);
}

.nexo-capabilities__matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--nexo-space-xl);
}

.nexo-capability {
  background: var(--nexo-surface-elevated);
  padding: var(--nexo-space-xl);
  border: 4px solid var(--nexo-border);
  transition: var(--nexo-transition-normal);
  position: relative;
}

.nexo-capability:hover {
  transform: translate(-6px, -6px);
  box-shadow: 12px 12px 0px var(--nexo-accent);
  border-color: var(--nexo-accent);
}

.nexo-capability__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--nexo-space-lg);
  padding-bottom: var(--nexo-space-md);
  border-bottom: 2px solid var(--nexo-border);
}

.nexo-capability__title {
  font-size: var(--nexo-font-size-lg);
  font-weight: 800;
  color: var(--nexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nexo-capability__level {
  background: var(--nexo-accent);
  color: var(--nexo-primary);
  padding: var(--nexo-space-xs) var(--nexo-space-sm);
  font-weight: 700;
  font-size: var(--nexo-font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nexo-capability__skills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--nexo-space-sm);
}

.nexo-skill {
  background: var(--nexo-background);
  color: var(--nexo-text);
  padding: var(--nexo-space-xs) var(--nexo-space-sm);
  border: 2px solid var(--nexo-border);
  font-size: var(--nexo-font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--nexo-transition-normal);
}

.nexo-skill:hover {
  background: var(--nexo-accent);
  color: var(--nexo-primary);
  border-color: var(--nexo-accent);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px var(--nexo-accent-light);
}

/* Pricing Section */
.nexo-pricing {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-surface);
  border-top: 4px solid var(--nexo-accent);
}

.nexo-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--nexo-space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.nexo-pricing__card {
  background: var(--nexo-surface-elevated);
  padding: var(--nexo-space-xl);
  border: 4px solid var(--nexo-border);
  transition: var(--nexo-transition-normal);
  position: relative;
}

.nexo-pricing__card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--nexo-accent);
  border-color: var(--nexo-accent);
}

.nexo-pricing__card--featured {
  border-color: var(--nexo-accent);
  box-shadow: 8px 8px 0px var(--nexo-accent-light);
}

.nexo-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nexo-accent);
  color: var(--nexo-primary);
  padding: var(--nexo-space-xs) var(--nexo-space-md);
  font-weight: 700;
  font-size: var(--nexo-font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nexo-pricing__header {
  text-align: center;
  margin-bottom: var(--nexo-space-xl);
  padding-bottom: var(--nexo-space-lg);
  border-bottom: 2px solid var(--nexo-border);
}

.nexo-pricing__title {
  font-size: var(--nexo-font-size-xl);
  font-weight: 800;
  color: var(--nexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--nexo-space-md);
}

.nexo-pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--nexo-space-xs);
}

.nexo-pricing__currency {
  font-size: var(--nexo-font-size-lg);
  font-weight: 700;
  color: var(--nexo-accent);
}

.nexo-pricing__amount {
  font-size: var(--nexo-font-size-4xl);
  font-weight: 900;
  color: var(--nexo-accent);
}

.nexo-pricing__period {
  font-size: var(--nexo-font-size-sm);
  color: var(--nexo-text-muted);
  font-weight: 600;
}

.nexo-pricing__features {
  display: flex;
  flex-direction: column;
  gap: var(--nexo-space-md);
  margin-bottom: var(--nexo-space-xl);
}

.nexo-pricing__feature {
  display: flex;
  align-items: center;
  gap: var(--nexo-space-sm);
}

.nexo-pricing__check {
  width: 20px;
  height: 20px;
  color: var(--nexo-accent);
  flex-shrink: 0;
}

.nexo-pricing__feature span {
  color: var(--nexo-text);
  font-weight: 500;
}

/* Blog Section */
.nexo-blog {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-background);
  border-top: 4px solid var(--nexo-accent-light);
}

.nexo-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--nexo-space-xl);
}

.nexo-blog__post {
  background: var(--nexo-surface-elevated);
  border: 4px solid var(--nexo-border);
  transition: var(--nexo-transition-normal);
  overflow: hidden;
}

.nexo-blog__post:hover {
  transform: translate(-6px, -6px);
  box-shadow: 12px 12px 0px var(--nexo-accent);
  border-color: var(--nexo-accent);
}

.nexo-blog__image {
  height: 200px;
  overflow: hidden;
}

.nexo-blog__placeholder {
  width: 100%;
  height: 100%;
}

.nexo-blog__content {
  padding: var(--nexo-space-lg);
}

.nexo-blog__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--nexo-space-md);
  padding-bottom: var(--nexo-space-sm);
  border-bottom: 1px solid var(--nexo-border);
}

.nexo-blog__date {
  color: var(--nexo-text-muted);
  font-size: var(--nexo-font-size-sm);
  font-weight: 500;
}

.nexo-blog__category {
  background: var(--nexo-accent);
  color: var(--nexo-primary);
  padding: var(--nexo-space-xs) var(--nexo-space-sm);
  font-size: var(--nexo-font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nexo-blog__title {
  font-size: var(--nexo-font-size-xl);
  font-weight: 700;
  margin-bottom: var(--nexo-space-sm);
  color: var(--nexo-text);
  line-height: 1.3;
}

.nexo-blog__excerpt {
  color: var(--nexo-text-muted);
  margin-bottom: var(--nexo-space-md);
  line-height: 1.6;
}

.nexo-blog__link {
  color: var(--nexo-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--nexo-font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--nexo-transition-normal);
}

.nexo-blog__link:hover {
  color: var(--nexo-accent-light);
}

/* FAQ Section */
.nexo-faq {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-surface);
  border-top: 4px solid var(--nexo-accent);
}

.nexo-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.nexo-faq__item {
  background: var(--nexo-surface-elevated);
  border: 4px solid var(--nexo-border);
  margin-bottom: var(--nexo-space-lg);
  transition: var(--nexo-transition-normal);
}

.nexo-faq__item:hover {
  border-color: var(--nexo-accent);
  box-shadow: 6px 6px 0px var(--nexo-accent);
}

.nexo-faq__item[open] {
  border-color: var(--nexo-accent);
  box-shadow: 6px 6px 0px var(--nexo-accent);
}

.nexo-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--nexo-space-lg);
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: var(--nexo-font-size-lg);
  color: var(--nexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--nexo-transition-normal);
}

.nexo-faq__question:hover {
  color: var(--nexo-accent);
}

.nexo-faq__icon {
  width: 24px;
  height: 24px;
  color: var(--nexo-accent);
  transition: var(--nexo-transition-normal);
}

.nexo-faq__item[open] .nexo-faq__icon {
  transform: rotate(180deg);
}

.nexo-faq__answer {
  padding: 0 var(--nexo-space-lg) var(--nexo-space-lg);
  border-top: 2px solid var(--nexo-border);
}

.nexo-faq__answer p {
  color: var(--nexo-text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* Careers Section */
.nexo-careers {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-background);
  border-top: 4px solid var(--nexo-accent-light);
}

.nexo-careers__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--nexo-space-2xl);
}

.nexo-careers__subtitle {
  font-size: var(--nexo-font-size-xl);
  font-weight: 800;
  color: var(--nexo-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--nexo-space-lg);
}

.nexo-careers__values-grid {
  display: grid;
  gap: var(--nexo-space-lg);
}

.nexo-careers__value {
  background: var(--nexo-surface-elevated);
  padding: var(--nexo-space-lg);
  border: 4px solid var(--nexo-border);
  transition: var(--nexo-transition-normal);
}

.nexo-careers__value:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--nexo-accent);
  border-color: var(--nexo-accent);
}

.nexo-careers__value-icon {
  width: 48px;
  height: 48px;
  color: var(--nexo-accent);
  margin-bottom: var(--nexo-space-md);
}

.nexo-careers__value-icon svg {
  width: 100%;
  height: 100%;
}

.nexo-careers__value-title {
  font-size: var(--nexo-font-size-lg);
  font-weight: 800;
  color: var(--nexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--nexo-space-sm);
}

.nexo-careers__value-description {
  color: var(--nexo-text-muted);
  line-height: 1.6;
  font-weight: 500;
}

.nexo-careers__jobs {
  display: flex;
  flex-direction: column;
  gap: var(--nexo-space-lg);
}

.nexo-careers__job {
  background: var(--nexo-surface-elevated);
  padding: var(--nexo-space-lg);
  border: 4px solid var(--nexo-border);
  transition: var(--nexo-transition-normal);
}

.nexo-careers__job:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--nexo-accent);
  border-color: var(--nexo-accent);
}

.nexo-careers__job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--nexo-space-md);
  padding-bottom: var(--nexo-space-sm);
  border-bottom: 2px solid var(--nexo-border);
}

.nexo-careers__job-title {
  font-size: var(--nexo-font-size-lg);
  font-weight: 700;
  color: var(--nexo-text);
}

.nexo-careers__job-type {
  background: var(--nexo-accent);
  color: var(--nexo-primary);
  padding: var(--nexo-space-xs) var(--nexo-space-sm);
  font-size: var(--nexo-font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nexo-careers__job-description {
  color: var(--nexo-text-muted);
  margin-bottom: var(--nexo-space-md);
  line-height: 1.6;
  font-weight: 500;
}

.nexo-careers__job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--nexo-space-xs);
  margin-bottom: var(--nexo-space-md);
}

.nexo-careers__tag {
  background: var(--nexo-background);
  color: var(--nexo-text);
  padding: var(--nexo-space-xs) var(--nexo-space-sm);
  border: 2px solid var(--nexo-border);
  font-size: var(--nexo-font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nexo-careers__apply {
  color: var(--nexo-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--nexo-font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--nexo-transition-normal);
}

.nexo-careers__apply:hover {
  color: var(--nexo-accent-light);
}

/* Compliance Section */
.nexo-compliance {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-surface);
  border-top: 4px solid var(--nexo-accent);
}

.nexo-compliance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--nexo-space-xl);
}

.nexo-compliance__item {
  background: var(--nexo-surface-elevated);
  padding: var(--nexo-space-xl);
  border: 4px solid var(--nexo-border);
  transition: var(--nexo-transition-normal);
  text-align: center;
}

.nexo-compliance__item:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--nexo-accent);
  border-color: var(--nexo-accent);
}

.nexo-compliance__icon {
  width: 64px;
  height: 64px;
  color: var(--nexo-accent);
  margin: 0 auto var(--nexo-space-md);
}

.nexo-compliance__icon svg {
  width: 100%;
  height: 100%;
}

.nexo-compliance__title {
  font-size: var(--nexo-font-size-lg);
  font-weight: 800;
  color: var(--nexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--nexo-space-sm);
}

.nexo-compliance__description {
  color: var(--nexo-text-muted);
  line-height: 1.6;
  font-weight: 500;
}

/* Support Section */
.nexo-support {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-background);
  border-top: 4px solid var(--nexo-accent-light);
}

.nexo-support__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--nexo-space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.nexo-support__tier {
  background: var(--nexo-surface-elevated);
  padding: var(--nexo-space-xl);
  border: 4px solid var(--nexo-border);
  transition: var(--nexo-transition-normal);
  position: relative;
}

.nexo-support__tier:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0px var(--nexo-accent);
  border-color: var(--nexo-accent);
}

.nexo-support__tier--featured {
  border-color: var(--nexo-accent);
  box-shadow: 8px 8px 0px var(--nexo-accent-light);
}

.nexo-support__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nexo-accent);
  color: var(--nexo-primary);
  padding: var(--nexo-space-xs) var(--nexo-space-md);
  font-weight: 700;
  font-size: var(--nexo-font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nexo-support__header {
  text-align: center;
  margin-bottom: var(--nexo-space-xl);
  padding-bottom: var(--nexo-space-lg);
  border-bottom: 2px solid var(--nexo-border);
}

.nexo-support__title {
  font-size: var(--nexo-font-size-xl);
  font-weight: 800;
  color: var(--nexo-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--nexo-space-md);
}

.nexo-support__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--nexo-space-xs);
}

.nexo-support__price span:first-child {
  font-size: var(--nexo-font-size-3xl);
  font-weight: 900;
  color: var(--nexo-accent);
}

.nexo-support__price span:last-child {
  font-size: var(--nexo-font-size-sm);
  color: var(--nexo-text-muted);
  font-weight: 600;
}

.nexo-support__features {
  display: flex;
  flex-direction: column;
  gap: var(--nexo-space-md);
}

.nexo-support__feature {
  display: flex;
  align-items: center;
  gap: var(--nexo-space-sm);
}

.nexo-support__check {
  width: 20px;
  height: 20px;
  color: var(--nexo-accent);
  flex-shrink: 0;
}

.nexo-support__feature span {
  color: var(--nexo-text);
  font-weight: 500;
}

/* Contact Section */
.nexo-contact {
  padding: var(--nexo-space-3xl) 0;
  background: var(--nexo-surface);
  border-top: 4px solid var(--nexo-accent);
}

.nexo-contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--nexo-space-2xl);
}

.nexo-contact__title {
  font-size: var(--nexo-font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--nexo-space-md);
  color: var(--nexo-text);
}

.nexo-contact__description {
  font-size: var(--nexo-font-size-lg);
  color: var(--nexo-text-muted);
  margin-bottom: var(--nexo-space-xl);
  line-height: 1.6;
}

.nexo-contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--nexo-space-lg);
}

.nexo-contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--nexo-space-md);
}

.nexo-contact__icon {
  width: 24px;
  height: 24px;
  color: var(--nexo-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.nexo-contact__item strong {
  display: block;
  color: var(--nexo-text);
  margin-bottom: var(--nexo-space-xs);
}

.nexo-contact__item p {
  color: var(--nexo-text-muted);
}

.nexo-contact__item a {
  color: var(--nexo-accent);
  text-decoration: none;
  transition: var(--nexo-transition-normal);
}

.nexo-contact__item a:hover {
  color: var(--nexo-accent-light);
}

/* Form Styles */
.nexo-contact__form {
  background: var(--nexo-surface-elevated);
  padding: var(--nexo-space-xl);
  border-radius: var(--nexo-radius-xl);
  border: 1px solid var(--nexo-border);
}

.nexo-form__group {
  margin-bottom: var(--nexo-space-lg);
}

.nexo-form__label {
  display: block;
  font-weight: 600;
  color: var(--nexo-text);
  margin-bottom: var(--nexo-space-xs);
}

.nexo-form__input,
.nexo-form__textarea {
  width: 100%;
  padding: var(--nexo-space-sm);
  background: var(--nexo-background);
  border: 1px solid var(--nexo-border);
  border-radius: var(--nexo-radius-md);
  color: var(--nexo-text);
  font-size: var(--nexo-font-size-base);
  transition: var(--nexo-transition-normal);
}

.nexo-form__input:focus,
.nexo-form__textarea:focus {
  outline: none;
  border-color: var(--nexo-accent);
  box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.nexo-form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.nexo-footer {
  background: var(--nexo-primary);
  padding: var(--nexo-space-2xl) 0 var(--nexo-space-lg);
  border-top: 1px solid var(--nexo-border);
}

.nexo-footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--nexo-space-2xl);
  margin-bottom: var(--nexo-space-xl);
}

.nexo-footer__brand {
  max-width: 300px;
}

.nexo-footer__description {
  color: var(--nexo-text-muted);
  margin-top: var(--nexo-space-md);
  line-height: 1.6;
}

.nexo-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nexo-space-xl);
}

.nexo-footer__title {
  font-size: var(--nexo-font-size-lg);
  font-weight: 600;
  color: var(--nexo-text);
  margin-bottom: var(--nexo-space-md);
}

.nexo-footer__list {
  list-style: none;
}

.nexo-footer__list li {
  margin-bottom: var(--nexo-space-sm);
}

.nexo-footer__link {
  color: var(--nexo-text-muted);
  text-decoration: none;
  transition: var(--nexo-transition-normal);
}

.nexo-footer__link:hover {
  color: var(--nexo-accent);
}

.nexo-footer__social {
  display: flex;
  gap: var(--nexo-space-md);
}

.nexo-footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--nexo-surface-elevated);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nexo-text-muted);
  transition: var(--nexo-transition-normal);
}

.nexo-footer__social-link:hover {
  background: var(--nexo-accent);
  color: var(--nexo-primary);
  transform: translateY(-2px);
}

.nexo-footer__social-link svg {
  width: 20px;
  height: 20px;
}

.nexo-footer__bottom {
  border-top: 1px solid var(--nexo-border);
  padding-top: var(--nexo-space-lg);
  text-align: center;
}

.nexo-footer__copyright {
  color: var(--nexo-text-muted);
  font-size: var(--nexo-font-size-sm);
}

.nexo-footer__legal {
  color: var(--nexo-text-muted);
  text-decoration: none;
  transition: var(--nexo-transition-normal);
}

.nexo-footer__legal:hover {
  color: var(--nexo-accent);
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Holographic Animations */
@keyframes holographicGlow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(100, 255, 218, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(100, 255, 218, 0.6), 0 0 30px rgba(100, 255, 218, 0.4);
  }
}

@keyframes holographicShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes holographicPulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--nexo-accent), inset 0 0 20px rgba(100, 255, 218, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px var(--nexo-accent), 0 0 40px var(--nexo-accent-light), inset 0 0 30px rgba(100, 255, 218, 0.5);
    transform: scale(1.05);
  }
}

@keyframes holographicButton {
  0%, 100% {
    box-shadow: 6px 6px 0px var(--nexo-accent-light), 0 0 15px rgba(100, 255, 218, 0.5);
  }
  50% {
    box-shadow: 6px 6px 0px var(--nexo-accent-light), 0 0 25px rgba(100, 255, 218, 0.8), 0 0 35px rgba(100, 255, 218, 0.4);
  }
}

@keyframes holographicButtonHover {
  0%, 100% {
    box-shadow: 8px 8px 0px var(--nexo-accent-light), 0 0 25px rgba(100, 255, 218, 0.8);
  }
  50% {
    box-shadow: 8px 8px 0px var(--nexo-accent-light), 0 0 35px rgba(100, 255, 218, 1), 0 0 45px rgba(100, 255, 218, 0.6);
  }
}

@keyframes holographicCard {
  0%, 100% {
    box-shadow: 8px 8px 0px var(--nexo-accent), 0 0 20px rgba(100, 255, 218, 0.4);
  }
  50% {
    box-shadow: 8px 8px 0px var(--nexo-accent), 0 0 30px rgba(100, 255, 218, 0.7), 0 0 40px rgba(100, 255, 218, 0.3);
  }
}

@keyframes holographicIcon {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.6));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(100, 255, 218, 0.9)) drop-shadow(0 0 25px rgba(100, 255, 218, 0.4));
    transform: scale(1.1);
  }
}

/* Global holographic effects */
.nexo-capability:hover,
.nexo-pricing__card:hover,
.nexo-blog__post:hover,
.nexo-faq__item:hover,
.nexo-careers__value:hover,
.nexo-careers__job:hover,
.nexo-compliance__item:hover,
.nexo-support__tier:hover {
  animation: holographicCard 2s ease-in-out infinite;
}

.nexo-capability__icon,
.nexo-compliance__icon,
.nexo-careers__value-icon {
  animation: holographicIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.6));
}

.nexo-section__title {
  animation: holographicGlow 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nexo-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .nexo-hero__visual {
    height: 450px;
    margin-top: var(--nexo-space-xl);
  }
  
  .nexo-hero__cards {
    max-width: 100%;
    transform: scale(0.9);
  }
  
  .nexo-hero__card--large {
    width: 340px;
    height: 220px;
  }
  
  .nexo-hero__card--medium {
    width: 260px;
    height: 180px;
  }
  
  .nexo-hero__card--small {
    width: 160px;
    height: 130px;
  }
  
  .nexo-careers__content {
    grid-template-columns: 1fr;
  }
  
  .nexo-contact__content {
    grid-template-columns: 1fr;
  }
  
  .nexo-footer__content {
    grid-template-columns: 1fr;
  }
  
  .nexo-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nexo-nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nexo-glass-bg);
    backdrop-filter: var(--nexo-glass-backdrop);
    border-top: 1px solid var(--nexo-glass-border);
    flex-direction: column;
    padding: var(--nexo-space-lg) var(--nexo-space-md);
    gap: var(--nexo-space-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 80px; /* Відступ від верху для хедера */
  }
  
  .nexo-nav__menu--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nexo-nav__menu li {
    width: 100%;
  }
  
  .nexo-nav__link {
    display: block;
    padding: var(--nexo-space-md) var(--nexo-space-lg);
    text-align: center;
    font-size: var(--nexo-font-size-lg);
    font-weight: 600;
    border: 2px solid transparent;
    transition: all var(--nexo-transition-normal);
  }
  
  .nexo-nav__link:hover,
  .nexo-nav__link:focus {
    background: var(--nexo-accent);
    color: var(--nexo-primary);
    border-color: var(--nexo-accent);
    transform: translateX(4px);
  }
  
  .nexo-nav__link::after {
    display: none;
  }
  
  .nexo-nav__toggle {
    display: flex;
    position: relative;
    z-index: 101;
  }
  
  .nexo-nav__toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nexo-nav__toggle--active span:nth-child(2) {
    opacity: 0;
  }
  
  .nexo-nav__toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Prevent body scroll when menu is open */
  .nexo-nav-open {
    overflow: hidden;
  }
  
  .nexo-nav-open .nexo-header {
    background: var(--nexo-primary);
    backdrop-filter: none;
  }
  
  .nexo-hero__title {
    font-size: var(--nexo-font-size-3xl);
    margin-top: var(--nexo-space-3xl);
  }
  
  .nexo-hero__title-main {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  
  .nexo-hero__accent {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(100, 255, 218, 0.6);
  }
  
  .nexo-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .nexo-hero__visual {
    height: 400px;
    margin-top: var(--nexo-space-xl);
  }
  
  .nexo-hero__cards {
    max-width: 100%;
    transform: scale(0.85);
  }
  
  .nexo-hero__card--large {
    width: 320px;
    height: 200px;
  }
  
  .nexo-hero__card--medium {
    width: 240px;
    height: 160px;
    bottom: 40px;
  }
  
  .nexo-hero__card--small {
    width: 150px;
    height: 120px;
    top: 180px;
    left: 80px;
  }
  
  .nexo-hero__card-icon {
    width: 60px;
    height: 60px;
  }
  
  .nexo-hero__stat-value {
    font-size: var(--nexo-font-size-2xl);
  }
  
  .nexo-industries__grid {
    grid-template-columns: 1fr;
  }
  
  .nexo-capabilities__matrix {
    grid-template-columns: 1fr;
  }
  
  .nexo-pricing__grid {
    grid-template-columns: 1fr;
  }
  
  .nexo-blog__grid {
    grid-template-columns: 1fr;
  }
  
  .nexo-compliance__grid {
    grid-template-columns: 1fr;
  }
  
  .nexo-support__grid {
    grid-template-columns: 1fr;
  }
  
  .nexo-footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nexo-container {
    padding: 0 var(--nexo-space-sm);
  }
  
  .nexo-section__title {
    font-size: var(--nexo-font-size-2xl);
  }
  
  .nexo-services__grid {
    grid-template-columns: 1fr;
  }
  
  .nexo-process__step {
    flex-direction: column;
    text-align: center;
  }
  
  .nexo-process__step:not(:last-child)::after {
    display: none;
  }
}

/* Focus States */
.nexo-btn:focus-visible,
.nexo-nav__link:focus-visible,
.nexo-form__input:focus-visible,
.nexo-form__textarea:focus-visible {
  outline: 2px solid var(--nexo-accent);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --nexo-border: #666666;
    --nexo-border-light: #888888;
  }
}

/* Print Styles */
@media print {
  .nexo-header,
  .nexo-footer,
  .nexo-hero__bg {
    display: none;
  }
  
  .nexo-hero {
    min-height: auto;
    padding: var(--nexo-space-lg) 0;
  }
  
  * {
    color: #000 !important;
    background: #fff !important;
  }
}
