/*
 * EULEX Landing Page Styles - v2.0
 * Redesigned with modern animations and visual elements
 */

/* ==========================================================================
   DESIGN SYSTEM - CSS VARIABLES
   ========================================================================== */

:root {
  /* Colors */
  --color-dark: #32270D;
  --color-beige-dark: #DDD6C6;
  --color-beige-mid: #F7F3E9;
  --color-beige-light: #FFFCF5;
  --color-white: #FFFFFF;
  --color-green: #BDFF32;
  --color-blue: #65ECFF;
  --color-magenta: #FF96FF;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-xxxl: 120px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 8px 32px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
  scroll-padding-top: 100px;
}

body {
  margin-top: 0 !important;
  background-color: var(--color-beige-light);
}

#wpadminbar {
  display: none !important;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1 {
  font-family: Sentient, serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-dark);
}

h2 {
  font-family: Sentient, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
}

h3 {
  font-family: Sentient, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark);
}

body,
p {
  font-family: 'Azeret Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-dark);
}

.meta-text,
.small-text {
  font-family: 'Azeret Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark);
}

/* ==========================================================================
   LAYOUT - CONTAINER
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.eulex-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--color-beige-light);
  height: 100px;
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.eulex-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.eulex-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eulex-logo {
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition-base);
  line-height: 1;
}

.eulex-logo:hover {
  transform: translateX(4px);
}

.eulex-logo img,
.eulex-logo svg {
  height: 56px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.main-nav a {
  font-family: Sentient, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-dark);
  transition: opacity var(--transition-fast);
  position: relative;
}

.main-nav a:hover {
  opacity: 0.7;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.login-link {
  font-family: Sentient, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: opacity var(--transition-fast);
}

.login-link:hover {
  opacity: 0.7;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.mobile-menu-btn:hover {
  background: var(--color-beige-mid);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(50, 39, 13, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Navigation Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1001;
  padding: 100px var(--spacing-lg) var(--spacing-xl);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-family: Sentient, serif;
  font-size: 22px;
  font-weight: 600;
  color: #32270D !important;
  padding: 16px 0;
  border-bottom: 1px solid #DDD6C6;
  transition: all 0.2s ease;
  opacity: 1 !important;
  visibility: visible !important;
  text-decoration: none;
  background: transparent;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  padding-left: 12px;
  background: #F7F3E9;
}

.mobile-nav .mobile-nav-cta {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: none;
}

.mobile-nav .btn-login-mobile {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: #32270D !important;
  color: #FFFCF5 !important;
  font-family: Sentient, serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.mobile-nav .btn-login-mobile:hover {
  background: #BDFF32 !important;
  color: #32270D !important;
}

/* Mobile Menu Close Button */
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid #DDD6C6;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.mobile-nav-close:hover {
  background: #F7F3E9;
  border-color: #32270D;
}

.mobile-nav-close svg {
  width: 20px;
  height: 20px;
  stroke: #32270D;
  stroke-width: 2;
}

/* Hide login link and show hamburger on mobile */
@media (max-width: 768px) {
  .login-link {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-nav-overlay,
  .mobile-nav {
    display: block;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 70% 30%, rgba(189, 255, 50, 0.14), transparent 60%),
    radial-gradient(900px 600px at 20% 70%, rgba(101, 236, 255, 0.10), transparent 55%),
    var(--color-beige-light);
  display: flex;
  align-items: center;
  padding: var(--spacing-xxxl) 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}
 
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(80% 60% at 50% 0%, rgba(0, 0, 0, 0.06), transparent 60%);
  mix-blend-mode: multiply;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  width: 100%;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.green-dot {
  position: absolute;
  top: 10%;
  left: 20%;
  width: clamp(120px, 16vw, 180px);
  height: clamp(120px, 16vw, 180px);
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 -4px 12px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.tree-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}

.tree-svg {
  width: 100%;
  height: auto;
}

.ground-curve {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 100px;
  overflow: visible;
}

.ground-curve svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ground-curve path {
  fill: none;
  stroke: var(--color-dark);
  stroke-width: 15;
  stroke-linecap: round;
}

.hero-text {
  /* Visible by default, enhanced by JS animations */
  opacity: 1;
}

.hero-text h1,
.hero-subtitle,
.hero-cta {
  opacity: 1;
}

.green-dot,
.tree-container,
.ground-curve {
  opacity: 1;
}

.hero-text h1 {
  margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(50, 39, 13, 0.8);
  margin-bottom: var(--spacing-xl);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  align-items: stretch;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.hero-input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-md);
  font-family: 'Azeret Mono', monospace;
  font-size: 16px;
  background: var(--color-white);
  color: var(--color-dark);
  transition: all var(--transition-base);
}

.hero-input:focus {
  outline: none;
  border-color: var(--color-dark);
  box-shadow: 0 0 0 3px rgba(189, 255, 50, 0.2);
}

.hero-input::placeholder {
  color: rgba(50, 39, 13, 0.5);
  font-style: italic;
}

.btn-ask-eulex {
  padding: 16px 32px;
  background-color: var(--color-magenta);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: Sentient, serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-ask-eulex:hover {
  background-color: var(--color-dark);
  color: var(--color-beige-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
  background-color: var(--color-beige-mid);
  padding: var(--spacing-xxxl) 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
  width: 100%;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.feature-item {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.feature-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 24px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(50, 39, 13, 0.8);
}

.features-graphic {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.float-elem {
  position: absolute;
}

.neural-network {
  width: 550px;
  height: 600px;
  position: relative;
  max-width: 100%;
}

/* SVG container for connections */
.neural-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Neural network connections (SVG lines) */
.neural-connection {
  stroke: rgba(189, 255, 50, 0.15);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s ease, stroke-width 0.3s ease, opacity 0.3s ease;
}

.neural-connection.hub-connection {
  stroke: rgba(189, 255, 50, 0.25);
  stroke-width: 2;
}

.neural-connection.highlighted {
  stroke: var(--color-green);
  stroke-width: 3;
  opacity: 1;
}

.neural-connection.dimmed {
  stroke: rgba(189, 255, 50, 0.05);
  opacity: 0.3;
}

/* Neural network nodes */
.neural-node {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 2;
  cursor: pointer;
}

/* Vertical trunk line (deblo) */
.neural-trunk {
  stroke: rgba(189, 255, 50, 0.3);
  stroke-width: 3;
  stroke-linecap: round;
}

/* Signal traveling up the trunk */
.neural-signal {
  fill: var(--color-green);
  filter: drop-shadow(0 0 8px var(--color-green)) drop-shadow(0 0 12px var(--color-green));
}

/* Hub nodes (large, with separate labels) */
.neural-hub {
  width: 28px;
  height: 28px;
  background: var(--node-color, var(--color-green));
  box-shadow: 0 0 20px var(--node-color), 
              0 0 40px var(--node-color);
  animation: gentle-pulse 5s ease-in-out infinite;
  transition: all 0.4s ease;
}

.neural-hub.highlighted {
  box-shadow: 0 0 30px var(--node-color), 
              0 0 60px var(--node-color),
              0 0 90px var(--node-color);
}

.neural-hub.dimmed {
  opacity: 0.3;
  box-shadow: 0 0 10px var(--node-color);
}

/* Hub labels (separate elements) */
.neural-hub-label {
  position: absolute;
  transform: translate(-50%, 0);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  background: transparent;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: none;
  white-space: nowrap;
  z-index: 3;
  transition: all 0.4s ease;
  cursor: pointer;
  max-width: 200px;
  text-align: center;
  line-height: 1.3;
}

.neural-hub-label:hover {
  box-shadow: none;
  transform: translate(-50%, 0) scale(1.05);
}

/* Satellite nodes (smaller) */
.neural-satellite {
  width: 8px;
  height: 8px;
  background: var(--node-color, var(--color-dark));
  box-shadow: 0 0 8px var(--node-color);
}

.neural-satellite.labeled {
  width: 12px;
  height: 12px;
  background: var(--node-color, var(--color-dark));
  box-shadow: 0 0 12px var(--node-color);
}

.neural-satellite.highlighted {
  width: 14px;
  height: 14px;
  box-shadow: 0 0 18px var(--node-color), 
              0 0 30px var(--node-color);
}

.neural-satellite.dimmed {
  opacity: 0.2;
  box-shadow: 0 0 4px var(--node-color);
}

/* Labels */
.neural-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  background: transparent;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.neural-hub .neural-label.hub-label {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  top: -35px;
  transform: translateX(-50%);
  opacity: 1;
  box-shadow: none;
}

.neural-satellite.labeled .neural-label {
  font-size: 13px;
  top: -26px;
  transform: translateX(-50%);
  opacity: 1;
  padding: 4px 8px;
}

/* Animations */
@keyframes central-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px var(--node-color, var(--color-green)), 
                0 0 60px rgba(189, 255, 50, 0.5),
                0 0 90px rgba(189, 255, 50, 0.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 0 40px var(--node-color, var(--color-green)), 
                0 0 80px rgba(189, 255, 50, 0.6),
                0 0 120px rgba(189, 255, 50, 0.3);
  }
}

@keyframes gentle-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .neural-node {
    animation: none !important;
  }
  
  .neural-connection {
    animation: none !important;
  }
  
  .neural-hub {
    animation: none !important;
  }
}

/* Neural network - Tablet optimization */
@media (max-width: 1024px) {
  .neural-network {
    width: 100%;
    max-width: 450px;
    height: 480px;
    margin: 0 auto;
  }
  
  .neural-hub {
    width: 24px;
    height: 24px;
  }
  
  .neural-hub-label {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .neural-satellite {
    width: 6px;
    height: 6px;
  }
  
  .neural-satellite.labeled {
    width: 10px;
    height: 10px;
  }
}

/* Neural network - Mobile optimization */
@media (max-width: 768px) {
  .features-graphic {
    min-height: 380px;
    order: 2; /* Show after text on mobile */
  }
  
  .features-list {
    order: 1;
  }
  
  .neural-network {
    width: 100%;
    max-width: 340px;
    height: 400px;
    transform: scale(1);
    transform-origin: center center;
  }
  
  .neural-label {
    font-size: 8px;
    padding: 2px 5px;
  }
  
  .neural-hub {
    width: 20px;
    height: 20px;
  }
  
  .neural-hub-label {
    font-size: 10px;
    padding: 4px 8px;
    max-width: 120px;
  }
  
  .neural-satellite {
    width: 5px;
    height: 5px;
  }
  
  .neural-satellite.labeled {
    width: 8px;
    height: 8px;
  }
  
  .neural-satellite.labeled .neural-label {
    display: none; /* Hide satellite labels on mobile for clarity */
  }
  
  .neural-trunk {
    stroke-width: 2;
  }
  
  .neural-connection {
    stroke-width: 1;
  }
}

/* Neural network - Small mobile */
@media (max-width: 480px) {
  .features-graphic {
    min-height: 340px;
  }
  
  .neural-network {
    max-width: 300px;
    height: 360px;
    transform: scale(1);
  }
  
  .neural-hub {
    width: 20px;
    height: 20px;
  }
  
  .neural-hub-label {
    font-size: 10px;
    padding: 4px 8px;
    max-width: 110px;
  }
}

@keyframes pulse-node {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 15px rgba(189, 255, 50, 0.6);
  }
  50% { 
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(189, 255, 50, 0.9);
  }
}

@keyframes pulse-connection {
  0%, 100% { 
    opacity: 0.3;
  }
  50% { 
    opacity: 0.6;
  }
}

/* Animated data flow */
@keyframes flow-data {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ==========================================================================
   DEMO SECTION - Mini App Demo
   ========================================================================== */

.demo-section {
  background-color: var(--color-beige-dark);
  padding: var(--spacing-xxxl) 0;
  overflow: visible;
}

.demo-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.demo-header h2 {
  margin-bottom: var(--spacing-sm);
}

.demo-subtitle {
  font-family: Sentient, serif;
  font-size: 18px;
  color: rgba(50, 39, 13, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

.demo-content {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

/* ==========================================================================
   VIDEO DEMO
   ========================================================================== */

.demo-video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.demo-video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-dark);
}

.demo-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Play/Pause button */
.video-control-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  transition: all 0.2s ease;
  opacity: 0;
  transform: scale(0.9);
}

.demo-video-container:hover .video-control-btn {
  opacity: 1;
  transform: scale(1);
}

.video-control-btn:hover {
  background: var(--color-white);
  transform: scale(1.1);
}

.video-control-btn.paused .icon-pause {
  display: none;
}

.video-control-btn.paused .icon-play {
  display: block !important;
}

/* Video caption */
.demo-video-caption {
  margin-top: var(--spacing-xl);
}

.caption-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 900px;
  margin: 0 auto;
}

.caption-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: var(--spacing-md);
  /*background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);*/
}

.caption-step .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-green);
  font-family: 'Azeret Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  flex-shrink: 0;
}

