/* ========================================
   SOVEL KONSULTUVANNIA - Design System
   Prefix: voxl- (randomized)
   Palette: Charcoal #1F1F1F, Sand #F7F4F0, Amber #C4894F, Bronze #8B6F47, Cream #FAF8F4
   Visual Motifs: Soft Glassmorphism + Subtle Noise Texture
   ======================================== */

/* CSS Reset & Normalize */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--voxl-color-text);
  background-color: var(--voxl-color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--voxl-color-primary);
}

/* CSS Variables - Design Tokens */
:root {
  /* Color Palette - Avoiding blue (#0000FF-#55CCFF) and pure white (#FFFFFF) */
  --voxl-color-primary: #1F1F1F;        /* Charcoal - main dark */
  --voxl-color-primary-light: #2C2C2C;  /* Lighter charcoal for text */
  --voxl-color-accent: #C4894F;         /* Amber - primary accent */
  --voxl-color-accent-dark: #8B6F47;    /* Bronze - secondary accent */
  --voxl-color-bg: #FAF8F4;             /* Warm cream - background (not pure white) */
  --voxl-color-surface: #F7F4F0;        /* Sand - surface/cards */
  --voxl-color-surface-alt: #EDE8E1;    /* Lighter sand - alternate surfaces */
  --voxl-color-text: #2C2C2C;           /* Dark gray - body text */
  --voxl-color-text-light: #5A5A5A;     /* Medium gray - secondary text */
  --voxl-color-border: #D4C4B0;         /* Light border */
  --voxl-color-error: #B85C57;          /* Error state (red-tinted, not blue) */

  /* Typography Scale - Fluid using clamp() */
  --voxl-font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --voxl-font-size-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --voxl-font-size-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --voxl-font-size-lg: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  --voxl-font-size-xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --voxl-font-size-2xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --voxl-font-size-3xl: clamp(2.5rem, 1.75rem + 3.75vw, 5rem);

  /* Display Typography Scale (for hero/headings) */
  --voxl-font-display-xs: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  --voxl-font-display-sm: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  --voxl-font-display-base: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --voxl-font-display-lg: clamp(2.5rem, 1.75rem + 3.75vw, 4.5rem);
  --voxl-font-display-xl: clamp(3rem, 2rem + 5vw, 6.5rem);

  /* Spacing Scale - Fluid */
  --voxl-spacing-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --voxl-spacing-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
  --voxl-spacing-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --voxl-spacing-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --voxl-spacing-xl: clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --voxl-spacing-2xl: clamp(3rem, 2rem + 5vw, 6rem);
  --voxl-spacing-3xl: clamp(4rem, 2.5rem + 7.5vw, 8rem);
  --voxl-spacing-4xl: clamp(6rem, 3.5rem + 12.5vw, 12rem);

  /* Border Radius Scale - Randomized */
  --voxl-radius-sm: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --voxl-radius-md: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
  --voxl-radius-lg: clamp(0.75rem, 0.6rem + 0.75vw, 1.5rem);
  --voxl-radius-xl: clamp(1rem, 0.8rem + 1vw, 2rem);
  --voxl-radius-full: 9999px;

  /* Shadows - Glassmorphism effect */
  --voxl-shadow-sm: 0 1px 2px 0 rgba(31, 31, 31, 0.05);
  --voxl-shadow-md: 0 4px 6px -1px rgba(31, 31, 31, 0.1), 0 2px 4px -1px rgba(31, 31, 31, 0.06);
  --voxl-shadow-lg: 0 10px 15px -3px rgba(31, 31, 31, 0.1), 0 4px 6px -2px rgba(31, 31, 31, 0.05);
  --voxl-shadow-glass: 0 8px 32px 0 rgba(31, 31, 31, 0.15);
  --voxl-shadow-glow: 0 0 20px rgba(196, 137, 79, 0.3);

  /* Transitions */
  --voxl-transition-fast: 150ms ease;
  --voxl-transition-base: 250ms ease;
  --voxl-transition-slow: 400ms ease;

  /* Container */
  --voxl-container-max: 1280px;
  --voxl-container-padding: clamp(1rem, 4vw, 2rem);
}

/* Skip Link */
.voxl-skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1000;
  padding: var(--voxl-spacing-sm) var(--voxl-spacing-md);
  background: var(--voxl-color-primary);
  color: var(--voxl-color-surface);
  font-weight: 600;
  border-radius: var(--voxl-radius-md);
}

.voxl-skip-link:focus {
  top: var(--voxl-spacing-md);
  left: var(--voxl-spacing-md);
}

/* Container */
.voxl-container {
  width: 100%;
  max-width: var(--voxl-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--voxl-container-padding);
  padding-right: var(--voxl-container-padding);
}

/* Header */
.voxl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--voxl-color-border);
  transition: all var(--voxl-transition-base);
}

.voxl-header--scrolled {
  box-shadow: var(--voxl-shadow-sm);
}

.voxl-header > .voxl-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--voxl-spacing-md);
  padding-bottom: var(--voxl-spacing-md);
  gap: var(--voxl-spacing-lg);
}

.voxl-brand {
  display: flex;
  align-items: center;
  gap: var(--voxl-spacing-sm);
  font-size: var(--voxl-font-size-lg);
  font-weight: 700;
  color: var(--voxl-color-primary);
  transition: all var(--voxl-transition-base);
  position: relative;
}

.voxl-brand:hover {
  transform: translateY(-1px);
}

.voxl-brand:hover .voxl-logo-aura {
  opacity: 0.8;
  transform: scale(1.15);
}

.voxl-brand__text {
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

/* Logo Container with Aura */
.voxl-logo-container {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.voxl-logo-aura {
  position: absolute;
  inset: -8px;
  background: radial-gradient(
    circle at center,
    rgba(196, 137, 79, 0.4) 0%,
    rgba(212, 165, 116, 0.2) 40%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(8px);
  transition: all var(--voxl-transition-base);
  z-index: 0;
  animation: pulseAura 3s ease-in-out infinite;
}

@keyframes pulseAura {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.voxl-logo {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(196, 137, 79, 0.3));
  transition: all var(--voxl-transition-base);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(2deg);
  }
}

.voxl-brand:hover .voxl-logo {
  transform: scale(1.05) translateY(-1px);
  filter: drop-shadow(0 4px 12px rgba(196, 137, 79, 0.5));
}

/* Orbit Ring Animation */
.voxl-logo-orbit {
  animation: orbitRotate 20s linear infinite;
  transform-origin: 20px 20px;
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.orbit-dot {
  animation: dotPulse 2s ease-in-out infinite;
  transform-origin: 20px 20px;
}

.orbit-dot.dot-1 {
  animation-delay: 0s;
}

.orbit-dot.dot-2 {
  animation-delay: 0.33s;
}

.orbit-dot.dot-3 {
  animation-delay: 0.66s;
}

.orbit-dot.dot-4 {
  animation-delay: 1s;
}

.orbit-dot.dot-5 {
  animation-delay: 1.33s;
}

.orbit-dot.dot-6 {
  animation-delay: 1.66s;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.5;
    r: 0.8;
  }
  50% {
    opacity: 1;
    r: 1.2;
  }
}

/* Logo Shapes with blend mode effects */
.voxl-logo-shape1 {
  animation: shape1Float 6s ease-in-out infinite;
  transform-origin: 20px 20px;
}

.voxl-logo-shape2 {
  animation: shape2Float 8s ease-in-out infinite;
  transform-origin: 20px 20px;
}

@keyframes shape1Float {
  0%, 100% {
    transform: rotate(45deg) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: rotate(47deg) scale(1.02);
    opacity: 0.95;
  }
}

@keyframes shape2Float {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(0.98);
    opacity: 0.9;
  }
}

.voxl-brand:hover .voxl-logo-shape1 {
  animation-duration: 4s;
}

.voxl-brand:hover .voxl-logo-shape2 {
  animation-duration: 5s;
}

.voxl-brand:hover .voxl-logo-orbit {
  animation-duration: 15s;
}

/* Footer logo variant */
.voxl-logo--footer {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 6px rgba(247, 244, 240, 0.2));
}

