/* SUPERAGENT - Futuristic Design System */
/* Color Palette (updated): Black (#000000), Purple (#7C3AED), Text Light (#E6E6E6), Background Dark (#000000), Hero Green (#00FF88) */

:root {
  /* Color Tokens */
  --holo-color-primary: #7C3AED;
  --holo-color-secondary: #7C3AED;
  --holo-color-accent: #A78BFA;
  --holo-color-background: #000000;
  --holo-color-text: #E6E6E6;
  --holo-color-coral: #A78BFA;
  --holo-color-gold: #7C3AED;
  
  /* Typography Scale */
  --holo-font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --holo-font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --holo-font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --holo-font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --holo-font-size-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --holo-font-size-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --holo-font-size-3xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --holo-font-size-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  
  /* Spacing Scale */
  --holo-space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --holo-space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
  --holo-space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --holo-space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --holo-space-xl: clamp(2rem, 1.6rem + 2vw, 3.5rem);
  --holo-space-2xl: clamp(3rem, 2.4rem + 3vw, 5rem);
  --holo-space-3xl: clamp(4rem, 3.2rem + 4vw, 7rem);
  
  /* Border Radius Scale */
  --holo-radius-sm: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --holo-radius-md: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
  --holo-radius-lg: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --holo-radius-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --holo-radius-2xl: clamp(2rem, 1.6rem + 2vw, 3.5rem);
  
  /* Shadows */
  --holo-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.5);
  --holo-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
  --holo-shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.65);
  --holo-shadow-glow: 0 0 24px rgba(124, 58, 237, 0.55);
  --holo-shadow-glow-accent: 0 0 20px rgba(167, 139, 250, 0.55);
  
  /* Transitions */
  --holo-transition-fast: 0.15s ease-out;
  --holo-transition-base: 0.3s ease-out;
  --holo-transition-slow: 0.5s ease-out;
  
  /* Holographic Effects */
  --holo-hologram-opacity: 0.1;
  --holo-hologram-blur: 2px;
  
  /* Hero-specific tokens */
  --hero-green-1: #00FF88;
  --hero-green-2: #00D478;
  --hero-green-3: rgba(0, 255, 136, 0.25);
  --hero-green-border: rgba(0, 255, 136, 0.85);
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--holo-color-text);
  background-color: var(--holo-color-background);
  overflow-x: hidden;
  opacity: 0.9;
  position: relative;
}

/* Global Background Animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(1200px 800px at 80% -10%, rgba(124, 58, 237, 0.15), rgba(0,0,0,0) 60%),
              radial-gradient(900px 600px at 10% 110%, rgba(167, 139, 250, 0.12), rgba(0,0,0,0) 55%),
              linear-gradient(180deg, #050507 0%, #000000 60%);
}

.holo-global-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
}

.holo-global-geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-global-hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 600px);
  height: min(60vw, 600px);
  background: linear-gradient(45deg, rgba(124, 58, 237, 0.06), rgba(167, 139, 250, 0.02));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 30s linear infinite;
}

.holo-global-hexagon--inner {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  animation-direction: reverse;
  animation-duration: 25s;
}

.holo-global-hexagon--small {
  width: min(20vw, 200px);
  height: min(20vw, 200px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.025));
  animation-duration: 20s;
}


.holo-global-dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-global-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  animation: dotPulse 6s ease-in-out infinite;
}

.holo-global-dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-global-dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

.holo-global-dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.holo-global-dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 4.5s;
}

.holo-global-dot:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 0.75s;
}

.holo-global-dot:nth-child(6) {
  top: 50%;
  right: 10%;
  animation-delay: 2.25s;
}

.holo-global-dot:nth-child(7) {
  top: 10%;
  left: 50%;
  animation-delay: 3.75s;
}

.holo-global-dot:nth-child(8) {
  bottom: 10%;
  left: 50%;
  animation-delay: 5.25s;
}

/* Skip Link */
.holo-skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--holo-color-secondary);
  color: var(--holo-color-text);
  padding: 8px;
  text-decoration: none;
  border-radius: var(--holo-radius-sm);
  z-index: 1000;
  transition: var(--holo-transition-fast);
}

.holo-skip-link:focus {
  top: 6px;
}

/* Container */
.holo-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--holo-space-md);
}

@media (min-width: 768px) {
  .holo-container {
    padding: 0 var(--holo-space-lg);
  }
}

/* Header */
.holo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: var(--holo-transition-base);
}

/* Solid/Glass state on scroll */
.holo-header.holo-header--solid {
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(124, 58, 237, 0.25);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.holo-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--holo-space-sm) 0;
}

.holo-logo {
  display: flex;
  align-items: center;
  gap: var(--holo-space-sm);
  text-decoration: none;
  color: var(--holo-color-text);
  font-weight: 700;
  font-size: var(--holo-font-size-lg);
  cursor: pointer;
  transition: var(--holo-transition-base);
}

.holo-logo svg {
  transition: var(--holo-transition-base);
}

/* Animated professional logo */
.holo-logo__svg { display: block; filter: drop-shadow(0 0 24px rgba(124,58,237,0.25)); }
.holo-logo__stroke {
  stroke-dasharray: 220 440;
  stroke-dashoffset: 440;
  animation: logoDraw 2.2s ease forwards 200ms, logoSheen 4s ease-in-out infinite 2.6s;
}
.holo-logo__pulse { opacity: 0; animation: logoPulse 2.4s ease-out infinite 1.2s; }

/* New emblem animations */
.holo-logo__ring { transform-origin: 48px 48px; animation: logoSpin 8s linear infinite; opacity: 0.9; }
.holo-logo__orbit { animation: logoSpin 5.5s linear infinite; }
.holo-logo__mono .holo-logo__s { stroke-dasharray: 220; stroke-dashoffset: 220; animation: logoDash 1.4s ease-out forwards 300ms; }
.holo-logo__mono .holo-logo__m { stroke-dasharray: 120; stroke-dashoffset: 120; animation: logoDash 1.2s ease-out forwards 600ms; }

@keyframes logoSpin { to { transform: rotate(360deg); } }
@keyframes logoDash { to { stroke-dashoffset: 0; } }

@keyframes logoDraw { to { stroke-dashoffset: 220; } }
@keyframes logoSheen { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.35); } }
@keyframes logoPulse { 0% { opacity: 0.0; transform: scale(0.9); } 40% { opacity: 0.25; transform: scale(1.05); } 100% { opacity: 0; transform: scale(1.2); } }

@media (prefers-reduced-motion: reduce) {
  .holo-logo__stroke, .holo-logo__pulse { animation: none; }
  .holo-logo__ring, .holo-logo__orbit, .holo-logo__mono .holo-logo__s, .holo-logo__mono .holo-logo__m { animation: none; }
}

.holo-logo:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(var(--holo-shadow-glow));
}

.holo-logo__text {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Navigation */
.holo-nav {
  position: relative;
}

.holo-nav__list {
  display: flex;
  list-style: none;
  gap: var(--holo-space-lg);
  margin: 0;
  padding: 0;
}

.holo-nav__item {
  margin: 0;
}

.holo-nav__link {
  color: var(--holo-color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--holo-font-size-sm);
  padding: var(--holo-space-xs) var(--holo-space-sm);
  border-radius: var(--holo-radius-md);
  transition: var(--holo-transition-base);
  position: relative;
  display: block;
}

.holo-nav__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(40, 40, 40, 0.9));
  border-radius: var(--holo-radius-md);
  opacity: 0;
  transition: var(--holo-transition-base);
  z-index: -1;
}

.holo-nav__link:hover::before {
  opacity: 0.9;
}

.holo-nav__link:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--holo-shadow-glow);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.holo-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(0, 255, 136, 0.12), rgba(0,0,0,0) 60%),
              radial-gradient(900px 600px at 110% 110%, rgba(0, 212, 120, 0.1), rgba(0,0,0,0) 55%),
              linear-gradient(180deg, #050507 0%, #000000 60%);
  overflow: hidden;
}

/* New kinetic hero background */
.holo-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.holo-hero__blob {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  left: calc(var(--mx, 50%) - 30vmax);
  top: calc(var(--my, 35%) - 30vmax);
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.45), rgba(124, 58, 237, 0) 55%),
              radial-gradient(circle at 70% 70%, rgba(0, 255, 136, 0.35), rgba(0, 255, 136, 0) 60%);
  filter: blur(40px) saturate(1.2);
  transform: translateZ(0);
  will-change: left, top;
  transition: left 120ms ease, top 120ms ease;
}

.holo-hero__grid {
  position: absolute;
  inset: -20% -20%;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px;
  mask-image: radial-gradient(closest-side, rgba(0,0,0,0.85), rgba(0,0,0,0) 80%);
  transform: translate3d(0,0,0) rotateX(55deg) skewY(-6deg);
  transform-origin: center;
  opacity: 0.35;
}

.holo-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* Professional Modern Animation */
.holo-hero__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.holo-hero__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-hero__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 800px);
  height: min(80vw, 800px);
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.12), rgba(0, 212, 120, 0.06));
  border: 2px solid var(--hero-green-border);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 20s linear infinite;
}

.holo-hero__hexagon--inner {
  width: min(60vw, 600px);
  height: min(60vw, 600px);
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.16), rgba(0, 212, 120, 0.08));
  border: 2px solid var(--hero-green-border);
  animation-direction: reverse;
  animation-duration: 15s;
}