.caption-step .step-text {
  font-family: Sentient, serif;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.4;
}

/* Preset Selector (Left Side) */
.demo-presets {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.presets-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
}

.preset-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preset-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-white);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.preset-btn:hover {
  border-color: rgba(50, 39, 13, 0.15);
  transform: translateX(4px);
}

.preset-btn.active {
  border-color: var(--color-dark);
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(50, 39, 13, 0.1);
}

.preset-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.preset-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preset-label {
  font-family: Sentient, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.2;
}

.preset-desc {
  font-family: 'Azeret Mono', monospace;
  font-size: 11px;
  color: rgba(50, 39, 13, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Query Preview */
.query-preview {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border-left: 3px solid var(--color-green);
  margin-top: 8px;
}

.query-preview-label {
  font-family: 'Azeret Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(50, 39, 13, 0.45);
  margin-bottom: 10px;
}

.query-preview-content {
  font-family: Sentient, serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-dark);
}

.query-preview-content mark {
  background: transparent;
  color: var(--color-dark);
  font-weight: 600;
  position: relative;
}

.query-preview-content mark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 6px;
  background: rgba(189, 255, 50, 0.5);
  z-index: -1;
  transition: background 0.2s ease;
}

.query-preview-content mark.highlight::after {
  background: rgba(189, 255, 50, 0.8);
}

.query-part {
  display: inline;
  transition: opacity 0.15s ease;
}

/* App UI (Right Side - matching real app design) */
.demo-app-ui {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.app-ui-content {
  padding: var(--spacing-xl);
}

.app-chat-message {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0 0 var(--spacing-lg) 0;
}

.app-form-group {
  margin-bottom: var(--spacing-lg);
}

.app-form-group label {
  display: block;
  font-family: Sentient, serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.app-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.app-pill {
  padding: 10px 18px;
  border: 1px solid var(--color-beige-dark);
  border-radius: 30px;
  font-family: 'Azeret Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  background: transparent;
  transition: all 0.15s ease;
  cursor: default;
}

.app-pill.selected {
  background: var(--color-beige-dark);
  border-color: var(--color-dark);
}

.app-pill.highlight {
  background: rgba(189, 255, 50, 0.4);
  border-color: var(--color-green);
}

.pill-divider {
  font-family: Sentient, serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(50, 39, 13, 0.5);
}

.app-help-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(50, 39, 13, 0.75);
  margin: var(--spacing-lg) 0;
}

.app-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--spacing-lg);
}

.app-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: 'Azeret Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  border: none;
}

.app-action-btn.primary {
  background: var(--color-beige-dark);
  color: var(--color-dark);
}

.app-action-btn.primary:hover {
  background: var(--color-dark);
  color: var(--color-beige-light);
}

.app-action-btn.secondary {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-beige-dark);
}

.app-action-btn.secondary:hover {
  border-color: var(--color-dark);
  background: var(--color-beige-light);
}

.btn-letter {
  opacity: 0.6;
}

.app-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-md);
  background: var(--color-beige-light);
}

.app-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-dark);
  outline: none;
}

.app-input::placeholder {
  color: rgba(50, 39, 13, 0.4);
}

.app-input-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--color-dark);
  color: var(--color-beige-light);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-input-btn:hover {
  transform: scale(1.05);
}

/* Legacy styles - hidden */
.demo-app-window {
  display: none;
}

.app-chat-bubble {
  background: var(--color-beige-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-md) var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.chat-question {
  font-family: Sentient, serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
  transition: opacity 0.15s ease;
}

.app-form-section {
  padding-top: var(--spacing-sm);
}

.app-form-intro {
  font-size: 14px;
  color: rgba(50, 39, 13, 0.7);
  margin-bottom: var(--spacing-md);
}

.app-form-group {
  margin-bottom: var(--spacing-md);
}

.app-form-group label {
  display: block;
  font-family: Sentient, serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.app-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-pill {
  padding: 8px 14px;
  border: 1px solid rgba(50, 39, 13, 0.2);
  border-radius: 20px;
  font-family: 'Azeret Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(50, 39, 13, 0.7);
  background: transparent;
  transition: all 0.15s ease;
  cursor: default;
}

.app-pill.selected {
  background: var(--color-beige-dark);
  border-color: var(--color-dark);
  color: var(--color-dark);
}

/* Highlight animation for changed pills */
.app-pill.highlight {
  background: rgba(189, 255, 50, 0.4);
  border-color: var(--color-green);
}

.app-run-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--spacing-md);
  padding: 12px 24px;
  background: var(--color-dark);
  color: var(--color-beige-light);
  border: none;
  border-radius: var(--radius-md);
  font-family: Sentient, serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.app-run-btn:hover {
  transform: translateX(4px);
}

.app-run-btn svg {
  transition: transform 0.2s ease;
}

.app-run-btn:hover svg {
  transform: translateX(3px);
}

/* Legacy styles kept for backwards compatibility */
.navigator-section {
  display: none; /* Hidden - replaced by demo-section */
}

.navigator-form {
  /* Visibility controlled by JS animations */
  opacity: 1;
  display: flex;
  align-items: center;
}

.form-context-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.form-label {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  color: var(--color-dark);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-family: Sentient, serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
}

.pill-option {
  padding: 10px 20px;
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-xl);
  background: transparent;
  font-family: 'Azeret Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  cursor: pointer;
  transition: all var(--transition-base);
}

