/* Color Palette: Charcoal (#1a1a1a) + Sand (#e8e4d8) + Amber (#f59e0b) + Lime (#10b981) */

:root {
  --voxa-color-bg: #1a1a1a;
  --voxa-color-surface: #0f0f0f;
  --voxa-color-surface-alt: #242424;
  --voxa-color-text: #e8e4d8;
  --voxa-color-text-muted: #a8a298;
  --voxa-color-accent: #f59e0b;
  --voxa-color-accent-dark: #d97706;
  --voxa-color-highlight: #10b981;
  --voxa-color-border: rgba(248, 250, 252, 0.1);
  --voxa-color-border-light: rgba(248, 250, 252, 0.2);
  
  --voxa-font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --voxa-font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --voxa-space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --voxa-space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --voxa-space-md: clamp(1rem, 2vw, 1.5rem);
  --voxa-space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --voxa-space-xl: clamp(2rem, 4vw, 4rem);
  --voxa-space-2xl: clamp(3rem, 5vw, 6rem);
  
  --voxa-radius-sm: 0.375rem;
  --voxa-radius-md: 0.75rem;
  --voxa-radius-lg: 1.25rem;
  --voxa-radius-xl: 2rem;
  
  --voxa-text-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  --voxa-text-sm: clamp(0.875rem, 2vw, 1rem);
  --voxa-text-base: clamp(1rem, 2.5vw, 1.125rem);
  --voxa-text-lg: clamp(1.125rem, 3vw, 1.25rem);
  --voxa-text-xl: clamp(1.25rem, 4vw, 1.5rem);
  --voxa-text-2xl: clamp(1.5rem, 5vw, 2rem);
  --voxa-text-3xl: clamp(2rem, 6vw, 3rem);
  --voxa-text-4xl: clamp(2.5rem, 8vw, 4.5rem);
  --voxa-text-5xl: clamp(3rem, 10vw, 6rem);
}

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

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--voxa-font-body);
  font-size: var(--voxa-text-base);
  line-height: 1.6;
  background: var(--voxa-color-bg);
  color: var(--voxa-color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* Ensure all SVG elements are responsive */
svg {
  max-width: 100%;
  height: auto;
  width: auto;
  box-sizing: border-box;
}

/* All images and media */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

/* Specific fixes for SVG in hero section */
.voxa-hologram__base {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .voxa-hologram__base {
    max-width: 100%;
    height: auto;
  }
  
  .voxa-hero__visual {
    height: auto;
    min-height: 300px;
  }
}

a {
  color: var(--voxa-color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--voxa-color-highlight);
}

a:focus-visible {
  outline: 2px solid var(--voxa-color-accent);
  outline-offset: 4px;
  border-radius: var(--voxa-radius-sm);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--voxa-font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--voxa-color-text);
}

h1 { font-size: var(--voxa-text-5xl); }
h2 { font-size: var(--voxa-text-4xl); }
h3 { font-size: var(--voxa-text-2xl); }
h4 { font-size: var(--voxa-text-xl); }

p {
  margin-bottom: var(--voxa-space-md);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Header */
.voxa-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--voxa-color-border);
}

.navbar {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1000; /* Додатково: гарантує, що панель буде поверх іншого вмісту */
}

.voxa-header.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Додаємо відступ зверху для main, щоб контент не ховався під фіксованою навігацією */
main#main {
  padding-top: 100px;
}

.voxa-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--voxa-space-md) 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--voxa-space-lg);
  width: 100%;
  box-sizing: border-box;
}

.voxa-brand {
  display: flex;
  align-items: center;
  gap: var(--voxa-space-sm);
  font-size: var(--voxa-text-lg);
  font-weight: 700;
  color: var(--voxa-color-text);
}

.voxa-brand:hover {
  color: var(--voxa-color-text);
}

.voxa-brand__mark {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
  animation: voxa-logo-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-style: preserve-3d;
  perspective: 100px;
}

@keyframes voxa-logo-entrance {
  0% {
    opacity: 0;
    transform: scale(0.3) rotateY(-45deg) rotateX(-20deg);
    filter: drop-shadow(0 0 0 rgba(245, 158, 11, 0));
  }
  60% {
    transform: scale(1.1) rotateY(5deg) rotateX(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0deg) rotateX(0deg);
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
  }
}

.voxa-brand:hover .voxa-brand__mark {
  animation: voxa-logo-hover 0.6s ease-out forwards;
  filter: drop-shadow(0 8px 24px rgba(245, 158, 11, 0.5)) 
          drop-shadow(0 0 16px rgba(16, 185, 129, 0.3));
}

@keyframes voxa-logo-hover {
  0% {
    transform: scale(1) rotateY(0deg) rotateX(0deg);
  }
  50% {
    transform: scale(1.08) rotateY(-5deg) rotateX(5deg);
  }
  100% {
    transform: scale(1.05) rotateY(0deg) rotateX(0deg);
  }
}

/* Arrow animations */
.voxa-logo-arrow-top {
  transform-origin: center;
  animation: voxa-arrow-top-float 3s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voxa-logo-arrow-bottom {
  transform-origin: center;
  animation: voxa-arrow-bottom-float 3s ease-in-out infinite 0.3s;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes voxa-arrow-top-float {
  0%, 100% {
    transform: translateY(0) translateZ(0);
  }
  50% {
    transform: translateY(-2px) translateZ(2px);
  }
}

@keyframes voxa-arrow-bottom-float {
  0%, 100% {
    transform: translateY(0) translateZ(0);
  }
  50% {
    transform: translateY(1px) translateZ(-1px);
  }
}

.voxa-brand:hover .voxa-logo-arrow-top {
  animation: voxa-arrow-top-hover 0.6s ease-out forwards;
  transform: translateY(-3px) scale(1.05) rotateZ(-2deg);
  filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.6));
}

.voxa-brand:hover .voxa-logo-arrow-bottom {
  animation: voxa-arrow-bottom-hover 0.6s ease-out forwards;
  transform: translateY(2px) scale(0.98) rotateZ(1deg);
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.4));
}

@keyframes voxa-arrow-top-hover {
  0% {
    transform: translateY(0) scale(1) rotateZ(0deg);
  }
  100% {
    transform: translateY(-3px) scale(1.05) rotateZ(-2deg);
  }
}

@keyframes voxa-arrow-bottom-hover {
  0% {
    transform: translateY(0) scale(1) rotateZ(0deg);
  }
  100% {
    transform: translateY(2px) scale(0.98) rotateZ(1deg);
  }
}

/* Light beam animation */
.voxa-logo-beam {
  transform-origin: center top;
  animation: voxa-beam-pulse 2s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes voxa-beam-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 0.7;
    transform: scaleY(1.2);
  }
}

.voxa-brand:hover .voxa-logo-beam {
  animation: voxa-beam-hover 1s ease-out forwards;
  opacity: 0.8;
}

@keyframes voxa-beam-hover {
  0% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  100% {
    opacity: 0.9;
    transform: scaleY(1.5);
  }
}

/* Highlight animation */
.voxa-logo-highlight {
  animation: voxa-highlight-shine 4s ease-in-out infinite;
  opacity: 0;
}

@keyframes voxa-highlight-shine {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
}

.voxa-brand:hover .voxa-logo-highlight {
  opacity: 0.8;
  animation: voxa-highlight-hover 1s ease-out;
}

@keyframes voxa-highlight-hover {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.9;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .voxa-brand__mark,
  .voxa-logo-arrow-top,
  .voxa-logo-arrow-bottom,
  .voxa-logo-beam,
  .voxa-logo-highlight {
    animation: none;
  }
  
  .voxa-brand:hover .voxa-brand__mark,
  .voxa-brand:hover .voxa-logo-arrow-top,
  .voxa-brand:hover .voxa-logo-arrow-bottom,
  .voxa-brand:hover .voxa-logo-beam {
    animation: none;
    transform: none;
  }
}

/* Mobile Menu Toggle Button */
.voxa-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  align-items: center;
}

/* Show toggle button only on mobile (≤768px) */
@media (max-width: 768px) {
  .voxa-menu-toggle {
    display: flex !important;
    z-index: 1001 !important;
    position: relative !important;
  }
  
  /* Hide desktop navigation on mobile */
  .voxa-nav-desktop {
    display: none !important;
  }
}