.holo-hero__hexagon--small {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.2), rgba(0, 212, 120, 0.1));
  border: 2px solid var(--hero-green-border);
  animation-duration: 10s;
}


.holo-hero__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-hero__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--hero-green-1);
  border: 1px solid var(--hero-green-border);
  border-radius: 50%;
  opacity: 0.4;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-hero__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-hero__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.holo-hero__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.holo-hero__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.holo-hero__dot:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 0.5s;
}

.holo-hero__dot:nth-child(6) {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.holo-hero__dot:nth-child(7) {
  top: 10%;
  left: 50%;
  animation-delay: 2.5s;
}

.holo-hero__dot:nth-child(8) {
  bottom: 10%;
  left: 50%;
  animation-delay: 3.5s;
}

/* Додаємо анімацію як у картках services до hero */
.holo-hero__hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(0, 255, 136, 0.16) 0%, 
    rgba(0, 212, 120, 0.08) 25%, 
    rgba(0, 255, 136, 0.16) 50%, 
    rgba(0, 212, 120, 0.08) 75%, 
    rgba(0, 255, 136, 0.16) 100%);
  animation: hologramShift 4s ease-in-out infinite;
  border-radius: var(--holo-radius-xl);
}

.holo-hero__hologram::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(0, 255, 136, 0.35), 
    rgba(0, 212, 120, 0.25), 
    rgba(0, 255, 136, 0.35), 
    rgba(0, 212, 120, 0.25));
  border-radius: var(--holo-radius-xl);
  z-index: -1;
  animation: hologramGlow 3s ease-in-out infinite;
}

.holo-hero__scan-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 136, 0.15) 2px,
    rgba(0, 255, 136, 0.15) 4px
  );
  animation: scanLines 1.5s linear infinite;
  opacity: 0.7;
}

.holo-hero__pulse-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.holo-hero__pulse-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--hero-green-border);
  box-shadow: 0 0 0 1px rgba(0, 255, 136, 0.35);
  border-radius: 50%;
  animation: pulseWave 3s ease-out infinite;
}

.holo-hero__pulse-wave:nth-child(1) {
  width: 60%;
  height: 60%;
  animation-delay: 0s;
}

.holo-hero__pulse-wave:nth-child(2) {
  width: 80%;
  height: 80%;
  animation-delay: 1s;
}

.holo-hero__pulse-wave:nth-child(3) {
  width: 100%;
  height: 100%;
  animation-delay: 2s;
}

.holo-hero__floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.85) 0%, rgba(0, 212, 120, 0.5) 100%);
  border: 1px solid var(--hero-green-border);
  border-radius: 50%;
  animation: floatParticle 4s ease-in-out infinite;
}

.holo-hero__particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.holo-hero__particle:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.8s;
}

.holo-hero__particle:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 1.6s;
}

.holo-hero__particle:nth-child(4) {
  bottom: 35%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-hero__particle:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 3.2s;
}

.holo-hero__particle:nth-child(6) {
  top: 60%;
  right: 10%;
  animation-delay: 0.4s;
}

@keyframes hexagonRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes lineFlow {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1.2);
  }
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

@keyframes hologramShift {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.8;
  }
  25% {
    background-position: 100% 50%;
    opacity: 1;
  }
  50% {
    background-position: 0% 50%;
    opacity: 0.9;
  }
  75% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

@keyframes hologramGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

@keyframes scanLines {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes pulseWave {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-10px) translateX(5px);
    opacity: 1;
  }
  50% {
    transform: translateY(-5px) translateX(-3px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-15px) translateX(8px);
    opacity: 0.9;
  }
}

.holo-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 1024px) {
  .holo-hero__content {
    max-width: 1400px;
  }
}

@media (max-width: 768px) {
  .holo-hero__hexagon {
    width: min(70vw, 600px);
    height: min(70vw, 600px);
  }
  
  .holo-hero__hexagon--inner {
    width: min(50vw, 400px);
    height: min(50vw, 400px);
  }
  
  .holo-hero__hexagon--small {
    width: min(30vw, 300px);
    height: min(30vw, 300px);
  }
  
  .holo-hero__content {
    padding: var(--holo-space-md);
  }
  
  .holo-hero__text {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .holo-hero__hexagon {
    width: min(60vw, 400px);
    height: min(60vw, 400px);
  }
  
  .holo-hero__hexagon--inner {
    width: min(40vw, 300px);
    height: min(40vw, 300px);
  }
  
  .holo-hero__hexagon--small {
    width: min(25vw, 200px);
    height: min(25vw, 200px);
  }
  
  .holo-hero__content {
    padding: var(--holo-space-sm);
  }
}

@media (max-width: 360px) {
  .holo-hero__hexagon {
    width: min(50vw, 300px);
    height: min(50vw, 300px);
  }
  
  .holo-hero__hexagon--inner {
    width: min(35vw, 250px);
    height: min(35vw, 250px);
  }
  
  .holo-hero__hexagon--small {
    width: min(20vw, 150px);
    height: min(20vw, 150px);
  }
  
  .holo-hero__content {
    padding: var(--holo-space-xs);
  }
}

.holo-hero__title {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--holo-space-lg);
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 3;
  letter-spacing: -0.02em;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.holo-hero__title-line {
  display: block;
  position: relative;
  font-weight: 800;
  color: #ffffff;
}

.holo-hero__title-line--accent {
  color: transparent;
  position: relative;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #aef5d7 40%, #00ff88 60%, #7cffc4 85%, #fff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  filter: drop-shadow(0 6px 18px rgba(0, 255, 136, 0.25));
}

.holo-hero__title-line--accent::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(380px, 60%);
  height: 3px;
  background: linear-gradient(90deg, rgba(0,255,136,0) 0%, rgba(0,255,136,0.9) 50%, rgba(0,255,136,0) 100%);
  border-radius: 2px;
  opacity: 0.9;
}

.holo-hero__subtitle {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: var(--holo-space-xl);
  line-height: 1.7;
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .holo-hero__title { font-size: clamp(2.25rem, 7vw, 3.25rem); }
  .holo-hero__subtitle { font-size: clamp(1rem, 3.5vw, 1.125rem); max-width: 90%; }
}

.holo-hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--holo-space-md);
  align-items: center;
  position: relative;
  z-index: 3;
}

@media (min-width: 480px) {
  .holo-hero__actions {
    flex-direction: row;
  }
}


/* Buttons */
/* Reveal on load utilities */
[data-animate] {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible[data-animate] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-animate="fade-up"] {
  transform: translateY(24px);
}
.holo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--holo-space-sm) var(--holo-space-lg);
  border: none;
  border-radius: var(--holo-radius-lg);
  font-weight: 600;
  font-size: var(--holo-font-size-base);
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
  position: relative;
  overflow: hidden;
}

.holo-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.holo-btn:active {
  transform: translateY(0) scale(0.99);
}

.holo-btn__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.holo-btn__hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.08) 25%, 
    rgba(255, 255, 255, 0.15) 50%, 
    rgba(255, 255, 255, 0.08) 75%, 
    rgba(255, 255, 255, 0.15) 100%);
  animation: hologramShift 3s ease-in-out infinite;
  border-radius: var(--holo-radius-lg);
}

.holo-btn__hologram::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 255, 255, 0.2), 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 255, 255, 0.2));
  border-radius: var(--holo-radius-lg);
  z-index: -1;
  animation: hologramGlow 2.5s ease-in-out infinite;
}

.holo-btn__scan-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(255, 255, 255, 0.2) 1px,
    rgba(255, 255, 255, 0.2) 2px
  );
  animation: scanLines 1.5s linear infinite;
  opacity: 0.7;
}

.holo-btn__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-btn__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 8s linear infinite;
}

.holo-btn__hexagon--inner {
  width: 60%;
  height: 60%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  animation-direction: reverse;
  animation-duration: 6s;
}

.holo-btn__hexagon--small {
  width: 40%;
  height: 40%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  animation-duration: 4s;
}

.holo-btn__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-btn__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.6;
  animation: lineFlow 3s ease-in-out infinite;
}

.holo-btn__line--horizontal {
  width: 60%;
  height: 1px;
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.holo-btn__line--vertical {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 30%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation-delay: 1s;
}

.holo-btn__line--diagonal {
  width: 40%;
  height: 1px;
  top: 60%;
  left: 30%;
  transform: rotate(45deg);
  animation-delay: 2s;
}

.holo-btn__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-btn__dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 0.8;
  animation: dotPulse 2s ease-in-out infinite;
}

.holo-btn__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-btn__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 0.5s;
}

.holo-btn__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 1s;
}

.holo-btn__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 1.5s;
}

.holo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--holo-transition-slow);
}

.holo-btn:hover::before {
  left: 100%;
}

.holo-btn--primary {
  background: linear-gradient(135deg, rgba(0,255,136,0.15), rgba(0,255,136,0.35));
  color: #FFFFFF;
  box-shadow: 0 0 0 0 rgba(0,255,136,0.0);
  font-weight: 700;
  border: 2px solid rgba(0, 255, 136, 0.28);
}

.holo-btn--primary:hover {
  box-shadow: 0 0 0 2px rgba(0,255,136,0.35), 0 12px 36px rgba(0,255,136,0.25);
}