.pill-option:hover {
  background: var(--color-beige-mid);
  transform: translateY(-2px);
}

.pill-option.selected {
  background: var(--color-beige-dark);
  border-color: var(--color-dark);
}

.pill-divider {
  font-family: Sentient, serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(50, 39, 13, 0.6);
}

.form-help {
  font-size: 14px;
  line-height: 1.6;
  margin: var(--spacing-lg) 0;
  color: rgba(50, 39, 13, 0.8);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
}

.form-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-family: Sentient, serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: left;
}

.form-btn.primary {
  background: var(--color-beige-dark);
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.form-btn.primary:hover {
  background: var(--color-dark);
  color: var(--color-beige-light);
  transform: translateX(8px);
}

.form-btn.secondary {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-beige-dark);
}

.form-btn.secondary:hover {
  background: var(--color-beige-mid);
  border-color: var(--color-dark);
}

.form-input-group {
  display: flex;
  gap: var(--spacing-sm);
  align-items: stretch;
}

.form-custom-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-md);
  font-family: 'Azeret Mono', monospace;
  font-size: 14px;
  background: var(--color-beige-light);
  color: var(--color-dark);
}

.form-custom-input:focus {
  outline: none;
  border-color: var(--color-dark);
}

.form-custom-input::placeholder {
  color: rgba(50, 39, 13, 0.5);
  font-style: italic;
}

.form-submit-btn {
  width: 48px;
  height: 48px;
  background: var(--color-dark);
  color: var(--color-beige-light);
  border: none;
  border-radius: var(--radius-md);
  font-size: 24px;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit-btn:hover {
  background: var(--color-green);
  color: var(--color-dark);
  transform: translateX(4px);
}

/* ==========================================================================
   VERIFY SECTION
   ========================================================================== */

.verify-section {
  background-color: var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
}

.verify-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.verify-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: stretch;
}

.verify-text-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.verify-intro {
  font-family: Sentient, serif;
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: var(--spacing-lg);
}

.verify-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.verify-highlights {
  background: var(--color-beige-dark);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  order: 2;
  display: flex;
  flex-direction: column;
}

.highlights-label {
  font-family: 'Azeret Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-dark);
}

.verify-highlight-text {
  font-size: 16px;
  line-height: 1.8;
}