/* Footer Brand Logo */
.voxl-footer__brand {
  display: flex;
  align-items: center;
  gap: var(--voxl-spacing-sm);
  margin-bottom: var(--voxl-spacing-lg);
}

.voxl-footer .voxl-logo-container {
  width: 32px;
  height: 32px;
}

.voxl-footer .voxl-logo-aura {
  inset: -6px;
  background: radial-gradient(
    circle at center,
    rgba(247, 244, 240, 0.3) 0%,
    rgba(212, 165, 116, 0.15) 40%,
    transparent 70%
  );
  filter: blur(6px);
  opacity: 0.5;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .voxl-logo-aura,
  .voxl-logo,
  .voxl-logo-orbit,
  .orbit-dot,
  .voxl-logo-shape1,
  .voxl-logo-shape2 {
    animation: none;
  }
  
  .voxl-logo-aura {
    opacity: 0.5;
  }
  
  .voxl-logo {
    animation: none;
  }
}

/* Navigation */
.voxl-nav {
  display: flex;
  align-items: center;
  gap: var(--voxl-spacing-lg);
}

.voxl-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 10px 8px;
  margin: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 102;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.voxl-nav__toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--voxl-color-primary);
  border-radius: 2px;
  transition: all var(--voxl-transition-base);
  transform-origin: center;
}

.voxl-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.voxl-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.voxl-nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.voxl-nav__toggle:focus-visible {
  outline: 2px solid var(--voxl-color-accent);
  outline-offset: 2px;
  border-radius: var(--voxl-radius-sm);
}

.voxl-nav__list {
  display: flex;
  align-items: center;
  gap: var(--voxl-spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.voxl-nav__link {
  font-size: var(--voxl-font-size-sm);
  font-weight: 500;
  color: var(--voxl-color-text);
  padding: var(--voxl-spacing-xs) var(--voxl-spacing-sm);
  border-radius: var(--voxl-radius-sm);
  transition: all var(--voxl-transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--voxl-spacing-xs);
  min-height: 44px;
  touch-action: manipulation;
  text-decoration: none;
}

.voxl-nav__list a:not(.voxl-btn) {
  font-size: var(--voxl-font-size-sm);
  font-weight: 500;
  color: var(--voxl-color-text);
  padding: var(--voxl-spacing-xs) var(--voxl-spacing-sm);
  border-radius: var(--voxl-radius-sm);
  transition: all var(--voxl-transition-fast);
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  touch-action: manipulation;
}

.voxl-nav__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: all var(--voxl-transition-base);
  filter: drop-shadow(0 2px 4px rgba(31, 31, 31, 0.15)) 
          drop-shadow(0 1px 2px rgba(196, 137, 79, 0.2))
          brightness(1.02);
  transform-style: preserve-3d;
}

.voxl-nav__link:hover .voxl-nav__icon,
.voxl-nav__link:focus-visible .voxl-nav__icon {
  transform: translateY(-1px) scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(196, 137, 79, 0.4)) 
          drop-shadow(0 2px 4px rgba(31, 31, 31, 0.2))
          brightness(1.1);
}

.voxl-nav__link:active .voxl-nav__icon {
  transform: translateY(0) scale(0.98);
  filter: drop-shadow(0 1px 2px rgba(31, 31, 31, 0.15)) 
          brightness(0.98);
}

.voxl-nav__link:hover,
.voxl-nav__link:focus-visible,
.voxl-nav__list a:hover:not(.voxl-btn),
.voxl-nav__list a:focus-visible:not(.voxl-btn) {
  color: var(--voxl-color-accent);
  background: rgba(196, 137, 79, 0.1);
  outline: 2px solid var(--voxl-color-accent);
  outline-offset: 2px;
}

.voxl-nav__link span {
  display: inline-block;
  transition: color var(--voxl-transition-fast);
}

/* Enhanced claymorphism effect for icons */
.voxl-nav__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  shape-rendering: geometricPrecision;
}

.voxl-nav__icon g {
  transition: opacity var(--voxl-transition-fast);
}

.voxl-nav__link:hover .voxl-nav__icon g,
.voxl-nav__link:focus-visible .voxl-nav__icon g {
  opacity: 1;
}

/* Mobile Navigation - < 768px */
@media (max-width: 767px) {
  .voxl-header > .voxl-container {
    position: relative;
  }

  .voxl-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .voxl-nav__toggle {
    display: flex;
  }

  .voxl-nav__list {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: var(--voxl-color-bg);
    border-right: 1px solid var(--voxl-color-border);
    box-shadow: 4px 0 20px rgba(31, 31, 31, 0.15);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--voxl-spacing-xl) + 60px) var(--voxl-spacing-lg) var(--voxl-spacing-xl);
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
  }

  .voxl-nav__list--open {
    transform: translateX(0);
  }

  .voxl-nav__list li {
    width: 100%;
    border-bottom: 1px solid var(--voxl-color-border);
  }

  .voxl-nav__list li:last-child {
    border-bottom: none;
    margin-top: var(--voxl-spacing-md);
  }

  .voxl-nav__link,
  .voxl-nav__list a:not(.voxl-btn) {
    display: flex;
    width: 100%;
    padding: var(--voxl-spacing-md);
    font-size: var(--voxl-font-size-base);
    text-align: left;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    gap: var(--voxl-spacing-sm);
  }

  .voxl-nav__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .voxl-nav__list .voxl-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: var(--voxl-font-size-base);
    gap: 0;
  }

}

/* Overlay when menu is open on mobile */
.voxl-nav-overlay {
  display: none;
}

@media (max-width: 767px) {
  .voxl-nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 31, 31, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .voxl-nav-overlay--active {
    opacity: 1;
    visibility: visible;
  }
}

/* Desktop Navigation - >= 768px */
@media (min-width: 768px) {
  .voxl-nav__toggle {
    display: none !important;
  }

  .voxl-nav__list {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
  background: transparent;
    border: none;
    box-shadow: none;
    width: auto;
    height: auto;
    max-width: none;
    padding: 0;
    overflow: visible;
    flex-direction: row;
    gap: var(--voxl-spacing-lg);
  }

  .voxl-nav__link {
    gap: var(--voxl-spacing-xs);
  }

  .voxl-nav__icon {
    width: 20px;
    height: 20px;
  }
}

