@charset "UTF-8";
:root {
  --primary-purple: #8B5CF6;
  --secondary-purple: #A78BFA;
  --deep-purple: #6366F1;
  --light-purple: #C4B5FD;
  --accent-purple: #7C3AED;
  --text-white: #FFFFFF;
  --text-gray: #9CA3AF;
  --purple-glow: rgba(139, 92, 246, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: radial-gradient(circle at 50% 0%, #1f1c2c, #090c1d 60%, #000000 100%);
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Enhanced Responsive Clients Section */
.clients {
  position: relative;
  padding: clamp(3rem, 8vh, 6rem) clamp(1rem, 4vw, 2rem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1a1a2e;
  overflow: hidden;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* Enhanced SVG Design Element - Smaller and Less Crowded */
.unfolding-svg {
  position: relative;
  margin: 0 auto clamp(-0.5rem, -1vw, -1rem) auto;
  width: clamp(60px, 10vw, 90px);
  opacity: 0;
  transform: translateY(15px) scale(0.9);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.unfolding-svg.unfold {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.unfolding-svg svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 clamp(2px, 1vw, 4px) clamp(6px, 2vw, 12px) rgba(239, 68, 68, 0.25));
}

/* Responsive SVG scaling */
@media (max-width: 480px) {
  .unfolding-svg svg {
    filter: drop-shadow(0 2px 8px rgba(239, 68, 68, 0.3));
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(clamp(-8px, -2vw, -10px)) rotate(2deg);
  }
  66% {
    transform: translateY(clamp(3px, 1vw, 5px)) rotate(-1deg);
  }
}
/* Enhanced Header Content */
.slg-demo-info {
  text-align: center;
  padding: clamp(1rem, 4vw, 2rem) clamp(1rem, 4vw, 1.25rem) 0;
  max-width: min(90vw, 800px);
  margin: 0 auto;
  color: #4a5568;
  font-weight: 600;
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.slg-demo-title {
  font-size: clamp(2rem, 8vw, 5rem);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}

.slg-demo-title .serving {
  color: rgb(239, 68, 68);
}

.slg-demo-title .visionaries {
  display: block;
  text-align: center;
  color: rgb(239, 68, 68);
  margin-top: clamp(0.25rem, 1vw, 0.5rem);
}

.slg-demo-subtitle {
  font-size: clamp(1rem, 3.5vw, 1.8rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 3vw, 2rem);
  color: #6b7280;
  font-weight: 400;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.purple-line {
  width: clamp(200px, 50vw, 300px);
  height: clamp(2px, 0.5vw, 3px);
  background: linear-gradient(90deg, #7c3aed 0%, rgb(239, 68, 68) 100%);
  margin: clamp(1rem, 3vw, 2rem) auto;
  border-radius: 2px;
}

/* Enhanced Logo Carousel System */
.slg-logos-container {
  width: 100%;
  height: clamp(250px, 50vw, 400px);
  position: relative;
  overflow: hidden;
  border-radius: clamp(12px, 3vw, 20px);
  margin: clamp(1rem, 3vw, 2rem) auto;
  max-width: min(95vw, 1200px);
  background: transparent;
}

.slg-logos-wrapper {
  display: flex;
  height: 100%;
  animation: slg-scroll-horizontal 25s linear infinite;
  will-change: transform;
}

/* Pause animation on reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .slg-logos-wrapper {
    animation-duration: 60s;
  }
}
.slg-logos-track {
  display: flex;
  align-items: center;
  height: 70%;
  flex-shrink: 0;
  justify-content: flex-start;
}

.slg-logo-item {
  flex-shrink: 0;
  width: clamp(90px, 18vw, 140px);
  height: clamp(90px, 18vw, 140px);
  margin: 0 clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  transform: translateZ(0);
  border-radius: clamp(12px, 3vw, 20px);
  padding: clamp(8px, 2vw, 12px);
  box-sizing: border-box;
}

.slg-logo-item:hover {
  transform: translateZ(0) scale(1.08) translateY(clamp(-4px, -1vw, -8px));
}

.slg-logo-item img {
  width: clamp(60px, 14vw, 100px);
  height: auto;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.slg-logo-item:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 clamp(15px, 4vw, 25px) rgba(139, 92, 246, 0.8));
  opacity: 1;
  transform: scale(1.05);
}

/* Enhanced Animation Keyframes - Responsive */
@keyframes slg-scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-16 * (clamp(90px, 18vw, 140px) + clamp(40px, 10vw, 80px))));
  }
}
/* Mobile-specific animation for smaller logos */
@media (max-width: 639px) {
  @keyframes slg-scroll-horizontal {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-16 * (clamp(50px, 18vw, 75px) + clamp(30px, 10vw, 50px))));
    }
  }
}
/* Ultra small devices animation */
@media (max-width: 319px) {
  @keyframes slg-scroll-horizontal {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1200px);
    }
  }
}
/* Hover pause enhancement */
.slg-logos-container:hover .slg-logos-wrapper {
  animation-play-state: paused;
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
  .slg-logo-item:hover {
    transform: translateZ(0);
  }
  .slg-logo-item:hover img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transform: scale(1);
  }
  .slg-logos-container:hover .slg-logos-wrapper {
    animation-play-state: running;
  }
  /* Add touch-friendly active state */
  .slg-logo-item:active {
    transform: translateZ(0) scale(0.95);
  }
  .slg-logo-item:active img {
    opacity: 1;
    transform: scale(1.02);
  }
}
/* Comprehensive Responsive Breakpoints */
/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .clients {
    padding: 8rem 3rem 0rem;
  }
  .slg-logos-container {
    max-width: 1400px;
    height: 300px;
  }
}
/* Desktop (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
  .slg-demo-title {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
  }
  .slg-logos-container {
    height: 380px;
  }
}
/* Tablet Large (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
  .clients {
    padding: clamp(4rem, 6vh, 5rem) clamp(1.5rem, 4vw, 2.5rem);
  }
  .slg-demo-info {
    max-width: 85vw;
  }
  .slg-logos-container {
    height: 320px;
    margin: 2rem auto;
  }
  .slg-logo-item {
    margin: 0 clamp(20px, 3vw, 25px);
  }
}
/* Tablet Small (640px - 767px) */
@media (max-width: 767px) and (min-width: 640px) {
  .clients {
    padding: clamp(3rem, 5vh, 4rem) clamp(1.5rem, 4vw, 2rem);
    min-height: 80vh;
  }
  .slg-demo-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    line-height: 1.2;
  }
  .slg-demo-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
  .slg-logos-container {
    height: 280px;
    border-radius: 16px;
  }
  .purple-line {
    width: clamp(180px, 45vw, 250px);
  }
}
/* Mobile Large (480px - 639px) */
@media (max-width: 639px) and (min-width: 480px) {
  .clients {
    padding: clamp(2.5rem, 4vh, 3.5rem) clamp(1rem, 3vw, 1.5rem);
    min-height: 70vh;
  }
  .slg-demo-info {
    padding: 1.5rem 1rem 0;
    max-width: 95vw;
  }
  .slg-demo-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .slg-demo-title .visionaries {
    margin-top: 0.5rem;
  }
  .slg-logos-container {
    height: 200px;
    margin: 1.5rem auto;
    border-radius: 14px;
  }
  .slg-logo-item {
    width: clamp(60px, 15vw, 75px);
    height: clamp(60px, 15vw, 75px);
    margin: 0 clamp(20px, 6vw, 30px);
    padding: clamp(4px, 1vw, 6px);
  }
  .slg-logo-item img {
    width: clamp(35px, 12vw, 50px);
    opacity: 0.9;
  }
  .unfolding-svg {
    width: clamp(50px, 12vw, 70px);
  }
}
/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
  .clients {
    padding: clamp(2rem, 3vh, 3rem) 1rem;
    min-height: 60vh;
  }
  .slg-demo-info {
    padding: 1rem 0.5rem 0;
    max-width: 100%;
  }
  .slg-demo-title {
    font-size: clamp(1.5rem, 9vw, 2.2rem);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .slg-demo-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    margin-bottom: 1.5rem;
    max-width: 95%;
  }
  .slg-logos-container {
    height: 160px;
    margin: 1rem auto;
    border-radius: 12px;
    max-width: 98vw;
  }
  .slg-logo-item {
    width: clamp(50px, 18vw, 65px);
    height: clamp(50px, 18vw, 65px);
    margin: 0 clamp(15px, 5vw, 25px);
    padding: 3px;
  }
  .slg-logo-item img {
    width: clamp(30px, 14vw, 45px);
    opacity: 0.9;
  }
  .purple-line {
    width: clamp(150px, 60vw, 200px);
    height: 2px;
    margin: 1.5rem auto;
  }
  .unfolding-svg {
    width: clamp(40px, 12vw, 55px);
    margin-bottom: -0.5rem;
  }
}
/* Ultra Small Devices (< 320px) */
@media (max-width: 319px) {
  .clients {
    padding: 1.5rem 0.75rem;
  }
  .slg-demo-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .slg-demo-subtitle {
    font-size: 0.85rem;
  }
  .slg-logos-container {
    height: 140px;
  }
  .slg-logo-item {
    width: 45px;
    height: 45px;
    margin: 0 clamp(12px, 4vw, 18px);
    padding: 64px;
  }
  .slg-logo-item img {
    width: 28px;
    opacity: 0.9;
  }
  .unfolding-svg {
    width: 35px;
  }
}
/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  .slg-logos-wrapper {
    animation: none;
  }
  .unfolding-svg {
    animation: none;
    transition: opacity 0.3s ease;
  }
  .slg-logo-item {
    transition: none;
  }
  /* Provide alternative subtle animation */
  .slg-logos-wrapper {
    animation: slg-scroll-subtle 60s linear infinite;
  }
  @keyframes slg-scroll-subtle {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-200px);
    }
  }
}
.slg-logo-item:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 6px;
  border-radius: clamp(12px, 3vw, 20px);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .clients {
    background: #000000;
  }
  .slg-demo-title {
    color: #ffffff;
  }
  .slg-demo-subtitle {
    color: #cccccc;
  }
  .slg-logo-item img {
    filter: brightness(0) invert(1);
    opacity: 1;
  }
  .slg-logo-item:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
  }
}
/* Print styles */
@media print {
  .clients {
    background: white;
    color: black;
    padding: 2rem;
  }
  .slg-logos-wrapper {
    animation: none;
  }
  .slg-logo-item {
    position: static;
    display: inline-flex;
    margin: 1rem;
  }
}
:root {
  --bg-primary: #2a2b2b;
  --bg-card: #1e1d1d;
  --bg-dark: #2d2d2d;
  --bg-sidebar: #1e1e1e;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --text-light: #ffffff;
  --text-muted: #9ca3af;
  --purple: #6366f1;
  --purple-light: #e0e7ff;
  --border-color: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* FIXED: Main Dashboard Container with Better Responsive Design */
.campaign-dashboard-wrapper {
  width: min(95vw, 1400px); /* Allow larger max width */
  margin: 4vh auto;
  padding: clamp(15px, 2.5vw, 40px); /* Better padding scaling */
  background: linear-gradient(to bottom, #ff7675 0%, #fd79a8 60%), linear-gradient(to right, #2d3436 60%, #00b894 60%);
  background-size: 100% 60%, 100% 40%;
  background-position: 0% 0%, 0% 60%;
  background-repeat: no-repeat;
  border-radius: clamp(12px, 1.8vw, 24px);
  position: relative;
  /* Initial state for animation */
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.campaign-dashboard-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.campaign-dashboard-wrapper::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #2d3436 0%, #2d3436 50%, #00b894 50%, #00b894 100%);
  border-radius: 0 0 clamp(16px, 1.8vw, 24px) clamp(16px, 1.8vw, 24px);
  z-index: 1;
}

/* FIXED: Laptop Frame with Proper Aspect Ratio and Height Limit */
.campaign-laptop-container {
  position: relative;
  z-index: 2;
  width: 100%;
  /* FIXED: Maintain aspect ratio but limit height to 75vh */
  aspect-ratio: 16/10; /* Standard laptop ratio */
  height: min(75vh, 59.375vw); /* Cap at 75vh */
  max-height: 75vh;
  /* Initial state */
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.campaign-laptop-container.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* FIXED: Laptop Screen with Responsive Height */
.campaign-laptop-screen {
  background: #2a2a2a;
  border-radius: clamp(12px, 1.8vw, 24px);
  padding: clamp(12px, 2vw, 24px);
  box-shadow: 0 0 0 3px #1a1a1a, 0 0 0 6px #2a2a2a, 0 clamp(15px, 3vw, 40px) clamp(40px, 8vw, 80px) rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

/* FIXED: Camera Dot Positioned Correctly */
.campaign-laptop-screen::before {
  content: "";
  position: absolute;
  top: clamp(8px, 1.2vh, 12px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(4px, 0.8vw, 6px);
  height: clamp(4px, 0.8vw, 6px);
  background: #555;
  border-radius: 50%;
  z-index: 25; /* Above traffic lights */
}

/* FIXED: macOS Window with Better Grid Management */
.campaign-macos-window {
  background: var(--bg-dark);
  border-radius: clamp(10px, 1.2vw, 16px);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  /* FIXED: Responsive grid columns */
  grid-template-columns: clamp(140px, 18vw, 280px) 1fr clamp(120px, 15vw, 250px);
  /* FIXED: Proper space for traffic lights */
  padding-top: clamp(35px, 4vh, 50px);
  /* Grid rows for better control */
  grid-template-rows: 1fr;
}

/* FIXED: Traffic Lights - Properly Positioned in Window Header */
.campaign-traffic-lights {
  position: absolute;
  top: clamp(18px, 2.2vh, 25px); /* FIXED: Positioned in window header area */
  left: clamp(20px, 2.5vw, 30px); /* FIXED: Standard macOS position */
  display: flex;
  gap: clamp(5px, 0.7vw, 8px);
  z-index: 30; /* Highest z-index */
}

.campaign-traffic-light {
  width: clamp(10px, 1.4vw, 14px);
  height: clamp(10px, 1.4vw, 14px);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Realistic shadow */
}

.campaign-red {
  background: #ff5f57;
}

.campaign-yellow {
  background: #ffbd2e;
}

.campaign-green {
  background: #28ca42;
}

/* FIXED: Sidebar with Better Responsiveness */
.campaign-sidebar {
  background: var(--bg-sidebar);
  padding: clamp(20px, 2.5vh, 30px) 0 clamp(20px, 2.5vh, 25px) clamp(20px, 2.5vw, 25px);
  border-right: 1px solid #333;
  overflow: hidden;
  /* Initial state for animation */
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.campaign-sidebar.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.campaign-sidebar-section {
  margin-bottom: clamp(18px, 2.5vh, 25px);
}

.campaign-sidebar-title {
  color: var(--text-muted);
  font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: clamp(8px, 1.2vh, 10px);
  padding-left: clamp(10px, 1.3vw, 15px);
}

.campaign-sidebar-item {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 10px);
  padding: clamp(6px, 1vh, 8px) clamp(10px, 1.3vw, 15px);
  color: var(--text-light);
  font-size: clamp(0.75rem, 1.2vw, 0.95rem);
  border-radius: clamp(5px, 0.7vw, 8px);
  margin-bottom: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  /* Staggered animation for items */
  opacity: 0;
  transform: translateX(-20px);
}

.campaign-sidebar-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-15px);
  color: #ffffff;
}

.campaign-sidebar-item.campaign-active {
  background: var(--purple);
}

/* Animate sidebar items with stagger */
.campaign-sidebar.animate-in .campaign-sidebar-item {
  animation: slideInStagger 0.6s ease-out forwards;
}

.campaign-sidebar.animate-in .campaign-sidebar-item:nth-child(1) {
  animation-delay: 0.8s;
}

.campaign-sidebar.animate-in .campaign-sidebar-item:nth-child(2) {
  animation-delay: 0.9s;
}

.campaign-sidebar.animate-in .campaign-sidebar-item:nth-child(3) {
  animation-delay: 1s;
}

.campaign-sidebar.animate-in .campaign-sidebar-item:nth-child(4) {
  animation-delay: 1.1s;
}

.campaign-sidebar.animate-in .campaign-sidebar-item:nth-child(5) {
  animation-delay: 1.2s;
}

@keyframes slideInStagger {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* FIXED: Better Icon Sizing */
.campaign-sidebar-icon {
  width: clamp(14px, 1.8vw, 18px);
  height: clamp(14px, 1.8vw, 18px);
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevent icon shrinking */
}

.campaign-sidebar-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* Icon animations */
.campaign-sidebar-item:first-child .campaign-sidebar-icon {
  animation: iconPulse 2s ease-in-out infinite;
}

.campaign-sidebar-item .campaign-sidebar-icon {
  transition: all 0.3s ease;
}

.campaign-sidebar-item:hover .campaign-sidebar-icon {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2) saturate(1.3);
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* FIXED: Main Content with Better Scaling */
.campaign-main-content {
  background: var(--bg-primary);
  padding: clamp(20px, 3vh, 35px) clamp(25px, 3vw, 40px);
  overflow: hidden;
  /* Initial state */
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
}

.campaign-main-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.campaign-content-header {
  margin-bottom: clamp(25px, 3.5vh, 35px);
}

.campaign-breadcrumb {
  color: var(--text-muted);
  font-size: clamp(0.7rem, 1.3vw, 0.85rem);
  margin-bottom: clamp(8px, 1.2vh, 10px);
  opacity: 0.8;
}

.campaign-page-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: clamp(20px, 2.5vh, 25px);
  line-height: 1.2;
}

.campaign-section-title {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: clamp(15px, 2vh, 20px);
}

/* FIXED: Campaign Cards with Better Responsive Design */
.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(15px, 2vw, 20px);
  margin-bottom: clamp(25px, 3vh, 30px);
}

.campaign-card {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  border: 1px solid #6b7280;
  border-radius: clamp(8px, 1vw, 12px);
  padding: clamp(18px, 2.5vw, 25px);
  position: relative;
  transition: all 0.3s ease;
  height: clamp(90px, 12vh, 120px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Initial state for cards */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.campaign-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-color: #8b5cf6;
}

.campaign-card:hover .campaign-card-title {
  color: #ffffff;
}

.campaign-card:hover .campaign-number-indicator {
  transform: scale(1.1);
}

.campaign-card.campaign-featured {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: var(--text-light);
  grid-column: 1/3;
  border: 1px solid #a855f7;
}

/* Animate cards with stagger */
.campaign-main-content.animate-in .campaign-card {
  animation: cardSlideIn 0.6s ease-out forwards;
}

.campaign-main-content.animate-in .campaign-card:nth-child(1) {
  animation-delay: 1.2s;
}

.campaign-main-content.animate-in .campaign-card:nth-child(2) {
  animation-delay: 1.3s;
}

.campaign-main-content.animate-in .campaign-card:nth-child(3) {
  animation-delay: 1.4s;
}

.campaign-main-content.animate-in .campaign-card:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.campaign-card-title {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-light);
}

.campaign-card-subtitle {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.8);
  margin-top: clamp(4px, 0.6vh, 6px);
  line-height: 1.4;
}

.campaign-number-indicator {
  position: absolute;
  top: clamp(10px, 1.2vh, 15px);
  right: clamp(10px, 1.2vh, 15px);
  width: clamp(20px, 2.5vw, 24px);
  height: clamp(20px, 2.5vw, 24px);
  background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  box-shadow: 0 3px 10px rgba(236, 72, 153, 0.3);
}

/* Summary Section */
.campaign-summary-section {
  margin-top: clamp(25px, 3vh, 30px);
}

.campaign-summary-text {
  color: var(--text-light);
  line-height: 1.6;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  opacity: 0.9;
}

/* FIXED: Right Image Section */
.campaign-image-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  /* Initial state */
  opacity: 0;
  transform: translateX(30px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
}

.campaign-image-section.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE BREAKPOINTS */
/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .campaign-macos-window {
    grid-template-columns: 300px 1fr 280px;
    padding-top: 55px;
  }
  .campaign-traffic-lights {
    top: 28px;
    left: 35px;
    gap: 9px;
  }
  .campaign-traffic-light {
    width: 16px;
    height: 16px;
  }
}
/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .campaign-macos-window {
    grid-template-columns: 260px 1fr 240px;
  }
}
/* Tablet Landscape (900px - 1199px) */
@media (min-width: 900px) and (max-width: 1199px) {
  .campaign-macos-window {
    grid-template-columns: 200px 1fr 180px;
    padding-top: 40px;
  }
  .campaign-sidebar {
    padding: 15px 0 15px 15px;
  }
  .campaign-sidebar-section {
    margin-bottom: 15px;
  }
}
/* Tablet Portrait (601px - 899px) */
@media (min-width: 601px) and (max-width: 899px) {
  .campaign-macos-window {
    grid-template-columns: 160px 1fr 120px;
    padding-top: 35px;
  }
  .campaign-traffic-lights {
    top: 20px;
    left: 25px;
    gap: 5px;
  }
  .campaign-traffic-light {
    width: 11px;
    height: 11px;
  }
  .campaign-sidebar-item {
    font-size: 0.8rem;
    padding: 5px 8px;
    gap: 6px;
  }
  .campaign-sidebar-icon {
    width: 14px;
    height: 14px;
  }
}
/* DEBUG - Replace the mobile section with this */
/* Demo styling */
.demo-title {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  color: #333;
  margin-bottom: clamp(15px, 3vh, 25px);
} /* FORCE MOBILE IMAGE - Replace mobile section */
@media (max-width: 600px) {
  .campaign-dashboard-wrapper {
    background: none !important;
    background-image: url("/assets/campign.png") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    height: 300px !important;
    padding: 0 !important;
    margin: 2vh auto !important;
    width: 95vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    display: block !important; /* Force show */
    opacity: 1 !important; /* Force visible */
    transform: none !important; /* Remove any transforms */
  }
  .campaign-dashboard-wrapper::before {
    display: none !important;
  }
  .campaign-laptop-container {
    display: none !important;
  }
  /* Stop all animations on mobile */
  .campaign-dashboard-wrapper * {
    animation: none !important;
    transition: none !important;
  }
}
.vornyx-contact-section {
  --vornyx-primary-purple: #8b5cf6;
  --vornyx-dark-purple: #6d28d9;
  --vornyx-text-primary: #ffffff;
  --vornyx-text-secondary: #a1a1aa;
  --vornyx-input-bg: rgba(255, 255, 255, 0.05);
  --vornyx-input-border: rgba(255, 255, 255, 0.1);
  --vornyx-card-bg: rgba(255, 255, 255, 0.08);
  --vornyx-backdrop-blur: blur(20px);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #6d28d9 50%, #8b5cf6 75%, #a855f7 100%);
  min-height: 100vh;
  color: var(--vornyx-text-primary);
  position: relative;
  overflow: hidden;
}