.holo-btn--secondary {
  background: rgba(0, 0, 0, 0.2);
  color: #C6FFE7;
  border: 2px solid rgba(0, 255, 136, 0.35);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.holo-btn--secondary:hover {
  background: rgba(0,255,136,0.08);
  color: #FFFFFF;
  box-shadow: 0 12px 36px rgba(0,255,136,0.18);
}

.holo-btn--large {
  padding: var(--holo-space-md) var(--holo-space-xl);
  font-size: var(--holo-font-size-lg);
}

.holo-btn--full {
  width: 100%;
}

/* Section Headers */
.holo-section-header {
  text-align: center;
  margin-bottom: var(--holo-space-2xl);
}

.holo-section-header__title {
  font-size: var(--holo-font-size-3xl);
  font-weight: 700;
  color: var(--holo-color-text);
  margin-bottom: var(--holo-space-md);
  opacity: 0.9;
}

.holo-section-header__subtitle {
  font-size: var(--holo-font-size-lg);
  color: var(--holo-color-secondary);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

/* Services Section */
.holo-services {
  padding: var(--holo-space-3xl) 0;
  background: var(--holo-color-background);
  position: relative;
  overflow: hidden;
}

.holo-services__animation { display: none; }

.holo-services__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-services__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.03), rgba(255, 165, 0, 0.01));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 25s linear infinite;
}

.holo-services__hexagon--inner {
  width: min(40vw, 350px);
  height: min(40vw, 350px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  animation-direction: reverse;
  animation-duration: 20s;
}

.holo-services__hexagon--small {
  width: min(25vw, 200px);
  height: min(25vw, 200px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.025));
  animation-duration: 15s;
}

.holo-services__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-services__line { display: none; }

.holo-services__line--horizontal {
  width: 70%;
  height: 1px;
  top: 30%;
  left: 15%;
  animation-delay: 0s;
}

.holo-services__line--vertical {
  width: 1px;
  height: 70%;
  top: 15%;
  left: 30%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 2s;
}

.holo-services__line--diagonal {
  width: 50%;
  height: 1px;
  top: 60%;
  left: 25%;
  transform: rotate(45deg);
  animation-delay: 4s;
}

.holo-services__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-services__dot { display: none; }

.holo-services__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-services__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.holo-services__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.holo-services__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.holo-services__dot:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 0.5s;
}

.holo-services__dot:nth-child(6) {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.holo-services__dot:nth-child(7) {
  top: 10%;
  left: 50%;
  animation-delay: 2.5s;
}

.holo-services__dot:nth-child(8) {
  bottom: 10%;
  left: 50%;
  animation-delay: 3.5s;
}

.holo-services__grid {
  display: grid; 
  grid-template-columns: 1fr;
  gap: var(--holo-space-lg);
}

@media (min-width: 768px) {
  .holo-services__grid {
  grid-template-columns: repeat(2, 1fr); 
  }
}

@media (min-width: 1024px) {
  .holo-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.holo-service-card {
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.9) 0%, 
    rgba(40, 40, 40, 0.8) 50%, 
    rgba(26, 26, 26, 0.9) 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--holo-radius-xl);
  padding: var(--holo-space-xl);
  text-align: center;
  transition: none;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.holo-service-card:hover {
  transform: none;
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.holo-service-card__animation { display: none; }

.holo-service-card__hologram { display: none; }

.holo-service-card__hologram::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 0.3), 
    rgba(255, 165, 0, 0.2), 
    rgba(255, 215, 0, 0.3), 
    rgba(255, 165, 0, 0.2));
  border-radius: var(--holo-radius-xl);
  z-index: -1;
  animation: hologramGlow 3s ease-in-out infinite;
}

.holo-service-card__scan-lines { display: none; }

.holo-service-card__geometric { display: none; }

.holo-service-card__hexagon { display: none; }

.holo-service-card__hexagon--inner { display: none; }

.holo-service-card__hexagon--small { display: none; }

.holo-service-card__lines { display: none; }

.holo-service-card__line { display: none; }

.holo-service-card__line--horizontal {
  width: 50%;
  height: 1px;
  top: 30%;
  left: 25%;
  animation-delay: 0s;
}

.holo-service-card__line--vertical {
  width: 1px;
  height: 50%;
  top: 25%;
  left: 30%;
  background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  animation-delay: 1.5s;
}

.holo-service-card__line--diagonal {
  width: 35%;
  height: 1px;
  top: 65%;
  left: 32%;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.holo-service-card__dots { display: none; }

.holo-service-card__dot { display: none; }

.holo-service-card__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-service-card__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 0.7s;
}

.holo-service-card__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 1.4s;
}

.holo-service-card__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 2.1s;
}

/* Нові анімації для карток сервісів */
.holo-service-card__pulse-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.holo-service-card__pulse-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: pulseWave 3s ease-out infinite;
}

.holo-service-card__pulse-wave:nth-child(1) {
  width: 60%;
  height: 60%;
  animation-delay: 0s;
}

.holo-service-card__pulse-wave:nth-child(2) {
  width: 80%;
  height: 80%;
  animation-delay: 1s;
}

.holo-service-card__pulse-wave:nth-child(3) {
  width: 100%;
  height: 100%;
  animation-delay: 2s;
}

.holo-service-card__floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-service-card__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 165, 0, 0.4) 100%);
  border-radius: 50%;
  animation: floatParticle 4s ease-in-out infinite;
}

.holo-service-card__particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.holo-service-card__particle:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.8s;
}

.holo-service-card__particle:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 1.6s;
}

.holo-service-card__particle:nth-child(4) {
  bottom: 35%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-service-card__particle:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 3.2s;
}

.holo-service-card__particle:nth-child(6) {
  top: 60%;
  right: 10%;
  animation-delay: 0.4s;
}

.holo-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: none; opacity: 0; }

.holo-service-card:hover::before {
  opacity: 0.05;
}

.holo-service-card:hover { transform: none; box-shadow: inherit; border-color: inherit; }

.holo-service-card__icon { width: 96px; height: 96px; margin: 0 auto var(--holo-space-lg); display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; transition: none; }

/* Larger SVG inside icon */
.holo-service-card__icon svg { width: 56px; height: 56px; }

.holo-service-card:hover .holo-service-card__icon { transform: none; box-shadow: none; }

.holo-service-card__title { font-size: var(--holo-font-size-xl); font-weight: 700; color: #FFFFFF; margin-bottom: var(--holo-space-md); opacity: 0.95; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); transition: none; }

.holo-service-card:hover .holo-service-card__title { color: #FFFFFF; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); }

.holo-service-card__description { color: rgba(255, 255, 255, 0.85); line-height: 1.6; opacity: 0.9; transition: none; }

.holo-service-card:hover .holo-service-card__description { color: rgba(255, 255, 255, 0.85); opacity: 1; }

/* Case Study Section */
.holo-case-study {
  padding: var(--holo-space-3xl) 0;
  background: linear-gradient(135deg, var(--holo-color-text) 0%, var(--holo-color-primary) 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.holo-case-study__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
}

.holo-case-study__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-case-study__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 22s linear infinite;
}

.holo-case-study__hexagon--inner {
  width: min(35vw, 300px);
  height: min(35vw, 300px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.03));
  animation-direction: reverse;
  animation-duration: 18s;
}

.holo-case-study__hexagon--small {
  width: min(20vw, 150px);
  height: min(20vw, 150px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.06), rgba(255, 165, 0, 0.04));
  animation-duration: 14s;
}

.holo-case-study__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-case-study__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.1;
  animation: lineFlow 8s ease-in-out infinite;
}

.holo-case-study__line--horizontal {
  width: 60%;
  height: 1px;
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.holo-case-study__line--vertical {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 25%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 1.5s;
}

.holo-case-study__line--diagonal {
  width: 45%;
  height: 1px;
  top: 70%;
  left: 27%;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.holo-case-study__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-case-study__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-case-study__dot:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.holo-case-study__dot:nth-child(2) {
  top: 15%;
  right: 15%;
  animation-delay: 0.8s;
}

.holo-case-study__dot:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 1.6s;
}

.holo-case-study__dot:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-case-study__dot:nth-child(5) {
  top: 50%;
  left: 8%;
  animation-delay: 0.4s;
}

.holo-case-study__dot:nth-child(6) {
  top: 50%;
  right: 8%;
  animation-delay: 1.2s;
}

.holo-case-study__dot:nth-child(7) {
  top: 8%;
  left: 50%;
  animation-delay: 2s;
}

.holo-case-study__dot:nth-child(8) {
  bottom: 8%;
  left: 50%;
  animation-delay: 2.8s;
}

.holo-case-study .holo-section-header__title {
  color: #FFFFFF;
  opacity: 1;
}

.holo-case-study .holo-section-header__subtitle {
  color: #FFFFFF;
  opacity: 0.9;
}

.holo-case-study__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--holo-space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .holo-case-study__content {
    grid-template-columns: 1fr 1fr;
  }
}

.holo-case-study__client {
  font-size: var(--holo-font-size-2xl);
  font-weight: 600;
  color: var(--holo-color-secondary);
  margin-bottom: var(--holo-space-md);
}

.holo-case-study__description {
  font-size: var(--holo-font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--holo-space-xl);
  color: #FFFFFF;
}

.holo-case-study__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--holo-space-lg);
}

.holo-metric {
  text-align: center;
}

