/* SALES MAKERS - Futuristic Design System */
/* Color Palette: Black (#000000), Yellow (#FFD700), Dark Gray (#1A1A1A), Light Gray (#F5F5F5), Gold (#FFA500), Amber (#FFC107) */

:root {
  /* Color Tokens */
  --holo-color-primary: #000000;
  --holo-color-secondary: #FFD700;
  --holo-color-accent: #FFA500;
  --holo-color-background: #F5F5F5;
  --holo-color-text: #1A1A1A;
  --holo-color-coral: #FFC107;
  --holo-color-gold: #FFD700;
  
  /* 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.1);
  --holo-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --holo-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --holo-shadow-glow: 0 0 20px rgba(255, 215, 0, 0.4);
  --holo-shadow-glow-accent: 0 0 20px rgba(255, 165, 0, 0.4);
  
  /* 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;
}

/* 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: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.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(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 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: rgba(245, 245, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  z-index: 100;
  transition: var(--holo-transition-base);
}

.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);
}

.holo-logo svg {
  transition: var(--holo-transition-base);
}

.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__list {
  display: flex;
  list-style: none;
  gap: var(--holo-space-lg);
}

.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;
}

.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: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  overflow: hidden;
}

.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(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
  border: 2px solid rgba(0, 0, 0, 0.8);
  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(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
  border: 2px solid rgba(0, 0, 0, 0.8);
  animation-direction: reverse;
  animation-duration: 15s;
}

.holo-hero__hexagon--small {
  width: min(40vw, 400px);
  height: min(40vw, 400px);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  border: 2px solid rgba(0, 0, 0, 0.8);
  animation-duration: 10s;
}


.holo-hero__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-hero__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--holo-color-secondary);
  border: 1px solid rgba(0, 0, 0, 0.8);
  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(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-hero__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-hero__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-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 rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
  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(255, 215, 0, 0.8) 0%, rgba(255, 165, 0, 0.4) 100%);
  border: 1px solid rgba(0, 0, 0, 0.8);
  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.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--holo-space-lg);
  color: #1a1a1a;
  text-align: center;
  position: relative;
  z-index: 3;
  letter-spacing: -0.02em;
  text-shadow: 
    2px 2px 4px rgba(255, 255, 255, 0.8),
    -2px -2px 4px rgba(255, 255, 255, 0.8),
    2px -2px 4px rgba(255, 255, 255, 0.8),
    -2px 2px 4px rgba(255, 255, 255, 0.8);
}

.holo-hero__title-line {
  display: block;
  position: relative;
  font-weight: 700;
  color: #1a1a1a;
}

.holo-hero__title-line--accent {
  color: #1a1a1a;
  position: relative;
  font-weight: 700;
  text-shadow: 
    2px 2px 4px rgba(255, 255, 255, 0.8),
    -2px -2px 4px rgba(255, 255, 255, 0.8),
    2px -2px 4px rgba(255, 255, 255, 0.8),
    -2px 2px 4px rgba(255, 255, 255, 0.8);
}

.holo-hero__title-line--accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-radius: 2px;
  opacity: 0.9;
}

.holo-hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: #2a2a2a;
  margin-bottom: var(--holo-space-xl);
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  text-shadow: 
    1px 1px 3px rgba(255, 255, 255, 0.9),
    -1px -1px 3px rgba(255, 255, 255, 0.9),
    1px -1px 3px rgba(255, 255, 255, 0.9),
    -1px 1px 3px rgba(255, 255, 255, 0.9);
}

.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 */
.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: var(--holo-transition-base);
  position: relative;
  overflow: hidden;
}

.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, #FFD700, #FFA500);
  color: #1a1a1a;
  box-shadow: 
    0 6px 20px rgba(255, 215, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.holo-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--holo-shadow-glow), var(--holo-shadow-lg);
}

.holo-btn--secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  border: 3px solid #FFD700;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 
    0 4px 12px rgba(255, 215, 0, 0.3),
    0 2px 6px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.holo-btn--secondary:hover {
  background: var(--holo-color-secondary);
  color: var(--holo-color-text);
  transform: translateY(-2px);
  box-shadow: var(--holo-shadow-glow);
}