.vornyx-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vornyx-contact-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  z-index: 10;
}

.vornyx-contact-logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-auth-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.vornyx-contact-auth-text {
  color: var(--vornyx-text-secondary);
  font-size: 0.9rem;
}

.vornyx-contact-help-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vornyx-text-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vornyx-contact-help-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vornyx-primary-purple);
}

.vornyx-contact-left-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 500px;
}

.vornyx-contact-form-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--vornyx-text-primary) 0%, var(--vornyx-primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vornyx-contact-form-group {
  margin-bottom: 1.5rem;
}

.vornyx-contact-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vornyx-text-secondary);
}

.vornyx-contact-input-wrapper {
  position: relative;
}

.vornyx-contact-form-input {
  width: 100%;
  background: var(--vornyx-input-bg);
  border: 1px solid var(--vornyx-input-border);
  border-radius: 0.75rem;
  padding: 1rem 1rem 1rem 3rem;
  color: var(--vornyx-text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  box-sizing: border-box;
}

.vornyx-contact-form-input:focus {
  outline: none;
  border-color: var(--vornyx-primary-purple);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.vornyx-contact-form-input::-moz-placeholder {
  color: var(--vornyx-text-secondary);
}

.vornyx-contact-form-input::placeholder {
  color: var(--vornyx-text-secondary);
}

.vornyx-contact-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--vornyx-text-secondary);
  font-size: 1.1rem;
}

.vornyx-contact-form-input.vornyx-contact-textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 1rem;
}

.vornyx-contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--vornyx-primary-purple) 0%, var(--vornyx-dark-purple) 100%);
  border: none;
  border-radius: 0.75rem;
  padding: 1rem;
  color: var(--vornyx-text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.vornyx-contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.vornyx-contact-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  color: var(--vornyx-text-secondary);
  font-size: 0.9rem;
}

.vornyx-contact-divider::before,
.vornyx-contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.vornyx-contact-divider span {
  margin: 0 1rem;
}

.vornyx-contact-social-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  color: var(--vornyx-text-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
}

.vornyx-contact-social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vornyx-primary-purple);
}

.vornyx-contact-right-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
}

.vornyx-contact-hero-content {
  text-align: center;
  margin-bottom: 4rem;
}

.vornyx-contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.vornyx-contact-hero-title .vornyx-contact-highlight {
  color: var(--vornyx-primary-purple);
  text-decoration: underline;
  text-decoration-color: var(--vornyx-primary-purple);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.vornyx-contact-hero-title .vornyx-contact-italic {
  font-style: italic;
  font-weight: 400;
}

.vornyx-contact-social-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.vornyx-contact-social-card {
  background: var(--vornyx-card-bg);
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  min-width: 200px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.vornyx-contact-social-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: var(--vornyx-primary-purple);
}

.vornyx-contact-social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.vornyx-contact-social-card:hover::before {
  left: 100%;
}

.vornyx-contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.vornyx-contact-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-card-icon {
  font-size: 1.5rem;
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
}

.vornyx-contact-card-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vornyx-contact-card-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-card-change {
  font-size: 0.9rem;
  font-weight: 500;
}

.vornyx-contact-card-change.vornyx-contact-positive {
  color: #10b981;
}

.vornyx-contact-card-change.vornyx-contact-negative {
  color: #ef4444;
}

.vornyx-contact-floating-animation {
  animation: vornyx-contact-floating 3s ease-in-out infinite;
}

.vornyx-contact-floating-animation:nth-child(2) {
  animation-delay: 1s;
}

@keyframes vornyx-contact-floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 1024px) {
  .vornyx-contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vornyx-contact-hero-title {
    font-size: 2.5rem;
  }
  .vornyx-contact-social-cards {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .vornyx-contact-container {
    padding: 0 1rem;
  }
  .vornyx-contact-left-section {
    padding: 1rem;
  }
  .vornyx-contact-hero-title {
    font-size: 2rem;
  }
  .vornyx-contact-social-cards {
    flex-direction: column;
  }
}
.vornyx-contact-section {
  margin-top: 74px;
  --vornyx-primary-purple: #8b5cf6;
  --vornyx-dark-purple: #6d28d9;
  --vornyx-text-primary: #ffffff;
  --vornyx-text-secondary: #a1a1aa;
  --vornyx-input-bg: rgba(255, 255, 255, 0.05);
  --vornyx-input-border: rgba(255, 255, 255, 0.1);
  --vornyx-card-bg: rgba(255, 255, 255, 0.08);
  --vornyx-backdrop-blur: blur(20px);
  --section-padding: clamp(1rem, 4vw, 2rem);
  --content-gap: clamp(1.5rem, 4vw, 3rem);
  --form-gap: clamp(1rem, 2.5vw, 1.5rem);
  --h1-size: clamp(1.875rem, 5vw, 2.5rem);
  --h2-size: clamp(2rem, 6vw, 3.5rem);
  --body-size: clamp(0.875rem, 2vw, 1rem);
  --small-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #6d28d9 50%, #8b5cf6 75%, #a855f7 100%);
  min-height: 100vh;
  color: var(--vornyx-text-primary);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vornyx-contact-section {
    background-attachment: scroll;
    min-height: 100svh;
  }
}

.vornyx-contact-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--section-padding);
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 640px) {
  .vornyx-contact-header {
    padding: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .vornyx-contact-header {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem;
  }
}

.vornyx-contact-logo {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--vornyx-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.vornyx-contact-logo:hover {
  color: var(--vornyx-primary-purple);
}

.vornyx-contact-auth-buttons {
  display: flex;
  gap: clamp(0.5rem, 2vw, 1rem);
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .vornyx-contact-auth-buttons {
    justify-content: center;
    width: 100%;
  }
}

.vornyx-contact-auth-text {
  color: var(--vornyx-text-secondary);
  font-size: var(--small-size);
}
@media (max-width: 640px) {
  .vornyx-contact-auth-text {
    display: none;
  }
}

.vornyx-contact-help-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vornyx-text-primary);
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 0.5rem;
  font-size: var(--small-size);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
}
.vornyx-contact-help-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vornyx-primary-purple);
  transform: translateY(-1px);
}
.vornyx-contact-help-btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .vornyx-contact-help-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

.vornyx-contact-container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(80px + var(--section-padding)) var(--section-padding) var(--section-padding);
  gap: var(--content-gap);
}
@media (min-width: 1024px) {
  .vornyx-contact-container {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding: var(--section-padding);
    align-items: center;
    gap: 4rem;
  }
}
@media (min-width: 1400px) {
  .vornyx-contact-container {
    gap: 6rem;
  }
}
@media (max-width: 1023px) and (orientation: landscape) {
  .vornyx-contact-container {
    padding-top: calc(60px + 1rem);
    gap: 2rem;
  }
}

.vornyx-contact-left-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .vornyx-contact-left-section {
    margin: 0;
    max-width: none;
  }
}