.voxa-menu-toggle__line {
  width: 100%;
  height: 3px;
  background: var(--voxa-color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.voxa-menu-toggle[aria-expanded="true"] .voxa-menu-toggle__line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.voxa-menu-toggle[aria-expanded="true"] .voxa-menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.voxa-menu-toggle[aria-expanded="true"] .voxa-menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Desktop Navigation Styles */
.voxa-nav-desktop {
  display: none;
}

@media (min-width: 769px) {
  /* Show desktop navigation */
  .voxa-nav-desktop {
    display: block;
  }
  
  .voxa-nav-desktop__list {
    display: flex;
    align-items: center;
    gap: var(--voxa-space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .voxa-nav-desktop__link {
    color: var(--voxa-color-text-muted);
    font-size: var(--voxa-text-sm);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    padding: var(--voxa-space-xs) 0;
  }
  
  .voxa-nav-desktop__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--voxa-color-accent);
    transition: width 0.3s ease;
  }
  
  .voxa-nav-desktop__link:hover {
    color: var(--voxa-color-accent);
  }
  
  .voxa-nav-desktop__link:hover::after {
    width: 100%;
  }
  
  .voxa-nav-desktop__list .voxa-btn {
    margin-left: var(--voxa-space-sm);
  }
  
  /* Hide mobile menu on desktop */
  .voxa-nav {
    display: none !important;
  }
  
  /* Hide burger button on desktop */
  .voxa-menu-toggle {
    display: none !important;
  }
}

.voxa-nav__list a {
  color: var(--voxa-color-text-muted);
  font-size: var(--voxa-text-sm);
  transition: color 0.2s ease;
  position: relative;
}

.voxa-nav__link {
  display: flex;
  align-items: center;
  gap: var(--voxa-space-xs);
  padding: var(--voxa-space-xs) 0;
}

.voxa-nav__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: currentColor;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.voxa-nav__link:hover .voxa-nav__icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.6));
}

.voxa-nav__list a:hover {
  color: var(--voxa-color-accent);
}

.voxa-nav__list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--voxa-color-accent);
  transition: width 0.3s ease;
}

.voxa-nav__link::after {
  left: 0;
}

.voxa-nav__list a:hover::after {
  width: 100%;
}

/* Mobile Navigation (≤768px) - CRITICAL SECTION */
@media (max-width: 768px) {
  .voxa-header__inner {
    padding: var(--voxa-space-sm) 15px;
    flex-wrap: nowrap;
  }
  
  /* STEP 1: Base state - Menu is HIDDEN by default */
  /* Menu is now outside header - direct child of body */
  /* Use highest specificity to override any other rules */
  body > nav.voxa-nav,
  nav.voxa-nav,
  .voxa-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    background: rgba(15, 15, 15, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 1000 !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: var(--voxa-space-2xl) var(--voxa-space-lg) !important;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8) !important;
    margin: 0 !important;
    border: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-20px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    /* Ensure menu is not constrained by any parent container */
    box-sizing: border-box !important;
  }
  
  /* STEP 2: OPEN state - Menu is VISIBLE and FULL SCREEN */
  /* Multiple selectors for maximum compatibility */
  body > nav.voxa-nav.voxa-nav--open,
  nav.voxa-nav.voxa-nav--open,
  .voxa-nav.voxa-nav--open,
  nav.voxa-nav--open,
  .voxa-nav--open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    z-index: 1000 !important;
    background: rgba(15, 15, 15, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    height: 100vh !important;
    max-height: 100vh !important;
    /* Ensure menu is not constrained by any parent container */
    box-sizing: border-box !important;
    position: relative !important;
  }
  
  /* Navigation list - always visible when menu is open */
  /* Full width, vertically scrollable if needed */
  .voxa-nav__list {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    list-style: none !important;
    padding: 2rem 1.5rem 1.5rem 1.5rem !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
    height: 100% !important;
    max-height: 100% !important;
  }
  
  /* Force list visibility when menu is open - extra guarantee */
  .voxa-nav--open .voxa-nav__list,
  .voxa-nav.voxa-nav--open .voxa-nav__list,
  nav.voxa-nav.voxa-nav--open .voxa-nav__list {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  /* Ensure all list items are visible */
  .voxa-nav--open .voxa-nav__list li,
  .voxa-nav.voxa-nav--open .voxa-nav__list li,
  nav.voxa-nav.voxa-nav--open .voxa-nav__list li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  /* Mobile menu links - COMPACT SPACING */
  /* Full width, adequate touch targets, compact vertical spacing */
  .voxa-nav__link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.5rem !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    width: 100% !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: var(--voxa-color-text) !important;
    transition: all 0.3s ease !important;
    border-radius: var(--voxa-radius-md) !important;
    min-height: 56px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  
  .voxa-nav__link:hover,
  .voxa-nav__link:active {
    background: rgba(245, 158, 11, 0.15) !important;
    color: var(--voxa-color-accent) !important;
    transform: translateY(-2px) !important;
  }
  
  /* Extra spacing between menu items - COMPACT VERTICAL PADDING */
  .voxa-nav__list li {
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(248, 250, 252, 0.1) !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
  }
  
  .voxa-nav__list li:first-child {
    padding-top: 0.25rem !important;
  }
  
  .voxa-nav__list li:last-child {
    width: 100% !important;
    text-align: center !important;
    border-bottom: none !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.25rem !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Icon styles in mobile menu - adequate size for visibility */
  .voxa-nav__link .voxa-nav__icon {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
  }
  
  /* Contact button - ensure it's always visible and properly styled */
  .voxa-nav__list .voxa-btn,
  .voxa-nav__list li .voxa-btn,
  .voxa-nav__list li a.voxa-btn,
  .voxa-nav__list li a.voxa-btn--primary {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2rem 1.5rem !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
    margin: 0 !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    min-height: 72px !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, var(--voxa-color-accent), var(--voxa-color-accent-dark)) !important;
    color: var(--voxa-color-bg) !important;
    border: none !important;
    border-radius: var(--voxa-radius-md) !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .voxa-nav__list .voxa-btn:hover,
  .voxa-nav__list li .voxa-btn:hover,
  .voxa-nav__list li a.voxa-btn:hover,
  .voxa-nav__list li a.voxa-btn--primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4) !important;
    filter: brightness(1.1) !important;
    color: var(--voxa-color-bg) !important;
  }
  
  /* Ensure Contact button is visible when menu is open */
  .voxa-nav--open .voxa-nav__list .voxa-btn,
  .voxa-nav--open .voxa-nav__list li .voxa-btn,
  .voxa-nav--open .voxa-nav__list li a.voxa-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* CRITICAL: Prevent scrolling when menu is open - FORCE */
  /* Block scrolling on both html and body */
  html.voxa-menu-open,
  body.voxa-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
  }
  
  /* Also block scrolling on html element */
  html.voxa-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100vw !important;
    height: 100vh !important;
  }
  
  /* Remove overlay since menu is now full screen */
  body.voxa-menu-open::before {
    display: none !important;
  }
  
  /* Ensure header doesn't overlap menu */
  .voxa-header {
    z-index: 999 !important;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Animation for menu items */
  .voxa-nav--open .voxa-nav__list li {
    animation: slideInUp 0.4s ease-out forwards;
    opacity: 0;
    display: block !important;
    visibility: visible !important;
  }
  
  /* Ensure all items are always visible - override animation opacity */
  .voxa-nav--open .voxa-nav__list li {
    animation-fill-mode: forwards !important;
  }
  
  /* Force visibility for all items, especially 4th and 5th */
  .voxa-nav--open .voxa-nav__list li:nth-child(4),
  .voxa-nav--open .voxa-nav__list li:nth-child(5) {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .voxa-nav--open .voxa-nav__list li:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  .voxa-nav--open .voxa-nav__list li:nth-child(2) {
    animation-delay: 0.15s;
  }
  
  .voxa-nav--open .voxa-nav__list li:nth-child(3) {
    animation-delay: 0.2s;
  }
  
  .voxa-nav--open .voxa-nav__list li:nth-child(4) {
    animation-delay: 0.25s;
  }
  
  .voxa-nav--open .voxa-nav__list li:nth-child(5) {
    animation-delay: 0.3s;
  }
  
  @keyframes slideInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1 !important;
      transform: translateY(0);
    }
  }
  
  .voxa-hero__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .voxa-section__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Buttons */
