/* SCALLIUM - Brutalist Dark Theme with Geometric Animations */
/* Color Palette: #1a1a1a (dark graphite), #2d2d2d (anthracite), #ff6b35 (coral), #ffd23f (gold), #e8e8e8 (light gray), #0f0f0f (near black) */

:root {
  /* Color Tokens */
  --nexo-primary: #1a1a1a;
  --nexo-secondary: #2d2d2d;
  --nexo-accent: #ff6b35;
  --nexo-accent-light: #ffd23f;
  --nexo-text: #e8e8e8;
  --nexo-text-muted: #a0a0a0;
  --nexo-background: #0f0f0f;
  --nexo-surface: #1a1a1a;
  --nexo-surface-elevated: #2d2d2d;
  --nexo-border: #333333;
  --nexo-border-light: #444444;
  
  /* 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(26, 26, 26, 0.8);
  --nexo-glass-border: rgba(255, 107, 53, 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);
}

.nexo-logo:hover .nexo-logo__icon {
  transform: rotate(15deg) scale(1.15);
  animation: logoGlow 1.5s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6)) drop-shadow(0 0 16px rgba(255, 210, 63, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.9)) drop-shadow(0 0 24px rgba(255, 210, 63, 0.7)) drop-shadow(0 0 32px rgba(255, 107, 53, 0.3));
  }
}

.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);
  color: var(--nexo-text);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: slideInLeft 1s ease-out, holographicGlow 3s ease-in-out infinite;
}

.nexo-hero__accent {
  display: block;
  color: var(--nexo-accent);
  text-shadow: 4px 4px 0px var(--nexo-accent-light);
  animation: 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;
}

.nexo-hero__geometric {
  position: relative;
  width: 400px;
  height: 400px;
}

.nexo-hero__shape {
  position: absolute;
  background: var(--nexo-accent);
  animation: rotate 20s linear infinite, holographicPulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px var(--nexo-accent), inset 0 0 20px rgba(255, 107, 53, 0.3);
}

.nexo-hero__shape--1 {
  width: 120px;
  height: 120px;
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.nexo-hero__shape--2 {
  width: 80px;
  height: 80px;
  top: 160px;
  right: 20px;
  background: var(--nexo-accent-light);
  animation-delay: -5s;
}

.nexo-hero__shape--3 {
  width: 100px;
  height: 100px;
  bottom: 20px;
  left: 160px;
  background: var(--nexo-secondary);
  animation-delay: -10s;
}

.nexo-hero__shape--4 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--nexo-accent);
  animation-delay: -15s;
}

.nexo-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  z-index: 1;
}

.nexo-hero__pattern {
  width: 100%;
  height: 100%;
}

/* 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: var(--nexo-accent);
  color: var(--nexo-primary);
  border: 3px solid var(--nexo-accent);
  box-shadow: 6px 6px 0px var(--nexo-accent-light), 0 0 15px rgba(255, 107, 53, 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(255, 107, 53, 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(255, 107, 53, 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(255, 107, 53, 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(255, 107, 53, 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(255, 107, 53, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 210, 63, 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(255, 107, 53, 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(255, 107, 53, 0.5);
    transform: scale(1.05);
  }
}

@keyframes holographicButton {
  0%, 100% {
    box-shadow: 6px 6px 0px var(--nexo-accent-light), 0 0 15px rgba(255, 107, 53, 0.5);
  }
  50% {
    box-shadow: 6px 6px 0px var(--nexo-accent-light), 0 0 25px rgba(255, 107, 53, 0.8), 0 0 35px rgba(255, 210, 63, 0.4);
  }
}

@keyframes holographicButtonHover {
  0%, 100% {
    box-shadow: 8px 8px 0px var(--nexo-accent-light), 0 0 25px rgba(255, 107, 53, 0.8);
  }
  50% {
    box-shadow: 8px 8px 0px var(--nexo-accent-light), 0 0 35px rgba(255, 107, 53, 1), 0 0 45px rgba(255, 210, 63, 0.6);
  }
}

@keyframes holographicCard {
  0%, 100% {
    box-shadow: 8px 8px 0px var(--nexo-accent), 0 0 20px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 8px 8px 0px var(--nexo-accent), 0 0 30px rgba(255, 107, 53, 0.7), 0 0 40px rgba(255, 210, 63, 0.3);
  }
}

@keyframes holographicIcon {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.9)) drop-shadow(0 0 25px rgba(255, 210, 63, 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(255, 107, 53, 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__geometric {
    width: 300px;
    height: 300px;
  }
  
  .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);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--nexo-text);
  }
  
  .nexo-hero__accent {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(255, 107, 53, 0.6);
  }
  
  .nexo-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .nexo-hero__geometric {
    width: 250px;
    height: 250px;
  }
  
  .nexo-hero__shape--1 {
    width: 80px;
    height: 80px;
  }
  
  .nexo-hero__shape--2 {
    width: 60px;
    height: 60px;
  }
  
  .nexo-hero__shape--3 {
    width: 70px;
    height: 70px;
  }
  
  .nexo-hero__shape--4 {
    width: 40px;
    height: 40px;
  }
  
  .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;
  }
}