.vornyx-contact-form-container {
  width: 100%;
}
.vornyx-contact-form-container h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(135deg, var(--vornyx-text-primary) 0%, var(--vornyx-primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 1024px) {
  .vornyx-contact-form-container h1 {
    text-align: left;
  }
}

.vornyx-contact-form-group {
  margin-bottom: var(--form-gap);
  width: 100%;
}
.vornyx-contact-form-group label {
  display: block;
  margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
  font-size: var(--small-size);
  font-weight: 500;
  color: var(--vornyx-text-secondary);
}

.vornyx-contact-input-wrapper {
  position: relative;
  width: 100%;
}

.vornyx-contact-form-input {
  width: 100%;
  background: var(--vornyx-input-bg);
  border: 1px solid var(--vornyx-input-border);
  border-radius: clamp(0.5rem, 2vw, 0.75rem);
  padding: clamp(0.875rem, 2.5vw, 1rem) clamp(0.875rem, 2.5vw, 1rem) clamp(0.875rem, 2.5vw, 1rem) clamp(2.5rem, 6vw, 3rem);
  color: var(--vornyx-text-primary);
  font-size: var(--body-size);
  transition: all 0.3s ease;
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 48px;
}
.vornyx-contact-form-input:focus {
  outline: none;
  border-color: var(--vornyx-primary-purple);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
  transform: translateY(-1px);
}
.vornyx-contact-form-input::-moz-placeholder {
  color: var(--vornyx-text-secondary);
  opacity: 0.8;
}
.vornyx-contact-form-input::placeholder {
  color: var(--vornyx-text-secondary);
  opacity: 0.8;
}
@supports (-webkit-touch-callout: none) {
  .vornyx-contact-form-input[type=email] {
    -webkit-text-size-adjust: 100%;
  }
}
@media (max-width: 480px) {
  .vornyx-contact-form-input {
    font-size: 16px;
    padding: 1rem 1rem 1rem 2.75rem;
  }
}

.vornyx-contact-input-icon {
  position: absolute;
  left: clamp(0.75rem, 2vw, 1rem);
  top: 50%;
  transform: translateY(-50%);
  color: var(--vornyx-text-secondary);
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  pointer-events: none;
  transition: color 0.3s ease;
}
.vornyx-contact-input-wrapper:focus-within .vornyx-contact-input-icon {
  color: var(--vornyx-primary-purple);
}

.vornyx-contact-form-input.vornyx-contact-textarea {
  resize: vertical;
  min-height: clamp(100px, 20vw, 120px);
  max-height: 200px;
  padding-top: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.5;
}
@media (max-width: 480px) {
  .vornyx-contact-form-input.vornyx-contact-textarea {
    min-height: 120px;
    padding-top: 1rem;
  }
}

.vornyx-contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--vornyx-primary-purple) 0%, var(--vornyx-dark-purple) 100%);
  border: none;
  border-radius: clamp(0.5rem, 2vw, 0.75rem);
  padding: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--vornyx-text-primary);
  font-size: var(--body-size);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}
.vornyx-contact-submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.vornyx-contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}
.vornyx-contact-submit-btn:hover::before {
  left: 100%;
}
.vornyx-contact-submit-btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .vornyx-contact-submit-btn {
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}
.vornyx-contact-submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}
.vornyx-contact-submit-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.vornyx-contact-divider {
  display: flex;
  align-items: center;
  margin: clamp(1.5rem, 4vw, 2rem) 0;
  color: var(--vornyx-text-secondary);
  font-size: var(--small-size);
}
.vornyx-contact-divider::before, .vornyx-contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.vornyx-contact-divider span {
  margin: 0 clamp(0.75rem, 2vw, 1rem);
  white-space: nowrap;
}

.vornyx-contact-social-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(0.5rem, 2vw, 0.75rem);
  padding: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--vornyx-text-primary);
  font-size: var(--body-size);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.375rem, 1vw, 0.5rem);
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  min-height: 48px;
}
.vornyx-contact-social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vornyx-primary-purple);
  transform: translateY(-1px);
}
.vornyx-contact-social-btn:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .vornyx-contact-social-btn {
    padding: 1rem;
    font-size: 1rem;
  }
}

.vornyx-contact-right-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}
@media (min-width: 1024px) {
  .vornyx-contact-right-section {
    padding: var(--section-padding);
  }
}

.vornyx-contact-hero-content {
  margin-bottom: clamp(2rem, 6vw, 4rem);
  width: 100%;
}

.vornyx-contact-hero-title {
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.vornyx-contact-hero-title .vornyx-contact-highlight {
  color: var(--vornyx-primary-purple);
  text-decoration: underline;
  text-decoration-color: var(--vornyx-primary-purple);
  text-decoration-thickness: clamp(2px, 0.5vw, 4px);
  text-underline-offset: clamp(4px, 1vw, 8px);
}
.vornyx-contact-hero-title .vornyx-contact-italic {
  font-style: italic;
  font-weight: 400;
}

.vornyx-contact-social-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  max-width: 400px;
}
@media (min-width: 640px) {
  .vornyx-contact-social-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  .vornyx-contact-social-cards {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .vornyx-contact-social-cards {
    grid-template-columns: 1fr 1fr;
    max-width: 400px;
  }
}

.vornyx-contact-social-card {
  background: var(--vornyx-card-bg);
  -webkit-backdrop-filter: var(--vornyx-backdrop-blur);
          backdrop-filter: var(--vornyx-backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(1rem, 3vw, 1.5rem);
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 100px;
}
.vornyx-contact-social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}
.vornyx-contact-social-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: var(--vornyx-primary-purple);
}
.vornyx-contact-social-card:hover::before {
  left: 100%;
}
.vornyx-contact-social-card:active {
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 480px) {
  .vornyx-contact-social-card {
    padding: 1.25rem;
  }
  .vornyx-contact-social-card:hover {
    transform: translateY(-2px);
  }
}

.vornyx-contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.vornyx-contact-card-title {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 600;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-card-icon {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  padding: clamp(0.375rem, 1vw, 0.5rem);
  border-radius: clamp(0.5rem, 1.5vw, 0.75rem);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.vornyx-contact-social-card:hover .vornyx-contact-card-icon {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
}

.vornyx-contact-card-stats {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 1vw, 0.5rem);
}

.vornyx-contact-card-value {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--vornyx-text-primary);
}

.vornyx-contact-card-change {
  font-size: var(--small-size);
  font-weight: 500;
}
.vornyx-contact-card-change.vornyx-contact-positive {
  color: #10b981;
}
.vornyx-contact-card-change.vornyx-contact-negative {
  color: #ef4444;
}

.vornyx-contact-floating-animation {
  animation: vornyx-contact-floating 3s ease-in-out infinite;
}
.vornyx-contact-floating-animation:nth-child(2) {
  animation-delay: 1s;
}

@keyframes vornyx-contact-floating {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .vornyx-contact-floating-animation {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  .vornyx-contact-section {
    --vornyx-input-border: rgba(255, 255, 255, 0.3);
    --vornyx-card-bg: rgba(0, 0, 0, 0.8);
  }
  .vornyx-contact-form-input {
    border-width: 2px;
  }
}
@media print {
  .vornyx-contact-section {
    background: white !important;
    color: black !important;
    min-height: auto;
  }
  .vornyx-contact-container {
    display: block;
    padding: 1rem;
  }
  .vornyx-contact-social-cards,
  .vornyx-contact-header {
    display: none;
  }
}
.vornyx-contact-form-input:focus,
.vornyx-contact-submit-btn:focus,
.vornyx-contact-social-btn:focus,
.vornyx-contact-help-btn:focus {
  outline: 2px solid var(--vornyx-primary-purple);
  outline-offset: 2px;
}

.vornyx-contact-section.loading .vornyx-contact-form-input,
.vornyx-contact-section.loading .vornyx-contact-submit-btn,
.vornyx-contact-section.loading .vornyx-contact-social-btn {
  pointer-events: none;
  opacity: 0.6;
}

/* Hero Container */
.vzx-hero-container {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1d2e 50%, #0f1419 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

/* CSS Custom Properties */
.vzx-hero-container {
  --vzx-primary-purple: #8b5cf6;
  --vzx-secondary-purple: #a855f7;
  --vzx-accent-purple: #c084fc;
  --vzx-light-purple: #ddd6fe;
  --vzx-coral-purple: #d946ef;
  --vzx-text-primary: #ffffff;
  --vzx-text-secondary: #e2e8f0;
  --vzx-bg-dark: #0a0e1a;
}

.vzx-hero-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
}

/* Hide mobile toggle checkbox */
.vzx-mobile-toggle {
  display: none;
}

/* STICKY NAVIGATION WITH SCROLL BEHAVIOR */
.vzx-nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 2vw, 0px) clamp(20px, 8vw, 120px);
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 29, 46, 0.95) 50%, rgba(15, 20, 25, 0.95) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  /* Scroll behavior states */
  /* Enhanced background when scrolled */
}
.vzx-nav-header.vzx-nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.vzx-nav-header.vzx-nav-visible {
  transform: translateY(0);
  opacity: 1;
}
.vzx-nav-header.vzx-nav-scrolled {
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(26, 29, 46, 0.98) 50%, rgba(15, 20, 25, 0.98) 100%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
          backdrop-filter: blur(25px) saturate(200%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Logo */
.vzx-logo-brand {
  display: flex;
  height: clamp(40px, 6vw, 60px);
  width: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  z-index: 1002;
}
.vzx-logo-brand img {
  width: 162px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .vzx-logo-brand img {
    width: 104px;
  }
}

/* Desktop Navigation */
.vzx-nav-desktop {
  display: flex;
  align-items: center;
}

.vzx-nav-menu {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.vzx-nav-link {
  color: var(--vzx-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(14px, 1.2vw, 16px);
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.vzx-nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vzx-accent-purple);
  transition: width 0.3s ease;
}
.vzx-nav-link:hover {
  color: var(--vzx-accent-purple);
}
.vzx-nav-link:hover::after {
  width: 100%;
}

/* Contact Button */
.vzx-contact-btn {
  background: var(--vzx-primary-purple);
  color: white;
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 2.5vw, 24px);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1.1vw, 15px);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.vzx-contact-btn:hover {
  background: var(--vzx-secondary-purple);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

/* Burger Button */
.vzx-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1002;
  padding: 4px;
  background: transparent;
  border: none;
}

.vzx-burger-line {
  width: 20px;
  height: 2px;
  background: var(--vzx-text-primary);
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Burger Animation */
.vzx-mobile-toggle:checked ~ .vzx-burger-btn .vzx-burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.vzx-mobile-toggle:checked ~ .vzx-burger-btn .vzx-burger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.vzx-mobile-toggle:checked ~ .vzx-burger-btn .vzx-burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.vzx-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.98) 0%, rgba(26, 29, 46, 0.98) 50%, rgba(15, 20, 25, 0.98) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
          backdrop-filter: blur(20px) saturate(180%);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.vzx-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
}

.vzx-mobile-link {
  color: var(--vzx-text-primary);
  text-decoration: none;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.vzx-mobile-link:hover {
  color: var(--vzx-accent-purple);
  transform: translateY(20px) scale(1.05);
}

.vzx-mobile-contact {
  background: var(--vzx-primary-purple);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(18px, 4vw, 22px);
  transition: all 0.3s ease;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
.vzx-mobile-contact:hover {
  background: var(--vzx-secondary-purple);
  transform: translateY(16px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Animate mobile menu items */
.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link,
.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-contact {
  opacity: 1;
  transform: translateY(0);
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link:nth-child(2) {
  transition-delay: 0.2s;
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link:nth-child(3) {
  transition-delay: 0.3s;
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-link:nth-child(4) {
  transition-delay: 0.4s;
}

.vzx-mobile-toggle:checked ~ .vzx-mobile-menu .vzx-mobile-contact {
  transition-delay: 0.5s;
}

/* MAIN HERO CONTENT */
.vzx-hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(120px, 17vh, 160px) clamp(20px, 8vw, 120px) clamp(40px, 8vh, 80px);
  gap: clamp(2rem, 8vw, 8rem);
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.vzx-content-section {
  max-width: 100%;
  width: 100%;
}

.vzx-hero-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  margin: 0 0 1rem 0;
  color: var(--vzx-text-primary);
  letter-spacing: -0.02em;
}

.vzx-title-accent {
  color: var(--vzx-primary-purple);
  display: block;
}

.vzx-hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  font-weight: 600;
  margin: 1rem 0 1.5rem 0;
  color: var(--vzx-text-secondary);
  line-height: 1.2;
}

.vzx-accent-text {
  color: var(--vzx-primary-purple);
}

.vzx-hero-description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--vzx-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.vzx-description-highlight {
  font-weight: 600;
  color: var(--vzx-text-primary);
}

.vzx-partners-list {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.vzx-partner-tag {
  color: var(--vzx-text-secondary);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  opacity: 0.8;
  white-space: nowrap;
}

.vzx-cta-buttons {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: 2rem;
  flex-wrap: wrap;
}

.vzx-primary-btn,
.vzx-secondary-btn {
  padding: clamp(12px, 2.5vw, 16px) clamp(20px, 4vw, 32px);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  min-width: 140px;
}

.vzx-primary-btn {
  background: var(--vzx-primary-purple);
  color: white;
  border: 2px solid var(--vzx-primary-purple);
}
.vzx-primary-btn:hover {
  background: var(--vzx-secondary-purple);
  border-color: var(--vzx-secondary-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.vzx-secondary-btn {
  background: transparent;
  color: var(--vzx-primary-purple);
  border: 2px solid var(--vzx-primary-purple);
}
.vzx-secondary-btn:hover {
  background: var(--vzx-primary-purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

/* WebGL Section - FIXED FOR NO TRUNCATION */
.vzx-blob-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.vzx-webgl-container {
  position: relative;
  width: 100%;
  max-width: clamp(280px, 80vw, 500px);
  height: clamp(280px, 80vw, 500px);
  border-radius: 30px;
  overflow: hidden;
  filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.3)) drop-shadow(0 10px 20px rgba(139, 92, 246, 0.2));
  /* Ensure it stays within viewport */
  max-height: 70vh;
  aspect-ratio: 1;
}

#vzxWebGLCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.vzx-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--vzx-primary-purple);
  font-weight: 600;
  z-index: 1;
  font-size: clamp(14px, 2vw, 16px);
}

/* Scroll Indicator */
.vzx-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--vzx-text-secondary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  opacity: 0.5;
  animation: vzxBounce 2s infinite;
}

@keyframes vzxBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}
/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .vzx-hero-main {
    gap: clamp(3rem, 6vw, 5rem);
  }
}
@media (max-width: 768px) {
  .vzx-nav-desktop {
    display: none;
  }
  .vzx-burger-btn {
    display: flex;
  }
  .vzx-contact-btn {
    display: none;
  }
  .vzx-hero-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2rem, 6vw, 3rem);
    padding: clamp(100px, 15vh, 120px) clamp(16px, 5vw, 40px) clamp(40px, 8vh, 60px);
    justify-items: center;
    align-items: center;
  }
  .vzx-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
  }
  .vzx-partners-list {
    justify-content: center;
  }
  .vzx-cta-buttons {
    justify-content: center;
    align-items: center;
  }
  /* Ensure blob section is centered and contained */
  .vzx-blob-section {
    order: 2;
    padding: clamp(1rem, 3vw, 2rem);
  }
  .vzx-content-section {
    order: 1;
  }
}
@media (max-width: 640px) {
  /* Enhanced center alignment for smaller screens */
  .vzx-hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(100px, 15vh, 120px) clamp(20px, 6vw, 40px) clamp(40px, 8vh, 60px);
  }
  .vzx-content-section {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .vzx-hero-title {
    text-align: center;
  }
  .vzx-hero-subtitle {
    text-align: center;
  }
  .vzx-hero-description {
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
  .vzx-partners-list {
    justify-content: center;
    width: 100%;
  }
  .vzx-cta-buttons {
    justify-content: center;
    width: 100%;
  }
  /* Blob section improvements for small screens */
  .vzx-blob-section {
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .vzx-nav-header {
    padding: 14px 20px;
  }
  .vzx-hero-main {
    padding: 106px 16px 40px;
    gap: 2rem;
  }
  .vzx-content-section {
    max-width: 100%;
    padding: 0 8px;
  }
  .vzx-partners-list {
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
  }
  .vzx-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .vzx-cta-buttons .vzx-primary-btn,
  .vzx-cta-buttons .vzx-secondary-btn {
    width: 100%;
    max-width: 280px;
    justify-self: center;
  }
  /* Blob section for very small screens */
  .vzx-webgl-container {
    max-width: min(260px, 90vw);
    height: min(260px, 90vw);
    max-height: 50vh;
  }
}
/* Prevent body scroll when mobile menu is open */
.vzx-mobile-toggle:checked ~ * body {
  overflow: hidden;
}

/* FIXED BOOKING MODAL STYLES */
.vzx-booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.vzx-booking-modal.vzx-modal-open {
  opacity: 1;
  visibility: visible;
}

.vzx-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.vzx-modal-container {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(26, 29, 46, 0.95) 50%, rgba(15, 20, 25, 0.95) 100%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
          backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(139, 92, 246, 0.1);
}
.vzx-modal-open .vzx-modal-container {
  transform: scale(1) translateY(0);
}

.vzx-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.vzx-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--vzx-text-primary);
  margin: 0;
  background: linear-gradient(135deg, var(--vzx-text-primary) 0%, var(--vzx-primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FIXED CLOSE BUTTON */
.vzx-modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vzx-text-primary);
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.vzx-modal-close:hover {
  background: rgba(255, 92, 92, 0.2);
  border-color: rgba(255, 92, 92, 0.4);
  color: #ff5c5c;
  transform: scale(1.05);
}
.vzx-modal-close svg {
  width: 20px;
  height: 20px;
}

.vzx-modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 32px;
  max-height: 70vh;
  overflow-y: auto;
}
.vzx-modal-content::-webkit-scrollbar {
  width: 6px;
}
.vzx-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.vzx-modal-content::-webkit-scrollbar-thumb {
  background: var(--vzx-primary-purple);
  border-radius: 3px;
}
.vzx-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--vzx-secondary-purple);
}

.vzx-modal-left {
  display: flex;
  flex-direction: column;
}

.vzx-form-group {
  margin-bottom: 24px;
}

.vzx-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  margin-bottom: 8px;
}