.holo-metric__value {
  display: block;
  font-size: var(--holo-font-size-2xl);
  font-weight: 700;
  color: var(--holo-color-accent);
}

.holo-metric__label {
  font-size: var(--holo-font-size-sm);
  color: #FFFFFF;
  opacity: 0.8;
}

.holo-case-study__visual {
  position: relative;
}

.holo-case-study__image {
  border-radius: var(--holo-radius-xl);
  overflow: hidden;
  box-shadow: var(--holo-shadow-lg);
  transition: var(--holo-transition-base);
}

.holo-case-study__image:hover {
  transform: scale(1.02);
  box-shadow: var(--holo-shadow-glow-accent), var(--holo-shadow-lg);
}

.holo-placeholder-image {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.holo-placeholder-image__content {
  width: 80%;
}

.holo-placeholder-image__line {
  height: 6px;
  background: rgba(248, 249, 250, 0.8);
  margin: var(--holo-space-md) 0;
  border-radius: var(--holo-radius-sm);
  animation: holoScan 4s ease-in-out infinite;
}

.holo-placeholder-image__line:nth-child(2) {
  animation-delay: 1.5s;
}

.holo-placeholder-image__line:nth-child(3) {
  animation-delay: 3s;
}

/* Нова анімація для case study як у картках services */
.holo-case-study__animation-container {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(40, 40, 40, 0.8) 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--holo-radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.holo-case-study__animation-container:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 215, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.1);
}

.holo-case-study__hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 0.1) 0%, 
    rgba(255, 165, 0, 0.05) 25%, 
    rgba(255, 215, 0, 0.1) 50%, 
    rgba(255, 165, 0, 0.05) 75%, 
    rgba(255, 215, 0, 0.1) 100%);
  animation: hologramShift 4s ease-in-out infinite;
  border-radius: var(--holo-radius-xl);
}

.holo-case-study__hologram::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 0.3), 
    rgba(255, 165, 0, 0.2), 
    rgba(255, 215, 0, 0.3), 
    rgba(255, 165, 0, 0.2));
  border-radius: var(--holo-radius-xl);
  z-index: -1;
  animation: hologramGlow 3s ease-in-out infinite;
}

.holo-case-study__scan-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 215, 0, 0.1) 2px,
    rgba(255, 215, 0, 0.1) 4px
  );
  animation: scanLines 2s linear infinite;
  opacity: 0.6;
}

.holo-case-study__geometric-visual {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-case-study__hexagon-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 300px);
  height: min(60vw, 300px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 20s linear infinite;
}

.holo-case-study__hexagon-visual--inner {
  width: min(45vw, 225px);
  height: min(45vw, 225px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
  animation-direction: reverse;
  animation-duration: 15s;
}

.holo-case-study__hexagon-visual--small {
  width: min(30vw, 150px);
  height: min(30vw, 150px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  animation-duration: 10s;
}

.holo-case-study__lines-visual {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-case-study__line-visual {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.3;
  animation: lineFlow 8s ease-in-out infinite;
}

.holo-case-study__line-visual--horizontal {
  width: 60%;
  height: 2px;
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.holo-case-study__line-visual--vertical {
  width: 2px;
  height: 60%;
  top: 20%;
  left: 30%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 2s;
}

.holo-case-study__line-visual--diagonal {
  width: 50%;
  height: 2px;
  top: 60%;
  left: 25%;
  transform: rotate(45deg);
  animation-delay: 4s;
}

.holo-case-study__dots-visual {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-case-study__dot-visual {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.4;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-case-study__dot-visual:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-case-study__dot-visual:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.holo-case-study__dot-visual:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.holo-case-study__dot-visual:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.holo-case-study__pulse-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.holo-case-study__pulse-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: pulseWave 3s ease-out infinite;
}

.holo-case-study__pulse-wave:nth-child(1) {
  width: 60%;
  height: 60%;
  animation-delay: 0s;
}

.holo-case-study__pulse-wave:nth-child(2) {
  width: 80%;
  height: 80%;
  animation-delay: 1s;
}

.holo-case-study__pulse-wave:nth-child(3) {
  width: 100%;
  height: 100%;
  animation-delay: 2s;
}

.holo-case-study__floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-case-study__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 165, 0, 0.4) 100%);
  border-radius: 50%;
  animation: floatParticle 4s ease-in-out infinite;
}

.holo-case-study__particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.holo-case-study__particle:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.8s;
}

.holo-case-study__particle:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 1.6s;
}

.holo-case-study__particle:nth-child(4) {
  bottom: 35%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-case-study__particle:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 3.2s;
}

.holo-case-study__particle:nth-child(6) {
  top: 60%;
  right: 10%;
  animation-delay: 0.4s;
}

/* Case - Bento Grid */
.holo-case {
  position: relative;
  padding: var(--holo-space-3xl) 0;
  background: linear-gradient(180deg, #050507 0%, #000 60%);
}

.holo-case__decor { position: absolute; inset: 0; pointer-events: none; }
.holo-case__gridlines {
  position: absolute; inset: -10%;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  mask-image: radial-gradient(closest-side, rgba(0,0,0,0.9), rgba(0,0,0,0) 80%);
}
.holo-case__particles::before { content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 15% 20%, rgba(124,58,237,0.08), transparent 60%),
              radial-gradient(500px 250px at 85% 80%, rgba(0,255,136,0.08), transparent 60%);
}

.case-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: var(--holo-space-md);
  perspective: 1200px;
}

.case-item {
  position: relative;
  border-radius: var(--holo-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transform-style: preserve-3d;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1), box-shadow 400ms ease, border-color 300ms ease, opacity 500ms ease, clip-path 700ms ease;
  opacity: 0; transform: translateY(24px) scale(0.98);
}
.case-item.is-visible { opacity: 1; transform: none; }

.case-item--hero { grid-column: span 3; grid-row: span 2; }
.case-item--tall { grid-column: span 2; grid-row: span 2; }
.case-item--wide { grid-column: span 3; grid-row: span 2; }

@media (max-width: 1024px) {
  .case-bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 120px; }
  .case-item--hero { grid-column: span 4; grid-row: span 2; }
  .case-item--tall { grid-column: span 2; grid-row: span 2; }
  .case-item--wide { grid-column: span 4; grid-row: span 2; }
}
@media (max-width: 640px) {
  .case-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  .case-item--hero { grid-column: span 2; grid-row: span 2; }
  .case-item--tall { grid-column: span 2; grid-row: span 2; }
  .case-item--wide { grid-column: span 2; grid-row: span 2; }
}

.case-item__media {
  position: absolute; inset: 0; background-size: cover; background-position: center; filter: saturate(1.1) brightness(0.9);
}
.case-item__layer--grid { position: absolute; inset: 0; mix-blend-mode: overlay; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px; }
.case-item__layer--glow { position: absolute; inset: -20%; filter: blur(24px); background: radial-gradient(circle at 40% 35%, rgba(124,58,237,0.35), transparent 60%), radial-gradient(circle at 70% 60%, rgba(0,255,136,0.3), transparent 60%); }
.case-item__layer--scan { position: absolute; inset: 0; background: repeating-linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.05) 2px, transparent 3px, transparent 6px); opacity: 0.35; }

.case-item__header { position: relative; z-index: 2; padding: var(--holo-space-md) var(--holo-space-lg); color: #fff; text-shadow: 0 6px 24px rgba(0,0,0,0.45); overflow: hidden; }
.case-item__title { font-size: clamp(0.95rem, 1.6vw, 1.5rem); font-weight: 900; letter-spacing: -0.01em; margin-bottom: .18rem; line-height: 1.15; }
.case-item__subtitle { opacity: .92; font-size: clamp(.78rem, 1.1vw, .95rem); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.case-item__stats { position: absolute; left: var(--holo-space-lg); bottom: var(--holo-space-lg); display: flex; gap: var(--holo-space-md); z-index: 2; }
.case-item__stats li { list-style: none; font-size: 0.9rem; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,0.12); padding: .4rem .6rem; border-radius: 10px; }
.case-item__stats li span { color: var(--holo-color-secondary); font-weight: 800; margin-right: .3rem; }

.case-item::before, .case-item::after { content: ''; position: absolute; inset: 0; pointer-events: none; transition: opacity 400ms ease; }
.case-item::before { border: 1px solid rgba(255,215,0,0.25); border-radius: inherit; opacity: .5; }
.case-item::after { background: radial-gradient(600px 300px at var(--mx,50%) var(--my,50%), rgba(124,58,237,0.25), transparent 60%), radial-gradient(600px 300px at calc(var(--mx,50%) + 20%) calc(var(--my,50%) + 10%), rgba(0,255,136,0.2), transparent 60%); opacity: 0; }

.case-item:hover { transform: translateZ(24px) rotateX(6deg) rotateY(-6deg); box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 60px rgba(124,58,237,.2); border-color: rgba(255,215,0,0.35); }
.case-item:hover::after { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .case-item, .case-item::after, .case-item__layer--scan, .case-item__layer--glow { animation: none; transition: none; }
}

/* Tech Stack Section */
.holo-tech-stack {
  padding: var(--holo-space-3xl) 0;
  background: var(--holo-color-background);
  position: relative;
  overflow: hidden;
}

.holo-tech-stack__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
}

.holo-tech-stack__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-tech-stack__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.03), rgba(255, 165, 0, 0.01));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 25s linear infinite;
}