.voxl-nav__list a:hover,
.voxl-nav__list a:focus-visible {
  color: var(--voxl-color-accent);
  background: rgba(196, 137, 79, 0.1);
  outline: 2px solid var(--voxl-color-accent);
  outline-offset: 2px;
}

/* Buttons */
.voxl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--voxl-spacing-xs);
  padding: var(--voxl-spacing-sm) var(--voxl-spacing-lg);
  font-size: var(--voxl-font-size-base);
  font-weight: 600;
  border-radius: var(--voxl-radius-md);
  transition: all var(--voxl-transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.voxl-btn--primary {
  background: var(--voxl-color-accent);
  color: var(--voxl-color-bg);
}

.voxl-btn--primary:hover,
.voxl-btn--primary:focus-visible {
  background: var(--voxl-color-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--voxl-shadow-md);
  outline: 2px solid var(--voxl-color-accent);
  outline-offset: 2px;
}

.voxl-btn--secondary {
  background: transparent;
  color: var(--voxl-color-primary);
  border-color: var(--voxl-color-primary);
}

.voxl-btn--secondary:hover,
.voxl-btn--secondary:focus-visible {
  background: var(--voxl-color-primary);
  color: var(--voxl-color-bg);
  outline: 2px solid var(--voxl-color-primary);
  outline-offset: 2px;
}

.voxl-btn--large {
  padding: var(--voxl-spacing-md) var(--voxl-spacing-xl);
  font-size: var(--voxl-font-size-lg);
}

/* Hero Section - Full-bleed with oversized type */
.voxl-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--voxl-spacing-4xl) 0;
  background: linear-gradient(135deg, var(--voxl-color-bg) 0%, var(--voxl-color-surface) 100%);
  overflow: hidden;
}

.voxl-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.voxl-hero .voxl-container {
  position: relative;
  z-index: 2;
}

.voxl-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--voxl-spacing-3xl);
  align-items: start;
  width: 100%;
}

.voxl-hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.voxl-hero__eyebrow {
  font-size: var(--voxl-font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--voxl-color-accent);
  margin-bottom: var(--voxl-spacing-md);
}

.voxl-hero__title {
  position: relative;
  font-size: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--voxl-spacing-lg);
  letter-spacing: -0.02em;
  z-index: 2;
  max-width: 100%;
}

.voxl-hero__title-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 140%;
  background: radial-gradient(
    ellipse at center,
    rgba(196, 137, 79, 0.25) 0%,
    rgba(196, 137, 79, 0.15) 30%,
    rgba(196, 137, 79, 0.05) 60%,
    transparent 100%
  );
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.voxl-hero__subtitle {
  font-size: var(--voxl-font-size-xl);
  color: var(--voxl-color-text-light);
  margin-bottom: var(--voxl-spacing-2xl);
  max-width: 700px;
}

.voxl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--voxl-spacing-md);
  margin-bottom: var(--voxl-spacing-3xl);
}

.voxl-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--voxl-spacing-lg);
  padding-top: var(--voxl-spacing-xl);
  border: none;
}

.voxl-metric {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-xs);
  position: relative;
}

.voxl-metric--glass {
  padding: var(--voxl-spacing-lg);
  background: rgba(247, 244, 240, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--voxl-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 8px 32px rgba(31, 31, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(31, 31, 31, 0.05);
  transition: all var(--voxl-transition-base);
  position: relative;
  overflow: hidden;
}

.voxl-metric--glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 137, 79, 0.3),
    transparent
  );
  opacity: 0.6;
}

.voxl-metric--glass:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(31, 31, 31, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(31, 31, 31, 0.08),
    0 0 20px rgba(196, 137, 79, 0.2);
  border-color: rgba(196, 137, 79, 0.3);
}

.voxl-metric__value {
  font-size: var(--voxl-font-display-sm);
  font-weight: 800;
  color: var(--voxl-color-accent);
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(31, 31, 31, 0.1);
}

.voxl-metric__label {
  font-size: var(--voxl-font-size-sm);
  color: var(--voxl-color-text-light);
  position: relative;
  z-index: 1;
}

/* 3D Wireframe Visualization */
.voxl-hero__visual {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(var(--voxl-spacing-md) + var(--voxl-spacing-sm));
  z-index: 1;
  overflow: hidden;
  border-radius: var(--voxl-radius-lg);
}

.voxl-hero__wireframe {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(139, 111, 71, 0.5)) 
          drop-shadow(0 0 40px rgba(139, 111, 71, 0.3))
          drop-shadow(0 0 80px rgba(196, 137, 79, 0.2))
          contrast(1.1)
          brightness(0.95);
  cursor: crosshair;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (prefers-reduced-motion: reduce) {
  .voxl-hero__wireframe {
    opacity: 0.7;
    filter: drop-shadow(0 0 20px rgba(196, 137, 79, 0.3));
  }
}

.voxl-hero__wireframe-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(196, 137, 79, 0.08) 40%,
    rgba(196, 137, 79, 0.03) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  animation: shimmer 8s ease-in-out infinite;
  mix-blend-mode: overlay;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .voxl-hero__wireframe-overlay {
    animation: none;
    opacity: 0.5;
  }
  
  .voxl-hero__title-halo {
    animation: none;
    opacity: 0.7;
  }
}

@media (max-width: 1023px) {
  .voxl-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--voxl-spacing-2xl);
    align-items: start;
  }

  .voxl-hero__visual {
    height: 400px;
    min-height: 350px;
    order: -1;
    padding-top: 0;
    align-items: center;
  }
}

/* Sections */
.voxl-section {
  padding: var(--voxl-spacing-4xl) 0;
}

.voxl-section--alt {
  background: var(--voxl-color-surface);
}

.voxl-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--voxl-spacing-4xl);
  padding-bottom: var(--voxl-spacing-xl);
}

.voxl-section__title {
  font-size: var(--voxl-font-display-base);
  margin-bottom: var(--voxl-spacing-md);
}

.voxl-section__description {
  font-size: var(--voxl-font-size-lg);
  color: var(--voxl-color-text-light);
}

/* Cards - Glassmorphism */
.voxl-card {
  padding: var(--voxl-spacing-xl);
  background: var(--voxl-color-surface);
  border-radius: var(--voxl-radius-lg);
  border: 1px solid var(--voxl-color-border);
  transition: all var(--voxl-transition-base);
}

.voxl-card--glass {
  background: rgba(247, 244, 240, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--voxl-shadow-glass);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.voxl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--voxl-shadow-lg);
}

.voxl-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 137, 79, 0.1);
  border-radius: var(--voxl-radius-md);
  color: var(--voxl-color-accent);
  margin-bottom: var(--voxl-spacing-md);
}

.voxl-card__title {
  font-size: var(--voxl-font-size-xl);
  margin-bottom: var(--voxl-spacing-sm);
}

.voxl-card__text {
  font-size: var(--voxl-font-size-base);
  color: var(--voxl-color-text-light);
  margin-bottom: var(--voxl-spacing-md);
  line-height: 1.7;
}

.voxl-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-xs);
}

.voxl-card__list li {
  font-size: var(--voxl-font-size-sm);
  color: var(--voxl-color-text);
  padding-left: var(--voxl-spacing-md);
  position: relative;
}