.highlight-pink {
  background-color: var(--color-magenta);
  color: var(--color-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* ==========================================================================
   WORKDESK SECTION
   ========================================================================== */

.workdesk-section {
  background-color: var(--color-beige-mid);
  padding: var(--spacing-xxxl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.workdesk-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.workdesk-subtitle {
  text-align: center;
  font-family: 'Azeret Mono', monospace;
  font-size: 16px;
  color: var(--color-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto var(--spacing-xxl);
  line-height: 1.6;
}

.workdesk-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xxl);
  align-items: center;
  width: 100%;
}

.workdesk-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-illustration-wrapper,
.workflow-illustration-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-svg {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.workflow-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.workdesk-right {
  /* Main content area */
  opacity: 1;
}

.workdesk-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--spacing-lg);
}

.team-avatars {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.team-label {
  margin-right: var(--spacing-sm);
}

.avatar-group {
  display: flex;
  gap: var(--spacing-xs);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center;
}

.avatar.add-member {
  background: transparent;
  border: 2px dashed var(--color-beige-dark);
  color: var(--color-dark);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.avatar.add-member:hover {
  background: var(--color-beige-mid);
  border-color: var(--color-dark);
}

.workdesk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.workdesk-card {
  background: var(--color-white);
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-base);
  opacity: 1 !important;
  visibility: visible !important;
  transform: rotate(0deg) !important;
}

.workdesk-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.workdesk-card.create-new {
  background: var(--color-blue);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: var(--spacing-sm);
}

.workdesk-card.create-new:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.create-icon {
  width: 32px;
  height: 32px;
  color: var(--color-dark);
  transition: color var(--transition-base);
}

.workdesk-card.create-new:hover .create-icon {
  color: var(--color-white);
}

.workdesk-card h4 {
  font-family: Sentient, serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.card-menu {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-dark);
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.card-menu:hover {
  background: var(--color-beige-mid);
}

.workdesk-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-beige-dark);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: 'Azeret Mono', monospace;
  font-size: 14px;
  color: var(--color-dark);
}

.benefit-icon {
  flex-shrink: 0;
  color: var(--color-green);
  stroke-width: 3;
  width: 28px;
  height: 28px;
}

.benefit-item span {
  line-height: 1.4;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(1000px 700px at 30% 40%, rgba(101, 236, 255, 0.12), transparent 55%),
    radial-gradient(800px 600px at 75% 60%, rgba(189, 255, 50, 0.10), transparent 50%),
    var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
  border-top: 1px solid var(--color-beige-dark);
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 50% at 50% 0%, rgba(0, 0, 0, 0.04), transparent 55%);
  mix-blend-mode: multiply;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.forest-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 450px;
}

.green-dot-cta {
  position: absolute;
  top: 15%;
  left: 15%;
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 -4px 12px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.forest-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
}

.forest-svg {
  width: 100%;
  height: auto;
}

.final-cta-text {
  text-align: center;
}

.final-cta-text h2 {
  margin-bottom: var(--spacing-xl);
  font-size: 48px;
}

.btn-registration {
  padding: 20px 48px;
  background-color: var(--color-beige-dark);
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  border-radius: var(--radius-md);
  font-family: 'Azeret Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.btn-registration:hover {
  background-color: var(--color-dark);
  color: var(--color-beige-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.eulex-footer {
  background-color: var(--color-dark);
  color: var(--color-beige-light);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-wrapper {
  margin-bottom: var(--spacing-lg);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo {
  font-family: Sentient, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: var(--spacing-sm);
}

.footer-tagline {
  font-family: 'Azeret Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-beige-dark);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-title {
  font-family: 'Azeret Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-beige-dark);
  margin-bottom: var(--spacing-sm);
}

.footer-nav-column li {
  margin-bottom: 8px;
}

.footer-nav-column a {
  font-family: 'Azeret Mono', monospace;
  font-size: 14px;
  color: var(--color-beige-light);
  transition: color var(--transition-fast);
}

.footer-nav-column a:hover {
  color: var(--color-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-xl);
}

.copyright {
  font-family: 'Azeret Mono', monospace;
  font-size: 12px;
  color: var(--color-beige-dark);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-beige-light);
  text-decoration: none;
  transition: all var(--transition-base);
  padding: 8px;
  border-radius: var(--radius-sm);
}

.social-link:hover {
  color: var(--color-green);
  background-color: rgba(189, 255, 50, 0.1);
  transform: translateY(-2px);
}

.social-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.footer-cta-text p {
  font-family: Sentient, serif;
  font-size: 24px;
  font-style: italic;
  color: var(--color-beige-light);
  margin: 0;
}

.footer-cta-btn {
  padding: 16px 40px;
  background-color: var(--color-magenta);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-md);
  font-family: Sentient, serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.footer-cta-btn:hover {
  background-color: var(--color-green);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* --- LARGE DESKTOP (1440px+) --- */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  
  h1 {
    font-size: 64px;
  }
  
  h2 {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 22px;
  }
}

/* --- DESKTOP / SMALL LAPTOP (1024px - 1280px) --- */
@media (max-width: 1280px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
  
  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 38px;
  }
  
  .hero-content {
    gap: var(--spacing-xl);
  }
  
  .neural-network {
    width: 480px;
    height: 520px;
  }
  
  .features-graphic {
    min-height: 450px;
  }
  
  .final-cta-text h2 {
    font-size: 40px;
  }
}

/* --- TABLET LANDSCAPE (768px - 1024px) --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 34px;
    margin-bottom: var(--spacing-lg);
  }
  
  h3 {
    font-size: 22px;
  }
  
  /* Header */
  .main-nav {
    gap: 24px;
  }
  
  .main-nav a {
    font-size: 18px;
  }
  
  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .hero-visual {
    order: -1;
    min-height: 400px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 br {
    display: none;
  }
  
  .hero-cta {
    margin: 0 auto;
    max-width: 500px;
  }
  
  /* Features */
  .features-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .features-graphic {
    min-height: 380px;
    order: 2; /* Show neural network AFTER text on tablet */
  }
  
  .features-list {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .neural-network {
    width: 100%;
    max-width: 420px;
    height: 450px;
    margin: 0 auto;
  }
  
  /* Demo Section - Tablet */
  .demo-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .demo-presets {
    order: 2;
  }
  
  .demo-app-ui {
    order: 1;
  }
  
  .preset-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .preset-btn {
    flex: 1;
    min-width: 180px;
  }
  
  .query-preview {
    margin-top: var(--spacing-md);
  }
  
  .app-ui-content {
    padding: var(--spacing-lg);
  }
  
  /* Video Demo - Tablet */
  .caption-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
  
  .caption-step {
    padding: var(--spacing-sm);
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .caption-step .step-text {
    font-size: 14px;
  }
  
  /* Verify */
  .verify-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .verify-text-main {
    order: 1;
  }
  
  .verify-highlights {
    order: 2;
  }
  
  /* Workdesk */
  .workdesk-content {
    grid-template-columns: 1fr;
  }
  
  .workdesk-left {
    display: none;
  }
  
  .workdesk-right h2 {
    text-align: center;
  }
  
  .workdesk-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Final CTA */
  .final-cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .forest-visual {
    min-height: 350px;
    order: -1;
  }
  
  .final-cta-text h2 {
    font-size: 36px;
  }
  
  /* Footer */
  .footer-content {
    gap: var(--spacing-lg);
  }
}

/* --- TABLET PORTRAIT (600px - 768px) --- */
@media (max-width: 768px) {
  :root {
    --spacing-xxxl: 80px;
  }
  
  h1 {
    font-size: 36px;
    line-height: 1.15;
  }
  
  h2 {
    font-size: 30px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  body, p {
    font-size: 16px;
  }
  
  /* Header - Mobile */
  .eulex-header {
    height: 70px;
  }
  
  .main-nav {
    display: none;
  }
  
  .eulex-logo img,
  .eulex-logo svg {
    height: 44px;
  }
  
  .login-link {
    font-size: 14px;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all var(--transition-base);
  }
  
  /* Hero */
  .hero-section {
    margin-top: 70px;
    padding: var(--spacing-xxl) 0;
    min-height: auto;
  }
  
  .hero-visual {
    min-height: 300px;
  }
  
  .green-dot {
    width: 80px;
    height: 80px;
    top: 5%;
    left: 10%;
  }
  
  .tree-container {
    max-width: 280px;
  }
  
  .ground-curve {
    width: 400px;
    bottom: -10px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    padding: 8px;
    max-width: 100%;
  }
  
  .hero-input {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .btn-ask-eulex {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  /* Features */
  .features-section {
    min-height: auto;
    padding: var(--spacing-xxl) 0;
  }
  
  .features-list {
    gap: var(--spacing-xl);
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .feature-icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
  }
  
  .feature-icon svg {
    width: 64px;
    height: 64px;
  }
  
  .feature-text h3 {
    font-size: 20px;
  }
  
  .feature-text p {
    font-size: 15px;
  }
  
  .features-graphic {
    min-height: 350px;
  }
  
  .neural-network {
    width: 100%;
    height: 400px;
  }
  
  /* Demo Section - Mobile */
  .demo-section {
    padding: var(--spacing-xxl) 0;
  }
  
  .demo-subtitle {
    font-size: 16px;
  }
  
  .demo-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .demo-presets {
    order: 2;
  }
  
  .demo-app-ui {
    order: 1;
  }
  
  .preset-buttons {
    flex-direction: column;
  }
  
  .preset-btn {
    padding: 12px 16px;
    gap: 12px;
  }
  
  .preset-icon {
    font-size: 24px;
  }
  
  .preset-label {
    font-size: 15px;
  }
  
  .preset-desc {
    font-size: 10px;
  }
  
  .query-preview {
    padding: 14px 16px;
  }
  
  .query-preview-content {
    font-size: 14px;
  }
  
  .app-ui-content {
    padding: var(--spacing-md);
  }
  
  .app-chat-message {
    font-size: 15px;
  }
  
  .app-form-group label {
    font-size: 15px;
  }
  
  .app-pill {
    padding: 8px 14px;
    font-size: 10px;
  }
  
  .app-action-btn {
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .app-input {
    font-size: 14px;
  }
  
  /* Video Demo - Mobile */
  .demo-video-container {
    border-radius: var(--radius-md);
  }
  
  .video-control-btn {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
    opacity: 1;
    transform: scale(1);
  }
  
  .caption-steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .caption-step {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 16px;
  }
  
  .caption-step .step-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  
  .caption-step .step-text {
    font-size: 14px;
  }
  
  .query-preview {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .query-preview-content {
    font-size: 14px;
  }
  
  .app-window-content {
    padding: var(--spacing-md);
  }
  
  .chat-question {
    font-size: 14px;
  }
  
  .app-form-group label {
    font-size: 13px;
  }
  
  .app-pill {
    padding: 6px 10px;
    font-size: 10px;
  }
  
  .app-run-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .form-context-box {
    padding: var(--spacing-lg);
  }
  
  .form-label {
    font-size: 15px;
  }
  
  .form-group label {
    font-size: 16px;
  }
  
  .pill-option {
    padding: 8px 14px;
    font-size: 11px;
  }
  
  .pill-group {
    gap: var(--spacing-xs);
  }
  
  /* Verify */
  .verify-section {
    padding: var(--spacing-xxl) 0;
  }
  
  .verify-intro {
    font-size: 24px;
  }
  
  .verify-desc {
    font-size: 16px;
  }
  
  .verify-highlights {
    padding: var(--spacing-lg);
  }
  
  .verify-highlight-text p {
    font-size: 14px;
  }
  
  /* Workdesk */
  .workdesk-section {
    min-height: auto;
    padding: var(--spacing-xxl) 0;
  }
  
  .workdesk-subtitle {
    font-size: 14px;
  }
  
  .workdesk-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  .workdesk-card {
    padding: var(--spacing-md);
    min-height: 130px;
  }
  
  .workdesk-card h4 {
    font-size: 16px;
  }
  
  .workdesk-benefits {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .benefit-item {
    font-size: 13px;
  }
  
  .workdesk-header {
    justify-content: center;
  }
  
  .team-label {
    font-size: 11px;
  }
  
  .avatar {
    width: 40px;
    height: 40px;
  }
  
  /* Final CTA */
  .final-cta-section {
    padding: var(--spacing-xxl) 0;
  }
  
  .forest-visual {
    min-height: 300px;
  }
  
  .green-dot-cta {
    width: 60px;
    height: 60px;
  }
  
  .forest-container {
    max-width: 500px;
  }
  
  .final-cta-text h2 {
    font-size: 32px;
  }
  
  .btn-registration {
    padding: 16px 36px;
    font-size: 14px;
  }
  
  /* Footer */
  .eulex-footer {
    padding: var(--spacing-xl) 0 var(--spacing-md);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-logo-wrapper {
    display: flex;
    justify-content: center;
  }
  
  .footer-tagline {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .footer-nav {
    justify-items: center;
    text-align: center;
  }
  
  .footer-cta {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: var(--spacing-md);
  }
  
  .footer-cta-text p {
    font-size: 18px;
  }
  
  .footer-cta-btn {
    padding: 14px 32px;
    font-size: 16px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .copyright {
    font-size: 11px;
  }
}

/* --- MOBILE LARGE (480px - 600px) --- */
@media (max-width: 600px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  .hero-visual {
    min-height: 260px;
  }
  
  .tree-container {
    max-width: 220px;
  }
  
  .ground-curve {
    width: 320px;
  }
  
  .neural-network {
    height: 350px;
  }
  
  .workdesk-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .workdesk-card {
    min-height: 120px;
  }
  
  .forest-container {
    max-width: 380px;
  }
}

/* --- MOBILE SMALL (< 480px) --- */
@media (max-width: 480px) {
  :root {
    --spacing-xxxl: 60px;
    --spacing-xxl: 48px;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  body, p {
    font-size: 15px;
  }
  
  /* Header */
  .eulex-header {
    height: 64px;
  }
  
  .eulex-logo img,
  .eulex-logo svg {
    height: 38px;
  }
  
  /* Hero */
  .hero-section {
    margin-top: 64px;
    padding: var(--spacing-xl) 0;
  }
  
  .hero-visual {
    min-height: 220px;
  }
  
  .green-dot {
    width: 60px;
    height: 60px;
  }
  
  .tree-container {
    max-width: 180px;
  }
  
  .ground-curve {
    width: 280px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-cta {
    border-radius: 12px;
  }
  
  .hero-input {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 8px;
  }
  
  .btn-ask-eulex {
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 8px;
  }
  
  /* Features */
  .feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .feature-icon svg {
    width: 56px;
    height: 56px;
  }
  
  .feature-text h3 {
    font-size: 18px;
  }
  
  .feature-text p {
    font-size: 14px;
  }
  
  .neural-network {
    height: 300px;
  }
  
  .neural-hub {
    width: 22px;
    height: 22px;
  }
  
  .neural-hub-label {
    font-size: 10px;
    padding: 4px 10px;
  }
  
  /* Navigator */
  .form-context-box {
    padding: var(--spacing-md);
  }
  
  .form-label {
    font-size: 14px;
  }
  
  .form-group label {
    font-size: 15px;
  }
  
  .pill-option {
    padding: 6px 12px;
    font-size: 10px;
  }
  
  .form-help {
    font-size: 13px;
  }
  
  .form-btn {
    padding: 12px 18px;
    font-size: 16px;
  }
  
  /* Verify */
  .verify-intro {
    font-size: 20px;
  }
  
  .verify-desc {
    font-size: 15px;
  }
  
  .verify-highlights {
    padding: var(--spacing-md);
  }
  
  .highlights-label {
    font-size: 11px;
  }
  
  .verify-highlight-text p {
    font-size: 13px;
  }
  
  .highlight-pink {
    padding: 1px 4px;
    font-size: 12px;
  }
  
  /* Workdesk */
  .workdesk-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .workdesk-card {
    min-height: auto;
    padding: var(--spacing-md);
  }
  
  .workdesk-card h4 {
    font-size: 15px;
  }
  
  .workdesk-subtitle {
    font-size: 13px;
  }
  
  .benefit-item {
    font-size: 12px;
  }
  
  .benefit-icon {
    width: 24px;
    height: 24px;
  }
  
  /* Final CTA */
  .forest-visual {
    min-height: 220px;
  }
  
  .green-dot-cta {
    width: 50px;
    height: 50px;
  }
  
  .forest-container {
    max-width: 300px;
  }
  
  .final-cta-text h2 {
    font-size: 26px;
  }
  
  .btn-registration {
    padding: 14px 28px;
    font-size: 13px;
  }
  
  /* Footer */
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .footer-nav-title {
    font-size: 11px;
  }
  
  .footer-nav-column a {
    font-size: 13px;
  }
  
  .footer-cta-text p {
    font-size: 16px;
  }
  
  .footer-cta-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */

.scroll-progress {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(189, 255, 50, 0.15);
  z-index: 999;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-green), var(--color-blue));
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--color-green);
}

/* ==========================================================================
   CUSTOM CURSOR - DISABLED
   ========================================================================== */

/* Custom cursor removed per user request */

/* ==========================================================================
   PARTICLE SYSTEM
   ========================================================================== */

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: var(--color-green);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.85;
  box-shadow: 0 0 8px rgba(189, 255, 50, 0.5), 0 0 3px rgba(189, 255, 50, 0.8);
}
 
.particle--big {
  width: 10px !important;
  height: 10px !important;
  opacity: 0.7;
  filter: blur(0.5px);
  box-shadow: 0 0 12px rgba(189, 255, 50, 0.6), 0 0 4px rgba(189, 255, 50, 0.9);
}
 
.particle--blur {
  filter: blur(1.5px);
  opacity: 0.6;
}

/* ==========================================================================
   PRODUCT SHOWCASE SECTION - Scroll-Through Screens
   ========================================================================== */

.product-showcase-section {
  background-color: var(--color-beige-mid);
  padding: 0;
  overflow: visible;
  position: relative;
}

.showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: flex-start;
  min-height: auto;
}

/* Left Side - Sticky (Laptop + Heading) */
.showcase-left-sticky {
  position: sticky;
  top: 120px;
  padding: var(--spacing-xxxl) 0;
  padding-right: var(--spacing-xl);
}

.showcase-left-sticky h2 {
  font-size: 42px;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.showcase-subtitle {
  font-size: 18px;
  color: rgba(50, 39, 13, 0.7);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

/* Right Side - Scrollable (Text Steps) */
.showcase-right-scroll {
  padding: var(--spacing-xxxl) 0;
  padding-left: var(--spacing-xl);
  min-height: 300vh;
}

/* Laptop Mockup */
.laptop-mockup-container {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2000px;
  margin-top: var(--spacing-xl);
}

.laptop-frame {
  position: relative;
  width: 100%;
  max-width: 700px;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.laptop-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-white);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 
    0 0 0 8px #2a2a2a,
    0 0 0 10px #1a1a1a,
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: 2px solid #1a1a1a;
}

/* Laptop Base/Keyboard */
.laptop-base {
  position: relative;
  width: 120%;
  left: -10%;
  height: 20px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: perspective(1000px) rotateX(-2deg);
  transform-origin: top center;
}

.laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.laptop-keyboard {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 4px,
    transparent 4px,
    transparent 8px
  );
  border-radius: 2px;
}

.laptop-trackpad {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.screen-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(10px);
  transform: scale(1.05);
  pointer-events: none;
}

.screen-image.active {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
  pointer-events: auto;
}

/* Screen Placeholders */
.screen-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-beige-light);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
}

.placeholder-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-beige-dark);
  margin-bottom: var(--spacing-lg);
}

.placeholder-logo {
  font-family: Sentient, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  background: var(--color-green);
  padding: 6px 16px;
  border-radius: 6px;
}

.placeholder-user {
  font-family: 'Azeret Mono', monospace;
  font-size: 11px;
  color: var(--color-dark);
}

.placeholder-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--spacing-md);
}

.placeholder-content h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.4;
}

.placeholder-input {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-beige-dark);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  font-size: 13px;
  text-align: left;
}

.placeholder-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  font-family: 'Azeret Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  background: var(--color-beige-dark);
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.pill-inactive {
  font-family: 'Azeret Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-beige-dark);
  border-radius: 20px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

.output-panel ul {
  list-style: none;
  padding-left: 0;
  margin: var(--spacing-sm) 0;
}

.output-panel li {
  font-size: 12px;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.output-panel li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-dark);
}

.research-status {
  font-family: 'Azeret Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.highlight-pink {
  background-color: var(--color-magenta);
  color: var(--color-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.document-icon {
  margin-top: var(--spacing-lg);
  color: var(--color-dark);
}

.output-panel,
.sources-panel {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  text-align: left;
}

.output-panel h4,
.sources-panel h4 {
  font-size: 16px;
  margin-bottom: var(--spacing-md);
}

.output-panel p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.output-buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.btn-dark,
.btn-light {
  font-family: 'Azeret Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-beige-light);
}

.btn-light {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
}

.source-item {
  font-size: 12px;
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-xs);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.source-item.active {
  border-left-color: var(--color-magenta);
  background: var(--color-beige-mid);
}

/* Laptop camera (optional detail) */
.laptop-screen::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Scrollable Content */
.showcase-content {
  padding: 0;
}

.showcase-step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xxl) 0;
  opacity: 0.3;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.showcase-step.active {
  opacity: 1;
}

.showcase-step:first-child {
  padding-top: 0;
}

.showcase-step:last-child {
  min-height: 60vh;
  padding-bottom: var(--spacing-xxxl);
}

.step-number {
  font-family: 'Azeret Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-green);
  margin-bottom: var(--spacing-md);
  display: none; /* Hidden per user request */
}

.showcase-step h3 {
  font-size: 36px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.showcase-step p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  color: rgba(50, 39, 13, 0.8);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  font-family: 'Azeret Mono', monospace;
  font-size: 16px;
  padding: var(--spacing-sm) 0;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.feature-list li::before {
  content: '✓';
  color: var(--color-green);
  font-weight: 700;
  font-size: 18px;
  background-color: var(--color-beige-dark);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 3D Hover Effect for Feature Items */
.feature-item {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-icon {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotateY(10deg);
}

/* Responsive - Product Showcase */
@media (max-width: 1280px) {
  .showcase-left-sticky h2 {
    font-size: 36px;
  }
  
  .laptop-frame {
    max-width: 600px;
  }
}

@media (max-width: 1024px) {
  .showcase-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .showcase-left-sticky {
    position: relative;
    top: 0;
    padding: var(--spacing-xl) 0;
    padding-right: 0;
  }
  
  .showcase-left-sticky h2 {
    font-size: 32px;
    text-align: center;
  }
  
  .showcase-subtitle {
    text-align: center;
    font-size: 16px;
  }
  
  .laptop-mockup-container {
    margin-bottom: var(--spacing-lg);
  }
  
  .laptop-frame {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .showcase-right-scroll {
    padding: 0;
    padding-left: 0;
    min-height: auto;
  }
  
  .showcase-step {
    min-height: auto;
    opacity: 1;
    padding: var(--spacing-xl) 0;
  }
  
  .showcase-step h3 {
    font-size: 26px;
  }
  
  .showcase-step p {
    font-size: 16px;
  }
  
  .feature-list li {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .scroll-progress {
    top: 70px;
    height: 2px;
  }
  
  .product-showcase-section {
    padding: var(--spacing-xl) 0;
  }
  
  .showcase-left-sticky {
    padding: var(--spacing-lg) 0;
  }
  
  .showcase-left-sticky h2 {
    font-size: 28px;
  }
  
  .showcase-subtitle {
    font-size: 15px;
    margin-bottom: var(--spacing-lg);
  }
  
  .laptop-frame {
    max-width: 100%;
  }
  
  .laptop-screen {
    border-radius: 6px 6px 0 0;
    box-shadow: 
      0 0 0 5px #2a2a2a,
      0 0 0 7px #1a1a1a,
      0 12px 40px rgba(0, 0, 0, 0.35);
  }
  
  .laptop-base {
    height: 14px;
    width: 115%;
    left: -7.5%;
  }
  
  .placeholder-content h3 {
    font-size: 14px;
  }
  
  .showcase-step {
    padding: var(--spacing-md) 0;
  }
  
  .showcase-step h3 {
    font-size: 22px;
    margin-bottom: var(--spacing-md);
  }
  
  .showcase-step p {
    font-size: 15px;
    margin-bottom: var(--spacing-md);
  }
  
  .feature-list li {
    font-size: 13px;
    padding: 6px 0;
  }
  
  .feature-list li::before {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .scroll-progress {
    top: 64px;
  }
  
  .showcase-left-sticky h2 {
    font-size: 24px;
  }
  
  .showcase-subtitle {
    font-size: 14px;
  }
  
  .laptop-screen {
    box-shadow: 
      0 0 0 4px #2a2a2a,
      0 0 0 5px #1a1a1a,
      0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #1a1a1a;
  }
  
  .laptop-base {
    height: 12px;
    border-radius: 0 0 8px 8px;
  }
  
  .laptop-screen::before {
    width: 4px;
    height: 4px;
    top: 6px;
  }
  
  .showcase-step h3 {
    font-size: 20px;
  }
  
  .showcase-step p {
    font-size: 14px;
  }
  
  .feature-list li {
    font-size: 12px;
  }
  
  .feature-list li::before {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 4px;
}

.eulex-footer a:focus-visible,
.eulex-footer button:focus-visible {
  outline-color: var(--color-green);
}

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

/* ==========================================================================
   TOUCH & MOBILE ENHANCEMENTS
   ========================================================================== */

/* Touch-friendly tap targets (minimum 44px) */
@media (max-width: 768px) {
  .main-nav a,
  .pill-option,
  .form-btn,
  .btn-ask-eulex,
  .btn-registration,
  .btn-request-demo,
  .footer-nav-column a,
  .social-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Active states for touch */
  .pill-option:active,
  .form-btn:active,
  .btn-ask-eulex:active,
  .btn-registration:active,
  .btn-request-demo:active,
  .workdesk-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  /* Prevent text selection on interactive elements */
  button,
  .pill-option,
  .workdesk-card,
  .feature-item {
    -webkit-user-select: none;
    user-select: none;
  }
  
  /* Improve scroll momentum on iOS */
  .mobile-nav,
  main,
  .showcase-right-scroll {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Prevent zoom on input focus (iOS) */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  
  /* Hide scrollbar on mobile navigation */
  .mobile-nav::-webkit-scrollbar {
    display: none;
  }
  
  .mobile-nav {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

/* Fix for 100vh on mobile browsers */
@supports (height: 100dvh) {
  .hero-section {
    min-height: 100dvh;
  }
  
  .mobile-nav {
    height: 100dvh;
  }
}

/* Fix for safe area insets (notched devices) */
@supports (padding-top: env(safe-area-inset-top)) {
  .eulex-header {
    padding-top: env(safe-area-inset-top);
  }
  
  .mobile-nav {
    padding-top: calc(100px + env(safe-area-inset-top));
    padding-bottom: env(safe-area-inset-bottom);
  }
  
  .eulex-footer {
    padding-bottom: calc(var(--spacing-lg) + env(safe-area-inset-bottom));
  }
}

/* ==========================================================================
   SECURITY PAGE STYLES
   ========================================================================== */

/* Security Hero Section */
.security-hero-section {
  min-height: 70vh;
  background:
    radial-gradient(1000px 700px at 50% 40%, rgba(189, 255, 50, 0.12), transparent 60%),
    var(--color-beige-light);
  display: flex;
  align-items: center;
  padding: var(--spacing-xxxl) 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.security-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.security-hero-badge {
  margin: 0 auto var(--spacing-xl);
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-hero-section h1 {
  margin-bottom: var(--spacing-lg);
  font-size: 56px;
}

.security-hero-subtitle {
  font-size: 22px;
  line-height: 1.6;
  color: rgba(50, 39, 13, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

/* Security Principles Section */
.security-principles-section {
  background-color: var(--color-beige-mid);
  padding: var(--spacing-xxxl) 0;
}

.security-principles-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.principles-rows {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

/* Principles Grid - new structure */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.principle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-md);
}

.principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.principle-icon svg {
  width: 80px;
  height: 80px;
  transition: transform var(--transition-base);
}

.principle-item:hover .principle-icon svg {
  transform: scale(1.1);
}

.principle-content h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.principle-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(50, 39, 13, 0.8);
}

/* Legacy support for old structure - can be removed */
.principle-row {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.principle-icons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  justify-items: center;
}

.principle-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.principle-icon-item svg {
  width: 80px;
  height: 80px;
  transition: transform var(--transition-base);
}

.principle-icon-item:hover svg {
  transform: scale(1.1);
}

.principle-texts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  text-align: center;
}

.principle-text-item h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.principle-text-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(50, 39, 13, 0.8);
}

/* Security Legal Section */
.security-legal-section {
  background-color: var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
}

.security-legal-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.legal-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--spacing-xl);
}

.legal-feature-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-beige-dark);
  transition: all var(--transition-base);
}

.legal-feature-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.legal-feature-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.legal-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.legal-feature-block h3 {
  font-size: 22px;
  margin: 0;
}

.legal-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-feature-list li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
  position: relative;
}

.legal-feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.legal-feature-list li strong {
  font-weight: 700;
  color: var(--color-dark);
}

/* Certifications Section */
.certifications-section {
  background-color: var(--color-beige-dark);
  padding: var(--spacing-xxxl) 0;
}

.certifications-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.cert-badge {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.cert-badge:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-green);
}

.cert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
}

.cert-badge h4 {
  font-family: Sentient, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-dark);
}

.cert-badge p {
  font-family: 'Azeret Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(50, 39, 13, 0.6);
  margin: 0;
}

/* Day One Section */
.day-one-section {
  background-color: var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
}

.day-one-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
}

.day-one-column h2 {
  margin-bottom: var(--spacing-xl);
  font-size: 36px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-xl);
  position: relative;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
  font-size: 20px;
  background-color: var(--color-beige-dark);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-list.no-worry li::before {
  content: '✗';
  color: var(--color-magenta);
}

/* Security FAQ Section */
.security-faq-section {
  background-color: var(--color-beige-mid);
  padding: var(--spacing-xxxl) 0;
}

.security-faq-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border-left: 4px solid var(--color-green);
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(50, 39, 13, 0.8);
  margin: 0;
}

/* Transparency Section */
.transparency-section {
  background-color: var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
}

.transparency-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.transparency-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.transparency-item {
  text-align: center;
  padding: var(--spacing-lg);
}

.transparency-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--spacing-md);
}

.transparency-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
}

/* Security CTA Section */
.security-cta-section {
  background:
    radial-gradient(1000px 700px at 50% 50%, rgba(101, 236, 255, 0.12), transparent 60%),
    var(--color-beige-dark);
  padding: var(--spacing-xxxl) 0;
}

.security-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.security-cta-block h2 {
  margin-bottom: var(--spacing-xl);
  font-size: 42px;
}

.security-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.contact-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  transition: all var(--transition-base);
  text-align: left;
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-size: 14px;
  color: rgba(50, 39, 13, 0.7);
  margin-bottom: var(--spacing-xs);
}

.contact-link {
  font-family: Sentient, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--color-green);
}