.holo-tech-stack__hexagon--inner {
  width: min(40vw, 350px);
  height: min(40vw, 350px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  animation-direction: reverse;
  animation-duration: 20s;
}

.holo-tech-stack__hexagon--small {
  width: min(25vw, 200px);
  height: min(25vw, 200px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.025));
  animation-duration: 15s;
}



.holo-tech-stack__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-tech-stack__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.15;
  animation: dotPulse 5s ease-in-out infinite;
}

.holo-tech-stack__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-tech-stack__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.holo-tech-stack__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.holo-tech-stack__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.holo-tech-stack__dot:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 0.5s;
}

.holo-tech-stack__dot:nth-child(6) {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.holo-tech-stack__dot:nth-child(7) {
  top: 10%;
  left: 50%;
  animation-delay: 2.5s;
}

.holo-tech-stack__dot:nth-child(8) {
  bottom: 10%;
  left: 50%;
  animation-delay: 3.5s;
}

.holo-tech-stack__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--holo-space-lg);
}

@media (min-width: 768px) {
  .holo-tech-stack__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.holo-tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--holo-space-sm);
  padding: var(--holo-space-lg);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(40, 40, 40, 0.8) 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--holo-radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.holo-tech-item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 215, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.1);
}

.holo-tech-item__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--holo-color-secondary), var(--holo-color-accent));
  color: var(--holo-color-text);
  border-radius: var(--holo-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--holo-font-size-sm);
}

.holo-tech-item__name {
  font-size: var(--holo-font-size-sm);
  font-weight: 500;
  color: #FFFFFF;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.holo-tech-item:hover .holo-tech-item__name {
  color: #FFD700;
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Анімаційні елементи для tech-item з hero */
.holo-tech-item__animation { display: none; }
.holo-tech-item:hover { transform: none; border-color: rgba(255, 215, 0, 0.4); }
.holo-tech-item__geometric, .holo-tech-item__lines, .holo-tech-item__dots { display: none; }

.holo-tech-item__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 120px);
  height: min(60vw, 120px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 20s linear infinite;
}

.holo-tech-item__hexagon--inner {
  width: min(45vw, 90px);
  height: min(45vw, 90px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
  animation-direction: reverse;
  animation-duration: 15s;
}

.holo-tech-item__hexagon--small {
  width: min(30vw, 60px);
  height: min(30vw, 60px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  animation-duration: 10s;
}


.holo-tech-item__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-tech-item__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.4;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-tech-item__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-tech-item__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.holo-tech-item__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.holo-tech-item__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}


/* Testimonials Section */
.holo-testimonials {
  padding: var(--holo-space-3xl) 0;
  background: radial-gradient(900px 600px at 15% 10%, rgba(124, 58, 237, 0.25), rgba(124, 58, 237, 0) 60%),
              radial-gradient(800px 500px at 110% 90%, rgba(88, 28, 135, 0.22), rgba(88, 28, 135, 0) 55%),
              linear-gradient(180deg, #0b0a12 0%, #06060a 65%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.holo-testimonials__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
}

.holo-testimonials__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-testimonials__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 22s linear infinite;
}

.holo-testimonials__hexagon--inner {
  width: min(35vw, 300px);
  height: min(35vw, 300px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.03));
  animation-direction: reverse;
  animation-duration: 18s;
}

.holo-testimonials__hexagon--small {
  width: min(20vw, 150px);
  height: min(20vw, 150px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.06), rgba(255, 165, 0, 0.04));
  animation-duration: 14s;
}

.holo-testimonials__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-testimonials__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.1;
  animation: lineFlow 8s ease-in-out infinite;
}

.holo-testimonials__line--horizontal {
  width: 60%;
  height: 1px;
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.holo-testimonials__line--vertical {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 25%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 1.5s;
}

.holo-testimonials__line--diagonal {
  width: 45%;
  height: 1px;
  top: 70%;
  left: 27%;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.holo-testimonials__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-testimonials__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-testimonials__dot:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.holo-testimonials__dot:nth-child(2) {
  top: 15%;
  right: 15%;
  animation-delay: 0.8s;
}

.holo-testimonials__dot:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 1.6s;
}

.holo-testimonials__dot:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-testimonials__dot:nth-child(5) {
  top: 50%;
  left: 8%;
  animation-delay: 0.4s;
}

.holo-testimonials__dot:nth-child(6) {
  top: 50%;
  right: 8%;
  animation-delay: 1.2s;
}

.holo-testimonials__dot:nth-child(7) {
  top: 8%;
  left: 50%;
  animation-delay: 2s;
}

.holo-testimonials__dot:nth-child(8) {
  bottom: 8%;
  left: 50%;
  animation-delay: 2.8s;
}

.holo-testimonials .holo-section-header__title {
  color: #FFFFFF;
  opacity: 1;
}

.holo-testimonials .holo-section-header__subtitle {
  color: #FFFFFF;
  opacity: 0.9;
}

.holo-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--holo-space-xl);
}

@media (min-width: 768px) {
  .holo-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.holo-testimonial {
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--holo-radius-xl);
  padding: var(--holo-space-xl);
  transition: var(--holo-transition-base);
}

.holo-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--holo-shadow-glow);
  border-color: var(--holo-color-secondary);
}

.holo-testimonial__quote {
  font-size: var(--holo-font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--holo-space-lg);
  font-style: italic;
}

.holo-testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--holo-space-md);
}

.holo-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--holo-color-secondary), var(--holo-color-accent));
  color: var(--holo-color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--holo-font-size-sm);
}

.holo-testimonial__name {
  font-weight: 600;
  color: #FFFFFF;
}

.holo-testimonial__title {
  font-size: var(--holo-font-size-sm);
  color: #FFFFFF;
  opacity: 0.8;
}

/* Metrics Section */
.holo-metrics {
  padding: var(--holo-space-3xl) 0;
  background: var(--holo-color-background);
  position: relative;
  overflow: hidden;
}

.holo-metrics__animation { display: none; }
.holo-metrics__geometric, .holo-metrics__lines, .holo-metrics__dots { display: none; }
.holo-metrics__line, .holo-metrics__dot { animation: none; }

.holo-metrics__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.03), rgba(255, 165, 0, 0.01));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 25s linear infinite;
}

.holo-metrics__hexagon--inner {
  width: min(40vw, 350px);
  height: min(40vw, 350px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  animation-direction: reverse;
  animation-duration: 20s;
}

.holo-metrics__hexagon--small {
  width: min(25vw, 200px);
  height: min(25vw, 200px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.025));
  animation-duration: 15s;
}

.holo-metrics__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-metrics__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.08;
  animation: lineFlow 10s ease-in-out infinite;
}

.holo-metrics__line--horizontal {
  width: 70%;
  height: 1px;
  top: 30%;
  left: 15%;
  animation-delay: 0s;
}

.holo-metrics__line--vertical {
  width: 1px;
  height: 70%;
  top: 15%;
  left: 30%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 2s;
}

.holo-metrics__line--diagonal {
  width: 50%;
  height: 1px;
  top: 60%;
  left: 25%;
  transform: rotate(45deg);
  animation-delay: 4s;
}

.holo-metrics__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-metrics__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.15;
  animation: dotPulse 5s ease-in-out infinite;
}

.holo-metrics__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-metrics__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.holo-metrics__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.holo-metrics__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.holo-metrics__dot:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 0.5s;
}

.holo-metrics__dot:nth-child(6) {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.holo-metrics__dot:nth-child(7) {
  top: 10%;
  left: 50%;
  animation-delay: 2.5s;
}

.holo-metrics__dot:nth-child(8) {
  bottom: 10%;
  left: 50%;
  animation-delay: 3.5s;
}

.holo-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--holo-space-xl);
}

@media (min-width: 768px) {
  .holo-metrics__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.holo-metric-card {
  text-align: center;
  padding: var(--holo-space-xl);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(40, 40, 40, 0.8) 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--holo-radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.holo-metric-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 215, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.1);
}

.holo-metric-card__animation { display: none; }

.holo-metric-card__hologram { display: none; }

.holo-metric-card__hologram::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 0.3), 
    rgba(255, 165, 0, 0.2), 
    rgba(255, 215, 0, 0.3), 
    rgba(255, 165, 0, 0.2));
  border-radius: var(--holo-radius-xl);
  z-index: -1;
  animation: hologramGlow 3s ease-in-out infinite;
}

.holo-metric-card__scan-lines { display: none; }

.holo-metric-card__geometric { display: none; }

.holo-metric-card__hexagon { display: none; }

.holo-metric-card__hexagon--inner { display: none; }

.holo-metric-card__hexagon--small { display: none; }

.holo-metric-card__lines { display: none; }

.holo-metric-card__line { display: none; }

.holo-metric-card__line--horizontal {
  width: 50%;
  height: 1px;
  top: 30%;
  left: 25%;
  animation-delay: 0s;
}

.holo-metric-card__line--vertical {
  width: 1px;
  height: 50%;
  top: 25%;
  left: 30%;
  background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  animation-delay: 1.5s;
}

.holo-metric-card__line--diagonal {
  width: 35%;
  height: 1px;
  top: 65%;
  left: 32%;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.holo-metric-card__dots { display: none; }

.holo-metric-card__dot { display: none; }

.holo-metric-card__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-metric-card__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 0.7s;
}

.holo-metric-card__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 1.4s;
}