.voxa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--voxa-space-sm) var(--voxa-space-lg);
  font-size: var(--voxa-text-sm);
  font-weight: 600;
  border-radius: var(--voxa-radius-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.voxa-btn--primary {
  background: linear-gradient(135deg, var(--voxa-color-accent), var(--voxa-color-accent-dark));
  color: var(--voxa-color-bg);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.voxa-btn--primary::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: left 0.5s ease;
  overflow: hidden;
  clip-path: inset(0);
}

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

.voxa-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  filter: brightness(1.1);
}

.voxa-btn--outline {
  border: 2px solid var(--voxa-color-accent);
  color: var(--voxa-color-accent);
  background: transparent;
}

.voxa-btn--outline:hover {
  background: var(--voxa-color-accent);
  color: var(--voxa-color-bg);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.voxa-btn--large {
  padding: var(--voxa-space-md) var(--voxa-space-xl);
  font-size: var(--voxa-text-base);
}

/* Hero Section */
.voxa-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--voxa-space-2xl) var(--voxa-space-lg);
  padding-top: calc(var(--voxa-space-2xl) + 100px); /* Додатковий відступ зверху для фіксованої навігації */
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.voxa-hero__container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--voxa-space-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

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

.voxa-hero__meta {
  font-size: var(--voxa-text-sm);
  color: var(--voxa-color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.voxa-hero__title {
  font-size: var(--voxa-text-5xl);
  line-height: 1.1;
  animation: voxa-fade-in-up 0.8s ease-out;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
}

.voxa-hero__title-accent {
  display: block;
  background: linear-gradient(135deg, var(--voxa-color-accent), var(--voxa-color-highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
  animation: voxa-shimmer 3s ease-in-out infinite;
}

@keyframes voxa-shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

@keyframes voxa-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.voxa-hero__lead {
  font-size: var(--voxa-text-xl);
  color: var(--voxa-color-text-muted);
  max-width: 600px;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.voxa-hero__cta {
  display: flex;
  gap: var(--voxa-space-md);
  flex-wrap: wrap;
}

.voxa-hero__stats {
  display: flex;
  gap: var(--voxa-space-xl);
  margin-top: var(--voxa-space-md);
}

.voxa-hero__stat-num {
  display: block;
  font-size: var(--voxa-text-3xl);
  font-weight: 700;
  color: var(--voxa-color-accent);
}

.voxa-hero__stat-label {
  font-size: var(--voxa-text-sm);
  color: var(--voxa-color-text-muted);
}

.voxa-hero__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.voxa-hologram {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  animation: voxa-float 6s ease-in-out infinite;
  overflow: hidden;
}

@keyframes voxa-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.voxa-hologram__base {
  width: 100%;
  max-width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(245, 158, 11, 0.3));
  animation: voxa-hologram-pulse 4s ease-in-out infinite;
  overflow: visible;
}

@keyframes voxa-hologram-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.voxa-hero__grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: voxa-grid-move 20s linear infinite;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@keyframes voxa-grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Prevent grid animation from causing overflow */
@media (max-width: 768px) {
  .voxa-hero__grid-overlay {
    animation: none;
    background-position: 0 0;
  }
  
  /* Additional mobile fixes */
  .voxa-hero {
    padding: var(--voxa-space-xl) 15px;
  }
  
  .voxa-section {
    padding: var(--voxa-space-xl) 15px;
  }
  
  /* Ensure text doesn't overflow */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  p, span, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 1024px) {
  .voxa-hero__container {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .voxa-hero__visual {
    height: 400px;
    order: -1;
    max-width: 100%;
  }
  
  .voxa-hero__stats {
    flex-wrap: wrap;
    gap: var(--voxa-space-md);
  }
}

/* Section */
.voxa-section {
  padding: var(--voxa-space-2xl) 15px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.voxa-section--alt {
  background: var(--voxa-color-surface);
}

.voxa-section--dark {
  background: var(--voxa-color-surface-alt);
}

.voxa-section--cta {
  background: linear-gradient(135deg, var(--voxa-color-surface), var(--voxa-color-surface-alt));
  text-align: center;
}

.voxa-section__container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.voxa-section__header {
  text-align: center;
  margin-bottom: var(--voxa-space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.voxa-section__header h2 {
  margin-bottom: var(--voxa-space-md);
}

.voxa-section__header p {
  font-size: var(--voxa-text-lg);
  color: var(--voxa-color-text-muted);
}

/* Services */
.voxa-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--voxa-space-xl);
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Mobile Optimizations (≤480px) */
@media (max-width: 480px) {
  /* Typography - Reduced font sizes */
  :root {
    --voxa-text-xs: 0.7rem;
    --voxa-text-sm: 0.8rem;
    --voxa-text-base: 0.9rem;
    --voxa-text-lg: 1rem;
    --voxa-text-xl: 1.1rem;
    --voxa-text-2xl: 1.3rem;
    --voxa-text-3xl: 1.6rem;
    --voxa-text-4xl: 2rem;
    --voxa-text-5xl: 2.4rem;
  }
  
  h1 { font-size: var(--voxa-text-4xl) !important; }
  h2 { font-size: var(--voxa-text-3xl) !important; }
  h3 { font-size: var(--voxa-text-2xl) !important; }
  h4 { font-size: var(--voxa-text-xl) !important; }
  
  body {
    font-size: var(--voxa-text-base);
  }
  
  /* Services - Single column */
  .voxa-services {
    grid-template-columns: 1fr;
    min-width: 0;
    gap: var(--voxa-space-md);
  }
  
  .voxa-service-card {
    padding: var(--voxa-space-md);
  }
  
  /* Portfolio/Work - Single column */
  .voxa-portfolio {
    grid-template-columns: 1fr;
    min-width: 0;
    gap: var(--voxa-space-md);
  }
  
  /* Process Flow - Single column */
  .voxa-process-flow__steps {
    grid-template-columns: 1fr !important;
    gap: var(--voxa-space-md);
  }
  
  .voxa-process-node[data-step="1"],
  .voxa-process-node[data-step="2"],
  .voxa-process-node[data-step="3"],
  .voxa-process-node[data-step="4"],
  .voxa-process-node[data-step="5"] {
    grid-column: 1 !important;
    max-width: 100%;
    width: 100%;
  }
  
  .voxa-process-node__card {
    padding: var(--voxa-space-md);
  }
  
  .voxa-process-node__icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: var(--voxa-space-sm);
  }
  
  .voxa-process-node__icon {
    width: 50px;
    height: 50px;
  }
  
  .voxa-process-node__title {
    font-size: 1rem;
  }
  
  .voxa-process-node__description {
    font-size: 0.85rem;
  }
  
  /* Testimonials - Single column */
  .voxa-testimonials {
    grid-template-columns: 1fr;
    min-width: 0;
    gap: var(--voxa-space-md);
  }
  
  /* Tech - Single column */
  .voxa-tech {
    grid-template-columns: 1fr;
    min-width: 0;
    gap: var(--voxa-space-md);
  }
  
  /* Hero adjustments */
  .voxa-hero__title {
    font-size: var(--voxa-text-4xl) !important;
    line-height: 1.2;
  }
  
  .voxa-hero__lead {
    font-size: var(--voxa-text-base);
  }
  
  .voxa-hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--voxa-space-sm);
  }
  
  .voxa-hero__stat-num {
    font-size: var(--voxa-text-2xl);
  }
  
  /* Case Study */
  .voxa-case__container {
    padding: var(--voxa-space-md);
  }
  
  .voxa-case-brand__title {
    font-size: 1.5rem !important;
  }
  
  .voxa-case__details {
    grid-template-columns: 1fr;
    padding: var(--voxa-space-md);
    gap: var(--voxa-space-sm);
  }
  
  .voxa-case__metric-value {
    font-size: var(--voxa-text-xl);
  }
  
  /* Contact form */
  .voxa-contact {
    grid-template-columns: 1fr;
    gap: var(--voxa-space-md);
  }
  
  /* Industries */
  .voxa-industries {
    gap: var(--voxa-space-sm);
  }
  
  .voxa-industry-chip {
    padding: var(--voxa-space-xs) var(--voxa-space-sm);
    font-size: var(--voxa-text-xs);
  }
  
  /* Buttons */
  .voxa-btn {
    padding: var(--voxa-space-sm) var(--voxa-space-md);
    font-size: var(--voxa-text-sm);
  }
  
  .voxa-btn--large {
    padding: var(--voxa-space-md) var(--voxa-space-lg);
    font-size: var(--voxa-text-base);
  }
  
  /* Section headers */
  .voxa-section__header h2 {
    font-size: var(--voxa-text-3xl) !important;
  }
  
  .voxa-section__header p {
    font-size: var(--voxa-text-base);
  }
  
  /* Footer */
  .voxa-footer {
    padding: var(--voxa-space-xl) 15px;
  }
  
  .voxa-footer__nav {
    flex-direction: column;
    gap: var(--voxa-space-sm);
  }
  
  /* Navigation menu adjustments - REMOVED to prevent conflicts */
  /* Styles are handled in main mobile navigation section */
  
  /* Ensure all containers have proper padding */
  .voxa-hero__container,
  .voxa-section__container,
  .voxa-footer__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Portfolio item adjustments */
  .voxa-portfolio-item__visual {
    height: 200px;
  }
  
  .voxa-portfolio-item__icon {
    width: 50px;
    height: 50px;
  }
  
  /* Service card icon adjustments */
  .voxa-service-card__icon-wrapper {
    width: 56px;
    height: 56px;
  }
  
  .voxa-service-card__icon {
    width: 36px;
    height: 36px;
  }
  
  /* Hero visual adjustments */
  .voxa-hero__visual {
    height: auto;
    min-height: 250px;
  }
  
  /* Case brand logo */
  .voxa-case-brand__logo-icon {
    width: 60px;
    height: 60px;
  }
  
  /* Ensure no horizontal overflow for main containers */
  .voxa-hero,
  .voxa-section,
  .voxa-footer,
  .voxa-header,
  main,
  section {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Tables if any */
  table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.voxa-service-card {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--voxa-color-border);
  border-radius: var(--voxa-radius-lg);
  padding: var(--voxa-space-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
}

.voxa-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--voxa-color-accent), var(--voxa-color-highlight));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.voxa-service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  /* Prevent overflow on mobile */
  overflow: hidden;
  clip-path: inset(0);
}

.voxa-service-card:hover::before {
  transform: scaleX(1);
}

.voxa-service-card:hover::after {
  opacity: 1;
}

.voxa-service-card:hover {
  transform: translateY(-8px);
  border-color: var(--voxa-color-accent);
  box-shadow: 
    0 12px 32px rgba(245, 158, 11, 0.3),
    0 0 0 1px rgba(245, 158, 11, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: rgba(15, 15, 15, 0.95);
}

.voxa-service-card__icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--voxa-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.voxa-service-card__icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.8);
  z-index: -1;
}

.voxa-service-card:hover .voxa-service-card__icon-wrapper::before {
  opacity: 1;
  transform: scale(1.2);
}

.voxa-service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--voxa-color-accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.3));
  animation: voxa-icon-entrance 0.6s ease-out;
  position: relative;
  z-index: 1;
}