.vzx-form-input,
.vzx-form-select,
.vzx-form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--vzx-text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.vzx-form-input:focus,
.vzx-form-select:focus,
.vzx-form-textarea:focus {
  outline: none;
  border-color: var(--vzx-primary-purple);
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}
.vzx-form-input::-moz-placeholder, .vzx-form-select::-moz-placeholder, .vzx-form-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.vzx-form-input::placeholder,
.vzx-form-select::placeholder,
.vzx-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* FIXED DROPDOWN OPTIONS - VISIBLE NOW */
.vzx-form-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding-right: 40px;
  /* FIXED: Dark background for options */
  /* For different browsers */
}
.vzx-form-select option {
  background: #1a1d2e !important;
  color: #ffffff !important;
  padding: 10px !important;
  border: none !important;
}
.vzx-form-select option:checked {
  background: var(--vzx-primary-purple) !important;
  color: white !important;
}
.vzx-form-select option:hover {
  background: rgba(139, 92, 246, 0.3) !important;
  color: white !important;
}

.vzx-form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.vzx-calendar-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vzx-calendar-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  margin: 0 0 20px 0;
}

.vzx-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.vzx-calendar-nav {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--vzx-primary-purple);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.vzx-calendar-nav:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
}

.vzx-calendar-month {
  font-size: 16px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  margin: 0;
}

.vzx-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

.vzx-calendar-day-header {
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--vzx-text-secondary);
  opacity: 0.7;
}

.vzx-calendar-day {
  padding: 8px;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  font-size: 14px;
  color: var(--vzx-text-secondary);
  transition: all 0.3s ease;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vzx-calendar-day:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--vzx-text-primary);
}
.vzx-calendar-day.vzx-day-available {
  color: var(--vzx-text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.vzx-calendar-day.vzx-day-available:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
}
.vzx-calendar-day.vzx-day-selected {
  background: var(--vzx-primary-purple);
  color: white;
  font-weight: 600;
}
.vzx-calendar-day.vzx-day-selected:hover {
  background: var(--vzx-secondary-purple);
}
.vzx-calendar-day.vzx-day-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.vzx-calendar-day.vzx-day-disabled:hover {
  background: transparent;
  color: var(--vzx-text-secondary);
  transform: none;
}

.vzx-time-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  margin: 0 0 12px 0;
}

.vzx-time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.vzx-time-slot {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--vzx-text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.vzx-time-slot:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--vzx-primary-purple);
  color: var(--vzx-text-primary);
  transform: translateY(-1px);
}
.vzx-time-slot.vzx-time-selected {
  background: var(--vzx-primary-purple);
  border-color: var(--vzx-primary-purple);
  color: white;
}
.vzx-time-slot.vzx-time-selected:hover {
  background: var(--vzx-secondary-purple);
}