.holo-metric-card__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 2.1s;
}

/* Нові анімації для карток сервісів */
.holo-service-card__pulse-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.holo-service-card__pulse-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  animation: pulseWave 3s ease-out infinite;
}

.holo-service-card__pulse-wave:nth-child(1) {
  width: 60%;
  height: 60%;
  animation-delay: 0s;
}

.holo-service-card__pulse-wave:nth-child(2) {
  width: 80%;
  height: 80%;
  animation-delay: 1s;
}

.holo-service-card__pulse-wave:nth-child(3) {
  width: 100%;
  height: 100%;
  animation-delay: 2s;
}

.holo-service-card__floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-service-card__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, rgba(255, 165, 0, 0.4) 100%);
  border-radius: 50%;
  animation: floatParticle 4s ease-in-out infinite;
}

.holo-service-card__particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.holo-service-card__particle:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.8s;
}

.holo-service-card__particle:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 1.6s;
}

.holo-service-card__particle:nth-child(4) {
  bottom: 35%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-service-card__particle:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 3.2s;
}

.holo-service-card__particle:nth-child(6) {
  top: 60%;
  right: 10%;
  animation-delay: 0.4s;
}

.holo-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: none; opacity: 0; }

.holo-service-card:hover::before {
  opacity: 0.05;
}

.holo-service-card:hover { transform: none; box-shadow: inherit; border-color: inherit; }

.holo-service-card__icon { width: 96px; height: 96px; margin: 0 auto var(--holo-space-lg); display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; transition: none; }

/* Larger SVG inside icon */
.holo-service-card__icon svg { width: 56px; height: 56px; }

.holo-service-card:hover .holo-service-card__icon { transform: none; box-shadow: none; }

.holo-service-card__title { font-size: var(--holo-font-size-xl); font-weight: 700; color: #FFFFFF; margin-bottom: var(--holo-space-md); opacity: 0.95; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); transition: none; }

.holo-service-card:hover .holo-service-card__title { color: #FFFFFF; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); }

.holo-service-card__description { color: rgba(255, 255, 255, 0.85); line-height: 1.6; opacity: 0.9; transition: none; }

.holo-service-card:hover .holo-service-card__description { color: rgba(255, 255, 255, 0.85); opacity: 1; }

/* Process Section */
.holo-approach {
  padding: var(--holo-space-3xl) 0;
  background: radial-gradient(900px 600px at 15% 10%, rgba(124, 58, 237, 0.25), rgba(124, 58, 237, 0) 60%),
              radial-gradient(800px 500px at 110% 90%, rgba(88, 28, 135, 0.22), rgba(88, 28, 135, 0) 55%),
              linear-gradient(180deg, #0b0a12 0%, #06060a 65%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.holo-approach__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
}

.holo-approach__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-approach__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 22s linear infinite;
}

.holo-approach__hexagon--inner {
  width: min(35vw, 300px);
  height: min(35vw, 300px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.03));
  animation-direction: reverse;
  animation-duration: 18s;
}

.holo-approach__hexagon--small {
  width: min(20vw, 150px);
  height: min(20vw, 150px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.06), rgba(255, 165, 0, 0.04));
  animation-duration: 14s;
}

.holo-approach__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-approach__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.1;
  animation: lineFlow 8s ease-in-out infinite;
}

.holo-approach__line--horizontal {
  width: 60%;
  height: 1px;
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.holo-approach__line--vertical {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 25%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 1.5s;
}

.holo-approach__line--diagonal {
  width: 45%;
  height: 1px;
  top: 70%;
  left: 27%;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.holo-approach__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-approach__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-approach__dot:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.holo-approach__dot:nth-child(2) {
  top: 15%;
  right: 15%;
  animation-delay: 0.8s;
}

.holo-approach__dot:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 1.6s;
}

.holo-approach__dot:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-approach__dot:nth-child(5) {
  top: 50%;
  left: 8%;
  animation-delay: 0.4s;
}

.holo-approach__dot:nth-child(6) {
  top: 50%;
  right: 8%;
  animation-delay: 1.2s;
}

.holo-approach__dot:nth-child(7) {
  top: 8%;
  left: 50%;
  animation-delay: 2s;
}

.holo-approach__dot:nth-child(8) {
  bottom: 8%;
  left: 50%;
  animation-delay: 2.8s;
}

.holo-approach .holo-section-header__title {
  color: #FFFFFF;
  opacity: 1;
}

.holo-approach .holo-section-header__subtitle {
  color: #FFFFFF;
  opacity: 0.9;
}

.holo-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--holo-space-xl);
}

@media (min-width: 768px) {
  .holo-process {
    grid-template-columns: repeat(5, 1fr);
  }
}

.holo-process__step {
  text-align: center;
  position: relative;
}

.holo-process__number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--holo-color-secondary), var(--holo-color-accent));
  color: var(--holo-color-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--holo-font-size-lg);
  margin: 0 auto var(--holo-space-lg);
  transition: var(--holo-transition-base);
}

.holo-process__step:hover .holo-process__number {
  transform: scale(1.1);
  box-shadow: var(--holo-shadow-glow);
}

.holo-process__title {
  font-size: var(--holo-font-size-xl);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--holo-space-md);
}

.holo-process__description {
  color: #FFFFFF;
  line-height: 1.6;
  opacity: 0.9;
}

/* Industries Section */
.holo-industries {
  padding: var(--holo-space-3xl) 0;
  background: var(--holo-color-background);
  position: relative;
  overflow: hidden;
}

.holo-industries__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
}

.holo-industries__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-industries__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.03), rgba(255, 165, 0, 0.01));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 25s linear infinite;
}

.holo-industries__hexagon--inner {
  width: min(40vw, 350px);
  height: min(40vw, 350px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  animation-direction: reverse;
  animation-duration: 20s;
}

.holo-industries__hexagon--small {
  width: min(25vw, 200px);
  height: min(25vw, 200px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.025));
  animation-duration: 15s;
}

.holo-industries__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-industries__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.08;
  animation: lineFlow 10s ease-in-out infinite;
}

.holo-industries__line--horizontal {
  width: 70%;
  height: 1px;
  top: 30%;
  left: 15%;
  animation-delay: 0s;
}

.holo-industries__line--vertical {
  width: 1px;
  height: 70%;
  top: 15%;
  left: 30%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 2s;
}

.holo-industries__line--diagonal {
  width: 50%;
  height: 1px;
  top: 60%;
  left: 25%;
  transform: rotate(45deg);
  animation-delay: 4s;
}

.holo-industries__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-industries__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.15;
  animation: dotPulse 5s ease-in-out infinite;
}

.holo-industries__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-industries__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.holo-industries__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.holo-industries__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.holo-industries__dot:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 0.5s;
}

.holo-industries__dot:nth-child(6) {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.holo-industries__dot:nth-child(7) {
  top: 10%;
  left: 50%;
  animation-delay: 2.5s;
}

.holo-industries__dot:nth-child(8) {
  bottom: 10%;
  left: 50%;
  animation-delay: 3.5s;
}

.holo-industries__grid {
  display: flex; 
  flex-wrap: wrap; 
  gap: var(--holo-space-md);
  justify-content: center;
}

.holo-industry-chip {
  padding: var(--holo-space-sm) var(--holo-space-lg);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(40, 40, 40, 0.8) 100%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--holo-radius-2xl);
  color: #FFFFFF;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  opacity: 0.9;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 215, 0, 0.2);
}

.holo-industry-chip:hover {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.95) 0%, rgba(60, 60, 60, 0.9) 100%);
  color: #FFD700;
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 215, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Contact Section */
.holo-contact {
  padding: var(--holo-space-3xl) 0;
  background: radial-gradient(900px 600px at 15% 10%, rgba(124, 58, 237, 0.25), rgba(124, 58, 237, 0) 60%),
              radial-gradient(800px 500px at 110% 90%, rgba(88, 28, 135, 0.22), rgba(88, 28, 135, 0) 55%),
              linear-gradient(180deg, #0b0a12 0%, #06060a 65%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.holo-contact__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
}

.holo-contact__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-contact__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 22s linear infinite;
}

.holo-contact__hexagon--inner {
  width: min(35vw, 300px);
  height: min(35vw, 300px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.03));
  animation-direction: reverse;
  animation-duration: 18s;
}

.holo-contact__hexagon--small {
  width: min(20vw, 150px);
  height: min(20vw, 150px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.06), rgba(255, 165, 0, 0.04));
  animation-duration: 14s;
}

.holo-contact__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-contact__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.1;
  animation: lineFlow 8s ease-in-out infinite;
}

.holo-contact__line--horizontal {
  width: 60%;
  height: 1px;
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.holo-contact__line--vertical {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 25%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 1.5s;
}

.holo-contact__line--diagonal {
  width: 45%;
  height: 1px;
  top: 70%;
  left: 27%;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.holo-contact__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-contact__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-contact__dot:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.holo-contact__dot:nth-child(2) {
  top: 15%;
  right: 15%;
  animation-delay: 0.8s;
}

.holo-contact__dot:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 1.6s;
}

.holo-contact__dot:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-contact__dot:nth-child(5) {
  top: 50%;
  left: 8%;
  animation-delay: 0.4s;
}

.holo-contact__dot:nth-child(6) {
  top: 50%;
  right: 8%;
  animation-delay: 1.2s;
}

.holo-contact__dot:nth-child(7) {
  top: 8%;
  left: 50%;
  animation-delay: 2s;
}

.holo-contact__dot:nth-child(8) {
  bottom: 8%;
  left: 50%;
  animation-delay: 2.8s;
}

.holo-contact .holo-section-header__title {
  color: #FFFFFF;
    opacity: 1;
}

.holo-contact .holo-section-header__subtitle {
  color: #FFFFFF;
  opacity: 0.9;
}

.holo-contact__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--holo-space-2xl);
}