@keyframes voxa-icon-entrance {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }
  60% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.voxa-service-card:nth-child(1) .voxa-service-card__icon {
  animation-delay: 0.1s;
}

.voxa-service-card:nth-child(2) .voxa-service-card__icon {
  animation-delay: 0.2s;
}

.voxa-service-card:nth-child(3) .voxa-service-card__icon {
  animation-delay: 0.3s;
}

.voxa-service-card:nth-child(4) .voxa-service-card__icon {
  animation-delay: 0.4s;
}

.voxa-service-card:hover .voxa-service-card__icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.6));
  color: var(--voxa-color-highlight);
}

.voxa-service-card:nth-child(2):hover .voxa-service-card__icon {
  transform: scale(1.15) rotate(-5deg);
}

.voxa-service-card:nth-child(3):hover .voxa-service-card__icon {
  transform: scale(1.15) rotate(10deg);
}

.voxa-service-card:nth-child(4):hover .voxa-service-card__icon {
  transform: scale(1.15) rotate(-10deg);
}

.voxa-service-card__title {
  margin-bottom: var(--voxa-space-sm);
  font-size: var(--voxa-text-xl);
  color: var(--voxa-color-text);
  transition: color 0.3s ease;
  text-align: center;
}

.voxa-service-card:hover .voxa-service-card__title {
  color: var(--voxa-color-accent);
}

.voxa-service-card__description {
  color: var(--voxa-color-text-muted);
  margin-bottom: var(--voxa-space-lg);
  line-height: 1.7;
  text-align: center;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.voxa-service-card:hover .voxa-service-card__description {
  color: var(--voxa-color-text);
}

.voxa-service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--voxa-space-sm);
  margin-top: auto;
  padding-top: var(--voxa-space-md);
  border-top: 1px solid var(--voxa-color-border);
  transition: border-color 0.3s ease;
}

.voxa-service-card:hover .voxa-service-card__list {
  border-color: rgba(245, 158, 11, 0.3);
}

.voxa-service-card__list li {
  font-size: var(--voxa-text-sm);
  color: var(--voxa-color-text-muted);
  position: relative;
  padding-left: var(--voxa-space-lg);
  transition: all 0.3s ease;
  line-height: 1.6;
}

.voxa-service-card__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--voxa-color-accent);
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

.voxa-service-card__list li:hover {
  color: var(--voxa-color-text);
  padding-left: calc(var(--voxa-space-lg) + 4px);
}

.voxa-service-card__list li:hover::before {
  transform: translateX(4px);
  color: var(--voxa-color-highlight);
}

@media (max-width: 768px) {
  .voxa-services {
    grid-template-columns: 1fr;
    gap: var(--voxa-space-lg);
    width: 100%;
    max-width: 100%;
  }
  
  .voxa-service-card {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .voxa-service-card__icon-wrapper {
    width: 64px;
    height: 64px;
  }
  
  .voxa-service-card__icon {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .voxa-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .voxa-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .voxa-services {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Case Study */
.voxa-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--voxa-space-2xl);
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Dark container with rounded corners - only applies if element exists */
.voxa-case__container {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--voxa-radius-xl);
  padding: var(--voxa-space-2xl);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(245, 158, 11, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* Ensure container doesn't overlap other content - use normal flow */
  z-index: 1;
  margin-bottom: var(--voxa-space-2xl);
  /* Ensure container is in normal document flow, not overlapping */
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.voxa-case__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.5), transparent);
  animation: voxa-case-container-scan 3s ease-in-out infinite;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@keyframes voxa-case-container-scan {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

.voxa-case__brand-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--voxa-space-xl);
  padding: var(--voxa-space-lg) 0;
  position: relative;
  z-index: 1;
  /* Ensure wrapper doesn't overlap content below */
}

.voxa-case__brand {
  margin-bottom: var(--voxa-space-xl);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* FIXED: Emblem is always visible by default */
.voxa-case-brand__emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--voxa-space-lg);
  /* CRITICAL: Always visible by default */
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  transform: translateY(0);
  /* Smooth entrance animation - but element is already visible */
  animation: voxa-case-brand-entrance-smooth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease,
              box-shadow 0.4s ease;
  will-change: transform, filter;
}

/* Ensure all children are always visible */
.voxa-case-brand__emblem * {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Smooth entrance animation that doesn't hide the element */
@keyframes voxa-case-brand-entrance-smooth {
  0% {
    transform: translateY(10px) scale(0.95);
    filter: blur(2px);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
    filter: blur(1px);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: blur(0);
    opacity: 1 !important;
  }
}

/* FIXED: Logo icon is always visible */
.voxa-case-brand__logo-icon {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 6px 20px rgba(245, 158, 11, 0.4))
          drop-shadow(0 0 30px rgba(16, 185, 129, 0.2));
  flex-shrink: 0;
  /* CRITICAL: Always visible */
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  /* Pulse animation for subtle movement */
  animation: voxa-case-logo-pulse 3s ease-in-out infinite 0.5s;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease,
              box-shadow 0.4s ease;
  will-change: transform, filter;
}

@keyframes voxa-case-logo-pulse {
  0%, 100% {
    filter: drop-shadow(0 6px 20px rgba(245, 158, 11, 0.4))
            drop-shadow(0 0 30px rgba(16, 185, 129, 0.2));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 8px 28px rgba(245, 158, 11, 0.6))
            drop-shadow(0 0 40px rgba(16, 185, 129, 0.4));
    transform: scale(1.03);
  }
}

