/* Design system: Industrial Cyberpunk - Yellow, Grey, Black palette */
/* Colors: #0A0A0A (Primary Black), #1A1A1A (Secondary Grey), #A0A0A0 (Secondary Text), #FFD700/#F4CE14 (Accent Yellow) */

:root {
  /* Color tokens - Industrial Cyberpunk */
  --vynx-bg-base: #0A0A0A;
  --vynx-text-primary: #FFFFFF;
  --vynx-text-secondary: #A0A0A0;
  --vynx-accent: #FFD700;
  --vynx-accent-dark: #F4CE14;
  --vynx-surface: #1A1A1A;
  --vynx-border: #333333;
  --vynx-border-strong: #333333;
  
  /* Typography scale - fluid */
  --vynx-font-display: clamp(2rem, 4vw + 1rem, 3.5rem);
  --vynx-font-h1: clamp(1.875rem, 3vw + 1rem, 2.75rem);
  --vynx-font-h2: clamp(1.5rem, 2.5vw + 0.75rem, 2.25rem);
  --vynx-font-h3: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  --vynx-font-body: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  --vynx-font-small: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
  
  /* Spacing scale - fluid */
  --vynx-space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --vynx-space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --vynx-space-md: clamp(1rem, 2vw, 1.5rem);
  --vynx-space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --vynx-space-xl: clamp(2rem, 4vw, 4rem);
  --vynx-space-2xl: clamp(3rem, 6vw, 6rem);
  
  /* Border radius - industrial sharp corners */
  --vynx-radius-sm: 2px;
  --vynx-radius-md: 2px;
  --vynx-radius-lg: 2px;
  --vynx-radius-xl: 2px;
  
  /* Shadows - cyberpunk glow */
  --vynx-shadow-sm: 0 2px 8px rgba(255, 215, 0, 0.1);
  --vynx-shadow-md: 0 4px 16px rgba(255, 215, 0, 0.15);
  --vynx-shadow-lg: 0 8px 32px rgba(255, 215, 0, 0.2);
  --vynx-glow-yellow: 0 0 10px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Normalize */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@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;
  }
  
  .vynx-hero__blob {
    animation: none !important;
  }
  
  .vynx-hero__eyebrow,
  .vynx-hero h1,
  .vynx-hero__lead,
  .vynx-hero__actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .vynx-hero__decoration {
    animation: none !important;
    opacity: 0.4 !important;
    transform: none !important;
  }
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  font-size: var(--vynx-font-body);
  line-height: 1.6;
  color: var(--vynx-text-primary);
  background-color: var(--vynx-bg-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Skip link */
.vynx-skip {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--vynx-accent);
  color: var(--vynx-bg-base);
  padding: var(--vynx-space-sm) var(--vynx-space-md);
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 var(--vynx-radius-md) 0;
}

.vynx-skip:focus {
  top: 0;
}

/* Container */
.vynx-container {
  width: min(100% - var(--vynx-space-md) * 2, 1200px);
  margin-inline: auto;
  position: relative;
}

/* Header */
.vynx-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--vynx-bg-base);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vynx-border);
  z-index: 1000;
  padding-block: var(--vynx-space-sm);
  overflow-x: hidden;
  transition: box-shadow 0.3s ease, border-bottom-color 0.3s ease;
}

.vynx-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 215, 0, 0.1);
  border-bottom-color: rgba(255, 215, 0, 0.3);
}

.vynx-header > .vynx-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vynx-space-md);
}

.vynx-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--vynx-space-sm);
  text-decoration: none;
  color: var(--vynx-text-primary);
  font-weight: 700;
  font-size: var(--vynx-font-small);
  transition: all 0.3s ease;
  position: relative;
  padding: var(--vynx-space-xs) 0;
}

.vynx-logo__emblem {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  will-change: transform, filter;
}

.vynx-logo__text {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vynx-text-primary);
  transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.3s ease;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
  position: relative;
}

.vynx-logo:hover {
  transform: translateY(-1px);
}

.vynx-logo:hover .vynx-logo__emblem {
  transform: rotate(8deg) scale(1.08);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9)) 
          drop-shadow(0 0 20px rgba(255, 215, 0, 0.5))
          drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  animation: logoPulse 2.5s ease-in-out infinite;
}