.vzx-selected-time {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.vzx-selected-time h4 {
  color: var(--vzx-primary-purple);
  font-size: 16px;
  margin: 0 0 8px 0;
  font-weight: 600;
}
.vzx-selected-time p {
  color: var(--vzx-text-primary);
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.vzx-modal-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.vzx-modal-cancel {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vzx-text-secondary);
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.vzx-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--vzx-text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

.vzx-modal-submit {
  background: linear-gradient(135deg, var(--vzx-primary-purple) 0%, var(--vzx-secondary-purple) 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vzx-modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.vzx-modal-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.vzx-modal-submit:disabled:hover {
  transform: none;
  box-shadow: none;
}

.vzx-button-icon {
  transition: transform 0.3s ease;
}

.vzx-modal-submit:hover .vzx-button-icon {
  transform: translateX(2px);
}

/* CONFIRMATION MODAL STYLES */
.vzx-confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.vzx-confirmation-modal.vzx-confirmation-open {
  opacity: 1;
  visibility: visible;
}

.vzx-confirmation-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.vzx-confirmation-container {
  position: relative;
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.97) 0%, rgba(26, 29, 46, 0.97) 50%, rgba(15, 20, 25, 0.97) 100%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
          backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow: hidden;
  transform: scale(0.8) translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 100px rgba(139, 92, 246, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.vzx-confirmation-open .vzx-confirmation-container {
  transform: scale(1) translateY(0);
}

.vzx-confirmation-header {
  text-align: center;
  padding: 32px 32px 24px 32px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vzx-confirmation-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  background: linear-gradient(135deg, var(--vzx-primary-purple) 0%, var(--vzx-secondary-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
  animation: checkmark-bounce 0.6s ease-out 0.2s both;
}
.vzx-confirmation-icon svg {
  color: white;
  stroke-width: 3;
}

@keyframes checkmark-bounce {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(-90deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
.vzx-confirmation-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--vzx-text-primary);
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, var(--vzx-text-primary) 0%, var(--vzx-primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vzx-confirmation-subtitle {
  font-size: 16px;
  color: var(--vzx-text-secondary);
  margin: 0;
  opacity: 0.9;
}

.vzx-confirmation-content {
  padding: 24px 32px;
  max-height: 60vh;
  overflow-y: auto;
}
.vzx-confirmation-content::-webkit-scrollbar {
  width: 6px;
}
.vzx-confirmation-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.vzx-confirmation-content::-webkit-scrollbar-thumb {
  background: var(--vzx-primary-purple);
  border-radius: 3px;
}
.vzx-confirmation-content::-webkit-scrollbar-thumb:hover {
  background: var(--vzx-secondary-purple);
}

.vzx-booking-details {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.vzx-detail-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  animation: detail-slide-in 0.5s ease-out both;
}
.vzx-detail-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}
.vzx-detail-card.vzx-detail-featured {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}
.vzx-detail-card.vzx-detail-featured .vzx-detail-icon {
  background: var(--vzx-primary-purple);
  color: white;
}
.vzx-detail-card.vzx-detail-full {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.vzx-detail-card.vzx-detail-full .vzx-detail-info {
  width: 100%;
}

@keyframes detail-slide-in {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.vzx-detail-card:nth-child(1) {
  animation-delay: 0.1s;
}

.vzx-detail-card:nth-child(2) {
  animation-delay: 0.2s;
}

.vzx-detail-card:nth-child(3) {
  animation-delay: 0.3s;
}

.vzx-detail-card:nth-child(4) {
  animation-delay: 0.4s;
}

.vzx-detail-card:nth-child(5) {
  animation-delay: 0.5s;
}

.vzx-detail-card:nth-child(6) {
  animation-delay: 0.6s;
}

.vzx-detail-card:nth-child(7) {
  animation-delay: 0.7s;
}

.vzx-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.vzx-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vzx-detail-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--vzx-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.vzx-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--vzx-text-primary);
  line-height: 1.4;
}
.vzx-detail-value.vzx-detail-message {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--vzx-text-secondary);
  max-height: 80px;
  overflow-y: auto;
}

.vzx-confirmation-note {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vzx-note-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.vzx-note-content {
  flex: 1;
}
.vzx-note-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--vzx-text-primary);
  margin: 0 0 12px 0;
}
.vzx-note-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.vzx-note-content ul li {
  font-size: 14px;
  color: var(--vzx-text-secondary);
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.vzx-note-content ul li:before {
  content: "•";
  color: var(--vzx-primary-purple);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.vzx-note-content ul li:last-child {
  margin-bottom: 0;
}

.vzx-confirmation-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.vzx-confirmation-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--vzx-text-secondary);
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.vzx-confirmation-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--vzx-text-primary);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.vzx-confirmation-secondary svg {
  opacity: 0.7;
}

.vzx-confirmation-primary {
  background: linear-gradient(135deg, var(--vzx-primary-purple) 0%, var(--vzx-secondary-purple) 100%);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.vzx-confirmation-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.vzx-confirmation-primary svg {
  transition: transform 0.3s ease;
}
.vzx-confirmation-primary:hover svg {
  transform: translateX(2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vzx-modal-container {
    width: 95%;
    max-height: 95vh;
  }
  .vzx-modal-header {
    padding: 20px 24px;
  }
  .vzx-modal-title {
    font-size: 20px;
  }
  .vzx-modal-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    max-height: 60vh;
  }
  .vzx-calendar-section {
    padding: 20px;
  }
  .vzx-time-grid {
    grid-template-columns: 1fr;
  }
  .vzx-modal-footer {
    padding: 20px 24px;
    flex-direction: column-reverse;
    gap: 12px;
  }
  .vzx-modal-footer .vzx-modal-cancel,
  .vzx-modal-footer .vzx-modal-submit {
    width: 100%;
    justify-content: center;
  }
  .vzx-confirmation-container {
    width: 95%;
    max-height: 95vh;
  }
  .vzx-confirmation-header {
    padding: 24px 24px 20px 24px;
  }
  .vzx-confirmation-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  .vzx-confirmation-icon svg {
    width: 32px;
    height: 32px;
  }
  .vzx-confirmation-title {
    font-size: 24px;
  }
  .vzx-confirmation-content {
    padding: 20px 24px;
    max-height: 65vh;
  }
  .vzx-detail-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .vzx-detail-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .vzx-confirmation-footer {
    padding: 20px 24px;
    flex-direction: column;
    gap: 12px;
  }
  .vzx-confirmation-footer .vzx-confirmation-secondary,
  .vzx-confirmation-footer .vzx-confirmation-primary {
    width: 100%;
    justify-content: center;
  }
}
/* ADD THIS TO THE END OF YOUR _hero.scss FILE */
/* Don't change any of your existing styles - just add this section */
/* ===== ADAPTIVE METABALL SOLUTION ===== */
/* Static Image Styles */
.vzx-static-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  display: none; /* Hidden by default */
  animation: mobileFloat 4s ease-in-out infinite;
}

/* Mobile floating animation */
@keyframes mobileFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}
/* ADAPTIVE MEDIA QUERIES */
@media (max-width: 768px) {
  /* Mobile: Show image, hide canvas */
  #vzxWebGLCanvas {
    display: none !important;
  }
  .vzx-static-image {
    display: block !important;
  }
}
@media (min-width: 769px) {
  /* Desktop: Show canvas, hide image */
  #vzxWebGLCanvas {
    display: block !important;
  }
  .vzx-static-image {
    display: none !important;
  }
}
/* ===== END ADAPTIVE SOLUTION ===== */
/* SIMPLE RESPONSIVE METABALL CONTAINER */
.vzx-webgl-container {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  filter: drop-shadow(0 20px 40px rgba(139, 92, 246, 0.3)) drop-shadow(0 10px 20px rgba(139, 92, 246, 0.2));
  margin: 0 auto;
  aspect-ratio: 1;
  /* Desktop */
  max-width: 500px;
  height: 500px;
}

#vzxWebGLCanvas,
.vzx-static-image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

/* Large Desktop */
@media (min-width: 1400px) {
  .vzx-webgl-container {
    max-width: 550px;
    height: 550px;
  }
}
/* Laptop */
@media (max-width: 1200px) {
  .vzx-webgl-container {
    max-width: 450px;
    height: 450px;
  }
}
/* Tablet Portrait */
@media (max-width: 1024px) {
  .vzx-webgl-container {
    max-width: 400px;
    height: 400px;
  }
}
/* Tablet Landscape / Small Laptop */
@media (max-width: 1024px) and (orientation: landscape) {
  .vzx-webgl-container {
    max-width: 350px;
    height: 350px;
    max-height: 60vh;
  }
}
/* Mobile Portrait */
@media (max-width: 768px) {
  .vzx-webgl-container {
    max-width: 320px;
    height: 320px;
    max-height: 50vh;
  }
}
/* Mobile Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .vzx-webgl-container {
    max-width: 280px;
    height: 280px;
    max-height: 70vh;
  }
}
/* Small Mobile */
@media (max-width: 480px) {
  .vzx-webgl-container {
    max-width: 280px;
    height: 280px;
    max-height: 45vh;
  }
}
/* Very Small Mobile Landscape */
@media (max-width: 480px) and (orientation: landscape) {
  .vzx-webgl-container {
    max-width: 250px;
    height: 250px;
    max-height: 60vh;
  }
}
.laptop-sticky-wrapper {
  background: #8b5cf6;
  position: relative;
  height: 400vh; /* Creates scroll space for smooth transitions */
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
  padding: 64px 108px;
}

.laptop-sticky-content {
  background: #8b5cf6;
  border-radius: 16px;
  margin: 86px 0px;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 2rem;
}

.laptop-showcase-container {
  width: 100%;
  max-width: 1400px;
  height: 690px;
  position: relative;
  margin: 0 auto;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(21, 18, 28, 0.6) 0%, rgba(27, 21, 32, 0.6) 25%, rgba(6, 4, 7, 0.6) 50%, rgba(21, 15, 22, 0.6) 75%, rgba(10, 6, 11, 0.6) 100%);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.laptop-sticky-wrapper:hover .laptop-showcase-container {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.laptop-showcase-wrapper {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* macOS Interface */
.laptop-showcase-interface {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Window Header */
.laptop-showcase-header {
  height: 44px;
  background: linear-gradient(135deg, #2a2a3e 0%, #3a3a4e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  position: relative;
}

.laptop-showcase-controls {
  display: flex;
  gap: 8px;
}

.laptop-showcase-control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.laptop-showcase-control-btn:hover {
  transform: scale(1.1);
}

.laptop-showcase-control-btn.close {
  background: #ff5f57;
}

.laptop-showcase-control-btn.minimize {
  background: #ffbd2e;
}

.laptop-showcase-control-btn.maximize {
  background: #28ca42;
}

.laptop-showcase-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: opacity 0.3s ease;
}

.laptop-showcase-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #10b981;
  font-weight: 500;
}

.laptop-showcase-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}

/* Main Content Area */
.laptop-showcase-main {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/* Sidebar */
.laptop-showcase-sidebar {
  width: 280px;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.laptop-showcase-sidebar-content {
  padding: 2rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.laptop-showcase-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 3rem;
}

.laptop-showcase-logo {
  width: 32px;
  height: 32px;
}

.laptop-showcase-brand-text h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.laptop-showcase-brand-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
}

.laptop-showcase-nav {
  flex: 1;
}

.laptop-showcase-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.laptop-showcase-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.laptop-showcase-nav-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(2px);
}

.laptop-showcase-nav-item.active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.laptop-showcase-nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Content Area */
.laptop-showcase-content-area {
  flex: 1;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

/* Panels with Smooth Transitions */
.laptop-showcase-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 2rem;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.laptop-showcase-panel::-webkit-scrollbar {
  display: none;
}

.laptop-showcase-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.laptop-showcase-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.laptop-showcase-panel-title-section h1 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.laptop-showcase-panel-title-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.laptop-showcase-panel-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Buttons */
.laptop-showcase-btn-primary, .laptop-showcase-btn-secondary {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.laptop-showcase-btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.laptop-showcase-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.laptop-showcase-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.laptop-showcase-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.laptop-showcase-btn-small {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.laptop-showcase-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

.laptop-showcase-btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

/* Content Grid */
.laptop-showcase-content-grid {
  display: grid;
  gap: 1.5rem;
}

/* Stats Grid */
.laptop-showcase-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.laptop-showcase-stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.laptop-showcase-stat-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(102, 126, 234, 0.2);
}

.laptop-showcase-stat-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-showcase-stat-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.laptop-showcase-stat-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.laptop-showcase-stat-change {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.laptop-showcase-stat-change.positive {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.laptop-showcase-stat-change.negative {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Chart Card */
.laptop-showcase-chart-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.laptop-showcase-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.laptop-showcase-chart-header h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.laptop-showcase-chart-period {
  display: flex;
  gap: 4px;
}

.laptop-showcase-chart-period button {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.laptop-showcase-chart-period button.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
}

.laptop-showcase-chart-container {
  height: 200px;
  position: relative;
}

.laptop-showcase-chart {
  width: 100%;
  height: 100%;
}

/* Campaign Styles */
.laptop-showcase-campaign-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.laptop-showcase-campaign-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.laptop-showcase-campaign-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
}

.laptop-showcase-campaign-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.laptop-showcase-campaign-status.active {
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
}

.laptop-showcase-campaign-status.pending {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

.laptop-showcase-campaign-content {
  flex: 1;
}

.laptop-showcase-campaign-content h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.laptop-showcase-campaign-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 8px;
}

.laptop-showcase-campaign-stats {
  display: flex;
  gap: 1rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.laptop-showcase-campaign-actions {
  display: flex;
  gap: 8px;
}

/* Performance Chart */
.laptop-showcase-performance-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.laptop-showcase-performance-card h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.laptop-showcase-performance-chart {
  display: flex;
  align-items: flex-end;
  height: 120px;
  gap: 8px;
  margin-bottom: 1rem;
}

.laptop-showcase-chart-bar {
  background: linear-gradient(to top, #667eea, #764ba2);
  border-radius: 4px 4px 0 0;
  flex: 1;
  animation: growUp 1.5s ease-out;
  position: relative;
  overflow: hidden;
}

.laptop-showcase-chart-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.1));
}

.laptop-showcase-chart-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
}

/* Test Styles */
.laptop-showcase-test-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.laptop-showcase-test-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.laptop-showcase-test-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
}

.laptop-showcase-test-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.laptop-showcase-test-header h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.laptop-showcase-test-status {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.laptop-showcase-test-status.winning {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.laptop-showcase-test-status.running {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.laptop-showcase-test-details p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 8px;
}

.laptop-showcase-improvement {
  color: #10b981;
  font-size: 13px;
  font-weight: 600;
}

.laptop-showcase-test-insights {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.laptop-showcase-test-insights h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.laptop-showcase-insights-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.laptop-showcase-insight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.laptop-showcase-insight-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-showcase-insight-content h5 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.laptop-showcase-insight-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

/* Lead Styles */
.laptop-showcase-lead-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.laptop-showcase-lead-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.laptop-showcase-lead-item:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.05);
}

.laptop-showcase-lead-score {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.laptop-showcase-lead-item.high .laptop-showcase-lead-score {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.laptop-showcase-lead-item.medium .laptop-showcase-lead-score {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.laptop-showcase-lead-content {
  flex: 1;
}

.laptop-showcase-lead-content h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.laptop-showcase-lead-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-bottom: 8px;
}

.laptop-showcase-lead-tags {
  display: flex;
  gap: 6px;
}

.laptop-showcase-lead-tags span {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.laptop-showcase-scoring-overview {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.laptop-showcase-scoring-overview h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.laptop-showcase-score-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.laptop-showcase-score-segment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
}

.laptop-showcase-score-segment.high {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.laptop-showcase-score-segment.medium {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.laptop-showcase-score-segment.low {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}

/* Optimization Styles */
.laptop-showcase-optimization-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.laptop-showcase-opt-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.laptop-showcase-opt-stat h4 {
  color: #667eea;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.laptop-showcase-opt-stat p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.laptop-showcase-roas-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.laptop-showcase-roas-card h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.laptop-showcase-roas-chart {
  display: flex;
  align-items: flex-end;
  height: 100px;
  gap: 6px;
  margin-bottom: 1rem;
}

.laptop-showcase-roas-bar {
  background: linear-gradient(to top, #667eea, #764ba2);
  border-radius: 3px 3px 0 0;
  flex: 1;
  animation: growUp 1.5s ease-out;
}

.laptop-showcase-roas-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
}

/* Live Indicator */
.laptop-showcase-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-weight: 500;
  font-size: 12px;
}

.laptop-showcase-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}

/* Progress Indicator */
.laptop-progress-indicator {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.laptop-sticky-wrapper:hover .laptop-progress-indicator {
  opacity: 1;
}

.laptop-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.laptop-progress-dot.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: scale(1.2);
}

/* Animations */
@keyframes growUp {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .laptop-showcase-container {
    height: 680px;
  }
  .laptop-showcase-sidebar {
    width: 240px;
  }
  .laptop-showcase-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .laptop-sticky-content {
    padding: 1.5rem 1rem;
  }
  .laptop-showcase-container {
    height: 600px;
    padding: 1rem;
  }
  .laptop-showcase-main {
    flex-direction: column;
  }
  .laptop-showcase-sidebar {
    width: 100%;
    height: 120px;
    overflow-y: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .laptop-showcase-sidebar-content {
    padding: 1rem;
    flex-direction: row;
    align-items: center;
  }
  .laptop-showcase-brand {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .laptop-showcase-nav {
    flex: 1;
  }
  .laptop-showcase-nav-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .laptop-showcase-nav-list::-webkit-scrollbar {
    display: none;
  }
  .laptop-showcase-nav-item {
    white-space: nowrap;
    min-width: 100px;
    justify-content: center;
    font-size: 12px;
    padding: 8px 12px;
  }
  .laptop-showcase-panel {
    padding: 1rem;
  }
  .laptop-showcase-panel-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .laptop-showcase-panel-title-section h1 {
    font-size: 20px;
  }
  .laptop-showcase-stats-grid {
    grid-template-columns: 1fr;
  }
  .laptop-showcase-content-grid {
    gap: 1rem;
  }
}
/* Mobile Phone Interface - Only for small screens */
/* Mobile Phone Interface - Only for small screens */
@media (max-width: 768px) {
  .laptop-sticky-wrapper {
    padding: 2px !important;
    margin: 32px 0 !important;
    border-radius: 8px !important;
  }
  .laptop-showcase-container {
    display: none;
  }
  .mobile-phone-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 2rem 1rem;
    position: relative;
  }
  .mobile-phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
  }
  .mobile-phone-frame::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
  }
  .mobile-phone-frame::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }
  .mobile-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-status-bar {
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .mobile-status-bar .mobile-time {
    font-weight: 600;
  }
  .mobile-status-bar .mobile-status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .mobile-status-bar .mobile-status-icons span {
    font-size: 10px;
  }
  .mobile-app-content {
    height: calc(100% - 32px - 60px);
    position: relative;
    overflow: hidden;
  }
  .mobile-showcase-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1rem;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .mobile-showcase-panel::-webkit-scrollbar {
    display: none;
  }
  .mobile-showcase-panel.active {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  .mobile-app-header {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .mobile-app-header .mobile-app-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
  }
  .mobile-app-header .mobile-app-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
  }
  .mobile-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .mobile-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  .mobile-stat-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
  }
  .mobile-stat-card .mobile-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
  }
  .mobile-stat-card .mobile-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
  }
  .mobile-stat-card .mobile-stat-change {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
  }
  .mobile-stat-card .mobile-stat-change.positive {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
  }
  .mobile-stat-card .mobile-stat-change.negative {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
  }
  .mobile-chart-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .mobile-chart-container .mobile-chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
  }
  .mobile-chart-container .mobile-chart-bars {
    display: flex;
    align-items: flex-end;
    height: 80px;
    gap: 4px;
    margin-bottom: 0.5rem;
  }
  .mobile-chart-container .mobile-chart-bar {
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 2px 2px 0 0;
    flex: 1;
    animation: mobileBarGrow 1.2s ease-out;
    position: relative;
  }
  .mobile-chart-container .mobile-chart-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.1));
    border-radius: 2px 2px 0 0;
  }
  .mobile-action-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }
  .mobile-action-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  }
  .mobile-action-button:active {
    transform: translateY(0);
  }
  .mobile-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1rem;
  }
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .mobile-nav-item .mobile-nav-icon {
    font-size: 16px;
    margin-bottom: 2px;
  }
  .mobile-nav-item.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
  }
  .mobile-nav-item:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
  }
  .mobile-progress-indicator {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }
  .mobile-progress-indicator .mobile-progress-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }
  .mobile-progress-indicator .mobile-progress-dot.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.3);
  }
  .mobile-campaign-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .mobile-campaign-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
  }
  .mobile-campaign-item:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .mobile-campaign-item .mobile-campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  .mobile-campaign-item .mobile-campaign-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
  }
  .mobile-campaign-item .mobile-campaign-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }
  .mobile-campaign-item .mobile-campaign-status.active {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
  }
  .mobile-campaign-item .mobile-campaign-status.pending {
    background: #f59e0b;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.4);
  }
  .mobile-campaign-item .mobile-campaign-details {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
  }
  .mobile-lead-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .mobile-lead-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .mobile-lead-item .mobile-lead-score {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .mobile-lead-item.high .mobile-lead-score {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
  }
  .mobile-lead-item.medium .mobile-lead-score {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
  }
  .mobile-lead-item .mobile-lead-content {
    flex: 1;
  }
  .mobile-lead-item .mobile-lead-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
  }
  .mobile-lead-item .mobile-lead-content p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
  }
  .mobile-lead-item .mobile-lead-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }
  .mobile-lead-item .mobile-lead-tags span {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 500;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
  }
  @keyframes mobileBarGrow {
    from {
      height: 0;
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .mobile-phone-frame:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}
@media (min-width: 769px) {
  .mobile-phone-showcase {
    display: none;
  }
}
@media (max-width: 320px) {
  .mobile-phone-frame {
    width: 260px;
    height: 540px;
  }
  .mobile-stats-grid {
    grid-template-columns: 1fr;
  }
  .mobile-stat-card {
    padding: 0.75rem;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .laptop-showcase-container {
    height: 500px;
  }
  .laptop-showcase-main {
    flex-direction: column;
  }
  .laptop-showcase-sidebar {
    width: 100%;
    height: 120px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .laptop-showcase-sidebar-content {
    padding: 1rem;
    flex-direction: row;
    align-items: center;
    height: 100%;
  }
  .laptop-showcase-brand {
    margin-bottom: 0;
    margin-right: 1.5rem;
    flex-shrink: 0;
  }
  .laptop-showcase-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-content: center;
    height: 100%;
  }
  .laptop-showcase-nav-item {
    white-space: nowrap;
    min-width: 90px;
    max-width: 120px;
    padding: 8px 12px;
    font-size: 12px;
    justify-content: center;
    flex: 0 0 auto;
  }
  .laptop-showcase-content-area {
    height: calc(100% - 120px);
  }
  .laptop-showcase-panel {
    padding: 1.2rem;
  }
  .laptop-showcase-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}
@media (max-width: 768px) and (min-width: 601px) {
  .laptop-showcase-container {
    height: 450px;
  }
  .laptop-sticky-wrapper {
    padding: 32px 16px;
  }
  .laptop-sticky-content {
    padding: 1rem;
  }
  .laptop-showcase-main {
    flex-direction: column-reverse;
  }
  .laptop-showcase-sidebar {
    height: 70px;
  }
  .laptop-showcase-nav-item {
    min-width: 80px;
    padding: 6px 10px;
    font-size: 11px;
  }
  .laptop-showcase-content-area {
    height: calc(100% - 70px);
  }
  .laptop-showcase-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .laptop-showcase-chart-container {
    height: 120px;
  }
  .laptop-showcase-performance-chart {
    height: 80px;
  }
}
/* Dark gradient background */
body::before {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.5;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%);
  z-index: -1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
}

.header.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.title {
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

/* Navigation */
.nav {
  display: flex;
  gap: 32px;
  margin-bottom: 100px;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  opacity: 0;
  transform: translateY(20px);
}

.nav.animate {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav-item {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-item.active {
  color: #ffffff;
}

.nav-item.active::after {
  width: 100%;
}

.nav-item:hover {
  color: #ffffff;
}

/* Phone Section Container */
.phone-section {
  width: 100%;
  max-width: 1200px;
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px);
}

.phone-section.animate {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Background Cards */
.bg-card {
  position: absolute;
  width: 400px;
  height: 550px;
  background: #0a0a0a;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
}

.bg-card.animate {
  animation: scaleIn 0.8s ease 0.6s forwards;
}

.bg-card-left {
  left: 50%;
  transform: translateX(-480px) translateY(30px) rotate(-5deg);
  z-index: 1;
}

.bg-card-right {
  right: 50%;
  transform: translateX(480px) translateY(30px) rotate(5deg);
  z-index: 1;
}

.bg-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  transition: all 0.6s ease;
}

/* Phone Container */
.phone-container {
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: scale(0.9);
}

.phone-container.animate {
  animation: phoneIn 0.8s ease 0.8s forwards;
}

/* Phone Frame */
.phone {
  width: 380px;
  height: 760px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 120px rgba(255, 255, 255, 0.02);
  position: relative;
}

/* Phone Screen */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* Phone Content Container */
.phone-content {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.phone-content.active {
  opacity: 1;
  transform: translateY(0);
}

/* Phone Header */
.phone-header {
  padding: 40px 30px 20px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0));
}

.phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #666;
  margin-bottom: 8px;
}

.phone-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}