/* FIXED: Container is always visible */
.voxa-case-brand__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--voxa-space-md);
  /* CRITICAL: Always visible by default */
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  /* Subtle entrance animation - but element is already visible */
  animation: voxa-case-brand-entrance-smooth 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Old entrance animation - kept for reference but not used */
@keyframes voxa-case-brand-entrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8) rotateY(-10deg);
    filter: blur(10px);
  }
  40% {
    opacity: 0.7;
    transform: translateY(-5px) scale(1.05) rotateY(2deg);
    filter: blur(2px);
  }
  70% {
    opacity: 0.95;
    transform: translateY(2px) scale(0.98) rotateY(-1deg);
    filter: blur(1px);
  }
  100% {
    opacity: 1 !important;
    transform: translateY(0) scale(1) rotateY(0deg);
    filter: blur(0);
  }
}

/* FIXED: Icon group is always visible */
.voxa-case-brand__icon-group {
  transform-origin: center;
  /* CRITICAL: Always visible */
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  /* Subtle float animation */
  animation: voxa-case-icon-float 4s ease-in-out infinite;
  transition: transform 0.4s ease,
              filter 0.4s ease;
}

@keyframes voxa-case-icon-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Arrow animations - always visible */
.voxa-case-arrow-top {
  transform-origin: center;
  animation: voxa-case-arrow-top-pulse 3s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease;
  opacity: 1 !important;
  fill-opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
}

.voxa-case-arrow-bottom {
  transform-origin: center;
  animation: voxa-case-arrow-bottom-pulse 3s ease-in-out infinite 0.4s;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease;
  opacity: 1 !important;
  fill-opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
}

@keyframes voxa-case-arrow-top-pulse {
  0%, 100% {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1 !important;
    transform: translateY(-2px) scale(1.02);
  }
}

@keyframes voxa-case-arrow-bottom-pulse {
  0%, 100% {
    opacity: 1 !important;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1 !important;
    transform: translateY(2px) scale(0.98);
  }
}

/* Light beam animation - always visible */
.voxa-case-beam {
  transform-origin: center top;
  animation: voxa-case-beam-pulse 3s ease-in-out infinite;
  opacity: 0.4;
  transition: opacity 0.4s ease,
              transform 0.4s ease;
  fill-opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
}

@keyframes voxa-case-beam-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.9);
  }
  50% {
    opacity: 0.6;
    transform: scaleY(1.1);
  }
}

/* Highlight animation - always visible */
.voxa-case-highlight {
  animation: voxa-case-highlight-shine 5s ease-in-out infinite;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  fill-opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
}

@keyframes voxa-case-highlight-shine {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

/* FIXED: Brand title is always visible */
.voxa-case-brand__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  font-family: var(--voxa-font-display);
  background: linear-gradient(135deg, #e8e4d8 0%, #fbbf24 30%, #10b981 70%, #e8e4d8 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* CRITICAL: Always visible */
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  /* Animated gradient and glow */
  animation: voxa-case-text-glow 4s ease-in-out infinite,
             voxa-case-text-gradient 6s ease infinite;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  margin: 0;
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.4));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease,
              background-position 0.4s ease;
  will-change: transform, filter;
}

@keyframes voxa-case-text-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* FIXED: Featured Project Label is always visible */
.voxa-case__featured-label {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 700;
  font-family: var(--voxa-font-display);
  color: var(--voxa-color-text);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--voxa-space-sm) var(--voxa-space-xl);
  background: rgba(245, 158, 11, 0.15);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--voxa-radius-md);
  /* CRITICAL: Always visible by default */
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  /* Subtle pulse animation */
  animation: voxa-case-label-pulse 3s ease-in-out infinite 0.5s;
  transition: transform 0.4s ease,
              border-color 0.4s ease,
              background 0.4s ease,
              box-shadow 0.4s ease;
}

@keyframes voxa-case-label-entrance {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes voxa-case-label-pulse {
  0%, 100% {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  50% {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

/* Text animation */
.voxa-case-brand__text {
  font-size: var(--voxa-text-2xl);
  font-weight: 700;
  font-family: var(--voxa-font-display);
  background: linear-gradient(135deg, #e8e4d8 0%, #fbbf24 50%, #e8e4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: voxa-case-text-glow 4s ease-in-out infinite;
  opacity: 1;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
  transition: all 0.3s ease;
}

@keyframes voxa-case-text-glow {
  0%, 100% {
    opacity: 0.95;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.3));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
  }
}

/* Hover effects - CRITICAL: Elements must NEVER disappear or restart animation */
.voxa-case__container:hover .voxa-case-brand__emblem {
  /* Maintain visibility - DO NOT restart animation */
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  transform: scale(1.03) translateY(0) !important;
  filter: drop-shadow(0 8px 24px rgba(245, 158, 11, 0.4)) !important;
  /* Keep animation in final state, don't restart */
}

.voxa-case__container:hover .voxa-case-brand__emblem svg,
.voxa-case__container:hover .voxa-case-brand__emblem svg * {
  opacity: 1 !important;
  visibility: visible !important;
  fill-opacity: 1 !important;
}

.voxa-case__container:hover .voxa-case-brand__logo-icon {
  /* Maintain visibility - enhance glow only */
  opacity: 1 !important;
  visibility: visible !important;
  filter: drop-shadow(0 10px 32px rgba(245, 158, 11, 0.7)) 
          drop-shadow(0 0 50px rgba(16, 185, 129, 0.5))
          drop-shadow(0 0 60px rgba(245, 158, 11, 0.3)) !important;
  transform: scale(1.08) !important;
  /* Keep pulse animation running, don't restart */
}

.voxa-case__container:hover .voxa-case-brand__logo-icon * {
  opacity: 1 !important;
  visibility: visible !important;
  fill-opacity: 1 !important;
}

.voxa-case__container:hover .voxa-case-brand__title {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  filter: drop-shadow(0 0 35px rgba(251, 191, 36, 0.8))
          drop-shadow(0 0 50px rgba(251, 191, 36, 0.4)) !important;
  transform: scale(1.03) !important;
}

.voxa-case__container:hover .voxa-case__featured-label {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  border-color: rgba(245, 158, 11, 0.6);
  background: rgba(245, 158, 11, 0.25);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

/* Hover effects for SVG elements - maintain visibility, enhance glow */
.voxa-case__container:hover .voxa-case-arrow-top {
  opacity: 1 !important;
  fill-opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(-4px) scale(1.08) !important;
  filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.7))
          drop-shadow(0 0 20px rgba(245, 158, 11, 0.5)) !important;
  /* Keep pulse animation running, don't restart */
}

.voxa-case__container:hover .voxa-case-arrow-bottom {
  opacity: 1 !important;
  fill-opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(3px) scale(0.95) !important;
  filter: drop-shadow(0 8px 16px rgba(16, 185, 129, 0.6))
          drop-shadow(0 0 20px rgba(16, 185, 129, 0.4)) !important;
  /* Keep pulse animation running, don't restart */
}

.voxa-case__container:hover .voxa-case-beam {
  opacity: 0.9 !important;
  fill-opacity: 1 !important;
  visibility: visible !important;
  transform: scaleY(1.4) !important;
  /* Keep pulse animation running, don't restart */
}

.voxa-case__container:hover .voxa-case-highlight {
  opacity: 1 !important;
  fill-opacity: 1 !important;
  visibility: visible !important;
  /* Keep shine animation running, don't restart */
}

.voxa-case__container:hover .voxa-case-brand__icon-group {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(-2px) !important;
  /* Keep float animation running, don't restart */
}

.voxa-case__container:hover .voxa-case-brand__icon-group * {
  opacity: 1 !important;
  visibility: visible !important;
  fill-opacity: 1 !important;
}

.voxa-case__brand:hover .voxa-case-brand__text {
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.7));
  opacity: 1;
  transform: scale(1.02);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.voxa-case__container:hover .voxa-case-brand__text {
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.7));
  opacity: 1;
  transform: scale(1.02);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .voxa-case__container::before,
  .voxa-case-brand__emblem,
  .voxa-case-brand__container,
  .voxa-case-brand__logo-icon,
  .voxa-case-brand__icon-group,
  .voxa-case-arrow-top,
  .voxa-case-arrow-bottom,
  .voxa-case-beam,
  .voxa-case-highlight,
  .voxa-case-brand__title,
  .voxa-case-brand__text,
  .voxa-case__featured-label,
  .voxa-portfolio-item__icon {
    animation: none !important;
  }
  
  .voxa-case__container:hover .voxa-case-brand__emblem,
  .voxa-case__container:hover .voxa-case-brand__logo-icon,
  .voxa-case__container:hover .voxa-case-brand__title,
  .voxa-case__container:hover .voxa-case-arrow-top,
  .voxa-case__container:hover .voxa-case-arrow-bottom,
  .voxa-case__container:hover .voxa-case-beam,
  .voxa-portfolio-item:hover .voxa-portfolio-item__icon {
    transform: none !important;
    filter: none !important;
  }
  
  /* Ensure visibility is maintained */
  .voxa-case-brand__emblem,
  .voxa-case-brand__logo-icon,
  .voxa-case-brand__icon-group,
  .voxa-case-arrow-top,
  .voxa-case-arrow-bottom,
  .voxa-case-beam,
  .voxa-case-highlight,
  .voxa-case-brand__title,
  .voxa-portfolio-item__icon {
    opacity: 1 !important;
    fill-opacity: 1 !important;
  }
}