.voxl-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--voxl-color-accent);
}

/* Services - Z-Pattern Layout */
.voxl-services {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-4xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--voxl-spacing-xl) 0;
}

.voxl-service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--voxl-spacing-4xl);
  align-items: center;
  min-height: 400px;
  padding: var(--voxl-spacing-3xl) 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxl-service-item--left {
  grid-template-columns: 1.2fr 1fr;
}

.voxl-service-item--right {
  grid-template-columns: 1fr 1.2fr;
}

.voxl-service-item--right .voxl-service-item__content {
  order: 2;
}

.voxl-service-item--right .voxl-service-item__visual {
  order: 1;
}

.voxl-service-item--visible {
  opacity: 1;
  transform: translateY(0);
}

.voxl-service-item__content {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-lg);
  padding: var(--voxl-spacing-xl) 0;
}

.voxl-service-item__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--voxl-color-primary);
  margin: 0;
}

.voxl-service-item__description {
  font-size: var(--voxl-font-size-lg);
  line-height: 1.8;
  color: var(--voxl-color-text-light);
  margin: 0;
  max-width: 600px;
  letter-spacing: -0.01em;
}

.voxl-service-item__list {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.voxl-service-item__list li {
  font-size: var(--voxl-font-size-base);
  color: var(--voxl-color-text);
  padding-left: var(--voxl-spacing-lg);
  position: relative;
  line-height: 1.6;
}

.voxl-service-item__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--voxl-color-accent);
  transform: translateY(-50%);
}

.voxl-service-item__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 300px;
}

.voxl-service-item__icon-container {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at center,
    rgba(196, 137, 79, 0.1) 0%,
    rgba(196, 137, 79, 0.05) 50%,
    transparent 100%
  );
  border-radius: 50%;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxl-service-item--visible .voxl-service-item__icon-container {
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

.voxl-service-item__icon-container::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(196, 137, 79, 0.2);
  border-radius: 50%;
  animation: orbitPulse 4s ease-in-out infinite;
}

.voxl-service-item--visible .voxl-service-item__icon-container::before {
  animation: orbitPulse 4s ease-in-out infinite;
}

@keyframes orbitPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.voxl-service-item__icon-container svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(196, 137, 79, 0.3));
  transition: transform 0.3s ease;
}

.voxl-service-item:hover .voxl-service-item__icon-container svg {
  transform: rotate(5deg) scale(1.1);
}

/* Responsive - Mobile */
@media (max-width: 1023px) {
  .voxl-services {
    gap: var(--voxl-spacing-3xl);
  }

  .voxl-service-item {
    grid-template-columns: 1fr;
    gap: var(--voxl-spacing-2xl);
    min-height: auto;
    padding: var(--voxl-spacing-2xl) 0;
  }

  .voxl-service-item--left,
  .voxl-service-item--right {
    grid-template-columns: 1fr;
  }

  .voxl-service-item--right .voxl-service-item__content,
  .voxl-service-item--right .voxl-service-item__visual {
    order: 0;
  }

  .voxl-service-item__visual {
    min-height: 200px;
    order: -1;
  }

  .voxl-service-item__icon-container {
    width: 120px;
    height: 120px;
  }

  .voxl-service-item__title {
    font-size: clamp(1.75rem, 1.5rem + 2vw, 2.5rem);
  }

  .voxl-service-item__description {
    font-size: var(--voxl-font-size-base);
  }
}

@media (prefers-reduced-motion: reduce) {
  .voxl-service-item {
    transition: opacity 0.3s ease;
  }

  .voxl-service-item__icon-container,
  .voxl-service-item__icon-container::before {
    animation: none;
  }

  .voxl-service-item:hover .voxl-service-item__icon-container svg {
    transform: none;
  }
}

/* Work Grid - Staggered layout */
.voxl-work {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--voxl-spacing-xl);
}

.voxl-work__item {
  display: flex;
  flex-direction: column;
  border-radius: var(--voxl-radius-lg);
  overflow: hidden;
  background: var(--voxl-color-surface);
  border: 1px solid var(--voxl-color-border);
  transition: all var(--voxl-transition-base);
}

.voxl-work__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(31, 31, 31, 0.15),
              0 4px 12px rgba(196, 137, 79, 0.1);
  border-color: rgba(196, 137, 79, 0.3);
}

.voxl-work__item:hover .voxl-work__image {
  background: linear-gradient(135deg, #D4A574 0%, #C4894F 100%);
}

.voxl-work__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C4894F 0%, #8B6F47 100%);
}

.voxl-work__icon-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxl-work__item:hover .voxl-work__icon-wrapper {
  transform: scale(1.05);
}

.voxl-work__icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(247, 244, 240, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.voxl-work__item:hover .voxl-work__icon-wrapper::before {
  opacity: 1;
}

.voxl-work__icon {
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 16px rgba(31, 31, 31, 0.25));
}

.voxl-work__item:hover .voxl-work__icon {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 6px 20px rgba(31, 31, 31, 0.3));
}

.voxl-work__icon .icon-animation {
  animation: iconPulse 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes iconPulse {
  0%, 100% {
    opacity: 0.95;
    transform: scale(1) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.03) translateY(-3px);
  }
}

/* E-commerce icon animations - Cart wheels and products */
.voxl-work__item:nth-child(1) .voxl-work__icon .cart-wheel {
  animation: wheelRotate 2s linear infinite;
  transform-origin: center;
}

@keyframes wheelRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.voxl-work__item:nth-child(1) .voxl-work__icon .product-1 {
  animation: productFloat 2.5s ease-in-out infinite;
  transform-origin: center;
}

.voxl-work__item:nth-child(1) .voxl-work__icon .product-2 {
  animation: productFloat 2.5s ease-in-out infinite 0.3s;
  transform-origin: center;
}

.voxl-work__item:nth-child(1) .voxl-work__icon .product-3 {
  animation: productFloat 2.5s ease-in-out infinite 0.6s;
  transform-origin: center;
}

@keyframes productFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-4px) scale(1.05);
    opacity: 1;
  }
}

/* Healthcare icon animations - Shield pulse and cross glow */
.voxl-work__item:nth-child(2) .voxl-work__icon .shield {
  animation: shieldPulse 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes shieldPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.voxl-work__item:nth-child(2) .voxl-work__icon .cross {
  animation: crossGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 4px rgba(247, 244, 240, 0.6));
}

@keyframes crossGlow {
  0%, 100% {
    opacity: 0.95;
    filter: drop-shadow(0 0 4px rgba(247, 244, 240, 0.6));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(247, 244, 240, 0.9));
  }
}

.voxl-work__item:nth-child(2) .voxl-work__icon .pulse-1,
.voxl-work__item:nth-child(2) .voxl-work__icon .pulse-2 {
  animation: pulseWave 2s ease-in-out infinite;
}

.voxl-work__item:nth-child(2) .voxl-work__icon .pulse-2 {
  animation-delay: 1s;
}

@keyframes pulseWave {
  0%, 100% {
    r: 1.5;
    opacity: 0.6;
  }
  50% {
    r: 2.5;
    opacity: 1;
  }
}