.vynx-logo:hover .vynx-logo__text {
  color: var(--vynx-accent);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 
               0 0 30px rgba(255, 215, 0, 0.4),
               0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translateX(2px);
}

.vynx-logo:active .vynx-logo__emblem {
  transform: rotate(5deg) scale(1.03);
}

@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.5))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.7))
            drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .vynx-logo__emblem {
    transition: none;
    animation: none;
  }
  
  .vynx-logo:hover .vynx-logo__emblem {
    animation: none;
    transform: scale(1.05);
  }
  
  .vynx-logo__text {
    transition: color 0.2s ease;
  }
  
  .vynx-logo:hover {
    transform: none;
  }
  
  .vynx-logo:hover .vynx-logo__text {
    transform: none;
  }
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .vynx-logo__emblem {
    width: 36px;
    height: 36px;
  }
  
  .vynx-logo__text {
    font-size: 0.9em;
    letter-spacing: 0.06em;
  }
}

.vynx-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-sm);
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
}

.vynx-nav__toggle:active {
  background: rgba(255, 215, 0, 0.1);
}

.vynx-nav__toggle[aria-expanded="true"] {
  background: rgba(255, 215, 0, 0.15);
}

.vynx-nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--vynx-text-primary);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.vynx-nav {
  position: relative;
  z-index: 1001;
}

.vynx-nav__list {
  display: flex;
  align-items: center;
  gap: var(--vynx-space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hide close button on desktop */
.vynx-nav__close-wrapper {
  display: none;
}

.vynx-nav__list a {
  color: var(--vynx-text-primary);
  text-decoration: none;
  font-size: var(--vynx-font-small);
  padding: var(--vynx-space-xs) var(--vynx-space-sm);
  border-radius: var(--vynx-radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.vynx-nav__list a:hover,
.vynx-nav__list a:focus-visible {
  background: rgba(255, 215, 0, 0.15);
  color: var(--vynx-accent);
  outline: 2px solid var(--vynx-accent);
  outline-offset: 2px;
  box-shadow: var(--vynx-glow-yellow);
}

/* Buttons */
.vynx-btn {
  display: inline-block;
  padding: var(--vynx-space-sm) var(--vynx-space-md);
  font-size: var(--vynx-font-small);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--vynx-border-strong);
  border-radius: 2px;
  background: transparent;
  color: var(--vynx-text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.vynx-btn:hover,
.vynx-btn:focus-visible {
  background: var(--vynx-accent);
  color: var(--vynx-bg-base);
  border-color: var(--vynx-accent);
  outline: 2px solid var(--vynx-accent);
  outline-offset: 2px;
  box-shadow: var(--vynx-glow-yellow);
}

.vynx-btn--primary {
  background: var(--vynx-accent);
  color: var(--vynx-bg-base);
  border-color: var(--vynx-accent);
  border-radius: 2px;
}

.vynx-btn--primary:hover,
.vynx-btn--primary:focus-visible {
  background: var(--vynx-accent-dark);
  border-color: var(--vynx-accent-dark);
  box-shadow: var(--vynx-glow-yellow);
}

/* Main content */
main {
  padding-top: clamp(70px, 8vw, 90px);
}

/* Sections */
.vynx-section {
  padding-block: var(--vynx-space-2xl);
  position: relative;
}

/* Cyberpunk geometric corner accents */
.vynx-section::before,
.vynx-section::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid var(--vynx-accent);
  opacity: 0.3;
  pointer-events: none;
}

.vynx-section::before {
  top: var(--vynx-space-lg);
  left: var(--vynx-space-lg);
  border-right: none;
  border-bottom: none;
}

.vynx-section::after {
  bottom: var(--vynx-space-lg);
  right: var(--vynx-space-lg);
  border-left: none;
  border-top: none;
}

.vynx-section--alt {
  background: var(--vynx-bg-base);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.vynx-section--alt > .vynx-container::before {
  content: "";
  position: absolute;
  top: calc(var(--vynx-space-2xl) * -1);
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--vynx-accent), transparent);
  opacity: 0.6;
  box-shadow: 0 0 10px var(--vynx-accent);
}

.vynx-section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--vynx-space-xl);
  position: relative;
  padding-bottom: var(--vynx-space-md);
}

.vynx-section__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--vynx-accent);
  opacity: 0.6;
}