/* Case Study Content */
.voxa-case__content {
  display: flex;
  flex-direction: column;
  gap: var(--voxa-space-lg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .voxa-case {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
  
  .voxa-case__container {
    order: -1;
    margin-bottom: var(--voxa-space-xl);
    min-height: 350px;
    padding: var(--voxa-space-xl);
    width: 100%;
    max-width: 100%;
  }
  
  .voxa-case-brand__logo-icon {
    width: 80px;
    height: 80px;
  }
  
  .voxa-case-brand__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  .voxa-case__featured-label {
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    padding: var(--voxa-space-xs) var(--voxa-space-lg);
  }
}

@media (max-width: 768px) {
  .voxa-case__brand {
    justify-content: center;
    margin-bottom: var(--voxa-space-lg);
    width: 100%;
    max-width: 100%;
  }
  
  .voxa-case__container {
    min-height: 300px;
    padding: var(--voxa-space-lg);
    margin-bottom: var(--voxa-space-lg);
    width: 100%;
    max-width: 100%;
  }
  
  .voxa-case-brand__container {
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
  
  .voxa-case-brand__logo-icon {
    width: 70px;
    height: 70px;
  }
  
  .voxa-case-brand__title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .voxa-case-brand__text {
    font-size: var(--voxa-text-xl) !important;
  }
  
  .voxa-case__featured-label {
    font-size: 0.75rem;
    padding: var(--voxa-space-xs) var(--voxa-space-md);
    letter-spacing: 0.15em;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .voxa-case-brand__logo-icon {
    width: 90px;
    height: 90px;
  }
  
  .voxa-case-brand__text {
    font-size: var(--voxa-text-2xl);
  }
}

.voxa-case__badge {
  display: inline-block;
  padding: var(--voxa-space-xs) var(--voxa-space-sm);
  background: rgba(245, 158, 11, 0.2);
  color: var(--voxa-color-accent);
  border-radius: var(--voxa-radius-sm);
  font-size: var(--voxa-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--voxa-space-md);
}

.voxa-case h2 {
  margin-bottom: var(--voxa-space-md);
}

.voxa-case__lead {
  font-size: var(--voxa-text-lg);
  color: var(--voxa-color-text-muted);
  margin-bottom: var(--voxa-space-xl);
}

.voxa-case__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--voxa-space-lg);
  margin-bottom: var(--voxa-space-xl);
  padding: var(--voxa-space-lg);
  background: rgba(15, 15, 15, 0.4);
  border-radius: var(--voxa-radius-md);
  border: 1px solid var(--voxa-color-border);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.voxa-case__metric-value {
  display: block;
  font-size: var(--voxa-text-2xl);
  font-weight: 700;
  color: var(--voxa-color-accent);
  margin-bottom: var(--voxa-space-xs);
}

.voxa-case__metric-label {
  font-size: var(--voxa-text-sm);
  color: var(--voxa-color-text-muted);
}

.voxa-case__description {
  color: var(--voxa-color-text-muted);
}

/* Removed: .voxa-case__visual and .voxa-case__placeholder - empty container deleted */

@media (max-width: 1024px) {
  .voxa-case__details {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
}

/* Portfolio */
.voxa-portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--voxa-space-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .voxa-portfolio {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

.voxa-portfolio-item {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--voxa-color-border);
  border-radius: var(--voxa-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.voxa-portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: var(--voxa-color-highlight);
}

.voxa-portfolio-item__visual {
  height: 240px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--voxa-space-xl);
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-bottom: 1px solid var(--voxa-color-border);
  /* Subtle background pattern for depth */
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

/* 3D Portfolio Icons - Centered in upper part of visual container */
.voxa-portfolio-item__icon {
  width: 60px;
  height: 60px;
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease;
  animation: voxa-portfolio-icon-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             voxa-portfolio-icon-pulse 4s ease-in-out infinite 1s;
  transform-origin: center;
  position: relative;
  z-index: 2;
}

@keyframes voxa-portfolio-icon-entrance {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.8) rotateY(-15deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) blur(3px);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-3px) scale(1.05) rotateY(3deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) blur(1px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateY(0deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
  }
}

@keyframes voxa-portfolio-icon-pulse {
  0%, 100% {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 20px rgba(245, 158, 11, 0.3));
  }
  50% {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 25px rgba(245, 158, 11, 0.4))
            drop-shadow(0 0 35px rgba(16, 185, 129, 0.2));
  }
}

/* Hover effects for portfolio icons */
.voxa-portfolio-item:hover .voxa-portfolio-item__icon {
  transform: scale(1.15) translateY(-8px) rotateY(8deg) !important;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7))
          drop-shadow(0 0 35px rgba(245, 158, 11, 0.6))
          drop-shadow(0 0 45px rgba(16, 185, 129, 0.4))
          drop-shadow(0 0 55px rgba(139, 92, 246, 0.3)) !important;
  animation-play-state: paused;
}

/* Remove placeholder styles - no longer needed */
.voxa-portfolio-item__placeholder {
  display: none;
}

.voxa-portfolio-item__content {
  padding: var(--voxa-space-lg);
}

.voxa-portfolio-item h3 {
  margin-bottom: var(--voxa-space-sm);
}

.voxa-portfolio-item > p {
  color: var(--voxa-color-text-muted);
  margin-bottom: var(--voxa-space-md);
  font-size: var(--voxa-text-sm);
}

.voxa-portfolio-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--voxa-space-xs);
}

.voxa-portfolio-item__tags li {
  padding: var(--voxa-space-xs) var(--voxa-space-sm);
  background: rgba(245, 158, 11, 0.1);
  color: var(--voxa-color-accent);
  border-radius: var(--voxa-radius-sm);
  font-size: var(--voxa-text-xs);
}

/* Industries */
.voxa-industries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--voxa-space-md);
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.voxa-industry-chip {
  padding: var(--voxa-space-sm) var(--voxa-space-lg);
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--voxa-color-border);
  border-radius: var(--voxa-radius-xl);
  font-size: var(--voxa-text-sm);
  color: var(--voxa-color-text);
  transition: all 0.3s ease;
}

.voxa-industry-chip:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--voxa-color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

/* Process Flow - Interactive Flowchart */
.voxa-process-flow {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 500px;
  padding: var(--voxa-space-2xl) 0;
  margin: var(--voxa-space-2xl) 0;
  overflow-x: hidden;
  overflow-y: visible;
}

/* SVG Connection Lines - Hidden on desktop, shown only on mobile if needed */
.voxa-process-flow__lines {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.voxa-process-flow__line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: voxa-process-line-draw 1.5s ease-out forwards;
  opacity: 0.5;
  transition: opacity 0.4s ease, stroke-width 0.4s ease, filter 0.4s ease;
}

.voxa-process-flow__line--1 {
  animation-delay: 0.3s;
}

.voxa-process-flow__line--2 {
  animation-delay: 0.5s;
}

.voxa-process-flow__line--3 {
  animation-delay: 0.7s;
}

.voxa-process-flow__line--4 {
  animation-delay: 0.9s;
}