/* Analytics icon animations - Bar growth and line animation */
.voxl-work__item:nth-child(3) .voxl-work__icon .bar-1 {
  animation: barGrow 2.5s ease-in-out infinite;
  transform-origin: bottom;
}

.voxl-work__item:nth-child(3) .voxl-work__icon .bar-2 {
  animation: barGrow 2.5s ease-in-out infinite 0.2s;
  transform-origin: bottom;
}

.voxl-work__item:nth-child(3) .voxl-work__icon .bar-3 {
  animation: barGrow 2.5s ease-in-out infinite 0.4s;
  transform-origin: bottom;
}

.voxl-work__item:nth-child(3) .voxl-work__icon .bar-4 {
  animation: barGrow 2.5s ease-in-out infinite 0.6s;
  transform-origin: bottom;
}

@keyframes barGrow {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.9;
  }
  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

.voxl-work__item:nth-child(3) .voxl-work__icon .line-chart {
  stroke-dasharray: 20;
  stroke-dashoffset: 0;
  animation: lineDraw 3s ease-in-out infinite;
}

@keyframes lineDraw {
  0% {
    stroke-dashoffset: 20;
    opacity: 0.7;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -20;
    opacity: 0.7;
  }
}

.voxl-work__item:nth-child(3) .voxl-work__icon .point-1,
.voxl-work__item:nth-child(3) .voxl-work__icon .point-2,
.voxl-work__item:nth-child(3) .voxl-work__icon .point-3,
.voxl-work__item:nth-child(3) .voxl-work__icon .point-4,
.voxl-work__item:nth-child(3) .voxl-work__icon .point-5 {
  animation: pointPulse 2s ease-in-out infinite;
}

.voxl-work__item:nth-child(3) .voxl-work__icon .point-1 { animation-delay: 0s; }
.voxl-work__item:nth-child(3) .voxl-work__icon .point-2 { animation-delay: 0.2s; }
.voxl-work__item:nth-child(3) .voxl-work__icon .point-3 { animation-delay: 0.4s; }
.voxl-work__item:nth-child(3) .voxl-work__icon .point-4 { animation-delay: 0.6s; }
.voxl-work__item:nth-child(3) .voxl-work__icon .point-5 { animation-delay: 0.8s; }

@keyframes pointPulse {
  0%, 100% {
    r: 1.5;
    opacity: 0.9;
  }
  50% {
    r: 2;
    opacity: 1;
  }
}

/* Marketing icon animations - Channel connections */
.voxl-work__item:nth-child(4) .voxl-work__icon .hub {
  animation: hubPulse 2.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes hubPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.voxl-work__item:nth-child(4) .voxl-work__icon .channel-1,
.voxl-work__item:nth-child(4) .voxl-work__icon .channel-2,
.voxl-work__item:nth-child(4) .voxl-work__icon .channel-3,
.voxl-work__item:nth-child(4) .voxl-work__icon .channel-4 {
  animation: channelPulse 2s ease-in-out infinite;
}

.voxl-work__item:nth-child(4) .voxl-work__icon .channel-1 { animation-delay: 0s; }
.voxl-work__item:nth-child(4) .voxl-work__icon .channel-2 { animation-delay: 0.5s; }
.voxl-work__item:nth-child(4) .voxl-work__icon .channel-3 { animation-delay: 1s; }
.voxl-work__item:nth-child(4) .voxl-work__icon .channel-4 { animation-delay: 1.5s; }

@keyframes channelPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.voxl-work__item:nth-child(4) .voxl-work__icon .conn-1,
.voxl-work__item:nth-child(4) .voxl-work__icon .conn-2,
.voxl-work__item:nth-child(4) .voxl-work__icon .conn-3,
.voxl-work__item:nth-child(4) .voxl-work__icon .conn-4 {
  stroke-dasharray: 8;
  stroke-dashoffset: 0;
  animation: dataFlow 3s linear infinite;
}

.voxl-work__item:nth-child(4) .voxl-work__icon .conn-1 { animation-delay: 0s; }
.voxl-work__item:nth-child(4) .voxl-work__icon .conn-2 { animation-delay: 0.3s; }
.voxl-work__item:nth-child(4) .voxl-work__icon .conn-3 { animation-delay: 0.6s; }
.voxl-work__item:nth-child(4) .voxl-work__icon .conn-4 { animation-delay: 0.9s; }

@keyframes dataFlow {
  0% {
    stroke-dashoffset: 0;
    opacity: 0.6;
  }
  50% {
    stroke-dashoffset: -16;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -32;
    opacity: 0.6;
  }
}

.voxl-work__item:nth-child(4) .voxl-work__icon .flow-arrows {
  animation: arrowFlow 2s ease-in-out infinite;
}

@keyframes arrowFlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.voxl-work__item:hover .voxl-work__icon .icon-animation {
  animation-duration: 2s;
}

/* Hover effects for specific elements */
.voxl-work__item:hover .voxl-work__icon .cart-wheel {
  animation-duration: 1.5s;
}

.voxl-work__item:hover .voxl-work__icon .product-1,
.voxl-work__item:hover .voxl-work__icon .product-2,
.voxl-work__item:hover .voxl-work__icon .product-3 {
  animation-duration: 1.8s;
}

.voxl-work__item:hover .voxl-work__icon .shield {
  animation-duration: 2s;
}

.voxl-work__item:hover .voxl-work__icon .bar-1,
.voxl-work__item:hover .voxl-work__icon .bar-2,
.voxl-work__item:hover .voxl-work__icon .bar-3,
.voxl-work__item:hover .voxl-work__icon .bar-4 {
  animation-duration: 1.5s;
}

.voxl-work__item:hover .voxl-work__icon .channel-1,
.voxl-work__item:hover .voxl-work__icon .channel-2,
.voxl-work__item:hover .voxl-work__icon .channel-3,
.voxl-work__item:hover .voxl-work__icon .channel-4 {
  animation-duration: 1.5s;
}

@media (prefers-reduced-motion: reduce) {
  .voxl-work__icon .icon-animation,
  .voxl-work__icon .cart-wheel,
  .voxl-work__icon .product-1,
  .voxl-work__icon .product-2,
  .voxl-work__icon .product-3,
  .voxl-work__icon .shield,
  .voxl-work__icon .cross,
  .voxl-work__icon .pulse-1,
  .voxl-work__icon .pulse-2,
  .voxl-work__icon .bar-1,
  .voxl-work__icon .bar-2,
  .voxl-work__icon .bar-3,
  .voxl-work__icon .bar-4,
  .voxl-work__icon .line-chart,
  .voxl-work__icon .point-1,
  .voxl-work__icon .point-2,
  .voxl-work__icon .point-3,
  .voxl-work__icon .point-4,
  .voxl-work__icon .point-5,
  .voxl-work__icon .hub,
  .voxl-work__icon .channel-1,
  .voxl-work__icon .channel-2,
  .voxl-work__icon .channel-3,
  .voxl-work__icon .channel-4,
  .voxl-work__icon .conn-1,
  .voxl-work__icon .conn-2,
  .voxl-work__icon .conn-3,
  .voxl-work__icon .conn-4,
  .voxl-work__icon .flow-arrows {
    animation: none;
  }
  
  .voxl-work__item:hover .voxl-work__icon-wrapper,
  .voxl-work__item:hover .voxl-work__icon {
    transform: none;
  }
}

.voxl-work__content {
  padding: var(--voxl-spacing-lg);
}

.voxl-work__title {
  font-size: var(--voxl-font-size-lg);
  margin-bottom: var(--voxl-spacing-sm);
}

.voxl-work__description {
  font-size: var(--voxl-font-size-sm);
  color: var(--voxl-color-text-light);
  margin-bottom: var(--voxl-spacing-md);
  line-height: 1.6;
}

.voxl-work__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--voxl-spacing-xs);
}