.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-primary);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Services Section */
.holo-services {
  padding: var(--holo-space-3xl) 0;
  background: var(--holo-color-background);
  position: relative;
  overflow: hidden;
}

.holo-services__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
}

.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 {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--holo-color-secondary), transparent);
  opacity: 0.08;
  animation: lineFlow 10s ease-in-out infinite;
}

.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 {
  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-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: 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 20px rgba(255, 215, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.holo-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 215, 0, 0.7);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 215, 0, 0.3),
    0 0 80px rgba(255, 165, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.holo-service-card__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.holo-service-card__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-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 {
  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-service-card__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-service-card__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 12s linear infinite;
}

.holo-service-card__hexagon--inner {
  width: 50%;
  height: 50%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.08));
  animation-direction: reverse;
  animation-duration: 10s;
}

.holo-service-card__hexagon--small {
  width: 30%;
  height: 30%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.1));
  animation-duration: 8s;
}

.holo-service-card__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-service-card__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  opacity: 0.4;
  animation: lineFlow 5s ease-in-out infinite;
}

.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 {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-service-card__dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 215, 0, 0.5);
  border-radius: 50%;
  opacity: 0.6;
  animation: dotPulse 3s ease-in-out infinite;
}

.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: linear-gradient(135deg, var(--holo-color-secondary), var(--holo-color-accent));
  opacity: 0;
  transition: var(--holo-transition-base);
  z-index: -1;
}

.holo-service-card:hover::before {
  opacity: 0.05;
}

.holo-service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--holo-shadow-glow), var(--holo-shadow-lg);
  border-color: var(--holo-color-secondary);
}

.holo-service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--holo-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  transition: var(--holo-transition-base);
}

.holo-service-card:hover .holo-service-card__icon {
  transform: scale(1.1);
  box-shadow: var(--holo-shadow-glow);
}

.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: all 0.3s ease;
}