@keyframes voxa-process-line-draw {
  to {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
}

/* Process Steps Container - Grid Layout 3+2 */
.voxa-process-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--voxa-space-xl);
  row-gap: var(--voxa-space-2xl);
  position: relative;
  z-index: 2;
  padding: var(--voxa-space-xl) 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* First row: 3 cards (steps 1, 2, 3) - one per column */
.voxa-process-node[data-step="1"],
.voxa-process-node[data-step="2"],
.voxa-process-node[data-step="3"] {
  grid-row: 1;
}

.voxa-process-node[data-step="1"] {
  grid-column: 1;
}

.voxa-process-node[data-step="2"] {
  grid-column: 2;
}

.voxa-process-node[data-step="3"] {
  grid-column: 3;
}

/* Second row: 2 cards (steps 4, 5) - centered by starting at column 2 */
.voxa-process-node[data-step="4"],
.voxa-process-node[data-step="5"] {
  grid-row: 2;
}

/* Position Testing (step 4) and Launch (step 5) in columns 2 and 3 */
/* This centers them in the last two columns of a 3-column grid */
.voxa-process-node[data-step="4"] {
  grid-column: 2;
}

.voxa-process-node[data-step="5"] {
  grid-column: 3;
}

/* Process Node (Card) */
.voxa-process-node {
  width: 100%;
  max-width: 100%;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.voxa-process-node__card {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--voxa-radius-xl);
  padding: var(--voxa-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.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.voxa-process-node__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.6s ease;
  overflow: hidden;
  clip-path: inset(0);
}

.voxa-process-node:hover .voxa-process-node__card::before {
  left: 100%;
}

/* Icon Wrapper */
.voxa-process-node__icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--voxa-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxa-process-node__icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.4));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s ease;
  animation: voxa-process-icon-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: center;
}

@keyframes voxa-process-icon-entrance {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(20px) rotateZ(-10deg);
  }
  60% {
    opacity: 0.9;
    transform: scale(1.1) translateY(-5px) rotateZ(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotateZ(0deg);
  }
}

/* Node Content */
.voxa-process-node__content {
  position: relative;
  z-index: 2;
}

.voxa-process-node__title {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  font-weight: 700;
  margin-bottom: var(--voxa-space-sm);
  color: var(--voxa-color-text);
  transition: color 0.4s ease;
}

.voxa-process-node__description {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--voxa-color-text-muted);
  line-height: 1.6;
  transition: color 0.4s ease;
}

/* Hover Effects */
.voxa-process-node:hover {
  transform: translateY(-12px) scale(1.05);
}

.voxa-process-node:hover .voxa-process-node__card {
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.voxa-process-node:hover .voxa-process-node__icon {
  transform: scale(1.15) rotateZ(5deg);
  filter: drop-shadow(0 8px 24px rgba(59, 130, 246, 0.6))
          drop-shadow(0 0 30px rgba(16, 185, 129, 0.4));
}

.voxa-process-node:hover .voxa-process-node__title {
  color: #3b82f6;
}

.voxa-process-node:hover .voxa-process-node__description {
  color: var(--voxa-color-text);
}

/* Active line highlighting on hover - disabled for grid layout */
.voxa-process-flow:hover .voxa-process-flow__line {
  opacity: 0.9;
  stroke-width: 5;
  filter: url(#process-line-glow);
}

/* Connection indicators between cards on desktop (min-width: 1025px) */
@media (min-width: 1025px) {
  /* Horizontal lines in first row - between cards */
  .voxa-process-node[data-step="1"]::before {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(-1 * var(--voxa-space-xl));
    transform: translateY(-50%);
    width: var(--voxa-space-xl);
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.4), rgba(16, 185, 129, 0.4));
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.4s ease, width 0.4s ease;
  }
  
  .voxa-process-node[data-step="2"]::before {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(-1 * var(--voxa-space-xl));
    transform: translateY(-50%);
    width: var(--voxa-space-xl);
    height: 2px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.4), rgba(251, 191, 36, 0.4));
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.4s ease, width 0.4s ease;
  }
  
  /* Vertical line from Development (step 3) down to Testing (step 4) */
  /* Step 3 is in column 3, step 4 is in column 2, so we draw a vertical line down */
  .voxa-process-node[data-step="3"]::after {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--voxa-space-2xl));
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: var(--voxa-space-2xl);
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.4), rgba(139, 92, 246, 0.4));
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.4s ease, height 0.4s ease;
  }
  
  .voxa-process-node[data-step="3"]:hover::after {
    opacity: 0.8;
    height: calc(var(--voxa-space-2xl) + 8px);
  }
  
  /* Horizontal connection line between Testing (step 4) and Launch (step 5) */
  .voxa-process-node[data-step="4"]::before {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(-1 * var(--voxa-space-xl));
    transform: translateY(-50%);
    width: var(--voxa-space-xl);
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.4), rgba(239, 68, 68, 0.4));
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.4s ease, width 0.4s ease;
  }
  
  /* Hover effects for connection lines */
  .voxa-process-node[data-step="1"]:hover::before,
  .voxa-process-node[data-step="2"]:hover::before {
    opacity: 0.8;
    width: calc(var(--voxa-space-xl) + 8px);
  }
  
  .voxa-process-node[data-step="4"]:hover::before,
  .voxa-process-node[data-step="5"]:hover::before {
    opacity: 0.8;
    width: calc(var(--voxa-space-xl) + 8px);
  }
}

/* Line pulse animation */
@keyframes voxa-process-line-pulse {
  0%, 100% {
    opacity: 0.8;
    stroke-width: 5;
  }
  50% {
    opacity: 1;
    stroke-width: 6;
  }
}

/* Color themes for each step */
.voxa-process-node[data-step="1"] .voxa-process-node__card {
  border-color: rgba(59, 130, 246, 0.3);
}