.voxl-work__tags li {
  padding: 0.25rem 0.75rem;
  font-size: var(--voxl-font-size-xs);
  background: rgba(196, 137, 79, 0.1);
  color: var(--voxl-color-accent-dark);
  border-radius: var(--voxl-radius-full);
  font-weight: 500;
}

/* Work Section - Mobile Responsive */
@media (max-width: 767px) {
  .voxl-work {
    grid-template-columns: 1fr;
    gap: var(--voxl-spacing-lg);
  }

  .voxl-work__icon {
    width: 100px;
    height: 100px;
  }

  .voxl-work__image {
    aspect-ratio: 16 / 9;
  }

  .voxl-work__icon-wrapper {
    padding: var(--voxl-spacing-md);
  }
}

/* Timeline - Process */
.voxl-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: var(--voxl-spacing-xl);
}

.voxl-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--voxl-color-border);
}

.voxl-timeline__item {
  position: relative;
  padding-bottom: var(--voxl-spacing-2xl);
}

.voxl-timeline__marker {
  position: absolute;
  left: calc(-1 * var(--voxl-spacing-xl) - 6px);
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--voxl-color-accent);
  border: 3px solid var(--voxl-color-bg);
  box-shadow: 0 0 0 2px var(--voxl-color-accent);
}

.voxl-timeline__content {
  background: var(--voxl-color-surface);
  padding: var(--voxl-spacing-lg);
  border-radius: var(--voxl-radius-lg);
  border: 1px solid var(--voxl-color-border);
}

.voxl-timeline__title {
  font-size: var(--voxl-font-size-xl);
  margin-bottom: var(--voxl-spacing-sm);
}

.voxl-timeline__text {
  font-size: var(--voxl-font-size-base);
  color: var(--voxl-color-text-light);
  margin-bottom: var(--voxl-spacing-md);
  line-height: 1.7;
}

.voxl-timeline__list {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-xs);
}

.voxl-timeline__list li {
  font-size: var(--voxl-font-size-sm);
  padding-left: var(--voxl-spacing-md);
  position: relative;
}

.voxl-timeline__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--voxl-color-accent);
  font-weight: 700;
}

/* Metrics Grid */
.voxl-metrics {
  background: linear-gradient(135deg, var(--voxl-color-surface) 0%, var(--voxl-color-surface-alt) 100%);
}

.voxl-metrics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--voxl-spacing-xl);
}

.voxl-metrics__item {
  text-align: center;
  padding: var(--voxl-spacing-lg);
}

.voxl-metrics__value {
  display: block;
  font-size: var(--voxl-font-display-base);
  font-weight: 800;
  color: var(--voxl-color-accent);
  line-height: 1;
  margin-bottom: var(--voxl-spacing-sm);
}

.voxl-metrics__label {
  display: block;
  font-size: var(--voxl-font-size-lg);
  font-weight: 600;
  color: var(--voxl-color-primary);
  margin-bottom: var(--voxl-spacing-xs);
}

.voxl-metrics__context {
  font-size: var(--voxl-font-size-sm);
  color: var(--voxl-color-text-light);
}

/* Industries - Badges */
.voxl-industries {
  display: flex; 
  flex-wrap: wrap; 
  gap: var(--voxl-spacing-md);
  justify-content: center;
}

.voxl-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--voxl-spacing-sm) var(--voxl-spacing-lg);
  font-size: var(--voxl-font-size-sm);
  font-weight: 600;
  background: rgba(196, 137, 79, 0.1);
  color: var(--voxl-color-accent-dark);
  border: 1px solid rgba(196, 137, 79, 0.2);
  border-radius: var(--voxl-radius-full);
  transition: all var(--voxl-transition-fast);
}

.voxl-badge:hover {
  background: var(--voxl-color-accent);
  color: var(--voxl-color-bg);
  transform: translateY(-2px);
  box-shadow: var(--voxl-shadow-md);
}

/* Testimonials */
.voxl-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--voxl-spacing-xl);
}

.voxl-testimonial {
  margin: 0;
  padding: var(--voxl-spacing-xl);
}

.voxl-testimonial__quote {
  font-size: var(--voxl-font-size-lg);
  font-style: italic;
  color: var(--voxl-color-text);
  margin-bottom: var(--voxl-spacing-lg);
  line-height: 1.7;
}

.voxl-testimonial__quote::before {
  content: '"';
  font-size: 3em;
  line-height: 0;
  color: var(--voxl-color-accent);
  opacity: 0.3;
  margin-right: 0.1em;
  vertical-align: -0.3em;
}

.voxl-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-xs);
  font-size: var(--voxl-font-size-sm);
}

.voxl-testimonial__author strong {
  color: var(--voxl-color-primary);
  font-weight: 600;
}

.voxl-testimonial__author span {
  color: var(--voxl-color-text-light);
}

/* FAQ */
/* FAQ Section - Premium Professional Design */
#faq.voxl-section--alt .voxl-section__header {
  margin-bottom: var(--voxl-spacing-5xl);
  position: relative;
  padding-bottom: var(--voxl-spacing-xl);
}

#faq.voxl-section--alt .voxl-section__header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 137, 79, 0.5),
    rgba(212, 165, 116, 0.7),
    rgba(196, 137, 79, 0.5),
    transparent
  );
  border-radius: 2px;
}

#faq.voxl-section--alt .voxl-section__title {
  background: linear-gradient(
    135deg,
    var(--voxl-color-primary) 0%,
    rgba(196, 137, 79, 0.9) 50%,
    var(--voxl-color-primary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(196, 137, 79, 0.15));
  position: relative;
}

#faq.voxl-section--alt .voxl-section__description {
  font-size: var(--voxl-font-size-lg);
  color: var(--voxl-color-text-light);
  line-height: 1.7;
  margin-top: var(--voxl-spacing-md);
}

.voxl-faq {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-xl);
  padding: var(--voxl-spacing-lg) 0;
}

/* Scroll animations for FAQ items */
.voxl-faq__item {
  border: 2px solid rgba(196, 137, 79, 0.2);
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(247, 244, 240, 0.95) 100%
  );
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  box-shadow: 
    0 8px 32px rgba(31, 31, 31, 0.08),
    0 4px 16px rgba(196, 137, 79, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(31, 31, 31, 0.05);
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.voxl-faq__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 137, 79, 0.4) 30%,
    rgba(212, 165, 116, 0.6) 50%,
    rgba(196, 137, 79, 0.4) 70%,
    transparent 100%
  );
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxl-faq__item::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(196, 137, 79, 0.2) 0%,
    rgba(212, 165, 116, 0.3) 50%,
    rgba(139, 111, 71, 0.2) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.voxl-faq__item--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.voxl-faq__item--visible:nth-child(1) { transition-delay: 0.05s; }