/* Security Page Responsive */
@media (max-width: 1280px) {
  .legal-features-grid {
    gap: var(--spacing-lg);
  }
  
  .certifications-grid {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 1024px) {
  .legal-features-grid {
    grid-template-columns: 1fr;
  }
  
  .day-one-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .security-hero-section h1 {
    font-size: 42px;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .security-hero-section {
    margin-top: 70px;
    padding: var(--spacing-xl) 0;
    min-height: auto;
  }
  
  .security-hero-badge {
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-lg);
  }
  
  .security-hero-badge svg {
    width: 120px;
    height: 120px;
  }
  
  .security-hero-section h1 {
    font-size: 32px;
  }
  
  .security-hero-subtitle {
    font-size: 16px;
  }
  
  /* Principles - New Structure */
  .security-principles-section {
    padding: var(--spacing-xl) 0;
  }
  
  .principles-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: var(--spacing-lg);
  }
  
  .principle-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
  }
  
  .principle-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  
  .principle-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .principle-content h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .principle-content p {
    font-size: 13px;
  }
  
  /* Legacy - Old Structure */
  .principles-rows {
    gap: var(--spacing-xl);
  }
  
  .principle-row {
    gap: var(--spacing-md);
  }
  
  .principle-icons-row {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
  
  .principle-icon-item {
    width: 60px;
    height: 60px;
  }
  
  .principle-icon-item svg {
    width: 60px;
    height: 60px;
  }
  
  .principle-texts-row {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .principle-text-item {
    text-align: left;
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
  }
  
  .principle-text-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .principle-text-item p {
    font-size: 13px;
  }
  
  /* Legal Features */
  .security-legal-section {
    padding: var(--spacing-xl) 0;
  }
  
  .legal-feature-block {
    padding: var(--spacing-lg);
  }
  
  .legal-feature-header {
    gap: var(--spacing-sm);
  }
  
  .legal-icon {
    width: 48px;
    height: 48px;
  }
  
  .legal-feature-block h3 {
    font-size: 18px;
  }
  
  .legal-feature-list li {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
  }
  
  /* Certifications */
  .certifications-section {
    padding: var(--spacing-xl) 0;
  }
  
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .cert-badge {
    padding: var(--spacing-lg);
  }
  
  .cert-icon {
    width: 48px;
    height: 48px;
  }
  
  .cert-badge h4 {
    font-size: 16px;
  }
  
  .cert-badge p {
    font-size: 11px;
  }
  
  /* Day One */
  .day-one-section {
    padding: var(--spacing-xl) 0;
  }
  
  .day-one-column h2 {
    font-size: 26px;
    margin-bottom: var(--spacing-lg);
  }
  
  .check-list li {
    font-size: 15px;
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-lg);
  }
  
  .check-list li::before {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
  
  /* FAQ */
  .security-faq-section {
    padding: var(--spacing-xl) 0;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .faq-item {
    padding: var(--spacing-lg);
  }
  
  .faq-item h3 {
    font-size: 16px;
  }
  
  .faq-item p {
    font-size: 14px;
  }
  
  /* Transparency */
  .transparency-section {
    padding: var(--spacing-xl) 0;
  }
  
  .transparency-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .transparency-item {
    padding: var(--spacing-md);
  }
  
  .transparency-icon {
    width: 40px;
    height: 40px;
  }
  
  .transparency-item p {
    font-size: 15px;
  }
  
  /* Security CTA */
  .security-cta-section {
    padding: var(--spacing-xl) 0;
  }
  
  .security-cta-block h2 {
    font-size: 28px;
    margin-bottom: var(--spacing-lg);
  }
  
  .security-contacts {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .contact-item {
    padding: var(--spacing-lg);
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-label {
    font-size: 13px;
  }
  
  .contact-link {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .security-hero-section {
    margin-top: 64px;
  }
  
  .security-hero-badge {
    width: 100px;
    height: 100px;
  }
  
  .security-hero-badge svg {
    width: 100px;
    height: 100px;
  }
  
  .security-hero-section h1 {
    font-size: 26px;
  }
  
  .security-hero-subtitle {
    font-size: 15px;
  }
  
  /* New structure 480px */
  .principle-icon {
    width: 50px;
    height: 50px;
  }
  
  .principle-icon svg {
    width: 50px;
    height: 50px;
  }
  
  .principle-content h3 {
    font-size: 15px;
  }
  
  .principle-content p {
    font-size: 12px;
  }
  
  /* Legacy 480px */
  .principle-icons-row {
    gap: var(--spacing-sm);
  }
  
  .principle-icon-item {
    width: 50px;
    height: 50px;
  }
  
  .principle-icon-item svg {
    width: 50px;
    height: 50px;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cert-badge {
    padding: var(--spacing-md);
  }
  
  .cert-icon {
    width: 40px;
    height: 40px;
  }
  
  .cert-badge h4 {
    font-size: 14px;
  }
  
  .security-cta-block h2 {
    font-size: 24px;
  }
  
  .contact-link {
    font-size: 16px;
  }
}

/* ==========================================================================
   COMPANY PAGE STYLES
   ========================================================================== */

/* Company Hero Section */
.company-hero-section {
  min-height: 60vh;
  background:
  radial-gradient(1000px 700px at 50% 40%, rgba(189, 255, 50, 0.12), transparent 60%),
    var(--color-beige-light);
  display: flex;
  align-items: center;
  padding: var(--spacing-xxxl) 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.company-hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.company-hero-section h1 {
  margin-bottom: var(--spacing-lg);
  font-size: 56px;
}

.company-hero-subtitle {
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  font-family: Sentient, serif;
}

.company-hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(50, 39, 13, 0.8);
  max-width: 900px;
  margin: 0 auto;
}

/* Vision & Mission Section */
.vision-mission-section {
  background-color: var(--color-beige-mid);
  padding: var(--spacing-xxxl) 0;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  max-width: 1200px;
  margin: 0 auto;
}

.vision-block,
.mission-block {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-beige-dark);
}

.vision-block h2,
.mission-block h2 {
  font-size: 36px;
  margin-bottom: var(--spacing-lg);
  text-align: left;
}

.vision-intro,
.mission-intro {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  color: var(--color-dark);
}

.vision-list,
.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vision-list li,
.mission-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
  color: rgba(50, 39, 13, 0.9);
}

.vision-list li::before,
.mission-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

/* Philosophy Section */
.philosophy-section {
  background:
    radial-gradient(1000px 600px at 30% 50%, rgba(189, 255, 50, 0.08), transparent 60%),
    var(--color-beige-mid);
  padding: var(--spacing-xxxl) 0;
}

.philosophy-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.philosophy-content {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-intro {
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  color: var(--color-dark);
  font-weight: 500;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.philosophy-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border-left: 4px solid var(--color-green);
  transition: all var(--transition-base);
}

.philosophy-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.philosophy-item h3 {
  font-size: 22px;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.philosophy-item p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(50, 39, 13, 0.8);
  margin: 0;
}

.philosophy-belief {
  background: var(--color-beige-mid);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-top: var(--spacing-xxl);
}

.philosophy-belief p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.philosophy-value-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0 0 0;
}

.philosophy-value-list li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
  color: rgba(50, 39, 13, 0.9);
}

.philosophy-value-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
  font-size: 24px;
}

/* Values Section */
.values-section {
  background-color: var(--color-beige-dark);
  padding: var(--spacing-xxxl) 0;
}

.values-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-beige-dark);
  transition: all var(--transition-base);
}