@media (min-width: 1024px) {
  .holo-contact__content {
    grid-template-columns: 1fr 1fr;
  }
}

.holo-contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--holo-space-lg);
}

.holo-contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--holo-space-md);
}

.holo-contact__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--holo-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--holo-color-secondary);
  flex-shrink: 0;
}

.holo-contact__label {
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--holo-space-xs);
}

.holo-contact__value {
  color: #FFFFFF;
  line-height: 1.5;
  opacity: 0.9;
}

/* Form Styles */
.holo-form {
  display: flex;
  flex-direction: column;
  gap: var(--holo-space-lg);
}

.holo-form__group {
  display: flex;
  flex-direction: column;
  gap: var(--holo-space-xs);
}

.holo-form__label {
  font-weight: 500;
  color: #FFFFFF;
  font-size: var(--holo-font-size-sm);
}

.holo-form__input,
.holo-form__textarea {
  padding: var(--holo-space-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: var(--holo-radius-md);
  color: #FFFFFF;
  font-size: var(--holo-font-size-base);
  transition: var(--holo-transition-base);
}

.holo-form__input:focus,
.holo-form__textarea:focus {
  outline: none;
  border-color: var(--holo-color-secondary);
  box-shadow: var(--holo-shadow-glow);
}

.holo-form__textarea {
  resize: vertical;
  min-height: 120px;
}

/* CTA Section */
.holo-cta {
  padding: var(--holo-space-3xl) 0;
  background: linear-gradient(135deg, var(--holo-color-secondary) 0%, var(--holo-color-accent) 100%);
  color: var(--holo-color-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.holo-cta__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
}

.holo-cta__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-cta__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.05));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 22s linear infinite;
}

.holo-cta__hexagon--inner {
  width: min(35vw, 300px);
  height: min(35vw, 300px);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.06));
  animation-direction: reverse;
  animation-duration: 18s;
}

.holo-cta__hexagon--small {
  width: min(20vw, 150px);
  height: min(20vw, 150px);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.08));
  animation-duration: 14s;
}

.holo-cta__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-cta__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.3), transparent);
  opacity: 0.15;
  animation: lineFlow 8s ease-in-out infinite;
}

.holo-cta__line--horizontal {
  width: 60%;
  height: 1px;
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.holo-cta__line--vertical {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 25%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3), transparent);
  animation-delay: 1.5s;
}

.holo-cta__line--diagonal {
  width: 45%;
  height: 1px;
  top: 70%;
  left: 27%;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.holo-cta__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-cta__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  opacity: 0.3;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-cta__dot:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.holo-cta__dot:nth-child(2) {
  top: 15%;
  right: 15%;
  animation-delay: 0.8s;
}

.holo-cta__dot:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 1.6s;
}

.holo-cta__dot:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-cta__dot:nth-child(5) {
  top: 50%;
  left: 8%;
  animation-delay: 0.4s;
}

.holo-cta__dot:nth-child(6) {
  top: 50%;
  right: 8%;
  animation-delay: 1.2s;
}

.holo-cta__dot:nth-child(7) {
  top: 8%;
  left: 50%;
  animation-delay: 2s;
}

.holo-cta__dot:nth-child(8) {
  bottom: 8%;
  left: 50%;
  animation-delay: 2.8s;
}

.holo-cta__title {
  font-size: var(--holo-font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--holo-space-md);
}

.holo-cta__subtitle {
  font-size: var(--holo-font-size-lg);
  margin-bottom: var(--holo-space-xl);
  opacity: 0.9;
}

.holo-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--holo-space-md);
  justify-content: center;
  align-items: center;
}

@media (min-width: 480px) {
  .holo-cta__actions {
    flex-direction: row;
  }
}

.holo-cta .holo-btn--primary {
  background: var(--holo-color-text);
  color: var(--holo-color-background);
}

.holo-cta .holo-btn--secondary {
  background: transparent;
  color: var(--holo-color-text);
  border-color: var(--holo-color-text);
}

.holo-cta .holo-btn--secondary:hover {
  background: var(--holo-color-text);
  color: var(--holo-color-background);
}

/* Careers Section */
.holo-careers {
  padding: var(--holo-space-3xl) 0;
  background: var(--holo-color-background);
  position: relative;
  overflow: hidden;
}

.holo-careers__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
}

.holo-careers__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-careers__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60vw, 500px);
  height: min(60vw, 500px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.03), rgba(255, 165, 0, 0.01));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 25s linear infinite;
}

.holo-careers__hexagon--inner {
  width: min(40vw, 350px);
  height: min(40vw, 350px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  animation-direction: reverse;
  animation-duration: 20s;
}

.holo-careers__hexagon--small {
  width: min(25vw, 200px);
  height: min(25vw, 200px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.025));
  animation-duration: 15s;
}

.holo-careers__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-careers__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.08;
  animation: lineFlow 10s ease-in-out infinite;
}

.holo-careers__line--horizontal {
  width: 70%;
  height: 1px;
  top: 30%;
  left: 15%;
  animation-delay: 0s;
}

.holo-careers__line--vertical {
  width: 1px;
  height: 70%;
  top: 15%;
  left: 30%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 2s;
}

.holo-careers__line--diagonal {
  width: 50%;
  height: 1px;
  top: 60%;
  left: 25%;
  transform: rotate(45deg);
  animation-delay: 4s;
}

.holo-careers__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-careers__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.15;
  animation: dotPulse 5s ease-in-out infinite;
}

.holo-careers__dot:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.holo-careers__dot:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

.holo-careers__dot:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.holo-careers__dot:nth-child(4) {
  bottom: 20%;
  right: 20%;
  animation-delay: 3s;
}

.holo-careers__dot:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 0.5s;
}

.holo-careers__dot:nth-child(6) {
  top: 50%;
  right: 10%;
  animation-delay: 1.5s;
}

.holo-careers__dot:nth-child(7) {
  top: 10%;
  left: 50%;
  animation-delay: 2.5s;
}

.holo-careers__dot:nth-child(8) {
  bottom: 10%;
  left: 50%;
  animation-delay: 3.5s;
}

.holo-careers__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--holo-space-2xl);
}

@media (min-width: 768px) {
  .holo-careers__content {
    grid-template-columns: 1fr 1fr;
  }
}

.holo-careers__values-title,
.holo-careers__openings-title {
  font-size: var(--holo-font-size-xl);
  font-weight: 600;
  color: var(--holo-color-text);
  margin-bottom: var(--holo-space-lg);
  opacity: 0.9;
}

.holo-careers__values-list {
  list-style: none;
}

.holo-careers__values-list li {
  padding: var(--holo-space-sm) 0;
  color: var(--holo-color-primary);
  position: relative;
  padding-left: var(--holo-space-lg);
  opacity: 0.8;
}

.holo-careers__values-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--holo-color-secondary);
}

.holo-careers__opening {
  background: rgba(245, 245, 245, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--holo-radius-lg);
  padding: var(--holo-space-lg);
  margin-bottom: var(--holo-space-md);
  transition: var(--holo-transition-base);
}

.holo-careers__opening:hover {
  transform: translateY(-2px);
  box-shadow: var(--holo-shadow-glow);
  border-color: var(--holo-color-secondary);
}

.holo-careers__opening-title {
  font-size: var(--holo-font-size-lg);
  font-weight: 600;
  color: var(--holo-color-text);
  margin-bottom: var(--holo-space-sm);
  opacity: 0.9;
}

.holo-careers__opening-description {
  color: var(--holo-color-primary);
  line-height: 1.6;
  opacity: 0.8;
}

/* FAQ Section */
.holo-faq {
  padding: var(--holo-space-3xl) 0;
  background: radial-gradient(900px 600px at 15% 10%, rgba(124, 58, 237, 0.25), rgba(124, 58, 237, 0) 60%),
              radial-gradient(800px 500px at 110% 90%, rgba(88, 28, 135, 0.22), rgba(88, 28, 135, 0) 55%),
              linear-gradient(180deg, #0b0a12 0%, #06060a 65%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.holo-faq__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
}

.holo-faq__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-faq__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.04), rgba(255, 165, 0, 0.02));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 22s linear infinite;
}

.holo-faq__hexagon--inner {
  width: min(35vw, 300px);
  height: min(35vw, 300px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.03));
  animation-direction: reverse;
  animation-duration: 18s;
}

.holo-faq__hexagon--small {
  width: min(20vw, 150px);
  height: min(20vw, 150px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.06), rgba(255, 165, 0, 0.04));
  animation-duration: 14s;
}

.holo-faq__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-faq__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.1;
  animation: lineFlow 8s ease-in-out infinite;
}

.holo-faq__line--horizontal {
  width: 60%;
  height: 1px;
  top: 25%;
  left: 20%;
  animation-delay: 0s;
}

.holo-faq__line--vertical {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 25%;
  background: linear-gradient(180deg, transparent, var(--holo-color-secondary), transparent);
  animation-delay: 1.5s;
}