.vynx-section__header h2 {
  font-size: var(--vynx-font-h2);
  font-weight: 700;
  margin-bottom: var(--vynx-space-sm);
  color: var(--vynx-text-primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.vynx-section__header p {
  font-size: var(--vynx-font-body);
  color: var(--vynx-text-secondary);
}

/* Hero */
.vynx-hero {
  position: relative;
  padding-block: var(--vynx-space-2xl);
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.vynx-hero__eyebrow {
  display: inline-block;
  font-size: var(--vynx-font-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vynx-accent);
  margin-bottom: var(--vynx-space-md);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s ease-out 0.2s forwards;
  position: relative;
  z-index: 2;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.vynx-hero h1 {
  font-size: var(--vynx-font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--vynx-space-md);
  color: var(--vynx-text-primary);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeInUp 0.9s ease-out 0.4s forwards;
  transition: text-shadow 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 2;
}

.vynx-hero__lead {
  font-size: var(--vynx-font-body);
  color: var(--vynx-text-secondary);
  margin-bottom: var(--vynx-space-lg);
  max-width: 65ch;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.9s ease-out 0.6s forwards;
  position: relative;
  z-index: 2;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.vynx-hero__actions {
  display: flex;
  gap: var(--vynx-space-md);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: heroActionsFadeIn 1s ease-out 0.8s forwards;
  position: relative;
  z-index: 2;
}

@keyframes heroActionsFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vynx-hero__decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  animation: heroDecorationFadeIn 1.2s ease-out 0.5s forwards, heroDecorationFloat 8s ease-in-out 2s infinite;
}

.vynx-hero__decoration svg {
  width: 100%;
  height: 100%;
  transform-origin: center;
}

@keyframes heroDecorationFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 0.4;
    transform: scale(1);
  }
}

@keyframes heroDecorationFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* Animated gradient blobs background */
.vynx-hero__blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -10;
  overflow: hidden;
}

.vynx-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
  pointer-events: none;
  z-index: -10;
}

.vynx-hero__blob--1 {
  width: min(600px, 50vw);
  height: min(600px, 50vw);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(244, 206, 20, 0.08) 50%, transparent 70%);
  top: 10%;
  left: -10%;
  animation: blobFloat1 25s linear infinite;
}

.vynx-hero__blob--2 {
  width: min(500px, 45vw);
  height: min(500px, 45vw);
  background: radial-gradient(circle, rgba(244, 206, 20, 0.12) 0%, rgba(255, 215, 0, 0.06) 50%, transparent 70%);
  top: 60%;
  right: -5%;
  animation: blobFloat2 30s linear infinite;
}

.vynx-hero__blob--3 {
  width: min(550px, 48vw);
  height: min(550px, 48vw);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(244, 206, 20, 0.05) 50%, transparent 70%);
  bottom: 5%;
  left: 20%;
  animation: blobFloat3 28s linear infinite;
}

.vynx-hero__blob--4 {
  width: min(450px, 42vw);
  height: min(450px, 42vw);
  background: radial-gradient(circle, rgba(244, 206, 20, 0.14) 0%, rgba(255, 215, 0, 0.07) 50%, transparent 70%);
  top: 30%;
  right: 15%;
  animation: blobFloat4 22s linear infinite;
}

@keyframes blobFloat1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15%, -10%) rotate(90deg);
  }
  50% {
    transform: translate(20%, 5%) rotate(180deg);
  }
  75% {
    transform: translate(10%, -5%) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes blobFloat2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-12%, 8%) rotate(-90deg);
  }
  50% {
    transform: translate(-18%, -3%) rotate(-180deg);
  }
  75% {
    transform: translate(-8%, 6%) rotate(-270deg);
  }
  100% {
    transform: translate(0, 0) rotate(-360deg);
  }
}