.voxl-faq__item--visible:nth-child(2) { transition-delay: 0.1s; }
.voxl-faq__item--visible:nth-child(3) { transition-delay: 0.15s; }
.voxl-faq__item--visible:nth-child(4) { transition-delay: 0.2s; }
.voxl-faq__item--visible:nth-child(5) { transition-delay: 0.25s; }
.voxl-faq__item--visible:nth-child(6) { transition-delay: 0.3s; }
.voxl-faq__item--visible:nth-child(7) { transition-delay: 0.35s; }
.voxl-faq__item--visible:nth-child(8) { transition-delay: 0.4s; }

.voxl-faq__item--visible:hover {
  border-color: rgba(196, 137, 79, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(247, 244, 240, 1) 100%
  );
  box-shadow: 
    0 16px 48px rgba(31, 31, 31, 0.12),
    0 8px 24px rgba(196, 137, 79, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(31, 31, 31, 0.06),
    0 0 0 2px rgba(196, 137, 79, 0.15);
  transform: translateY(-4px) scale(1.02);
}

.voxl-faq__item--visible:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.voxl-faq__item--visible:hover::after {
  opacity: 1;
}

.voxl-faq__item[open] {
  border-color: rgba(196, 137, 79, 0.5);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(247, 244, 240, 1) 100%
  );
  box-shadow: 
    0 20px 60px rgba(31, 31, 31, 0.15),
    0 12px 36px rgba(196, 137, 79, 0.12),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 0 rgba(31, 31, 31, 0.08),
    0 0 0 2px rgba(196, 137, 79, 0.2);
  transform: scale(1.01);
}

.voxl-faq__item[open]::before {
  opacity: 1;
  transform: scaleX(1);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 137, 79, 0.6) 30%,
    rgba(212, 165, 116, 0.8) 50%,
    rgba(196, 137, 79, 0.6) 70%,
    transparent 100%
  );
}

.voxl-faq__item[open]::after {
  opacity: 1;
}

.voxl-faq__question {
  padding: var(--voxl-spacing-2xl);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 600;
  color: var(--voxl-color-primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--voxl-spacing-lg);
  align-items: center;
  user-select: none;
}

.voxl-faq__question::-webkit-details-marker {
  display: none;
}