.value-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-item h3 {
  font-size: 22px;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.value-item p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(50, 39, 13, 0.8);
  margin: 0;
}

/* DNA Section */
.dna-section {
  background-color: var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
}

.dna-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.dna-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}

.dna-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-beige-dark);
}

.dna-item h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.dna-item p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(50, 39, 13, 0.8);
  margin-bottom: var(--spacing-md);
}

.dna-item p:last-child {
  margin-bottom: 0;
}

.dna-closing {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  font-family: Sentient, serif;
  margin-top: var(--spacing-xl);
}

/* Competencies Section */
.competencies-section {
  background-color: var(--color-beige-mid);
  padding: var(--spacing-xxxl) 0;
}

.competencies-intro {
  max-width: 900px;
  margin: 0 auto var(--spacing-xxl);
  text-align: center;
}

.competencies-intro h2 {
  margin-bottom: var(--spacing-lg);
}

.competencies-intro p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.competency-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-beige-dark);
  position: relative;
  transition: all var(--transition-base);
}

.competency-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.competency-number {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 48px;
  height: 48px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Sentient, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
}

.competency-item h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
  padding-right: 60px;
}

.competency-item p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(50, 39, 13, 0.8);
  margin-bottom: var(--spacing-md);
}

.competency-item p:last-of-type {
  margin-bottom: var(--spacing-md);
}