@keyframes blobFloat3 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-8%, -12%) rotate(90deg);
  }
  50% {
    transform: translate(5%, -8%) rotate(180deg);
  }
  75% {
    transform: translate(-3%, -15%) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes blobFloat4 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10%, 12%) rotate(-90deg);
  }
  50% {
    transform: translate(-5%, 8%) rotate(-180deg);
  }
  75% {
    transform: translate(8%, 5%) rotate(-270deg);
  }
  100% {
    transform: translate(0, 0) rotate(-360deg);
  }
}

/* Interactive Spotlight Effect */
.vynx-hero__spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: background;
  background: radial-gradient(
    circle 500px at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(255, 215, 0, 0.2) 0%,
    rgba(255, 215, 0, 0.12) 15%,
    rgba(244, 206, 20, 0.06) 35%,
    rgba(255, 215, 0, 0.02) 50%,
    transparent 75%
  );
  filter: blur(80px);
  mix-blend-mode: overlay;
}

.vynx-hero:hover .vynx-hero__spotlight,
.vynx-hero.has-mouse .vynx-hero__spotlight {
  opacity: 1;
}

/* Text glow effect when spotlight passes over */
.vynx-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  transition: filter 0.3s ease;
}

/* Enhanced text glow on hover/spotlight interaction */
.vynx-hero.has-mouse .vynx-hero__content h1 {
  text-shadow: 
    0 0 30px rgba(255, 215, 0, 0.4),
    0 0 60px rgba(255, 215, 0, 0.2),
    0 0 20px rgba(255, 215, 0, 0.3);
}

.vynx-hero.has-mouse .vynx-hero__eyebrow {
  text-shadow: 
    0 0 15px rgba(255, 215, 0, 0.6),
    0 0 30px rgba(255, 215, 0, 0.3),
    0 0 8px rgba(255, 215, 0, 0.4);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vynx-hero__spotlight {
    display: none;
  }
}

/* Services */
.vynx-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vynx-space-lg);
}

.vynx-services__card {
  background: var(--vynx-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-lg);
  padding: var(--vynx-space-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.vynx-services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background: var(--vynx-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vynx-services__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 2px;
  background: var(--vynx-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vynx-services__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vynx-glow-yellow);
  border-color: var(--vynx-accent);
}

.vynx-services__card:hover::before,
.vynx-services__card:hover::after {
  opacity: 1;
}

.vynx-services__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--vynx-accent);
  border-radius: var(--vynx-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vynx-accent);
  margin-bottom: var(--vynx-space-md);
}

.vynx-services__icon svg {
  stroke: var(--vynx-accent);
}

.vynx-services__card h3 {
  font-size: var(--vynx-font-h3);
  font-weight: 600;
  margin-bottom: var(--vynx-space-sm);
  color: var(--vynx-text-primary);
}

.vynx-services__card p {
  color: var(--vynx-text-secondary);
  margin-bottom: var(--vynx-space-md);
}

.vynx-services__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--vynx-space-xs);
}

.vynx-services__card li {
  font-size: var(--vynx-font-small);
  color: var(--vynx-text-secondary);
  padding-left: var(--vynx-space-md);
  position: relative;
}

.vynx-services__card li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--vynx-accent);
  font-size: 0.7em;
}

/* Case Study */
/* Animated Emblem in Case Study */
.vynx-case-study__emblem {
  position: absolute;
  top: var(--vynx-space-xl);
  right: var(--vynx-space-xl);
  width: 120px;
  height: 120px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  animation: emblemFloat 8s ease-in-out infinite, emblemPulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(244, 206, 20, 0.3)) drop-shadow(0 0 40px rgba(244, 206, 20, 0.15));
  will-change: transform, filter;
  mix-blend-mode: screen;
}

.vynx-case-study__emblem svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes emblemFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

@keyframes emblemPulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(244, 206, 20, 0.4)) 
            drop-shadow(0 0 40px rgba(244, 206, 20, 0.2))
            drop-shadow(0 0 60px rgba(244, 206, 20, 0.1));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(244, 206, 20, 0.6)) 
            drop-shadow(0 0 60px rgba(244, 206, 20, 0.4))
            drop-shadow(0 0 90px rgba(244, 206, 20, 0.2));
    transform: scale(1.05);
  }
}