.holo-faq__line--diagonal {
  width: 45%;
  height: 1px;
  top: 70%;
  left: 27%;
  transform: rotate(45deg);
  animation-delay: 3s;
}

.holo-faq__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-faq__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holo-color-secondary);
  border-radius: 50%;
  opacity: 0.2;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-faq__dot:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.holo-faq__dot:nth-child(2) {
  top: 15%;
  right: 15%;
  animation-delay: 0.8s;
}

.holo-faq__dot:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 1.6s;
}

.holo-faq__dot:nth-child(4) {
  bottom: 15%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-faq__dot:nth-child(5) {
  top: 50%;
  left: 8%;
  animation-delay: 0.4s;
}

.holo-faq__dot:nth-child(6) {
  top: 50%;
  right: 8%;
  animation-delay: 1.2s;
}

.holo-faq__dot:nth-child(7) {
  top: 8%;
  left: 50%;
  animation-delay: 2s;
}

.holo-faq__dot:nth-child(8) {
  bottom: 8%;
  left: 50%;
  animation-delay: 2.8s;
}

.holo-faq .holo-section-header__title {
  color: #FFFFFF;
    opacity: 1;
}

.holo-faq .holo-section-header__subtitle {
  color: #FFFFFF;
  opacity: 0.9;
}

.holo-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.holo-faq__item {
  background: rgba(245, 245, 245, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--holo-radius-lg);
  margin-bottom: var(--holo-space-md);
  transition: var(--holo-transition-base);
}

.holo-faq__item:hover {
  border-color: var(--holo-color-secondary);
  box-shadow: var(--holo-shadow-glow);
}

.holo-faq__question {
  padding: var(--holo-space-lg);
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.holo-faq__question::after {
  content: '+';
  position: absolute;
  right: var(--holo-space-lg);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--holo-font-size-xl);
  color: var(--holo-color-secondary);
  transition: var(--holo-transition-base);
}

.holo-faq__item[open] .holo-faq__question::after {
  content: '−';
}

.holo-faq__answer {
  padding: 0 var(--holo-space-lg) var(--holo-space-lg);
  color: #FFFFFF;
  line-height: 1.6;
  opacity: 0.9;
}

/* Footer */
.holo-footer {
  background: radial-gradient(900px 600px at 15% 10%, rgba(124, 58, 237, 0.3), rgba(124, 58, 237, 0) 60%),
              radial-gradient(800px 500px at 110% 90%, rgba(88, 28, 135, 0.25), rgba(88, 28, 135, 0) 55%),
              linear-gradient(180deg, #0b0a12 0%, #080818 65%);
  color: #FFFFFF;
  padding: var(--holo-space-2xl) 0 var(--holo-space-lg);
  position: relative;
  overflow: hidden;
}

.holo-footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--holo-space-xl);
  margin-bottom: var(--holo-space-xl);
}

@media (min-width: 768px) {
  .holo-footer__content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.holo-footer__brand {
  max-width: 300px;
}

.holo-logo--footer {
  margin-bottom: var(--holo-space-md);
}

.holo-footer__description {
  color: #FFFFFF;
  line-height: 1.6;
  opacity: 0.9;
}

.holo-footer__title {
  font-size: var(--holo-font-size-lg);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--holo-space-md);
}

.holo-footer__list {
  list-style: none;
}

.holo-footer__list li {
  margin-bottom: var(--holo-space-sm);
}

.holo-footer__link {
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--holo-transition-base);
  opacity: 0.9;
}

.holo-footer__link:hover {
  color: var(--holo-color-secondary);
  opacity: 1;
}

.holo-footer__social {
  display: flex;
  gap: var(--holo-space-md);
}

.holo-footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--holo-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: var(--holo-transition-base);
  opacity: 0.9;
}

.holo-footer__social-link:hover {
  background: var(--holo-color-secondary);
  color: var(--holo-color-text);
  transform: translateY(-2px);
}

.holo-footer__bottom {
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  padding-top: var(--holo-space-lg);
  text-align: center;
}

.holo-footer__legal {
  color: #FFFFFF;
  font-size: var(--holo-font-size-sm);
  opacity: 0.8;
}

.holo-footer__legal p {
  margin-bottom: var(--holo-space-xs);
}


@media (max-width: 480px) {
  .holo-hero__title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: var(--holo-space-md);
  }
  
  .holo-hero__title-line {
    display: block;
    margin-bottom: 0.3rem;
  }
  
  .holo-hero__title-line--accent {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .holo-hero__subtitle {
    font-size: clamp(1rem, 3vw, 1.125rem);
    margin-bottom: var(--holo-space-lg);
    line-height: 1.5;
  }
  
  .holo-section-header__title {
    font-size: var(--holo-font-size-2xl);
  }
}

@media (max-width: 480px) {
  .holo-hero__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.1;
    margin-bottom: var(--holo-space-sm);
  }
  
  .holo-hero__title-line {
    display: block;
    margin-bottom: 0.2rem;
  }
  
  .holo-hero__title-line--accent {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
  
  .holo-hero__subtitle {
    font-size: clamp(0.9rem, 4vw, 1rem);
    margin-bottom: var(--holo-space-md);
    line-height: 1.4;
    padding: 0 var(--holo-space-sm);
  }
}

@media (max-width: 360px) {
  .holo-hero__title {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
    line-height: 1.1;
    margin-bottom: var(--holo-space-xs);
  }
  
  .holo-hero__title-line {
    display: block;
    margin-bottom: 0.15rem;
  }
  
  .holo-hero__title-line--accent {
    font-size: clamp(1rem, 6vw, 1.4rem);
  }
  
  .holo-hero__subtitle {
    font-size: clamp(0.8rem, 5vw, 0.95rem);
    margin-bottom: var(--holo-space-sm);
    line-height: 1.3;
    padding: 0 var(--holo-space-xs);
  }
  
  .holo-hero__actions {
    gap: var(--holo-space-sm);
  }
  
  .holo-btn {
    padding: var(--holo-space-xs) var(--holo-space-md);
    font-size: var(--holo-font-size-sm);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .holo-hologram {
    animation: none;
  }
  
  .holo-holographic-content__line,
  .holo-placeholder-image__line {
    animation: none;
  }
}

/* Focus Styles */
.holo-btn:focus-visible,
.holo-nav__link:focus-visible,
.holo-form__input:focus-visible,
.holo-form__textarea:focus-visible {
  outline: 2px solid var(--holo-color-secondary);
  outline-offset: 2px;
}

/* Mobile Navigation */
.holo-nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.holo-nav__toggle:focus-visible {
  outline: 2px solid var(--holo-color-secondary);
  outline-offset: 2px;
  border-radius: var(--holo-radius-sm);
}

.holo-nav__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all var(--holo-transition-base);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.holo-nav__backdrop.active {
  opacity: 1;
  visibility: visible;
}

.holo-nav__hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 18px;
  position: relative;
}

.holo-nav__line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 255, 136, 1) 100%);
  border-radius: 1px;
  transition: var(--holo-transition-base);
  transform-origin: center;
}

.holo-nav__line:nth-child(1) {
  margin-bottom: 4px;
}

.holo-nav__line:nth-child(2) {
  margin-bottom: 4px;
}

.holo-nav__toggle[aria-expanded="true"] .holo-nav__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.holo-nav__toggle[aria-expanded="true"] .holo-nav__line:nth-child(2) {
  opacity: 0;
}

.holo-nav__toggle[aria-expanded="true"] .holo-nav__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 767px) {
  .holo-logo__svg {
    width: 36px;
    height: 36px;
  }
  
  .holo-logo__text {
    font-size: var(--holo-font-size-sm);
  }
  
  .holo-nav {
    position: relative;
  }
  
  .holo-nav__toggle {
    display: flex;
    z-index: 1001;
    transform: translateX(-20px);
  }
  
  .holo-nav__list {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border: none;
    box-shadow: var(--holo-shadow-lg);
    padding: var(--holo-space-3xl) var(--holo-space-lg);
    margin: 0;
    flex-direction: column;
    gap: var(--holo-space-md);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    display: flex;
  }
  
  .holo-nav__list.active {
    left: 0;
  }
  
  .holo-nav__item {
    width: 100%;
  }
  
  .holo-nav__link {
    display: flex;
    align-items: center;
    padding: var(--holo-space-lg);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--holo-font-size-lg);
    border-radius: var(--holo-radius-md);
    transition: all var(--holo-transition-base);
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.05);
    min-height: 56px;
  }
  
  .holo-nav__link:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.4);
    color: #FFFFFF;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
  }
  
  .holo-nav__link:focus,
  .holo-nav__link:active {
    outline: 2px solid var(--holo-color-secondary);
    outline-offset: 2px;
  }
  
  .holo-nav__link::before {
    content: '';
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #7C3AED, #22C55E);
    border-radius: 0 4px 4px 0;
    position: absolute;
    left: 0;
    transition: height var(--holo-transition-base);
  }
  
  .holo-nav__link:hover::before,
  .holo-nav__link:focus::before {
    height: 80%;
  }
}

/* Print Styles */
@media print {
  .holo-header,
  .holo-footer,
  .holo-cta {
    display: none;
  }
  
  .holo-hero {
    min-height: auto;
    padding: var(--holo-space-xl) 0;
  }
  
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
}