.competency-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0 0 0;
}

.competency-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
  color: rgba(50, 39, 13, 0.9);
}

.competency-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

/* Company Details Section */
.company-details-section {
  background-color: var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
}

.company-details-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.company-details-content h2 {
  margin-bottom: var(--spacing-xl);
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  border: 1px solid var(--color-beige-dark);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-beige-dark);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-family: 'Azeret Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(50, 39, 13, 0.7);
}

.detail-value {
  font-family: Sentient, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: right;
}

.detail-value a {
  color: var(--color-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.detail-value a:hover {
  color: var(--color-green);
}

/* Company Page Responsive */
@media (max-width: 1280px) {
  .vision-mission-grid {
    gap: var(--spacing-xl);
  }
  
  .philosophy-grid {
    gap: var(--spacing-md);
  }
  
  .competencies-grid {
    gap: var(--spacing-lg);
  }
}

@media (max-width: 1024px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .vision-block,
  .mission-block {
    padding: var(--spacing-lg);
  }
  
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .competencies-grid {
    grid-template-columns: 1fr;
  }
  
  .company-hero-section h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .company-hero-section {
    margin-top: 70px;
    padding: var(--spacing-xl) 0;
    min-height: auto;
  }
  
  .company-hero-section h1 {
    font-size: 32px;
  }
  
  .company-hero-subtitle {
    font-size: 18px;
    margin-bottom: var(--spacing-md);
  }
  
  .company-hero-description {
    font-size: 15px;
  }
  
  /* Vision & Mission */
  .vision-mission-section {
    padding: var(--spacing-xl) 0;
  }
  
  .vision-block,
  .mission-block {
    padding: var(--spacing-lg);
  }
  
  .vision-block h2,
  .mission-block h2 {
    font-size: 26px;
    margin-bottom: var(--spacing-md);
  }
  
  .vision-intro,
  .mission-intro {
    font-size: 16px;
    margin-bottom: var(--spacing-md);
  }
  
  .vision-list li,
  .mission-list li {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  /* Philosophy */
  .philosophy-section {
    padding: var(--spacing-xl) 0;
  }
  
  .philosophy-intro {
    font-size: 17px;
    margin-bottom: var(--spacing-lg);
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .philosophy-item {
    padding: var(--spacing-lg);
  }
  
  .philosophy-item h3 {
    font-size: 18px;
  }
  
  .philosophy-item p {
    font-size: 14px;
  }
  
  .philosophy-belief {
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
  }
  
  .philosophy-belief p {
    font-size: 16px;
  }
  
  .philosophy-value-list li {
    font-size: 15px;
  }
  
  /* Values */
  .values-section {
    padding: var(--spacing-xl) 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .value-item {
    padding: var(--spacing-lg);
  }
  
  .value-item h3 {
    font-size: 18px;
  }
  
  .value-item p {
    font-size: 14px;
  }
  
  /* DNA */
  .dna-section {
    padding: var(--spacing-xl) 0;
  }
  
  .dna-content {
    gap: var(--spacing-lg);
  }
  
  .dna-item {
    padding: var(--spacing-lg);
  }
  
  .dna-item h3 {
    font-size: 20px;
  }
  
  .dna-item p {
    font-size: 14px;
  }
  
  .dna-closing {
    font-size: 17px;
    margin-top: var(--spacing-lg);
  }
  
  /* Competencies */
  .competencies-section {
    padding: var(--spacing-xl) 0;
  }
  
  .competencies-intro p {
    font-size: 16px;
  }
  
  .competency-item {
    padding: var(--spacing-lg);
  }
  
  .competency-item h3 {
    font-size: 20px;
    padding-right: 0;
    margin-bottom: var(--spacing-md);
  }
  
  .competency-number {
    position: static;
    margin-bottom: var(--spacing-sm);
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .competency-item p {
    font-size: 14px;
  }
  
  .competency-list li {
    font-size: 14px;
  }
  
  /* Company Details */
  .company-details-section {
    padding: var(--spacing-xl) 0;
  }
  
  .details-grid {
    padding: var(--spacing-lg);
  }
  
  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: var(--spacing-sm) 0;
  }
  
  .detail-label {
    font-size: 12px;
  }
  
  .detail-value {
    font-size: 16px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .company-hero-section {
    margin-top: 64px;
  }
  
  .company-hero-section h1 {
    font-size: 26px;
  }
  
  .company-hero-subtitle {
    font-size: 16px;
  }
  
  .company-hero-description {
    font-size: 14px;
  }
  
  .vision-block h2,
  .mission-block h2 {
    font-size: 22px;
  }
  
  .philosophy-intro {
    font-size: 15px;
  }
  
  .philosophy-item h3 {
    font-size: 16px;
  }
  
  .philosophy-item p {
    font-size: 13px;
  }
  
  .value-item h3 {
    font-size: 16px;
  }
  
  .value-item p {
    font-size: 13px;
  }
  
  .dna-item h3 {
    font-size: 18px;
  }
  
  .dna-closing {
    font-size: 15px;
  }
  
  .competency-item h3 {
    font-size: 18px;
  }
  
  .competency-number {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ==========================================================================
   CUSTOMERS PAGE STYLES
   ========================================================================== */

/* Customers Hero Section */
.customers-hero-section {
  min-height: 70vh;
  background:
    radial-gradient(1000px 700px at 50% 40%, rgba(189, 255, 50, 0.12), transparent 60%),
    var(--color-beige-light);
  display: flex;
  align-items: center;
  padding: var(--spacing-xxxl) 0;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.customers-hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.customers-hero-section h1 {
  margin-bottom: var(--spacing-lg);
  font-size: 56px;
  line-height: 1.1;
}

.customers-hero-subtitle {
  font-size: 22px;
  line-height: 1.6;
  color: rgba(50, 39, 13, 0.8);
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.customers-hero-cta {
  margin-top: var(--spacing-xl);
}

.btn-request-demo {
  font-family: Sentient, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  background-color: var(--color-green);
  border: none;
  padding: 16px 48px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-request-demo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background-color: #a8e020;
}

.btn-request-demo:active {
  transform: translateY(0);
}

/* Featured Customers Section */
.featured-customers-section {
  background-color: var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  align-items: center;
  justify-items: center;
}

.customer-logo-item {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-beige-dark);
  transition: all var(--transition-base);
}

.customer-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-green);
}

.customer-logo-item img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition-base);
}

.customer-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.customer-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-beige-mid);
  border-radius: var(--radius-sm);
  color: rgba(50, 39, 13, 0.4);
  font-family: 'Azeret Mono', monospace;
  font-size: 12px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Impact Section */
.impact-section {
  background-color: var(--color-beige-mid);
  padding: var(--spacing-xxxl) 0;
}

.impact-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xxl);
  max-width: 1000px;
  margin: 0 auto;
}

.impact-stat-item {
  text-align: center;
  padding: var(--spacing-xl);
}

.stat-number {
  font-family: Sentient, serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-green), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-family: 'Azeret Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  color: rgba(50, 39, 13, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Building Together Section */
.building-together-section {
  background-color: var(--color-beige-light);
  padding: var(--spacing-xxxl) 0;
}

.building-together-section h2 {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.customers-extended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--spacing-lg);
  align-items: center;
  justify-items: center;
}

.customers-extended-grid .customer-logo-item {
  height: 100px;
}

/* Customers CTA Section */
.customers-cta-section {
  background:
    radial-gradient(1000px 700px at 50% 50%, rgba(101, 236, 255, 0.12), transparent 60%),
    var(--color-beige-dark);
  padding: var(--spacing-xxxl) 0;
}

.customers-cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.customers-cta-content h2 {
  margin-bottom: var(--spacing-lg);
  font-size: 42px;
}

.customers-cta-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(50, 39, 13, 0.8);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

/* Customers Page Responsive */
@media (max-width: 1280px) {
  .customers-grid {
    gap: var(--spacing-lg);
  }
  
  .impact-stats {
    gap: var(--spacing-xl);
  }
  
  .stat-number {
    font-size: 64px;
  }
}

@media (max-width: 1024px) {
  .customers-hero-section h1 {
    font-size: 42px;
  }
  
  .customers-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  
  .customers-extended-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .impact-stats {
    gap: var(--spacing-lg);
  }
  
  .stat-number {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .customers-hero-section {
    margin-top: 70px;
    padding: var(--spacing-xl) 0;
    min-height: auto;
  }
  
  .customers-hero-section h1 {
    font-size: 32px;
  }
  
  .customers-hero-section h1 br {
    display: none;
  }
  
  .customers-hero-subtitle {
    font-size: 16px;
    margin-bottom: var(--spacing-lg);
  }
  
  .customers-hero-cta {
    margin-top: var(--spacing-lg);
  }
  
  .btn-request-demo {
    padding: 14px 36px;
    font-size: 16px;
  }
  
  /* Featured Customers */
  .featured-customers-section {
    padding: var(--spacing-xl) 0;
  }
  
  .customers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
  
  .customer-logo-item {
    height: 90px;
    padding: var(--spacing-md);
  }
  
  .customer-logo-item img {
    max-height: 60px;
  }
  
  .customer-logo-placeholder {
    font-size: 10px;
  }
  
  /* Impact */
  .impact-section {
    padding: var(--spacing-xl) 0;
  }
  
  .impact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }
  
  .impact-stat-item {
    padding: var(--spacing-md);
  }
  
  .stat-number {
    font-size: 42px;
    margin-bottom: var(--spacing-sm);
  }
  
  .stat-label {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  
  /* Building Together */
  .building-together-section {
    padding: var(--spacing-xl) 0;
  }
  
  .customers-extended-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
  }
  
  .customers-extended-grid .customer-logo-item {
    height: 70px;
    padding: var(--spacing-sm);
  }
  
  /* CTA */
  .customers-cta-section {
    padding: var(--spacing-xl) 0;
  }
  
  .customers-cta-content h2 {
    font-size: 28px;
    margin-bottom: var(--spacing-md);
  }
  
  .customers-cta-subtitle {
    font-size: 15px;
    margin-bottom: var(--spacing-lg);
  }
}

@media (max-width: 600px) {
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .impact-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .impact-stat-item {
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .customers-extended-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .customers-hero-section {
    margin-top: 64px;
  }
  
  .customers-hero-section h1 {
    font-size: 26px;
  }
  
  .customers-hero-subtitle {
    font-size: 15px;
  }
  
  .btn-request-demo {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  
  .customer-logo-item {
    height: 80px;
  }
  
  .customer-logo-item img {
    max-height: 50px;
  }
  
  .customer-logo-placeholder {
    font-size: 9px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .customers-extended-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .customers-extended-grid .customer-logo-item {
    height: 60px;
  }
  
  .customers-cta-content h2 {
    font-size: 24px;
  }
  
  .customers-cta-subtitle {
    font-size: 14px;
  }
}