/* Respect reduced motion preferences for emblem */
@media (prefers-reduced-motion: reduce) {
  .vynx-case-study__emblem {
    animation: none;
    filter: drop-shadow(0 0 15px rgba(244, 206, 20, 0.3));
  }
}

.vynx-case-study {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}

.vynx-case-study__label {
  display: inline-block;
  font-size: var(--vynx-font-small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vynx-accent);
  font-weight: 600;
  margin-bottom: var(--vynx-space-sm);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.vynx-case-study h2 {
  font-size: var(--vynx-font-h2);
  font-weight: 700;
  margin-bottom: var(--vynx-space-md);
  color: var(--vynx-text-primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.vynx-case-study__intro {
  font-size: var(--vynx-font-body);
  color: var(--vynx-text-secondary);
  margin-bottom: var(--vynx-space-lg);
  font-weight: 500;
}

.vynx-case-study__body {
  display: flex;
  flex-direction: column;
  gap: var(--vynx-space-md);
  margin-bottom: var(--vynx-space-lg);
}

.vynx-case-study__body p {
  color: var(--vynx-text-secondary);
  line-height: 1.7;
}

.vynx-case-study__results {
  display: flex;
  gap: var(--vynx-space-lg);
  flex-wrap: wrap;
}

.vynx-case-study__metric {
  display: flex;
  flex-direction: column;
}

.vynx-case-study__metric strong {
  font-size: var(--vynx-font-h1);
  font-weight: 700;
  color: var(--vynx-accent);
  line-height: 1;
  margin-bottom: var(--vynx-space-xs);
}

.vynx-case-study__metric span {
  font-size: var(--vynx-font-small);
  color: var(--vynx-text-secondary);
}


/* Tech Stack */
.vynx-tech {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--vynx-space-lg);
}

.vynx-tech__category {
  background: var(--vynx-surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-lg);
  padding: var(--vynx-space-lg);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vynx-tech__category:hover {
  border-color: var(--vynx-accent);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.vynx-tech__category h3 {
  font-size: var(--vynx-font-h3);
  font-weight: 600;
  margin-bottom: var(--vynx-space-md);
  color: var(--vynx-text-primary);
}

.vynx-tech__list {
  list-style: none;
  display: flex; 
  flex-wrap: wrap; 
  gap: var(--vynx-space-xs);
  justify-content: center;
}

.vynx-tech__list li {
  font-size: var(--vynx-font-small);
  padding: var(--vynx-space-xs) var(--vynx-space-sm);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-sm);
  color: var(--vynx-text-primary);
}

/* Portfolio */
.vynx-portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--vynx-space-lg);
}

.vynx-portfolio__item {
  background: var(--vynx-surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.vynx-portfolio__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background: var(--vynx-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.vynx-portfolio__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 2px;
  background: var(--vynx-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.vynx-portfolio__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--vynx-glow-yellow);
  border-color: var(--vynx-accent);
}

.vynx-portfolio__item:hover::before,
.vynx-portfolio__item:hover::after {
  opacity: 1;
}

.vynx-portfolio__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(244, 206, 20, 0.02));
  position: relative;
}

.vynx-portfolio__icon {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 10px rgba(244, 206, 20, 0.4)) 
          drop-shadow(0 0 20px rgba(244, 206, 20, 0.2))
          drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  will-change: transform, filter;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.vynx-portfolio__item:hover .vynx-portfolio__icon {
  transform: scale(1.15) rotateY(15deg) rotateX(5deg) rotateZ(-5deg);
  filter: drop-shadow(0 0 20px rgba(244, 206, 20, 0.7)) 
          drop-shadow(0 0 40px rgba(244, 206, 20, 0.5))
          drop-shadow(0 0 60px rgba(244, 206, 20, 0.3))
          drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.4));
}

/* Respect reduced motion preferences for portfolio icons */
@media (prefers-reduced-motion: reduce) {
  .vynx-portfolio__icon {
    animation: none;
  }
  
  .vynx-portfolio__icon * {
    animation: none !important;
    animation-duration: 0s !important;
  }
  
  .vynx-portfolio__item:hover .vynx-portfolio__icon {
    transform: scale(1.05);
  }
}