.voxa-process-node[data-step="1"]:hover .voxa-process-node__card {
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.voxa-process-node[data-step="1"]:hover .voxa-process-node__title {
  color: #3b82f6;
}

.voxa-process-node[data-step="2"] .voxa-process-node__card {
  border-color: rgba(16, 185, 129, 0.3);
}

.voxa-process-node[data-step="2"]:hover .voxa-process-node__card {
  border-color: rgba(16, 185, 129, 0.8);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(16, 185, 129, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.voxa-process-node[data-step="2"]:hover .voxa-process-node__title {
  color: #10b981;
}

.voxa-process-node[data-step="3"] .voxa-process-node__card {
  border-color: rgba(251, 191, 36, 0.3);
}

.voxa-process-node[data-step="3"]:hover .voxa-process-node__card {
  border-color: rgba(251, 191, 36, 0.8);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(251, 191, 36, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.voxa-process-node[data-step="3"]:hover .voxa-process-node__title {
  color: #fbbf24;
}

.voxa-process-node[data-step="4"] .voxa-process-node__card {
  border-color: rgba(139, 92, 246, 0.3);
}

.voxa-process-node[data-step="4"]:hover .voxa-process-node__card {
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(139, 92, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.voxa-process-node[data-step="4"]:hover .voxa-process-node__title {
  color: #8b5cf6;
}

.voxa-process-node[data-step="5"] .voxa-process-node__card {
  border-color: rgba(239, 68, 68, 0.3);
}

.voxa-process-node[data-step="5"]:hover .voxa-process-node__card {
  border-color: rgba(239, 68, 68, 0.8);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(239, 68, 68, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.voxa-process-node[data-step="5"]:hover .voxa-process-node__title {
  color: #ef4444;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .voxa-process-flow {
    min-height: auto;
    padding: var(--voxa-space-xl) 15px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Switch to 2 columns layout */
  .voxa-process-flow__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--voxa-space-lg);
    width: 100%;
    max-width: 100%;
  }
  
  /* Reassign grid positions for 2-column layout */
  .voxa-process-node[data-step="1"] {
    grid-column: 1;
    grid-row: 1;
  }
  
  .voxa-process-node[data-step="2"] {
    grid-column: 2;
    grid-row: 1;
  }
  
  .voxa-process-node[data-step="3"] {
    grid-column: 1;
    grid-row: 2;
  }
  
  .voxa-process-node[data-step="4"] {
    grid-column: 2;
    grid-row: 2;
  }
  
  .voxa-process-node[data-step="5"] {
    grid-column: 1 / 3;
    grid-row: 3;
    justify-self: center;
    max-width: 100%;
    width: 100%;
  }
  
  .voxa-process-node__icon-wrapper {
    width: 90px;
    height: 90px;
  }
  
  .voxa-process-node__icon {
    width: 70px;
    height: 70px;
  }
  
  /* Hide all desktop connection lines on tablet */
  .voxa-process-node[data-step="1"]::before,
  .voxa-process-node[data-step="2"]::before,
  .voxa-process-node[data-step="3"]::after,
  .voxa-process-node[data-step="4"]::before {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .voxa-process-flow {
    min-height: auto;
    padding: var(--voxa-space-lg) 15px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Single column layout for mobile */
  .voxa-process-flow__steps {
    grid-template-columns: 1fr;
    gap: var(--voxa-space-xl);
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Reset all grid positions for single column */
  .voxa-process-node[data-step="1"],
  .voxa-process-node[data-step="2"],
  .voxa-process-node[data-step="3"],
  .voxa-process-node[data-step="4"],
  .voxa-process-node[data-step="5"] {
    grid-column: 1;
    margin-top: 0;
    max-width: 100%;
    width: 100%;
  }
  
  .voxa-process-node[data-step="1"] {
    grid-row: 1;
  }
  
  .voxa-process-node[data-step="2"] {
    grid-row: 2;
  }
  
  .voxa-process-node[data-step="3"] {
    grid-row: 3;
  }
  
  .voxa-process-node[data-step="4"] {
    grid-row: 4;
  }
  
  .voxa-process-node[data-step="5"] {
    grid-row: 5;
    justify-self: stretch;
  }
  
  .voxa-process-node__card {
    padding: var(--voxa-space-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .voxa-process-node__icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: var(--voxa-space-md);
  }
  
  .voxa-process-node__icon {
    width: 60px;
    height: 60px;
  }
  
  .voxa-process-node__title {
    font-size: 1.125rem;
  }
  
  .voxa-process-node__description {
    font-size: 0.875rem;
  }
  
  /* Hide all desktop connection lines on mobile */
  .voxa-process-node[data-step="1"]::before,
  .voxa-process-node[data-step="2"]::before,
  .voxa-process-node[data-step="3"]::after,
  .voxa-process-node[data-step="4"]::before {
    display: none !important;
  }
  
  /* Vertical lines for mobile - show after each card except the last */
  /* Override desktop ::after styles for mobile */
  .voxa-process-node[data-step="1"]:not(:last-child)::after,
  .voxa-process-node[data-step="2"]:not(:last-child)::after,
  .voxa-process-node[data-step="3"]:not(:last-child)::after,
  .voxa-process-node[data-step="4"]:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--voxa-space-xl));
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: var(--voxa-space-xl);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.6), rgba(16, 185, 129, 0.6), rgba(251, 191, 36, 0.6), rgba(139, 92, 246, 0.6), rgba(239, 68, 68, 0.6), transparent);
    z-index: 1;
    display: block !important;
    opacity: 0.6;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .voxa-process-flow__line,
  .voxa-process-node__icon,
  .voxa-process-node__card::before {
    animation: none !important;
  }
  
  .voxa-process-node:hover {
    transform: translateY(-4px);
  }
  
  .voxa-process-node:hover .voxa-process-node__icon {
    transform: scale(1.05);
  }
}

/* Tech */
.voxa-tech {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--voxa-space-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .voxa-tech {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

.voxa-tech-category h3 {
  margin-bottom: var(--voxa-space-md);
  color: var(--voxa-color-accent);
}

.voxa-tech-list {
  display: flex;
  flex-direction: column;
  gap: var(--voxa-space-sm);
}

.voxa-tech-list li {
  padding: var(--voxa-space-sm);
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid var(--voxa-color-border);
  border-radius: var(--voxa-radius-sm);
  font-size: var(--voxa-text-sm);
  transition: all 0.3s ease;
}

.voxa-tech-list li:hover {
  border-color: var(--voxa-color-highlight);
  background: rgba(16, 185, 129, 0.1);
  transform: translateX(4px);
}

/* Testimonials */
.voxa-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--voxa-space-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .voxa-testimonials {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

.voxa-testimonial {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--voxa-color-border);
  border-radius: var(--voxa-radius-lg);
  padding: var(--voxa-space-xl);
  position: relative;
}

.voxa-testimonial::before {
  content: '"';
  position: absolute;
  top: var(--voxa-space-md);
  left: var(--voxa-space-md);
  font-size: 4rem;
  color: var(--voxa-color-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.voxa-testimonial__quote {
  font-size: var(--voxa-text-base);
  font-style: italic;
  color: var(--voxa-color-text-muted);
  margin-bottom: var(--voxa-space-lg);
  position: relative;
  z-index: 1;
}

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

.voxa-testimonial__author strong {
  color: var(--voxa-color-text);
  font-size: var(--voxa-text-sm);
}

.voxa-testimonial__author span {
  font-size: var(--voxa-text-xs);
  color: var(--voxa-color-text-muted);
}

/* FAQ */
.voxa-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--voxa-space-md);
}

.voxa-faq-item {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--voxa-color-border);
  border-radius: var(--voxa-radius-md);
  overflow: hidden;
}

.voxa-faq-item__question {
  padding: var(--voxa-space-lg);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
  user-select: none;
}

.voxa-faq-item__question::after {
  content: '+';
  font-size: var(--voxa-text-xl);
  color: var(--voxa-color-accent);
  transition: transform 0.3s ease;
}

.voxa-faq-item[open] .voxa-faq-item__question::after {
  transform: rotate(45deg);
}

.voxa-faq-item__question:hover {
  background: rgba(245, 158, 11, 0.05);
}

.voxa-faq-item__answer {
  padding: 0 var(--voxa-space-lg) var(--voxa-space-lg);
  color: var(--voxa-color-text-muted);
}

/* CTA */
.voxa-cta {
  padding: var(--voxa-space-2xl);
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--voxa-color-border);
  border-radius: var(--voxa-radius-lg);
}

.voxa-cta__title {
  margin-bottom: var(--voxa-space-md);
}

.voxa-cta__lead {
  font-size: var(--voxa-text-lg);
  color: var(--voxa-color-text-muted);
  margin-bottom: var(--voxa-space-xl);
}

/* Contact */
.voxa-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--voxa-space-2xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.voxa-contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--voxa-space-xl);
}

.voxa-contact__item h3 {
  font-size: var(--voxa-text-lg);
  margin-bottom: var(--voxa-space-sm);
  color: var(--voxa-color-accent);
}

.voxa-contact__item p {
  color: var(--voxa-color-text-muted);
  line-height: 1.8;
}

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

.voxa-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--voxa-space-xs);
}

.voxa-label {
  font-size: var(--voxa-text-sm);
  font-weight: 600;
  color: var(--voxa-color-text);
}

.voxa-input {
  padding: var(--voxa-space-sm) var(--voxa-space-md);
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid var(--voxa-color-border);
  border-radius: var(--voxa-radius-md);
  color: var(--voxa-color-text);
  font-family: inherit;
  font-size: var(--voxa-text-base);
  transition: all 0.3s ease;
}

.voxa-input:focus {
  outline: none;
  border-color: var(--voxa-color-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.voxa-input--textarea {
  resize: vertical;
  min-height: 150px;
}

@media (max-width: 1024px) {
  .voxa-contact {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }
}

/* Footer */
.voxa-footer {
  background: var(--voxa-color-surface);
  border-top: 1px solid var(--voxa-color-border);
  padding: var(--voxa-space-2xl) var(--voxa-space-lg);
  margin-top: var(--voxa-space-2xl);
}

.voxa-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--voxa-space-xl);
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.voxa-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--voxa-space-sm);
  font-weight: 700;
}

.voxa-footer__logo {
  flex-shrink: 0;
}

.voxa-footer__nav {
  display: flex;
  gap: var(--voxa-space-lg);
  flex-wrap: wrap;
}

.voxa-footer__nav a {
  color: var(--voxa-color-text-muted);
  font-size: var(--voxa-text-sm);
}

.voxa-footer__meta {
  text-align: right;
  font-size: var(--voxa-text-xs);
  color: var(--voxa-color-text-muted);
}

.voxa-footer__meta p {
  margin-bottom: var(--voxa-space-xs);
}

@media (max-width: 768px) {
  .voxa-footer__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .voxa-footer__nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .voxa-footer__meta {
    text-align: center;
  }
}