.holo-service-card:hover .holo-service-card__title {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.holo-service-card__description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.holo-service-card:hover .holo-service-card__description {
  color: rgba(255, 255, 255, 1);
  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;
}

/* 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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

.holo-tech-item__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.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: linear-gradient(135deg, var(--holo-color-primary) 0%, var(--holo-color-text) 100%);
  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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
}

.holo-metrics__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.25;
}

.holo-metric-card__hologram {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 0.08) 0%, 
    rgba(255, 165, 0, 0.04) 25%, 
    rgba(255, 215, 0, 0.08) 50%, 
    rgba(255, 165, 0, 0.04) 75%, 
    rgba(255, 215, 0, 0.08) 100%);
  animation: hologramShift 5s ease-in-out infinite;
  border-radius: var(--holo-radius-xl);
}

.holo-metric-card__hologram::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 0.2), 
    rgba(255, 165, 0, 0.15), 
    rgba(255, 215, 0, 0.2), 
    rgba(255, 165, 0, 0.15));
  border-radius: var(--holo-radius-xl);
  z-index: -1;
  animation: hologramGlow 4s ease-in-out infinite;
}

.holo-metric-card__scan-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 215, 0, 0.08) 3px,
    rgba(255, 215, 0, 0.08) 6px
  );
  animation: scanLines 2.5s linear infinite;
  opacity: 0.5;
}

.holo-metric-card__geometric {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-metric-card__hexagon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.04));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: hexagonRotate 15s linear infinite;
}

.holo-metric-card__hexagon--inner {
  width: 40%;
  height: 40%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.12), rgba(255, 165, 0, 0.06));
  animation-direction: reverse;
  animation-duration: 12s;
}

.holo-metric-card__hexagon--small {
  width: 25%;
  height: 25%;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.08));
  animation-duration: 10s;
}

.holo-metric-card__lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-metric-card__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  opacity: 0.3;
  animation: lineFlow 6s ease-in-out infinite;
}

.holo-metric-card__line--horizontal {
  width: 45%;
  height: 1px;
  top: 35%;
  left: 27%;
  animation-delay: 0s;
}

.holo-metric-card__line--vertical {
  width: 1px;
  height: 45%;
  top: 27%;
  left: 35%;
  background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  animation-delay: 2s;
}

.holo-metric-card__line--diagonal {
  width: 30%;
  height: 1px;
  top: 70%;
  left: 35%;
  transform: rotate(45deg);
  animation-delay: 4s;
}

.holo-metric-card__dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-metric-card__dot {
  position: absolute;
  width: 1.5px;
  height: 1.5px;
  background: rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  opacity: 0.5;
  animation: dotPulse 4s ease-in-out infinite;
}

.holo-metric-card__dot:nth-child(1) {
  top: 25%;
  left: 25%;
  animation-delay: 0s;
}

.holo-metric-card__dot:nth-child(2) {
  top: 25%;
  right: 25%;
  animation-delay: 1s;
}

.holo-metric-card__dot:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 2s;
}

.holo-metric-card__dot:nth-child(4) {
  bottom: 25%;
  right: 25%;
  animation-delay: 3s;
}

.holo-metric-card__pulse-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.holo-metric-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-metric-card__pulse-wave:nth-child(1) {
  width: 60%;
  height: 60%;
  animation-delay: 0s;
}

.holo-metric-card__pulse-wave:nth-child(2) {
  width: 80%;
  height: 80%;
  animation-delay: 1s;
}

.holo-metric-card__pulse-wave:nth-child(3) {
  width: 100%;
  height: 100%;
  animation-delay: 2s;
}

.holo-metric-card__floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.holo-metric-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-metric-card__particle:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.holo-metric-card__particle:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.8s;
}

.holo-metric-card__particle:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 1.6s;
}

.holo-metric-card__particle:nth-child(4) {
  bottom: 35%;
  right: 15%;
  animation-delay: 2.4s;
}

.holo-metric-card__particle:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 3.2s;
}

.holo-metric-card__particle:nth-child(6) {
  top: 60%;
  right: 10%;
  animation-delay: 0.4s;
}

.holo-metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--holo-shadow-glow), var(--holo-shadow-lg);
  border-color: var(--holo-color-secondary);
}

.holo-metric-card__value {
  font-size: var(--holo-font-size-3xl);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: var(--holo-space-sm);
  opacity: 0.95;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.holo-metric-card:hover .holo-metric-card__value {
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.holo-metric-card__label {
  font-size: var(--holo-font-size-lg);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--holo-space-xs);
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.holo-metric-card:hover .holo-metric-card__label {
  color: #FFD700;
  opacity: 1;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.holo-metric-card__description {
  font-size: var(--holo-font-size-sm);
  color: rgba(255, 255, 255, 0.85);
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.holo-metric-card:hover .holo-metric-card__description {
  color: rgba(255, 255, 255, 1);
  opacity: 1;
}

/* Process Section */
.holo-approach {
  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-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: linear-gradient(135deg, var(--holo-color-primary) 0%, var(--holo-color-text) 100%);
  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: linear-gradient(135deg, var(--holo-color-text) 0%, var(--holo-color-primary) 100%);
  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: var(--holo-color-text);
  color: #FFFFFF;
  padding: var(--holo-space-2xl) 0 var(--holo-space-lg);
}

.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);
}

/* Responsive Design */
@media (max-width: 767px) {
  
  .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;
}

/* 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;
  }
}

/* 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: 101;
}

.holo-nav__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--holo-transition-base);
  z-index: 99;
}

.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: var(--holo-color-text);
  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-nav {
    position: relative;
  }
  
  .holo-nav__toggle {
    display: flex;
  }
  
  .holo-nav__list {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(245, 245, 245, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    box-shadow: var(--holo-shadow-lg);
    padding: var(--holo-space-lg);
    margin: 0;
    flex-direction: column;
    gap: var(--holo-space-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--holo-transition-base);
    z-index: 100;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    display: flex;
  }
  
  .holo-nav__list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .holo-nav__item {
    width: 100%;
  }
  
  .holo-nav__link {
    display: block;
    padding: var(--holo-space-md) var(--holo-space-lg);
    color: var(--holo-color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--holo-font-size-base);
    border-radius: var(--holo-radius-md);
    transition: var(--holo-transition-base);
    text-align: center;
    width: 100%;
    border: 1px solid rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
  }
  
  .holo-nav__link:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--holo-color-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
  }
}