.phone-subtitle {
  font-size: 14px;
  color: #999;
  line-height: 1.4;
}

/* Phone Dashboard */
.phone-dashboard {
  padding: 30px;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.metric-value {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: #666;
}

/* Chart Container */
.chart-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin-bottom: 30px;
}

.chart-bar {
  width: 20px;
  background: linear-gradient(to top, var(--accent-color), var(--accent-light));
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
}

/* Action Button */
.action-button {
  width: 100%;
  padding: 18px;
  background: var(--accent-color);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Different theme colors */
.theme-performance {
  --accent-color: #8B5CF6;
  --accent-light: #A855F7;
}

.theme-automation {
  --accent-color: #06B6D4;
  --accent-light: #0891B2;
}

.theme-creative {
  --accent-color: #EC4899;
  --accent-light: #F472B6;
}

.theme-growth {
  --accent-color: #10B981;
  --accent-light: #34D399;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes phoneIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes barGrow {
  from {
    height: 0;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .phone-section {
    height: 600px;
  }
  .phone {
    width: 320px;
    height: 640px;
  }
  .bg-card {
    width: 350px;
    height: 480px;
  }
  .bg-card-left {
    transform: translateX(-380px) translateY(20px) rotate(-3deg);
  }
  .bg-card-right {
    transform: translateX(380px) translateY(20px) rotate(3deg);
  }
}
@media (max-width: 768px) {
  .phone-section {
    height: 500px;
  }
  .phone {
    width: 280px;
    height: 560px;
  }
  .bg-card {
    width: 200px;
    height: 300px;
  }
  .bg-card-left {
    transform: translateX(-200px) translateY(20px) rotate(-2deg);
  }
  .bg-card-right {
    transform: translateX(200px) translateY(20px) rotate(2deg);
  }
  .phone-title {
    font-size: 24px;
  }
  .metric-cards {
    grid-template-columns: 1fr;
  }
}
/* Dark gradient background */
body::before {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", system-ui, sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.5;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%);
  z-index: -1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
}

.header.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.title {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  color: #e3e2e2;
  font-weight: 400;
}

/* Navigation */
.nav {
  display: flex;
  gap: 32px;
  margin-bottom: 52px;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  opacity: 0;
  transform: translateY(20px);
}

.nav.animate {
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav-item {
  font-size: 14px;
  color: #dedede;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-item.active {
  color: #ffffff;
}

.nav-item.active::after {
  width: 100%;
}

.nav-item:hover {
  color: #ffffff;
}

/* Phone Section Container */
.phone-section {
  width: 100%;
  max-width: 1200px;
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px);
}

.phone-section.animate {
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Background Cards */
.bg-card {
  position: absolute;
  width: 400px;
  height: 550px;
  background: #0a0a0a;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
}

.bg-card.animate {
  animation: scaleIn 0.8s ease 0.6s forwards;
}

.bg-card-left {
  left: 50%;
  transform: translateX(-480px) translateY(30px) rotate(-5deg);
  z-index: 1;
}

.bg-card-right {
  right: 50%;
  transform: translateX(480px) translateY(30px) rotate(5deg);
  z-index: 1;
}

.bg-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  transition: all 0.6s ease;
}

/* Phone Container */
.phone-container {
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: scale(0.9);
}

.phone-container.animate {
  animation: phoneIn 0.8s ease 0.8s forwards;
}

/* Phone Frame */
.phone {
  width: 380px;
  height: 760px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 120px rgba(255, 255, 255, 0.02);
  position: relative;
}

/* Phone Screen */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* Phone Content Container */
.phone-content {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.phone-content.active {
  opacity: 1;
  transform: translateY(0);
}

/* Phone Header */
.phone-header {
  padding: 40px 30px 20px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0));
}

.phone-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #666;
  margin-bottom: 8px;
}

.phone-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}

.phone-subtitle {
  font-size: 14px;
  color: #999;
  line-height: 1.4;
}

/* Phone Dashboard */
.phone-dashboard {
  padding: 30px;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.metric-value {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: #666;
}

/* Chart Container */
.chart-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  margin-bottom: 30px;
}

.chart-bar {
  width: 20px;
  background: linear-gradient(to top, var(--accent-color), var(--accent-light));
  border-radius: 10px 10px 0 0;
  transition: all 0.3s ease;
}