.vynx-portfolio__content {
  padding: var(--vynx-space-lg);
}

.vynx-portfolio__content h3 {
  font-size: var(--vynx-font-h3);
  font-weight: 600;
  margin-bottom: var(--vynx-space-sm);
  color: var(--vynx-text-primary);
}

.vynx-portfolio__content p {
  color: var(--vynx-text-secondary);
  line-height: 1.6;
}

/* Metrics */
.vynx-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--vynx-space-xl);
}

.vynx-metrics__item {
  text-align: center;
}

.vynx-metrics__value {
  display: block;
  font-size: var(--vynx-font-display);
  font-weight: 700;
  color: var(--vynx-accent);
  line-height: 1;
  margin-bottom: var(--vynx-space-sm);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.vynx-metrics__label {
  font-size: var(--vynx-font-body);
  font-weight: 600;
  color: var(--vynx-text-primary);
  margin-bottom: var(--vynx-space-xs);
}

.vynx-metrics__context {
  font-size: var(--vynx-font-small);
  color: var(--vynx-text-secondary);
}

/* Process */
.vynx-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--vynx-space-lg);
  position: relative;
}

.vynx-process__card {
  background: var(--vynx-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-lg);
  padding: var(--vynx-space-xl);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: processCardFadeIn 0.8s ease-out forwards;
  animation-play-state: running;
}

.vynx-process__card:nth-child(1) {
  animation-delay: 0.1s;
}

.vynx-process__card:nth-child(2) {
  animation-delay: 0.2s;
}

.vynx-process__card:nth-child(3) {
  animation-delay: 0.3s;
}

.vynx-process__card:nth-child(4) {
  animation-delay: 0.4s;
}

.vynx-process__card:nth-child(5) {
  animation-delay: 0.5s;
}

.vynx-process__card:nth-child(6) {
  animation-delay: 0.6s;
}

.vynx-process__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--vynx-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vynx-process__card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vynx-process__card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--vynx-accent);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2), 
              0 0 20px rgba(255, 215, 0, 0.1),
              inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.vynx-process__card:hover::before {
  opacity: 1;
}

.vynx-process__card:hover::after {
  opacity: 1;
}

.vynx-process__card:hover .vynx-process__icon-3d {
  transform: translateY(-5px) rotateY(15deg) rotateX(-5deg) scale(1.15);
  filter: drop-shadow(0 0 25px rgba(244, 206, 20, 0.8)) 
          drop-shadow(0 0 50px rgba(244, 206, 20, 0.5))
          drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.vynx-process__icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--vynx-space-lg);
  height: 100px;
}

.vynx-process__icon-3d {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 15px rgba(244, 206, 20, 0.5)) 
          drop-shadow(0 0 30px rgba(244, 206, 20, 0.3))
          drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              filter 0.6s ease;
  will-change: transform, filter;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: processIconFloat 3s ease-in-out infinite;
}

.vynx-process__icon-3d svg {
  width: 100%;
  height: 100%;
  display: block;
}

.vynx-process__step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vynx-accent);
  color: var(--vynx-bg-base);
  border-radius: 50%;
  font-size: var(--vynx-font-small);
  font-weight: 700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6),
              0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}

.vynx-process__card:hover .vynx-process__step-number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.9),
              0 0 40px rgba(255, 215, 0, 0.5),
              0 4px 8px rgba(0, 0, 0, 0.3);
}

.vynx-process__content {
  text-align: center;
}

.vynx-process__content h3 {
  font-size: var(--vynx-font-h3);
  font-weight: 600;
  margin-bottom: var(--vynx-space-sm);
  color: var(--vynx-text-primary);
  transition: color 0.3s ease;
}