.voxl-faq__icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(196, 137, 79, 0.15) 0%,
    rgba(212, 165, 116, 0.2) 100%
  );
  border: 2px solid rgba(196, 137, 79, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.voxl-faq__icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(
    circle,
    rgba(196, 137, 79, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.voxl-faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(196, 137, 79, 0.2));
}

.voxl-faq__question-text {
  font-weight: 600;
  line-height: 1.5;
  color: var(--voxl-color-primary);
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.voxl-faq__toggle-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(196, 137, 79, 0.1) 0%,
    rgba(212, 165, 116, 0.15) 100%
  );
  border: 2px solid rgba(196, 137, 79, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.voxl-faq__toggle-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 137, 79, 0.2) 0%,
    rgba(212, 165, 116, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.voxl-faq__toggle-icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  color: var(--voxl-color-accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxl-faq__toggle-icon .faq-icon-plus {
  opacity: 1;
  transform: rotate(0deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxl-faq__toggle-icon .faq-icon-minus {
  position: absolute;
  opacity: 0;
  transform: rotate(90deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.voxl-faq__item[open] .voxl-faq__toggle-icon {
  background: linear-gradient(
    135deg,
    rgba(196, 137, 79, 0.25) 0%,
    rgba(212, 165, 116, 0.3) 100%
  );
  border-color: rgba(196, 137, 79, 0.4);
  transform: rotate(90deg);
}

.voxl-faq__item[open] .voxl-faq__toggle-icon::before {
  opacity: 1;
}

.voxl-faq__item[open] .voxl-faq__toggle-icon .faq-icon-plus {
  opacity: 0;
  transform: rotate(-90deg);
}

.voxl-faq__item[open] .voxl-faq__toggle-icon .faq-icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}

.voxl-faq__question:hover {
  color: var(--voxl-color-accent);
}

.voxl-faq__question:hover .voxl-faq__icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(196, 137, 79, 0.25) 0%,
    rgba(212, 165, 116, 0.3) 100%
  );
  border-color: rgba(196, 137, 79, 0.4);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 4px 12px rgba(196, 137, 79, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.voxl-faq__question:hover .voxl-faq__icon-wrapper::before {
  opacity: 1;
}

.voxl-faq__question:hover .voxl-faq__icon {
  transform: scale(1.1);
}

.voxl-faq__question:hover .voxl-faq__toggle-icon {
  background: linear-gradient(
    135deg,
    rgba(196, 137, 79, 0.2) 0%,
    rgba(212, 165, 116, 0.25) 100%
  );
  border-color: rgba(196, 137, 79, 0.35);
  transform: scale(1.1);
}

.voxl-faq__question:hover .voxl-faq__toggle-icon::before {
  opacity: 1;
}

.voxl-faq__item[open] .voxl-faq__question:hover .voxl-faq__icon-wrapper {
  transform: scale(1.15) rotate(-5deg);
}

.voxl-faq__question:focus-visible {
  outline: 2px solid var(--voxl-color-accent);
  outline-offset: -2px;
  border-radius: 16px 16px 0 0;
}

.voxl-faq__answer {
  padding: 0 var(--voxl-spacing-2xl) var(--voxl-spacing-2xl);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease 0.1s;
  opacity: 0;
}

.voxl-faq__item[open] .voxl-faq__answer {
  max-height: 600px;
  padding: 0 var(--voxl-spacing-2xl) var(--voxl-spacing-2xl);
  opacity: 1;
}

.voxl-faq__answer-content {
  padding-top: var(--voxl-spacing-sm);
  position: relative;
  padding-left: calc(48px + var(--voxl-spacing-lg));
}

.voxl-faq__answer-content::before {
  content: '';
  position: absolute;
  left: calc(24px - 1px);
  top: 0.5em;
  bottom: 0.5em;
  width: 3px;
  background: linear-gradient(
    180deg,
    rgba(196, 137, 79, 0.4) 0%,
    rgba(212, 165, 116, 0.3) 50%,
    rgba(196, 137, 79, 0.2) 100%
  );
  border-radius: 2px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.voxl-faq__item[open] .voxl-faq__answer-content::before {
  opacity: 1;
  transform: scaleY(1);
}

.voxl-faq__answer-content p {
  font-size: var(--voxl-font-size-base);
  color: var(--voxl-color-text-light);
  line-height: 1.9;
  margin: 0;
  letter-spacing: -0.01em;
  position: relative;
}

/* FAQ Icon Animations */
@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
}

@keyframes iconPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.voxl-faq__item:hover .voxl-faq__icon {
  animation: iconFloat 2s ease-in-out infinite;
}

.voxl-faq__item[open] .voxl-faq__icon {
  animation: iconPulse 2s ease-in-out infinite;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .voxl-faq {
    gap: var(--voxl-spacing-lg);
    padding: var(--voxl-spacing-md) 0;
  }

  .voxl-faq__item {
    border-width: 1.5px;
    border-radius: 12px;
    transform: translateY(20px) scale(0.97);
  }

  .voxl-faq__item--visible {
    transform: translateY(0) scale(1);
  }

  .voxl-faq__item--visible:hover {
    transform: translateY(-2px) scale(1.01);
  }

  .voxl-faq__question {
    padding: var(--voxl-spacing-xl);
    font-size: var(--voxl-font-size-base);
    min-height: 64px;
    gap: var(--voxl-spacing-md);
    grid-template-columns: auto 1fr auto;
  }

  .voxl-faq__icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .voxl-faq__icon {
    width: 20px;
    height: 20px;
  }

  .voxl-faq__question-text {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .voxl-faq__toggle-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .voxl-faq__toggle-icon svg {
    width: 18px;
    height: 18px;
  }

  .voxl-faq__answer {
    padding: 0 var(--voxl-spacing-xl) var(--voxl-spacing-xl);
  }

  .voxl-faq__item[open] .voxl-faq__answer {
    padding: 0 var(--voxl-spacing-xl) var(--voxl-spacing-xl);
  }

  .voxl-faq__answer-content {
    padding-left: calc(40px + var(--voxl-spacing-md));
  }

  .voxl-faq__answer-content::before {
    left: calc(20px - 1px);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .voxl-faq__item,
  .voxl-faq__question,
  .voxl-faq__icon-wrapper,
  .voxl-faq__icon,
  .voxl-faq__toggle-icon,
  .voxl-faq__answer,
  .voxl-faq__answer-content::before {
    transition: none;
    animation: none;
  }

  .voxl-faq__item--visible:hover {
    transform: none;
  }

  .voxl-faq__item[open] {
    transform: none;
  }

  .voxl-faq__item[open] .voxl-faq__answer {
    max-height: none;
  }

  .voxl-faq__item[open] .voxl-faq__answer-content::before {
    transform: none;
  }
}

/* Contact */
.voxl-contact {
  background: var(--voxl-color-surface);
}

.voxl-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--voxl-spacing-3xl);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .voxl-contact__grid {
    grid-template-columns: 1fr;
  }
}

.voxl-contact__info-title {
  font-size: var(--voxl-font-size-xl);
  margin-bottom: var(--voxl-spacing-lg);
}

.voxl-contact__address {
  font-style: normal;
  line-height: 1.8;
}

.voxl-contact__address p {
  margin-bottom: var(--voxl-spacing-lg);
  font-size: var(--voxl-font-size-base);
}

.voxl-contact__address strong {
  color: var(--voxl-color-primary);
  font-weight: 600;
}

.voxl-contact__address a {
  color: var(--voxl-color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--voxl-transition-fast);
}

.voxl-contact__address a:hover,
.voxl-contact__address a:focus-visible {
  color: var(--voxl-color-accent-dark);
  outline: 2px solid var(--voxl-color-accent);
  outline-offset: 2px;
}

/* Forms */
.voxl-form__group {
  margin-bottom: var(--voxl-spacing-lg);
}

.voxl-form__label {
  display: block;
  font-size: var(--voxl-font-size-sm);
  font-weight: 600;
  color: var(--voxl-color-primary);
  margin-bottom: var(--voxl-spacing-xs);
}

.voxl-form__input,
.voxl-form__textarea,
.voxl-form__select {
  width: 100%;
  padding: var(--voxl-spacing-sm) var(--voxl-spacing-md);
  font-size: var(--voxl-font-size-base);
  background: var(--voxl-color-bg);
  border: 2px solid var(--voxl-color-border);
  border-radius: var(--voxl-radius-md);
  color: var(--voxl-color-text);
  transition: all var(--voxl-transition-fast);
}

.voxl-form__input:focus,
.voxl-form__textarea:focus,
.voxl-form__select:focus {
  outline: none;
  border-color: var(--voxl-color-accent);
  box-shadow: 0 0 0 3px rgba(196, 137, 79, 0.1);
}

.voxl-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.voxl-form__select {
  cursor: pointer;
}

/* Footer */
.voxl-footer {
  background: var(--voxl-color-primary);
  color: var(--voxl-color-surface);
  padding: var(--voxl-spacing-3xl) 0 var(--voxl-spacing-xl);
  margin-top: var(--voxl-spacing-4xl);
}

.voxl-footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--voxl-spacing-3xl);
  margin-bottom: var(--voxl-spacing-2xl);
}

@media (max-width: 1023px) {
  .voxl-footer__content {
    grid-template-columns: 1fr;
    gap: var(--voxl-spacing-xl);
  }
}

.voxl-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-sm);
  align-items: flex-start;
}

.voxl-footer__name {
  font-size: var(--voxl-font-size-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.voxl-footer__tagline {
  font-size: var(--voxl-font-size-sm);
  color: rgba(247, 244, 240, 0.7);
}

.voxl-footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-sm);
}

.voxl-footer__nav-title {
  font-size: var(--voxl-font-size-base);
  font-weight: 600;
  margin-bottom: var(--voxl-spacing-xs);
}

.voxl-footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: var(--voxl-spacing-xs);
}

.voxl-footer__nav-group a {
  font-size: var(--voxl-font-size-sm);
  color: rgba(247, 244, 240, 0.8);
  transition: color var(--voxl-transition-fast);
}

.voxl-footer__nav-group a:hover,
.voxl-footer__nav-group a:focus-visible {
  color: var(--voxl-color-accent);
  outline: 2px solid var(--voxl-color-accent);
  outline-offset: 2px;
}

.voxl-footer__meta {
  padding-top: var(--voxl-spacing-xl);
  border-top: 1px solid rgba(247, 244, 240, 0.2);
  text-align: center;
}

.voxl-footer__legal {
  font-size: var(--voxl-font-size-xs);
  color: rgba(247, 244, 240, 0.6);
  margin-bottom: var(--voxl-spacing-xs);
}

/* Responsive Typography Adjustments */
@media (max-width: 767px) {
  .voxl-hero {
    min-height: auto;
    padding: var(--voxl-spacing-2xl) 0;
  }

  .voxl-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--voxl-spacing-xl);
  }

  .voxl-hero__visual {
    height: 300px;
    min-height: 250px;
    order: -1;
    padding-top: 0;
    align-items: center;
  }

  .voxl-hero__title {
    font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    line-height: 1.25;
  }

  .voxl-hero__title-halo {
    width: 110%;
    height: 120%;
    filter: blur(30px);
  }

  .voxl-hero__subtitle {
    font-size: var(--voxl-font-size-lg);
  }

  .voxl-hero__metrics {
    flex-direction: column;
    gap: var(--voxl-spacing-md);
  }

  .voxl-metric--glass {
    width: 100%;
    padding: var(--voxl-spacing-md);
  }

  .voxl-section__title {
    font-size: var(--voxl-font-display-sm);
  }
}

/* Accessibility - Focus States */
*:focus-visible {
  outline: 2px solid var(--voxl-color-accent);
  outline-offset: 2px;
  border-radius: var(--voxl-radius-sm);
}

/* Print Styles */
@media print {
  .voxl-header,
  .voxl-footer,
  .voxl-btn,
  .voxl-nav {
    display: none;
  }

  .voxl-section {
    page-break-inside: avoid;
  }
}