/* Action Button */
.action-button {
  width: 100%;
  padding: 18px;
  background: var(--accent-color);
  border: none;
  border-radius: 16px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Different theme colors */
.theme-performance {
  --accent-color: #8B5CF6;
  --accent-light: #A855F7;
}

.theme-automation {
  --accent-color: #06B6D4;
  --accent-light: #0891B2;
}

.theme-creative {
  --accent-color: #EC4899;
  --accent-light: #F472B6;
}

.theme-growth {
  --accent-color: #10B981;
  --accent-light: #34D399;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes phoneIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes barGrow {
  from {
    height: 0;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .phone-section {
    height: 600px;
  }
  .phone {
    width: 320px;
    height: 640px;
  }
  .bg-card {
    width: 350px;
    height: 480px;
  }
  .bg-card-left {
    transform: translateX(-380px) translateY(20px) rotate(-3deg);
  }
  .bg-card-right {
    transform: translateX(380px) translateY(20px) rotate(3deg);
  }
}
/* ================================= */
/* MOBILE-ONLY FIXES - CORRECTED VERSION */
/* ================================= */
/* Mobile: 768px and below */
@media (max-width: 768px) {
  .phone-section {
    flex-direction: column !important;
    align-items: center !important;
    height: auto !important;
    min-height: auto !important;
    gap: 0 !important;
    padding: 20px 0 !important;
    position: relative !important;
  }
  .phone-container {
    order: 2 !important;
    z-index: 10 !important;
    position: relative !important;
  }
  .phone {
    width: 320px !important;
    height: 640px !important;
  }
  /* Background cards - COMPLETELY REMOVE ON MOBILE */
  .bg-card {
    display: none !important;
  }
  .container {
    padding: 20px 16px !important;
  }
  /* Reduce header and nav spacing on mobile */
  .header {
    margin-bottom: 30px !important;
  }
  .nav {
    margin-bottom: 40px !important;
  }
  /* Fix phone content - COMPRESS MIDDLE, SHOW BOTTOM GRAPH */
  .phone-header {
    padding: 25px 20px 10px !important;
  }
  .phone-dashboard {
    padding: 15px !important;
  }
  .phone-title {
    font-size: 20px !important;
    line-height: 1.1 !important;
    margin-bottom: 6px !important;
  }
  .phone-subtitle {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
  .metric-cards {
    margin-bottom: 15px !important;
    gap: 8px !important;
  }
  .metric-card {
    padding: 12px !important;
  }
  .metric-value {
    font-size: 18px !important;
    margin-bottom: 2px !important;
  }
  .metric-label {
    font-size: 10px !important;
  }
  .chart-container {
    padding: 15px !important;
    height: 160px !important;
    margin-bottom: 15px !important;
  }
  .action-button {
    padding: 12px !important;
    font-size: 14px !important;
  }
  /* Navigation - WRAP to 3 per row */
  .nav {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 350px !important;
    overflow-x: visible !important;
    padding: 0 10px !important;
  }
  .nav-item {
    padding: 12px 8px !important;
    text-align: center !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    width: 100% !important;
  }
}
/* Small Mobile: 480px and below */
@media (max-width: 480px) {
  .phone {
    width: 300px !important;
    height: 580px !important;
  }
  .container {
    padding: 15px 12px !important;
  }
  /* Reduce spacing even more on small screens */
  .header {
    margin-bottom: 20px !important;
  }
  .nav {
    margin-bottom: 30px !important;
  }
  .phone-section {
    min-height: auto !important;
  }
  /* COMPRESS MIDDLE CONTENT FOR BOTTOM GRAPH */
  .phone-header {
    padding: 20px 15px 8px !important;
  }
  .phone-dashboard {
    padding: 12px !important;
  }
  .phone-title {
    font-size: 18px !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
  }
  .phone-subtitle {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }
  .metric-cards {
    margin-bottom: 12px !important;
    gap: 6px !important;
  }
  .metric-card {
    padding: 10px !important;
  }
  .metric-value {
    font-size: 16px !important;
    margin-bottom: 2px !important;
  }
  .metric-label {
    font-size: 9px !important;
  }
  .chart-container {
    padding: 12px !important;
    height: 140px !important;
    margin-bottom: 12px !important;
  }
  .action-button {
    padding: 10px !important;
    font-size: 13px !important;
    margin-bottom: 5px !important;
  }
  /* Navigation - Still 3 per row but smaller */
  .nav {
    max-width: 300px !important;
    gap: 8px !important;
  }
  .nav-item {
    padding: 10px 6px !important;
    font-size: 12px !important;
  }
  .phone-title {
    font-size: 20px !important;
  }
  .metric-cards {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}
/* Very small screens - 2 per row */
@media (max-width: 350px) {
  .nav {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 250px !important;
    margin-bottom: 25px !important;
  }
  .nav-item {
    padding: 10px 4px !important;
    font-size: 11px !important;
  }
  .container {
    padding: 10px 8px !important;
  }
  .header {
    margin-bottom: 15px !important;
  }
  .phone-section {
    gap: 0 !important;
  }
  /* COMPRESSED LAYOUT FOR BOTTOM GRAPH */
  .phone {
    width: 290px !important;
    height: 540px !important;
  }
  .phone-header {
    padding: 18px 12px 6px !important;
  }
  .phone-dashboard {
    padding: 10px !important;
  }
  .phone-title {
    font-size: 16px !important;
    margin-bottom: 3px !important;
  }
  .phone-subtitle {
    font-size: 10px !important;
  }
  .metric-cards {
    margin-bottom: 10px !important;
    gap: 5px !important;
  }
  .metric-card {
    padding: 8px !important;
  }
  .metric-value {
    font-size: 14px !important;
    margin-bottom: 1px !important;
  }
  .metric-label {
    font-size: 8px !important;
  }
  .chart-container {
    padding: 10px !important;
    height: 120px !important;
    margin-bottom: 10px !important;
  }
  .action-button {
    padding: 8px !important;
    font-size: 12px !important;
    margin-bottom: 5px !important;
  }
}
.vornyx-newsletter {
  min-height: 100vh;
  background: #18171a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5vw 8vw 0 8vw;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.vornyx-newsletter__content {
  margin-bottom: 5vh;
  position: relative;
  z-index: 2;
}
.vornyx-newsletter__content h1 {
  font-size: 4.7rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}
.vornyx-newsletter__content h1 .pink {
  background: linear-gradient(90deg, #ff4c8b 30%, #ffa360 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vornyx-newsletter__content h1 .purple {
  background: linear-gradient(90deg, #ae60ff 40%, #8338ec 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vornyx-newsletter__dot {
  display: inline-block;
  margin-top: 2rem;
  margin-left: 0.5rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ae60ff 0%, #ff4c8b 70%, #ffa360 100%);
  box-shadow: 0 2px 16px 0 rgba(174, 96, 255, 0.11);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.2);
  }
}
.vornyx-newsletter__form {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  padding: 0;
  min-width: 370px;
  max-width: 100%;
  z-index: 2;
}
.vornyx-newsletter__form .vornyx-newsletter__subtitle {
  color: #fff;
  font-size: 1.23rem;
  margin-bottom: 1.3rem;
  font-weight: 500;
}
.vornyx-newsletter__form .vornyx-newsletter__label {
  font-size: 1.02rem;
  color: #aaa;
  margin-bottom: 0.3rem;
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.vornyx-newsletter__form .vornyx-newsletter__inputgroup {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.vornyx-newsletter__form .vornyx-newsletter__input {
  padding: 1.1rem 1.3rem;
  width: 220px;
  border-radius: 2.2rem 0 0 2.2rem;
  border: none;
  outline: none;
  font-size: 1.18rem;
  background: rgba(35, 33, 40, 0.9098039216);
  color: #f6f6f6;
  letter-spacing: 0.01em;
  border-bottom: 2px solid #512b81;
  transition: border-color 0.2s, box-shadow 0.18s;
  box-shadow: 0 1px 10px 0 rgba(174, 96, 255, 0.0666666667) inset;
}
.vornyx-newsletter__form .vornyx-newsletter__input:focus {
  border-bottom: 2px solid #ae60ff;
  box-shadow: 0 1px 18px 0 rgba(174, 96, 255, 0.2666666667) inset;
}
.vornyx-newsletter__form .vornyx-newsletter__button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 2.4rem;
  border-radius: 0 2.2rem 2.2rem 0;
  border: none;
  outline: none;
  font-size: 1.17rem;
  font-weight: 600;
  margin-left: -0.85rem;
  background: linear-gradient(92deg, #9333ea 2%, #ae60ff 45%, #ff4c8b 98%);
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(174, 96, 255, 0.1450980392), 0 1px 18px rgba(255, 255, 255, 0.0784313725) inset;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.17s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.15s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.vornyx-newsletter__form .vornyx-newsletter__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5333333333) 0%, transparent 80%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover, .vornyx-newsletter__form .vornyx-newsletter__button:focus {
  background: linear-gradient(98deg, #ae60ff 2%, #9333ea 98%);
  box-shadow: 0 8px 32px 0 rgba(174, 96, 255, 0.2588235294), 0 2px 20px rgba(255, 255, 255, 0.0666666667) inset;
  transform: translateY(-2px) scale(1.02);
}
.vornyx-newsletter__form .vornyx-newsletter__button .arrow {
  margin-left: 0.3rem;
  stroke: #fff;
  opacity: 0.82;
  transition: transform 0.16s;
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover .arrow {
  transform: translateX(5px) scale(1.05);
}
.vornyx-newsletter__msg {
  font-size: 1.08rem;
  margin-top: 0.85rem;
  color: #ae60ff;
  min-height: 1.5em;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.vornyx-newsletter__brand {
  position: absolute;
  left: 7vw;
  bottom: 2.5vw;
  color: #ae60ff;
  font-size: 1.08rem;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.09em;
  z-index: 1;
}

@media (max-width: 900px) {
  .vornyx-newsletter {
    padding: 4vw 3vw 0 3vw;
  }
  .vornyx-newsletter__form {
    min-width: unset;
    width: 100%;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input {
    width: 55vw;
    min-width: 140px;
  }
  .vornyx-newsletter__brand {
    font-size: 1rem;
    left: 5vw;
  }
}
@media (max-width: 600px) {
  .vornyx-newsletter {
    padding: 2vw 2vw 0 2vw;
  }
  .vornyx-newsletter__content h1 {
    font-size: 2.2rem;
  }
  .vornyx-newsletter__dot {
    width: 16px;
    height: 16px;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input {
    font-size: 0.98rem;
  }
  .vornyx-newsletter__form .vornyx-newsletter__button {
    font-size: 1.02rem;
  }
  .vornyx-newsletter__brand {
    font-size: 0.86rem;
    left: 3vw;
  }
}
.vornyx-newsletter {
  --primary-purple: #ae60ff;
  --secondary-purple: #9333ea;
  --accent-purple: #8338ec;
  --pink-primary: #ff4c8b;
  --orange-accent: #ffa360;
  --bg-primary: #18171a;
  --bg-secondary: #232128e8;
  --text-primary: #ffffff;
  --text-secondary: #f6f6f6;
  --text-muted: #aaa;
  --border-accent: #512b81;
  --section-padding: clamp(1rem, 3vw, 5vw);
  --content-spacing: clamp(1.5rem, 3vh, 3vh);
  --form-gap: clamp(0.75rem, 2vw, 1.3rem);
  --element-gap: clamp(0.25rem, 1vw, 0.5rem);
  --h1-size: clamp(2.5rem, 8vw, 4.7rem);
  --subtitle-size: clamp(1rem, 3vw, 1.23rem);
  --body-size: clamp(1rem, 3vw, 1.25rem);
  --label-size: clamp(0.85rem, 2vw, 1.02rem);
  --button-size: clamp(1rem, 2.5vw, 1.2rem);
  --brand-size: clamp(0.9rem, 2.5vw, 1.08rem);
  min-height: 80vh;
  min-height: 80svh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1rem, 3vw, 3rem) var(--section-padding);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .vornyx-newsletter {
    background-attachment: scroll;
    min-height: 70vh;
    padding: clamp(1.5rem, 4vw, 2rem) var(--section-padding);
  }
}
@media (min-width: 768px) {
  .vornyx-newsletter {
    align-items: stretch;
    padding-top: clamp(2rem, 4vh, 4vh);
    padding-bottom: clamp(2rem, 4vh, 4vh);
  }
}
@media (min-width: 1024px) {
  .vornyx-newsletter {
    flex-direction: row;
    align-items: center;
    min-height: 85vh;
  }
}
.vornyx-newsletter__content {
  margin-bottom: var(--content-spacing);
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (min-width: 1024px) {
  .vornyx-newsletter__content {
    flex: 1;
    margin-bottom: 0;
    margin-right: clamp(2rem, 6vw, 6rem);
  }
}
.vornyx-newsletter__content h1 {
  font-size: var(--h1-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.vornyx-newsletter__content h1 .pink {
  background: linear-gradient(90deg, var(--pink-primary) 30%, var(--orange-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.vornyx-newsletter__content h1 .purple {
  background: linear-gradient(90deg, var(--primary-purple) 40%, var(--accent-purple) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.vornyx-newsletter__dot {
  display: inline-block;
  margin-top: clamp(1rem, 3vw, 2rem);
  margin-left: clamp(0.25rem, 1vw, 0.5rem);
  width: clamp(18px, 4vw, 26px);
  height: clamp(18px, 4vw, 26px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--pink-primary) 70%, var(--orange-accent) 100%);
  box-shadow: 0 2px 16px 0 rgba(174, 96, 255, 0.11);
  animation: pulse-dot 2s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .vornyx-newsletter__dot {
    animation: none;
  }
}
@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.2);
  }
}
.vornyx-newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: none;
  padding: 0;
  width: 100%;
  max-width: 500px;
  z-index: 2;
}
@media (min-width: 768px) {
  .vornyx-newsletter__form {
    margin-left: auto;
    min-width: 400px;
  }
}
@media (min-width: 1024px) {
  .vornyx-newsletter__form {
    flex: 0 0 auto;
    margin-left: 0;
  }
}
.vornyx-newsletter__form .vornyx-newsletter__subtitle {
  color: var(--text-primary);
  font-size: var(--subtitle-size);
  margin-bottom: var(--form-gap);
  font-weight: 500;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
.vornyx-newsletter__form .vornyx-newsletter__label {
  font-size: var(--label-size);
  color: var(--text-muted);
  margin-bottom: clamp(0.25rem, 1vw, 0.3rem);
  margin-top: clamp(0.125rem, 0.5vw, 0.2rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}
.vornyx-newsletter__form .vornyx-newsletter__inputgroup {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: clamp(1.5rem, 4vw, 2.2rem);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .vornyx-newsletter__form .vornyx-newsletter__inputgroup {
    flex-direction: column;
    border-radius: clamp(1rem, 3vw, 1.5rem);
  }
}
.vornyx-newsletter__form .vornyx-newsletter__input {
  padding: clamp(1.25rem, 4vw, 1.5rem) clamp(1.25rem, 4vw, 1.75rem);
  flex: 1;
  min-width: 0;
  border-radius: clamp(1.5rem, 4vw, 2.2rem) 0 0 clamp(1.5rem, 4vw, 2.2rem);
  border: none;
  outline: none;
  font-size: var(--body-size);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  border-bottom: 2px solid var(--border-accent);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 10px 0 rgba(174, 96, 255, 0.11) inset;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 56px;
}
.vornyx-newsletter__form .vornyx-newsletter__input::-moz-placeholder {
  color: var(--text-muted);
  opacity: 0.8;
  font-size: var(--body-size);
}
.vornyx-newsletter__form .vornyx-newsletter__input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
  font-size: var(--body-size);
}
.vornyx-newsletter__form .vornyx-newsletter__input:focus {
  border-bottom: 2px solid var(--primary-purple);
  box-shadow: 0 1px 18px 0 rgba(174, 96, 255, 0.44) inset;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .vornyx-newsletter__form .vornyx-newsletter__input {
    border-radius: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0 0;
    font-size: 16px;
    border-bottom: none;
    border-right: 2px solid var(--border-accent);
    padding: clamp(1.25rem, 4vw, 1.5rem);
    min-height: 56px;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input:focus {
    border-right: 2px solid var(--primary-purple);
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .vornyx-newsletter__form .vornyx-newsletter__input {
    min-width: 250px;
    padding: 1.3rem 1.5rem;
  }
}
.vornyx-newsletter__form .vornyx-newsletter__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--element-gap);
  padding: clamp(1.25rem, 4vw, 1.5rem) clamp(1.75rem, 5vw, 2.5rem);
  border-radius: 0 clamp(1.5rem, 4vw, 2.2rem) clamp(1.5rem, 4vw, 2.2rem) 0;
  border: none;
  outline: none;
  font-size: var(--button-size);
  font-weight: 600;
  background: linear-gradient(92deg, var(--secondary-purple) 2%, var(--primary-purple) 45%, var(--pink-primary) 98%);
  color: var(--text-primary);
  box-shadow: 0 4px 22px 0 rgba(174, 96, 255, 0.25), 0 1px 18px rgba(255, 255, 255, 0.14) inset;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 56px;
  min-width: 56px;
}
.vornyx-newsletter__form .vornyx-newsletter__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.8) 0%, transparent 80%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover, .vornyx-newsletter__form .vornyx-newsletter__button:focus-visible {
  background: linear-gradient(98deg, var(--primary-purple) 2%, var(--secondary-purple) 98%);
  box-shadow: 0 8px 32px 0 rgba(174, 96, 255, 0.42), 0 2px 20px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-2px) scale(1.02);
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover::before, .vornyx-newsletter__form .vornyx-newsletter__button:focus-visible::before {
  opacity: 0.3;
}
.vornyx-newsletter__form .vornyx-newsletter__button:hover .arrow, .vornyx-newsletter__form .vornyx-newsletter__button:focus-visible .arrow {
  transform: translateX(5px) scale(1.05);
}
.vornyx-newsletter__form .vornyx-newsletter__button:active {
  transform: translateY(0) scale(0.98);
}
@media (max-width: 480px) {
  .vornyx-newsletter__form .vornyx-newsletter__button {
    border-radius: 0 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
    margin-left: 0;
    padding: clamp(1.25rem, 4vw, 1.5rem);
    min-height: 56px;
  }
  .vornyx-newsletter__form .vornyx-newsletter__button:hover {
    transform: translateY(-1px);
  }
}
@media (min-width: 481px) {
  .vornyx-newsletter__form .vornyx-newsletter__button {
    margin-left: clamp(-0.5rem, -2vw, -0.85rem);
  }
}
.vornyx-newsletter__form .vornyx-newsletter__button .arrow {
  margin-left: clamp(0.125rem, 0.5vw, 0.3rem);
  stroke: var(--text-primary);
  opacity: 0.82;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: clamp(20px, 4vw, 24px);
  height: clamp(20px, 4vw, 24px);
}
.vornyx-newsletter__form .vornyx-newsletter__button:focus-visible {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}
.vornyx-newsletter__msg {
  font-size: clamp(0.9rem, 2.5vw, 1.08rem);
  margin-top: clamp(0.5rem, 2vw, 0.85rem);
  color: var(--primary-purple);
  min-height: 1.5em;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  line-height: 1.4;
}
.vornyx-newsletter__msg.success {
  color: #10b981;
}
.vornyx-newsletter__msg.error {
  color: #ef4444;
}
.vornyx-newsletter__brand {
  position: absolute;
  left: var(--section-padding);
  bottom: clamp(0.5rem, 2vw, 1.5rem);
  color: var(--primary-purple);
  font-size: var(--brand-size);
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.09em;
  z-index: 1;
}
@media (max-width: 640px) {
  .vornyx-newsletter__brand {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 320px) {
  .vornyx-newsletter__content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .vornyx-newsletter__form .vornyx-newsletter__inputgroup {
    border-radius: 1rem;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input,
  .vornyx-newsletter__form .vornyx-newsletter__button {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .vornyx-newsletter {
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
  }
  .vornyx-newsletter__form {
    max-width: 100%;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input {
    flex: 1;
    min-width: 220px;
  }
}
@media (min-width: 769px) and (max-width: 1023px) {
  .vornyx-newsletter__content {
    margin-bottom: clamp(2rem, 4vh, 3rem);
  }
  .vornyx-newsletter__form {
    align-self: center;
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  .vornyx-newsletter__content {
    max-width: 50%;
  }
  .vornyx-newsletter__form {
    max-width: 400px;
  }
}
@media (min-width: 1400px) {
  .vornyx-newsletter {
    padding: clamp(4rem, 8vw, 8rem);
  }
  .vornyx-newsletter__content h1 {
    font-size: 5.5rem;
  }
  .vornyx-newsletter__form {
    max-width: 500px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vornyx-newsletter__dot {
    animation: none;
  }
  .vornyx-newsletter__form .vornyx-newsletter__button {
    transition: none;
  }
  .vornyx-newsletter__form .vornyx-newsletter__button:hover {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .vornyx-newsletter {
    --border-accent: #ffffff;
  }
  .vornyx-newsletter__form .vornyx-newsletter__input {
    border-bottom-width: 3px;
  }
}
@media print {
  .vornyx-newsletter {
    background: white !important;
    color: black !important;
    min-height: auto;
    padding: 1rem;
  }
  .vornyx-newsletter__content h1 .pink, .vornyx-newsletter__content h1 .purple {
    -webkit-text-fill-color: black;
    background: none;
  }
  .vornyx-newsletter__dot, .vornyx-newsletter__form {
    display: none;
  }
}
@media (pointer: coarse) {
  .vornyx-newsletter__form .vornyx-newsletter__input,
  .vornyx-newsletter__form .vornyx-newsletter__button {
    min-height: 48px;
  }
}
body {
  background: radial-gradient(circle at 50% 0%, #1f1c2c, #090c1d 60%, #000000 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #eee9ff;
}

.vornyx-work {
  padding: 6rem 2rem 4rem 2rem;
  max-width: 120rem;
  margin: 0 auto;
}
.vornyx-work h1.work_title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, #a259f7 40%, #c797ff 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vornyx-work .work__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 3.5rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 96rem;
}
.vornyx-work .work__list .work__item {
  background: rgba(32, 29, 51, 0.92);
  border: 1.5px solid rgba(161, 89, 247, 0.16);
  border-radius: 2.5rem;
  padding: 3.2rem 2.5rem 2.4rem 2.5rem;
  box-shadow: 0 4px 28px 0 rgba(80, 50, 160, 0.1);
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.1s);
  transition: box-shadow 0.2s, border 0.2s, background 0.4s, transform 0.3s;
}
.vornyx-work .work__list .work__item:nth-child(1) {
  --i: 1;
}
.vornyx-work .work__list .work__item:nth-child(2) {
  --i: 2;
}
.vornyx-work .work__list .work__item:nth-child(3) {
  --i: 3;
}
.vornyx-work .work__list .work__item:nth-child(4) {
  --i: 4;
}
.vornyx-work .work__list .work__item:nth-child(5) {
  --i: 5;
}
.vornyx-work .work__list .work__item:nth-child(6) {
  --i: 6;
}
.vornyx-work .work__list .work__item h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #c797ff;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.vornyx-work .work__list .work__item p {
  font-size: 1.7rem;
  color: #e4def7;
  line-height: 1.6;
  margin: 0;
}
.vornyx-work .work__list .work__item:hover {
  box-shadow: 0 4px 48px 0 #c797ff;
  border-color: #c797ff;
  background: linear-gradient(110deg, rgba(32, 29, 51, 0.92) 80%, #2a1845 120%);
  transition: box-shadow 0.28s, border 0.2s, background 0.4s;
  transform: translateY(-8px) scale(1.03);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.vornyx-features {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 2rem 7rem 2rem;
}
.vornyx-features .features__ai {
  background: rgba(37, 23, 59, 0.85);
  border-radius: 2.2rem;
  box-shadow: 0 2px 24px 0 rgba(140, 80, 240, 0.14);
  padding: 3.2rem 2.4rem 2.7rem 2.4rem;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
}
.vornyx-features .features__ai::before {
  content: "";
  position: absolute;
  width: 19rem;
  height: 19rem;
  background: radial-gradient(circle, rgba(199, 151, 255, 0.5333333333) 0%, transparent 70%);
  left: 65%;
  top: -8rem;
  z-index: 0;
  filter: blur(12px);
  animation: floatorb 5.5s ease-in-out infinite alternate;
}
@keyframes floatorb {
  0% {
    left: 60%;
    top: -8rem;
  }
  100% {
    left: 40%;
    top: -2rem;
  }
}
.vornyx-features .features__ai .features__ai--heading {
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #a259f7 25%, #c797ff 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2.3rem;
  z-index: 1;
  position: relative;
}
.vornyx-features .features__ai .features__ai--reason {
  font-size: 1.85rem;
  color: #eee9ff;
  z-index: 1;
  position: relative;
  line-height: 1.65;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.vornyx-features .features__ai .features__ai--reason::first-line {
  font-weight: 500;
  color: #c797ff;
}
.vornyx-features .features__ai .features__ai--reason strong, .vornyx-features .features__ai .features__ai--reason b {
  color: #c797ff;
}

@media (max-width: 700px) {
  .vornyx-work .work__list {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .vornyx-work h1.work_title {
    font-size: 2.6rem;
  }
  .vornyx-features .features__ai--heading {
    font-size: 2.1rem;
  }
  .vornyx-features .features__ai {
    padding: 2rem 1rem;
  }
}
.footer {
  background: radial-gradient(circle at 50% 0%, #1f1c2c, #090c1d 60%, #000 100%);
  padding: 6.4rem 120px 3.2rem;
  color: #b0b3c2;
  font-size: 1.4rem;
}
.footer .footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.8rem;
  max-width: 120rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}
@media (max-width: 900px) {
  .footer .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
}
@media (max-width: 600px) {
  .footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer .footer__col ul {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0 0;
}
.footer .footer__col li {
  margin-bottom: 1.2rem;
  color: #b0b3c2;
  font-weight: 400;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.footer .footer__col a {
  color: #b0b3c2;
  text-decoration: none;
  transition: color 0.18s;
}
.footer .footer__col a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer .footer__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.footer .footer__title--company {
  color: #ff4747;
}
.footer .footer__title--services {
  color: #ffb44c;
}
.footer .footer__title--social {
  color: #37a5ff;
}
.footer .footer__title--contact {
  color: #be4cff;
}
.footer .footer__bottom {
  text-align: center;
  color: #848699;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-top: 1.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__social--link li a img {
  width: 32px;
  height: 32px;
}

:root {
  --vornyx-purple: #a259f7;
  --vornyx-accent: #c797ff;
  --vornyx-pink: #ff4747;
  --vornyx-orange: #ffb44c;
  --vornyx-blue: #37a5ff;
  --vornyx-violet: #be4cff;
  --vornyx-dark-bg: radial-gradient(circle at 50% 0%, #1f1c2c, #090c1d 60%, #000000 100%);
  --vornyx-card-bg: rgba(32, 29, 51, 0.92);
  --vornyx-border: rgba(161, 89, 247, 0.16);
  --text-primary: #eee9ff;
  --text-secondary: #e4def7;
  --text-muted: #b0b3c2;
  --text-faded: #848699;
  --section-padding: clamp(1rem, 4vw, 6.4rem);
  --content-padding: clamp(1rem, 3vw, 2rem);
  --grid-gap: clamp(1.5rem, 4vw, 4.8rem);
  --element-gap: clamp(0.75rem, 2vw, 1.6rem);
  --card-padding: clamp(1.5rem, 4vw, 3.2rem);
  --h1-size: clamp(2rem, 6vw, 4rem);
  --h2-size: clamp(1.5rem, 4vw, 2.2rem);
  --h3-size: clamp(1.25rem, 3vw, 1.6rem);
  --body-large: clamp(1.125rem, 3vw, 1.85rem);
  --body-size: clamp(1rem, 2.5vw, 1.4rem);
  --body-small: clamp(0.875rem, 2vw, 1.2rem);
  --features-heading: clamp(2rem, 5vw, 3.3rem);
}

body {
  background: var(--vornyx-dark-bg);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vornyx-work {
  padding: var(--section-padding) var(--content-padding);
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .vornyx-work {
    padding: clamp(3rem, 8vw, 4rem) var(--content-padding);
  }
}
.vornyx-work h1.work_title {
  font-size: var(--h1-size);
  font-weight: 700;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, var(--vornyx-purple) 40%, var(--vornyx-accent) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}
.vornyx-work .work__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 96rem;
}
@media (max-width: 640px) {
  .vornyx-work .work__list {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.2rem);
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .vornyx-work .work__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.vornyx-work .work__list .work__item {
  background: var(--vornyx-card-bg);
  border: 1.5px solid var(--vornyx-border);
  border-radius: clamp(1.5rem, 4vw, 2.5rem);
  padding: var(--card-padding) clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: 0 4px 28px 0 rgba(80, 50, 160, 0.1);
  min-height: clamp(18rem, 25vw, 22rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  animation-delay: calc(var(--i, 1) * 0.1s);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
@media (max-width: 768px) {
  .vornyx-work .work__list .work__item {
    min-height: clamp(16rem, 20vw, 18rem);
    padding: clamp(1.5rem, 5vw, 2rem);
  }
}
.vornyx-work .work__list .work__item:nth-child(1) {
  --i: 1;
}
.vornyx-work .work__list .work__item:nth-child(2) {
  --i: 2;
}
.vornyx-work .work__list .work__item:nth-child(3) {
  --i: 3;
}
.vornyx-work .work__list .work__item:nth-child(4) {
  --i: 4;
}
.vornyx-work .work__list .work__item:nth-child(5) {
  --i: 5;
}
.vornyx-work .work__list .work__item:nth-child(6) {
  --i: 6;
}
.vornyx-work .work__list .work__item h2 {
  font-size: var(--h2-size);
  font-weight: 600;
  color: var(--vornyx-accent);
  margin-bottom: clamp(0.75rem, 2vw, 1.1rem);
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.vornyx-work .work__list .work__item p {
  font-size: clamp(1rem, 3vw, 1.7rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}
.vornyx-work .work__list .work__item:hover {
  box-shadow: 0 8px 48px 0 rgba(199, 151, 255, 0.3);
  border-color: var(--vornyx-accent);
  background: linear-gradient(110deg, var(--vornyx-card-bg) 80%, #2a1845 120%);
  transform: translateY(-8px) scale(1.03);
}
@media (max-width: 768px) {
  .vornyx-work .work__list .work__item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 6px 32px 0 rgba(199, 151, 255, 0.2);
  }
}
@media (max-width: 768px) {
  .vornyx-work .work__list .work__item:active {
    transform: translateY(-2px) scale(0.98);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.vornyx-features {
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) var(--content-padding) clamp(4rem, 8vw, 7rem);
}
.vornyx-features .features__ai {
  background: rgba(37, 23, 59, 0.85);
  border-radius: clamp(1.5rem, 4vw, 2.2rem);
  box-shadow: 0 2px 24px 0 rgba(140, 80, 240, 0.14);
  padding: var(--card-padding) clamp(1.5rem, 4vw, 2.4rem) clamp(1.5rem, 4vw, 2.7rem);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(199, 151, 255, 0.1);
}
.vornyx-features .features__ai::before {
  content: "";
  position: absolute;
  width: clamp(12rem, 20vw, 19rem);
  height: clamp(12rem, 20vw, 19rem);
  background: radial-gradient(circle, rgba(199, 151, 255, 0.5) 0%, transparent 70%);
  left: 65%;
  top: clamp(-5rem, -8vw, -8rem);
  z-index: 0;
  filter: blur(12px);
  animation: floatorb 5.5s ease-in-out infinite alternate;
}
@media (max-width: 768px) {
  .vornyx-features .features__ai::before {
    width: clamp(8rem, 15vw, 12rem);
    height: clamp(8rem, 15vw, 12rem);
    top: clamp(-3rem, -5vw, -5rem);
  }
}
@keyframes floatorb {
  0% {
    left: 60%;
    top: clamp(-5rem, -8vw, -8rem);
  }
  100% {
    left: 40%;
    top: clamp(-1rem, -2vw, -2rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .vornyx-features .features__ai::before {
    animation: none;
    left: 50%;
    top: clamp(-3rem, -5vw, -5rem);
  }
}
.vornyx-features .features__ai .features__ai--heading {
  font-size: var(--features-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--vornyx-purple) 25%, var(--vornyx-accent) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: clamp(1.5rem, 3vw, 2.3rem);
  z-index: 1;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}
.vornyx-features .features__ai .features__ai--reason {
  font-size: var(--body-large);
  color: var(--text-primary);
  z-index: 1;
  position: relative;
  line-height: 1.65;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.2rem);
}
.vornyx-features .features__ai .features__ai--reason strong, .vornyx-features .features__ai .features__ai--reason b {
  color: var(--vornyx-accent);
  font-weight: 600;
}
.vornyx-features .features__ai .features__ai--reason::first-line {
  font-weight: 500;
  color: var(--vornyx-accent);
}

.footer {
  background: var(--vornyx-dark-bg);
  padding: var(--section-padding) var(--content-padding) clamp(2rem, 4vw, 3.2rem);
  color: var(--text-muted);
  font-size: var(--body-size);
}
@media (max-width: 768px) {
  .footer {
    padding: clamp(3rem, 8vw, 4rem) var(--content-padding) clamp(1.5rem, 4vw, 2rem);
  }
}
.footer .footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.8rem);
  max-width: 120rem;
  margin: 0 auto;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 640px) {
  .footer .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3.2rem);
  }
}
@media (min-width: 1024px) {
  .footer .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
  }
}
.footer .footer__col ul {
  list-style: none;
  padding: 0;
  margin: var(--element-gap) 0 0 0;
}
.footer .footer__col li {
  margin-bottom: clamp(0.75rem, 2vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 400;
  font-size: var(--body-size);
  transition: color 0.3s ease;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer .footer__col li {
    margin-bottom: 1rem;
  }
  .footer .footer__col li a {
    display: block;
    padding: 0.25rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}
.footer .footer__col a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.footer .footer__col a:hover, .footer .footer__col a:focus {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--vornyx-accent);
  text-underline-offset: 4px;
}
.footer .footer__col a:focus-visible {
  outline: 2px solid var(--vornyx-accent);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .footer .footer__col a:active {
    color: var(--vornyx-accent);
    transform: scale(0.98);
  }
}
.footer .footer__title {
  font-size: var(--h3-size);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.footer .footer__title--company {
  color: var(--vornyx-pink);
  text-shadow: 0 2px 8px rgba(255, 71, 71, 0.3);
}
.footer .footer__title--services {
  color: var(--vornyx-orange);
  text-shadow: 0 2px 8px rgba(255, 180, 76, 0.3);
}
.footer .footer__title--social {
  color: var(--vornyx-blue);
  text-shadow: 0 2px 8px rgba(55, 165, 255, 0.3);
}
.footer .footer__title--contact {
  color: var(--vornyx-violet);
  text-shadow: 0 2px 8px rgba(190, 76, 255, 0.3);
}
.footer .footer__bottom {
  text-align: center;
  color: var(--text-faded);
  font-size: var(--body-small);
  letter-spacing: 0.02em;
  margin-top: var(--element-gap);
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer__social--link {
    margin: 0px 0px 0px 10px !important;
  }
}
.footer__social--link li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social--link li a img {
  width: clamp(28px, 5vw, 32px);
  height: clamp(28px, 5vw, 32px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0.3) opacity(0.8);
  border-radius: 6px;
}
.footer__social--link li a:hover, .footer__social--link li a:focus {
  transform: translateY(-2px);
}
.footer__social--link li a:hover img, .footer__social--link li a:focus img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(199, 151, 255, 0.3);
}
.footer__social--link li a:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .footer__social--link li a {
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
    min-height: 48px;
  }
  .footer__social--link li a:hover {
    background: rgba(199, 151, 255, 0.1);
  }
  .footer__social--link li a img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 374px) {
  .vornyx-work .work__list .work__item {
    min-height: 14rem;
    padding: 1.25rem;
  }
  .vornyx-features .features__ai {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 375px) and (max-width: 640px) {
  .vornyx-work h1.work_title {
    font-size: clamp(2.5rem, 7vw, 3rem);
  }
  .footer__grid {
    gap: 2.5rem;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .vornyx-work {
    padding: clamp(4rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  }
  .vornyx-features {
    padding: clamp(3rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem) clamp(4rem, 6vw, 5rem);
  }
}
@media (min-width: 1025px) {
  .footer {
    padding: 6.4rem clamp(2rem, 8vw, 12rem) 3.2rem;
  }
  .vornyx-work .work__list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media (min-width: 1400px) {
  .vornyx-work {
    padding: 8rem 2rem 6rem;
  }
  .vornyx-work h1.work_title {
    font-size: 4.5rem;
  }
  .vornyx-features .features__ai--heading {
    font-size: 3.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .vornyx-work .work__list .work__item {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .vornyx-work .work__list .work__item:hover {
    transform: none;
  }
  .vornyx-features .features__ai::before {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  :root {
    --vornyx-border: rgba(255, 255, 255, 0.3);
    --vornyx-card-bg: rgba(0, 0, 0, 0.8);
  }
  .vornyx-work .work__list .work__item {
    border-width: 2px;
  }
  .footer a:focus-visible {
    outline-width: 3px;
  }
}
@media print {
  .vornyx-work,
  .vornyx-features,
  .footer {
    background: white !important;
    color: black !important;
    padding: 1rem;
  }
  .vornyx-work h1.work_title,
  .vornyx-features .features__ai--heading {
    -webkit-text-fill-color: black;
    background: none;
  }
  .vornyx-work .work__list .work__item {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    border: 1px solid #ccc;
  }
  .footer__social--link {
    display: none;
  }
}
.vornyx-work .work__list .work__item:focus-visible,
.vornyx-features .features__ai:focus-visible {
  outline: 2px solid var(--vornyx-accent);
  outline-offset: 4px;
}/*# sourceMappingURL=main.css.map */