.vynx-process__card:hover .vynx-process__content h3 {
  color: var(--vynx-accent);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.vynx-process__content p {
  color: var(--vynx-text-secondary);
  line-height: 1.7;
  transition: color 0.3s ease;
}

.vynx-process__card:hover .vynx-process__content p {
  color: var(--vynx-text-primary);
}

@keyframes processCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes processIconFloat {
  0%, 100% {
    transform: translateY(0) rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: translateY(-6px) rotateY(3deg) rotateX(-2deg);
  }
  50% {
    transform: translateY(-8px) rotateY(5deg) rotateX(0deg);
  }
  75% {
    transform: translateY(-6px) rotateY(-3deg) rotateX(2deg);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .vynx-process__card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .vynx-process__icon-3d {
    animation: none;
  }
  
  .vynx-process__card:hover .vynx-process__icon-3d {
    transform: scale(1.1);
  }
  
  .vynx-process__card:hover .vynx-process__step-number {
    transform: scale(1.1);
  }
}

/* Testimonials */
.vynx-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vynx-space-lg);
}

.vynx-testimonials__item {
  background: var(--vynx-surface);
  backdrop-filter: blur(8px);
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-lg);
  padding: var(--vynx-space-lg);
  margin: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vynx-testimonials__item:hover {
  border-color: var(--vynx-accent);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.vynx-testimonials__text {
  font-size: var(--vynx-font-body);
  color: var(--vynx-text-secondary);
  font-style: italic;
  margin-bottom: var(--vynx-space-md);
  line-height: 1.7;
}

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

.vynx-testimonials__author strong {
  font-size: var(--vynx-font-small);
  font-weight: 600;
  color: var(--vynx-text-primary);
}

.vynx-testimonials__author span {
  font-size: var(--vynx-font-small);
  color: var(--vynx-text-secondary);
}

/* Contact */
.vynx-contact {
  background: var(--vynx-bg-base);
  backdrop-filter: blur(12px);
  position: relative;
}

.vynx-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--vynx-accent), transparent);
  opacity: 0.5;
}

.vynx-contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--vynx-space-xl);
  align-items: start;
}

.vynx-contact__intro h2 {
  font-size: var(--vynx-font-h2);
  font-weight: 700;
  margin-bottom: var(--vynx-space-md);
  color: var(--vynx-text-primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.vynx-contact__intro > p {
  color: var(--vynx-text-secondary);
  margin-bottom: var(--vynx-space-lg);
  line-height: 1.7;
}

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

.vynx-contact__info div {
  display: flex;
  flex-direction: column;
  gap: var(--vynx-space-xs);
}

.vynx-contact__info strong {
  font-size: var(--vynx-font-small);
  font-weight: 600;
  color: var(--vynx-text-primary);
}

.vynx-contact__info a {
  color: var(--vynx-accent);
  text-decoration: none;
}

.vynx-contact__info a:hover,
.vynx-contact__info a:focus-visible {
  text-decoration: underline;
  outline: 2px solid var(--vynx-accent);
  outline-offset: 2px;
}

.vynx-contact__info address {
  font-style: normal;
  color: var(--vynx-text-secondary);
}

.vynx-contact__form {
  background: var(--vynx-surface);
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-lg);
  padding: var(--vynx-space-lg);
}

.vynx-contact__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vynx-space-md);
  margin-bottom: var(--vynx-space-md);
}

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

.vynx-field--full {
  grid-column: 1 / -1;
}

.vynx-field span {
  font-size: var(--vynx-font-small);
  font-weight: 600;
  color: var(--vynx-text-primary);
}

.vynx-field input,
.vynx-field select,
.vynx-field textarea {
  padding: var(--vynx-space-sm);
  font-size: var(--vynx-font-body);
  font-family: inherit;
  color: var(--vynx-text-primary);
  background: var(--vynx-bg-base);
  border: 1px solid var(--vynx-border);
  border-radius: var(--vynx-radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vynx-field input:focus,
.vynx-field select:focus,
.vynx-field textarea:focus {
  outline: none;
  border-color: var(--vynx-accent);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2), 0 0 10px rgba(255, 215, 0, 0.1);
}

.vynx-field textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.vynx-footer {
  background: var(--vynx-bg-base);
  color: var(--vynx-text-primary);
  padding-block: var(--vynx-space-xl);
  border-top: 1px solid var(--vynx-border);
  position: relative;
}

.vynx-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--vynx-accent), transparent);
  opacity: 0.5;
}

.vynx-footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--vynx-space-xl);
}

.vynx-footer__brand strong {
  display: block;
  font-size: var(--vynx-font-h3);
  margin-bottom: var(--vynx-space-xs);
  color: var(--vynx-accent);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.vynx-footer__brand p {
  font-size: var(--vynx-font-small);
  opacity: 0.8;
}

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

.vynx-footer__nav a {
  color: var(--vynx-text-primary);
  text-decoration: none;
  font-size: var(--vynx-font-small);
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.vynx-footer__nav a:hover,
.vynx-footer__nav a:focus-visible {
  opacity: 1;
  color: var(--vynx-accent);
  outline: 2px solid var(--vynx-accent);
  outline-offset: 2px;
}

.vynx-footer__meta {
  display: flex;
  flex-direction: column;
  gap: var(--vynx-space-xs);
  font-size: var(--vynx-font-small);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .vynx-case-study__emblem {
    width: 100px;
    height: 100px;
    top: var(--vynx-space-lg);
    right: var(--vynx-space-lg);
    opacity: 0.12;
  }
  
  .vynx-contact__wrapper {
    grid-template-columns: 1fr;
  }
  
  .vynx-footer__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: clamp(60px, 10vw, 75px);
  }
  
  .vynx-nav__toggle {
    display: flex;
  }
  
  .vynx-case-study__emblem {
    width: 80px;
    height: 80px;
    top: var(--vynx-space-md);
    right: var(--vynx-space-md);
    opacity: 0.1;
  }
  
  .vynx-header {
    overflow-x: hidden;
  }
  
  .vynx-container {
    position: relative;
  }
  
  .vynx-nav__list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    background: var(--vynx-bg-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--vynx-space-xl);
    gap: var(--vynx-space-md);
    margin: 0;
    list-style: none;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    border-left: 1px solid var(--vynx-accent);
  }

  .vynx-nav__list--open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  /* Show close button only in mobile menu */
  .vynx-nav__close-wrapper {
    display: block;
    position: absolute;
    top: var(--vynx-space-md);
    right: var(--vynx-space-md);
    width: auto;
    max-width: none;
    z-index: 10000;
  }

  .vynx-nav__close {
    background: transparent;
    border: 1px solid var(--vynx-border);
    border-radius: var(--vynx-radius-md);
    padding: var(--vynx-space-sm);
    cursor: pointer;
    color: var(--vynx-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .vynx-nav__close:hover,
  .vynx-nav__close:focus-visible {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--vynx-accent);
    outline: 2px solid var(--vynx-accent);
    outline-offset: 2px;
    box-shadow: var(--vynx-glow-yellow);
  }

  .vynx-nav__list li {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .vynx-nav__list a {
    display: block;
    padding: var(--vynx-space-md);
    width: 100%;
    box-sizing: border-box;
    font-size: var(--vynx-font-body);
    font-weight: 500;
  }
  
  .vynx-hero__actions {
    flex-direction: column;
  }
  
  .vynx-services,
  .vynx-portfolio,
  .vynx-testimonials {
    grid-template-columns: 1fr;
  }
  
  .vynx-contact__fields {
    grid-template-columns: 1fr;
  }
  
  .vynx-footer__content {
    grid-template-columns: 1fr;
    gap: var(--vynx-space-lg);
  }
  
  .vynx-process {
    grid-template-columns: 1fr;
    gap: var(--vynx-space-md);
  }
  
  .vynx-process__card {
    padding: var(--vynx-space-lg);
  }
  
  .vynx-process__icon-wrapper {
    height: 80px;
    margin-bottom: var(--vynx-space-md);
  }
  
  .vynx-process__icon-3d {
    width: 60px;
    height: 60px;
  }
  
  .vynx-process__step-number {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .vynx-container {
    width: min(100% - var(--vynx-space-sm) * 2, 100%);
  }
  
  .vynx-case-study__emblem {
    width: 60px;
    height: 60px;
    top: var(--vynx-space-sm);
    right: var(--vynx-space-sm);
    opacity: 0.08;
  }
  
  .vynx-case-study__results {
    flex-direction: column;
    gap: var(--vynx-space-md);
  }
  
  .vynx-metrics {
    grid-template-columns: 1fr;
  }
}
