/* 
 * BCA Academy Website Styles
 * Design System: Dark tech theme with warm accents
 * Palette: Onyx #0F1114, Graphite #1A1D23, Amber #D4A574, Mint #7FD4B0, Coral #E87461
 */

/* ============================================
   CSS RESET & BASE
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--vexo-text);
    background-color: var(--vexo-onyx);
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

button {
    cursor: pointer;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    /* Colors */
    --vexo-onyx: #0F1114;
    --vexo-graphite: #1A1D23;
    --vexo-amber: #D4A574;
    --vexo-mint: #7FD4B0;
    --vexo-coral: #E87461;
    --vexo-text: #E8E6E3;
    --vexo-text-muted: #A0A0A0;
    --vexo-border: rgba(212, 165, 116, 0.15);
    
    /* Typography - Fluid scales */
    --vexo-text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --vexo-text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --vexo-text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --vexo-text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
    --vexo-text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
    --vexo-text-2xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
    --vexo-text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 3rem);
    --vexo-text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 4rem);
    --vexo-text-5xl: clamp(2.5rem, 2rem + 3vw, 5rem);
    
    /* Spacing - Fluid */
    --vexo-space-xs: clamp(0.5rem, 0.45rem + 0.25vw, 0.625rem);
    --vexo-space-sm: clamp(0.75rem, 0.65rem + 0.5vw, 1rem);
    --vexo-space-md: clamp(1rem, 0.85rem + 0.75vw, 1.5rem);
    --vexo-space-lg: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    --vexo-space-xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --vexo-space-2xl: clamp(3rem, 2rem + 5vw, 6rem);
    --vexo-space-3xl: clamp(4rem, 3rem + 6vw, 8rem);
    
    /* Layout */
    --vexo-container-max: 1280px;
    --vexo-container-padding: clamp(1rem, 4vw, 2rem);
    --vexo-border-radius-sm: 0.375rem;
    --vexo-border-radius-md: 0.5rem;
    --vexo-border-radius-lg: 0.75rem;
    --vexo-border-radius-xl: 1rem;
    
    /* Transitions */
    --vexo-transition-fast: 150ms ease;
    --vexo-transition-base: 250ms ease;
    --vexo-transition-slow: 400ms ease;
    
    /* Shadows */
    --vexo-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --vexo-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --vexo-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    
    /* Z-index */
    --vexo-z-header: 100;
    --vexo-z-modal: 200;
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.vexo-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--vexo-amber);
    color: var(--vexo-onyx);
    padding: 0.5rem 1rem;
    z-index: 1000;
    font-weight: 600;
}

.vexo-skip-link:focus {
    top: 0;
}

.vexo-container {
    max-width: var(--vexo-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--vexo-container-padding);
    padding-right: var(--vexo-container-padding);
}

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

.vexo-header {
    position: sticky;
    top: 0;
    z-index: var(--vexo-z-header);
    background: rgba(15, 17, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--vexo-border);
    transition: background var(--vexo-transition-base),
                box-shadow var(--vexo-transition-base);
}

.vexo-header--scrolled {
    background: rgba(15, 17, 20, 0.95);
    box-shadow: var(--vexo-shadow-md);
}

.vexo-header__container {
    max-width: var(--vexo-container-max);
    margin: 0 auto;
    padding: var(--vexo-space-md) var(--vexo-container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--vexo-space-lg);
}

.vexo-header__logo {
    display: flex;
    align-items: center;
    gap: var(--vexo-space-sm);
    color: var(--vexo-text);
    transition: color var(--vexo-transition-fast);
}

.vexo-header__logo:hover {
    color: var(--vexo-amber);
}

.vexo-header__logo svg {
    width: 40px;
    height: 40px;
}

.vexo-header__logo-text {
    font-size: var(--vexo-text-xl);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Mobile Menu Toggle Button */
.vexo-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-md);
    cursor: pointer;
    transition: all var(--vexo-transition-base);
    position: relative;
    z-index: 101;
}

.vexo-mobile-menu-toggle:hover {
    border-color: var(--vexo-amber);
    background: rgba(212, 165, 116, 0.1);
}

.vexo-mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--vexo-amber);
    outline-offset: 4px;
}

.vexo-burger-line {
    width: 100%;
    height: 3px;
    background: var(--vexo-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.vexo-mobile-menu-toggle:hover .vexo-burger-line {
    background: var(--vexo-amber);
}

/* Animated burger to X transformation */
.vexo-mobile-menu-toggle.vexo-menu-open .vexo-burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.vexo-mobile-menu-toggle.vexo-menu-open .vexo-burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.vexo-mobile-menu-toggle.vexo-menu-open .vexo-burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.vexo-nav-list {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: wrap;
}

.vexo-nav-list a {
    font-size: var(--vexo-text-sm);
    font-weight: 500;
    color: var(--vexo-text);
    transition: color var(--vexo-transition-fast);
    position: relative;
}

.vexo-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vexo-amber);
    transition: width var(--vexo-transition-base);
}

.vexo-nav-list a:hover {
    color: var(--vexo-amber);
}

.vexo-nav-list a:hover::after {
    width: 100%;
}

.vexo-nav-list a:focus-visible {
    outline: 2px solid var(--vexo-amber);
    outline-offset: 4px;
    border-radius: var(--vexo-border-radius-sm);
}

.vexo-nav-cta {
    padding: 0.5rem 1rem;
    background: var(--vexo-amber);
    color: var(--vexo-onyx) !important;
    border-radius: var(--vexo-border-radius-md);
    font-weight: 600;
}

.vexo-nav-cta::after {
    display: none;
}

.vexo-nav-cta:hover {
    background: var(--vexo-mint);
    color: var(--vexo-onyx) !important;
}

/* ============================================
   BUTTONS
   ============================================ */

.vexo-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--vexo-border-radius-md);
    font-weight: 600;
    font-size: var(--vexo-text-base);
    text-align: center;
    transition: all var(--vexo-transition-base);
    border: 2px solid transparent;
    cursor: pointer;
}

.vexo-btn--primary {
    background: var(--vexo-amber);
    color: var(--vexo-onyx);
}

.vexo-btn--primary:hover {
    background: var(--vexo-mint);
    transform: translateY(-2px);
    box-shadow: var(--vexo-shadow-md);
}

.vexo-btn--ghost {
    background: transparent;
    color: var(--vexo-text);
    border-color: var(--vexo-border);
}

.vexo-btn--ghost:hover {
    border-color: var(--vexo-amber);
    color: var(--vexo-amber);
    transform: translateY(-2px);
}

.vexo-btn--full {
    width: 100%;
}

.vexo-btn:focus-visible {
    outline: 2px solid var(--vexo-amber);
    outline-offset: 4px;
}

/* ============================================
   HERO SECTION - MODERN ENHANCED VERSION
   ============================================ */

.vexo-hero {
    position: relative;
    min-height: clamp(650px, 95vh, 1000px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--vexo-space-3xl) 0;
}

/* ===== ANIMATED BACKGROUND SYSTEM ===== */

.vexo-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Gradient Orbs - Animated Blobs */
.vexo-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    mix-blend-mode: screen;
    will-change: transform;
}

.vexo-hero__orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #D4A574 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: vexo-float-orb-1 20s ease-in-out infinite;
}

.vexo-hero__orb--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7FD4B0 0%, transparent 70%);
    top: 30%;
    right: -10%;
    animation: vexo-float-orb-2 25s ease-in-out infinite reverse;
}

.vexo-hero__orb--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #E87461 0%, transparent 70%);
    bottom: -5%;
    left: 40%;
    animation: vexo-float-orb-3 18s ease-in-out infinite;
}

@keyframes vexo-float-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
}

@keyframes vexo-float-orb-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-60px, -50px) rotate(180deg); }
}

@keyframes vexo-float-orb-3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(40px, 30px); }
    75% { transform: translate(-20px, -40px); }
}

/* Animated Grid Background */
.vexo-hero__grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 165, 116, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 165, 116, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    animation: vexo-grid-move 30s linear infinite;
}

@keyframes vexo-grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Floating Particles */
.vexo-hero__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.vexo-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--vexo-amber);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--vexo-amber);
    animation: vexo-particle-float 8s ease-in-out infinite;
}

.vexo-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 10s; }
.vexo-particle:nth-child(2) { left: 30%; top: 80%; animation-delay: 1.5s; animation-duration: 12s; }
.vexo-particle:nth-child(3) { left: 50%; top: 40%; animation-delay: 3s; animation-duration: 9s; }
.vexo-particle:nth-child(4) { left: 70%; top: 60%; animation-delay: 2s; animation-duration: 11s; }
.vexo-particle:nth-child(5) { left: 85%; top: 25%; animation-delay: 4s; animation-duration: 13s; }
.vexo-particle:nth-child(6) { left: 15%; top: 70%; animation-delay: 2.5s; animation-duration: 10s; }
.vexo-particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 1s; animation-duration: 14s; }
.vexo-particle:nth-child(8) { left: 40%; top: 90%; animation-delay: 3.5s; animation-duration: 11s; }

@keyframes vexo-particle-float {
    0%, 100% { 
        opacity: 0; 
        transform: translateY(0) translateX(0) scale(1);
    }
    10% { opacity: 0.6; }
    50% { 
        opacity: 1; 
        transform: translateY(-100px) translateX(50px) scale(1.5);
    }
    90% { opacity: 0.3; }
}

/* Abstract SVG Shapes */
.vexo-hero__shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
}

.vexo-hero__shape-1 {
    animation: vexo-shape-morph-1 15s ease-in-out infinite;
    transform-origin: center;
}

.vexo-hero__shape-2 {
    animation: vexo-shape-morph-2 20s ease-in-out infinite;
    transform-origin: center;
}

.vexo-hero__shape-3 {
    animation: vexo-shape-rotate 25s linear infinite;
    transform-origin: center;
}

@keyframes vexo-shape-morph-1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

@keyframes vexo-shape-morph-2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, -20px); }
    66% { transform: translate(-20px, 30px); }
}

@keyframes vexo-shape-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== HERO CONTENT ===== */

.vexo-hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--vexo-container-max);
    margin: 0 auto;
    padding: 0 var(--vexo-container-padding);
}

.vexo-hero__content {
    max-width: 850px;
}

/* Label with fade-down animation */
.vexo-hero__label {
    font-size: var(--vexo-text-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vexo-amber);
    margin-bottom: var(--vexo-space-md);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    animation: vexo-fade-down 0.8s ease forwards;
}

.vexo-hero__label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--vexo-amber), transparent);
    animation: vexo-line-grow 1s 0.5s ease forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes vexo-line-grow {
    to { transform: scaleX(1); }
}

/* Enhanced Title Typography */
.vexo-hero__title {
    font-size: var(--vexo-text-5xl);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--vexo-space-xl);
    letter-spacing: -0.04em;
}

.vexo-hero__title-line {
    display: block;
    opacity: 0;
    animation: vexo-slide-in-right 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.vexo-hero__title-line:nth-child(1) { animation-delay: 0.2s; }
.vexo-hero__title-line:nth-child(2) { 
    animation-name: vexo-slide-in-left; 
    animation-delay: 0.4s; 
}
.vexo-hero__title-line:nth-child(3) { animation-delay: 0.6s; }

@keyframes vexo-slide-in-right {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vexo-slide-in-left {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vexo-fade-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gradient Text Effect */
.vexo-hero__title-gradient {
    background: linear-gradient(135deg, #D4A574 0%, #7FD4B0 50%, #E87461 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: vexo-gradient-shift 5s ease infinite;
    display: inline-block;
    position: relative;
}

.vexo-hero__title-gradient::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4A574, #7FD4B0, #E87461);
    background-size: 200% 100%;
    animation: vexo-gradient-shift 5s ease infinite;
    border-radius: 2px;
    opacity: 0.6;
}

@keyframes vexo-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Description */
.vexo-hero__description {
    font-size: var(--vexo-text-lg);
    line-height: 1.8;
    color: var(--vexo-text-muted);
    margin-bottom: var(--vexo-space-xl);
    max-width: 650px;
    opacity: 0;
    animation: vexo-fade-up 0.8s 0.8s ease forwards;
}

.vexo-hero__description strong {
    color: var(--vexo-text);
    font-weight: 600;
    background: linear-gradient(135deg, var(--vexo-amber), var(--vexo-mint));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes vexo-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Action Buttons Container */
.vexo-hero__actions {
    display: flex;
    gap: var(--vexo-space-md);
    flex-wrap: wrap;
    margin-bottom: var(--vexo-space-2xl);
    opacity: 0;
    animation: vexo-zoom-in 0.6s 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes vexo-zoom-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Button - Glow Effect */
.vexo-btn--glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.vexo-btn--glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: vexo-btn-shine 3s linear infinite;
}

@keyframes vexo-btn-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.vexo-btn--glow:hover {
    box-shadow: 
        0 0 30px rgba(212, 165, 116, 0.6),
        0 0 60px rgba(212, 165, 116, 0.4),
        0 5px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px) scale(1.05);
}

.vexo-btn__icon {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.vexo-btn--glow:hover .vexo-btn__icon {
    transform: translateX(5px);
}

/* Ghost Button - Shine Effect */
.vexo-btn--shine {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 2px solid var(--vexo-border);
}

.vexo-btn--shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
    transition: left 0.5s ease;
}

.vexo-btn--shine:hover::before {
    left: 100%;
}

.vexo-btn--shine:hover {
    border-color: var(--vexo-amber);
    color: var(--vexo-amber);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

/* Stats Section */
.vexo-hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--vexo-space-lg);
    max-width: 650px;
    margin-top: var(--vexo-space-2xl);
    opacity: 0;
    animation: vexo-fade-up 0.8s 1.2s ease forwards;
}

.vexo-stat {
    border-left: 3px solid var(--vexo-amber);
    padding-left: var(--vexo-space-md);
    position: relative;
    transition: all 0.3s ease;
}

.vexo-stat::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--vexo-mint), var(--vexo-amber));
    transition: height 0.5s ease;
}

.vexo-stat:hover::before {
    height: 100%;
}

.vexo-stat:hover {
    transform: translateX(5px);
}

.vexo-stat__value {
    font-size: var(--vexo-text-3xl);
    font-weight: 800;
    color: var(--vexo-amber);
    line-height: 1;
    margin-bottom: var(--vexo-space-xs);
    text-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.vexo-stat__label {
    font-size: var(--vexo-text-sm);
    color: var(--vexo-text-muted);
    font-weight: 500;
}

/* Scroll Indicator */
.vexo-hero__scroll {
    position: absolute;
    bottom: var(--vexo-space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: vexo-fade-up 0.8s 1.5s ease forwards;
}

.vexo-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vexo-scroll-indicator:hover {
    transform: translateY(5px);
}

.vexo-scroll-indicator span {
    font-size: var(--vexo-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--vexo-text-muted);
    font-weight: 600;
}

.vexo-scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--vexo-amber);
    border-radius: 15px;
    position: relative;
}

.vexo-scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--vexo-amber);
    border-radius: 2px;
    animation: vexo-scroll-bounce 2s ease infinite;
}

@keyframes vexo-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
}

/* ===== RESPONSIVE HERO ===== */

@media (max-width: 1024px) {
    .vexo-hero {
        min-height: clamp(550px, 85vh, 800px);
    }
    
    .vexo-hero__orb {
        filter: blur(60px);
    }
}

@media (max-width: 768px) {
    .vexo-hero {
        min-height: clamp(500px, 80vh, 700px);
    }
    
    .vexo-hero__title {
        font-size: var(--vexo-text-4xl);
    }
    
    .vexo-hero__description {
        font-size: var(--vexo-text-base);
    }
    
    .vexo-hero__actions {
        flex-direction: column;
    }
    
    .vexo-hero__actions .vexo-btn {
        width: 100%;
        justify-content: center;
    }
    
    .vexo-hero__stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .vexo-hero__orb {
        filter: blur(40px);
        opacity: 0.4;
    }
    
    .vexo-hero__orb--1 {
        width: 250px;
        height: 250px;
    }
    
    .vexo-hero__orb--2 {
        width: 300px;
        height: 300px;
    }
    
    .vexo-hero__orb--3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .vexo-hero__grid {
        background-size: 30px 30px;
    }
    
    .vexo-hero__scroll {
        display: none;
    }
}

/* Parallax Effect on Scroll */
@media (prefers-reduced-motion: no-preference) {
    .vexo-hero__background {
        will-change: transform;
    }
}

/* ============================================
   SECTION COMMONS
   ============================================ */

.vexo-section {
    padding: var(--vexo-space-3xl) 0;
    position: relative;
}

.vexo-section__header {
    text-align: center;
    margin-bottom: var(--vexo-space-2xl);
}

.vexo-section__title {
    font-size: var(--vexo-text-4xl);
    font-weight: 700;
    margin-bottom: var(--vexo-space-md);
    letter-spacing: -0.02em;
}

.vexo-section__subtitle {
    font-size: var(--vexo-text-lg);
    color: var(--vexo-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION - ENHANCED PROFESSIONAL DESIGN
   ============================================ */

.vexo-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
    gap: var(--vexo-space-xl);
}

/* Service Card Container */
.vexo-service-card {
    background: linear-gradient(135deg, var(--vexo-graphite) 0%, rgba(26, 29, 35, 0.8) 100%);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-xl);
    padding: var(--vexo-space-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Animated gradient border effect */
.vexo-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--vexo-border-radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--vexo-amber), var(--vexo-mint), var(--vexo-coral));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vexo-service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Card entrance animation */
.vexo-service-card.vexo-in-view {
    animation: vexo-card-appear-enhanced 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes vexo-card-appear-enhanced {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vexo-service-card:nth-child(1).vexo-in-view { animation-delay: 0.1s; }
.vexo-service-card:nth-child(2).vexo-in-view { animation-delay: 0.2s; }
.vexo-service-card:nth-child(3).vexo-in-view { animation-delay: 0.3s; }
.vexo-service-card:nth-child(4).vexo-in-view { animation-delay: 0.4s; }
.vexo-service-card:nth-child(5).vexo-in-view { animation-delay: 0.5s; }
.vexo-service-card:nth-child(6).vexo-in-view { animation-delay: 0.6s; }

/* Card hover state */
.vexo-service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 165, 116, 0.2);
    border-color: var(--vexo-amber);
}

.vexo-service-card:hover::before {
    opacity: 1;
}

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

/* Card Header Section */
.vexo-service-card__header {
    margin-bottom: var(--vexo-space-lg);
}

/* Icon Wrapper with Badge */
.vexo-service-card__icon-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--vexo-space-md);
}

/* Icon Container */
.vexo-service-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(127, 212, 176, 0.1));
    border-radius: var(--vexo-border-radius-lg);
    color: var(--vexo-amber);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.vexo-service-card__icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--vexo-amber), var(--vexo-mint));
    border-radius: var(--vexo-border-radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.vexo-service-card:hover .vexo-service-card__icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--vexo-amber);
}

.vexo-service-card:hover .vexo-service-card__icon::before {
    opacity: 0.6;
}

/* Number Badge */
.vexo-service-card__badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 20, 0.8);
    border: 2px solid var(--vexo-border);
    border-radius: 50%;
    font-size: var(--vexo-text-lg);
    font-weight: 700;
    color: var(--vexo-amber);
    transition: all 0.3s ease;
}

.vexo-service-card:hover .vexo-service-card__badge {
    background: var(--vexo-amber);
    color: var(--vexo-onyx);
    border-color: var(--vexo-amber);
    transform: scale(1.1);
}

/* Title */
.vexo-service-card__title {
    font-size: var(--vexo-text-2xl);
    font-weight: 700;
    margin-bottom: var(--vexo-space-xs);
    color: var(--vexo-text);
    line-height: 1.2;
    transition: color 0.3s ease;
}

.vexo-service-card:hover .vexo-service-card__title {
    background: linear-gradient(135deg, var(--vexo-amber), var(--vexo-mint));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.vexo-service-card__subtitle {
    font-size: var(--vexo-text-sm);
    font-weight: 600;
    color: var(--vexo-mint);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--vexo-space-sm);
}

/* Description */
.vexo-service-card__description {
    font-size: var(--vexo-text-base);
    line-height: 1.7;
    color: var(--vexo-text-muted);
    margin-bottom: var(--vexo-space-lg);
}

/* Divider Line */
.vexo-service-card__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vexo-border), transparent);
    margin: var(--vexo-space-lg) 0;
    position: relative;
}

.vexo-service-card__divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--vexo-amber), var(--vexo-mint));
    transition: width 0.6s ease;
}

.vexo-service-card:hover .vexo-service-card__divider::after {
    width: 100%;
}

/* Features List */
.vexo-service-card__features {
    list-style: none;
    margin-bottom: var(--vexo-space-xl);
    flex-grow: 1;
}

.vexo-service-card__features li {
    display: flex;
    align-items: flex-start;
    gap: var(--vexo-space-sm);
    padding: var(--vexo-space-sm) 0;
    font-size: var(--vexo-text-sm);
    color: var(--vexo-text);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.vexo-service-card__features li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--vexo-mint);
    transition: all 0.3s ease;
}

.vexo-service-card__features li:hover {
    color: var(--vexo-amber);
    transform: translateX(5px);
}

.vexo-service-card__features li:hover svg {
    color: var(--vexo-amber);
    transform: scale(1.2);
}

/* CTA Button */
.vexo-service-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--vexo-space-xs);
    padding: 0.875rem 1.75rem;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-md);
    color: var(--vexo-amber);
    font-size: var(--vexo-text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.vexo-service-card__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--vexo-amber);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.vexo-service-card__btn svg {
    transition: transform 0.3s ease;
}

.vexo-service-card__btn:hover {
    color: var(--vexo-onyx);
    border-color: var(--vexo-amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.vexo-service-card__btn:hover::before {
    width: 120%;
    height: 400%;
}

.vexo-service-card__btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .vexo-services__grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    }
}

@media (max-width: 768px) {
    .vexo-services__grid {
        grid-template-columns: 1fr;
        gap: var(--vexo-space-lg);
    }
    
    .vexo-service-card {
        padding: var(--vexo-space-lg);
    }
    
    .vexo-service-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .vexo-service-card__badge {
        width: 42px;
        height: 42px;
        font-size: var(--vexo-text-base);
    }
    
    .vexo-service-card__title {
        font-size: var(--vexo-text-xl);
    }
}

@media (max-width: 480px) {
    .vexo-service-card__icon-wrapper {
        flex-direction: column;
        gap: var(--vexo-space-md);
    }
    
    .vexo-service-card__badge {
        align-self: flex-start;
    }
    
    .vexo-service-card__btn {
        width: 100%;
    }
}

/* ============================================
   CASE STUDY SECTION - GAME DEV ANIMATION
   ============================================ */

.vexo-case-study {
    background: linear-gradient(135deg, var(--vexo-graphite) 0%, var(--vexo-onyx) 100%);
    border-top: 1px solid var(--vexo-border);
    border-bottom: 1px solid var(--vexo-border);
    position: relative;
    overflow: hidden;
}

/* Background Gaming Particles */
.vexo-case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(127, 212, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(232, 116, 97, 0.05) 0%, transparent 50%);
    animation: vexo-case-study-bg 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes vexo-case-study-bg {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.vexo-case-study__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vexo-space-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.vexo-case-study__visual {
    position: relative;
}

.vexo-case-study__image {
    border-radius: var(--vexo-border-radius-xl);
    overflow: hidden;
    box-shadow: 
        var(--vexo-shadow-xl),
        0 0 40px rgba(212, 165, 116, 0.2);
    background: var(--vexo-graphite);
    border: 2px solid var(--vexo-border);
    transition: all 0.4s ease;
    position: relative;
}

.vexo-case-study__image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(232, 116, 97, 0.3);
    border-color: var(--vexo-coral);
}

.vexo-case-study__image svg {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.vexo-case-study__image:hover svg {
    transform: scale(1.05);
}

/* Game Development Animation Styles */
.vexo-game-dev-animation {
    position: relative;
}

.vexo-game-canvas {
    filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.3));
}

/* Floating Game Icons */
.vexo-game-icon-1 {
    filter: drop-shadow(0 0 10px rgba(127, 212, 176, 0.4));
}

.vexo-game-icon-2 {
    filter: drop-shadow(0 0 10px rgba(232, 116, 97, 0.4));
}

/* Game UI Elements */
.vexo-game-ui {
    filter: drop-shadow(0 0 8px rgba(212, 165, 116, 0.3));
}

/* Floating Particles */
.vexo-game-particles {
    filter: drop-shadow(0 0 6px rgba(127, 212, 176, 0.5));
}

/* Game Code Lines */
.vexo-game-code {
    filter: drop-shadow(0 0 5px rgba(212, 165, 116, 0.4));
}

/* Unity Logo */
.vexo-unity-logo {
    filter: drop-shadow(0 0 15px rgba(127, 212, 176, 0.6));
}

/* Performance Metrics */
.vexo-game-metrics {
    filter: drop-shadow(0 0 8px rgba(232, 116, 97, 0.3));
}

/* Hover Effects for Interactive Elements */
.vexo-case-study__image:hover .vexo-game-icon-1 {
    filter: drop-shadow(0 0 20px rgba(127, 212, 176, 0.8));
}

.vexo-case-study__image:hover .vexo-game-icon-2 {
    filter: drop-shadow(0 0 20px rgba(232, 116, 97, 0.8));
}

.vexo-case-study__image:hover .vexo-unity-logo {
    filter: drop-shadow(0 0 25px rgba(127, 212, 176, 1));
}

/* Pulse Effect for Game Elements */
.vexo-case-study__image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: vexo-game-pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes vexo-game-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 768px) {
    .vexo-case-study__layout {
        grid-template-columns: 1fr;
    }
    
    .vexo-case-study__image {
        max-width: 100%;
    }
    
    .vexo-case-study__image:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

.vexo-case-study__image {
    border-radius: var(--vexo-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--vexo-shadow-lg);
}

.vexo-case-study__label {
    font-size: var(--vexo-text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--vexo-mint);
    margin-bottom: var(--vexo-space-sm);
    font-weight: 600;
}

.vexo-case-study__title {
    font-size: var(--vexo-text-3xl);
    font-weight: 700;
    margin-bottom: var(--vexo-space-md);
    line-height: 1.2;
}

.vexo-case-study__description {
    font-size: var(--vexo-text-base);
    line-height: 1.7;
    color: var(--vexo-text-muted);
    margin-bottom: var(--vexo-space-lg);
}

.vexo-case-study__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--vexo-space-md);
    margin-bottom: var(--vexo-space-lg);
    padding: var(--vexo-space-lg) 0;
    border-top: 1px solid var(--vexo-border);
    border-bottom: 1px solid var(--vexo-border);
}

.vexo-case-metric__value {
    font-size: var(--vexo-text-2xl);
    font-weight: 700;
    color: var(--vexo-mint);
    margin-bottom: var(--vexo-space-xs);
}

.vexo-case-metric__label {
    font-size: var(--vexo-text-sm);
    color: var(--vexo-text-muted);
}

.vexo-case-study__highlights {
    display: grid;
    gap: var(--vexo-space-sm);
}

.vexo-case-study__highlights li {
    padding-left: var(--vexo-space-md);
    position: relative;
    font-size: var(--vexo-text-base);
    color: var(--vexo-text-muted);
}

.vexo-case-study__highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--vexo-amber);
    font-weight: 700;
}

/* ============================================
   TECH STACK SECTION
   ============================================ */

.vexo-stack__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--vexo-space-xl);
}

.vexo-stack__category-title {
    font-size: var(--vexo-text-lg);
    font-weight: 600;
    margin-bottom: var(--vexo-space-md);
    color: var(--vexo-amber);
}

.vexo-stack__list {
    display: grid;
    gap: var(--vexo-space-sm);
}

.vexo-stack__item {
    padding: var(--vexo-space-sm) var(--vexo-space-md);
    background: var(--vexo-graphite);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-md);
    font-size: var(--vexo-text-sm);
    transition: all var(--vexo-transition-fast);
}

.vexo-stack__item:hover {
    border-color: var(--vexo-mint);
    transform: translateX(4px);
    background: rgba(127, 212, 176, 0.05);
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.vexo-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.vexo-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--vexo-border);
}

@media (max-width: 640px) {
    .vexo-timeline::before {
        left: 20px;
    }
}

.vexo-timeline__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--vexo-space-lg);
    margin-bottom: var(--vexo-space-2xl);
    opacity: 0;
    transform: translateX(-30px);
}

.vexo-timeline__item.vexo-in-view {
    animation: vexo-timeline-slide 0.6s ease forwards;
}

@keyframes vexo-timeline-slide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vexo-timeline__item:nth-child(2).vexo-in-view { animation-delay: 0.15s; }
.vexo-timeline__item:nth-child(3).vexo-in-view { animation-delay: 0.3s; }
.vexo-timeline__item:nth-child(4).vexo-in-view { animation-delay: 0.45s; }
.vexo-timeline__item:nth-child(5).vexo-in-view { animation-delay: 0.6s; }

@media (max-width: 640px) {
    .vexo-timeline__item {
        grid-template-columns: 40px 1fr;
        gap: var(--vexo-space-md);
    }
}

.vexo-timeline__marker {
    width: 80px;
    height: 80px;
    background: var(--vexo-graphite);
    border: 2px solid var(--vexo-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--vexo-text-xl);
    font-weight: 700;
    color: var(--vexo-amber);
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .vexo-timeline__marker {
        width: 40px;
        height: 40px;
        font-size: var(--vexo-text-sm);
    }
}

.vexo-timeline__title {
    font-size: var(--vexo-text-xl);
    font-weight: 600;
    margin-bottom: var(--vexo-space-sm);
}

.vexo-timeline__description {
    font-size: var(--vexo-text-base);
    line-height: 1.7;
    color: var(--vexo-text-muted);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.vexo-testimonials {
    background: var(--vexo-graphite);
    border-top: 1px solid var(--vexo-border);
    border-bottom: 1px solid var(--vexo-border);
}

.vexo-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--vexo-space-xl);
}

.vexo-testimonial {
    background: var(--vexo-onyx);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-lg);
    padding: var(--vexo-space-xl);
    opacity: 0;
    transform: scale(0.95);
}

.vexo-testimonial.vexo-in-view {
    animation: vexo-testimonial-scale 0.6s ease forwards;
}

@keyframes vexo-testimonial-scale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.vexo-testimonial:nth-child(2).vexo-in-view { animation-delay: 0.15s; }
.vexo-testimonial:nth-child(3).vexo-in-view { animation-delay: 0.3s; }

.vexo-testimonial__quote {
    font-size: var(--vexo-text-lg);
    line-height: 1.7;
    margin-bottom: var(--vexo-space-lg);
    font-style: italic;
    color: var(--vexo-text);
}

.vexo-testimonial__quote::before {
    content: '"';
    color: var(--vexo-amber);
    font-size: var(--vexo-text-3xl);
    line-height: 0;
    margin-right: 0.25rem;
}

.vexo-testimonial__author {
    display: block;
    font-style: normal;
}

.vexo-testimonial__author strong {
    display: block;
    font-size: var(--vexo-text-base);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--vexo-text);
}

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

/* ============================================
   IMPACT METRICS SECTION - ENHANCED
   ============================================ */

.vexo-impact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--vexo-space-xl);
}

.vexo-impact__card {
    background: linear-gradient(135deg, var(--vexo-graphite) 0%, rgba(26, 29, 35, 0.9) 100%);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-xl);
    padding: var(--vexo-space-xl);
    text-align: center;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gradient border effect */
.vexo-impact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--vexo-border-radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--vexo-mint), var(--vexo-amber), var(--vexo-coral));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Glow effect */
.vexo-impact__card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(127, 212, 176, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vexo-impact__card.vexo-in-view {
    animation: vexo-impact-appear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes vexo-impact-appear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vexo-impact__card:nth-child(1).vexo-in-view { animation-delay: 0.1s; }
.vexo-impact__card:nth-child(2).vexo-in-view { animation-delay: 0.2s; }
.vexo-impact__card:nth-child(3).vexo-in-view { animation-delay: 0.3s; }
.vexo-impact__card:nth-child(4).vexo-in-view { animation-delay: 0.4s; }

/* Hover effects */
.vexo-impact__card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(127, 212, 176, 0.2);
    border-color: var(--vexo-mint);
}

.vexo-impact__card:hover::before {
    opacity: 1;
}

.vexo-impact__card:hover::after {
    opacity: 1;
}

/* Value styling */
.vexo-impact__value {
    font-size: var(--vexo-text-4xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--vexo-mint) 0%, var(--vexo-amber) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--vexo-space-sm);
    line-height: 1;
    text-shadow: 0 0 30px rgba(127, 212, 176, 0.3);
    transition: all 0.3s ease;
}

.vexo-impact__card:hover .vexo-impact__value {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Label styling */
.vexo-impact__label {
    font-size: var(--vexo-text-lg);
    font-weight: 600;
    margin-bottom: var(--vexo-space-md);
    color: var(--vexo-text);
    transition: color 0.3s ease;
}

.vexo-impact__card:hover .vexo-impact__label {
    color: var(--vexo-amber);
}

/* Context styling */
.vexo-impact__context {
    font-size: var(--vexo-text-sm);
    color: var(--vexo-text-muted);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.vexo-impact__card:hover .vexo-impact__context {
    color: var(--vexo-text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vexo-impact__grid {
        grid-template-columns: 1fr;
        gap: var(--vexo-space-lg);
    }
    
    .vexo-impact__card {
        padding: var(--vexo-space-lg);
    }
    
    .vexo-impact__value {
        font-size: var(--vexo-text-3xl);
    }
}

/* ============================================
   INSIGHTS/BLOG SECTION - ENHANCED
   ============================================ */

.vexo-insights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: var(--vexo-space-xl);
}

.vexo-insight-card {
    background: linear-gradient(135deg, var(--vexo-graphite) 0%, rgba(26, 29, 35, 0.9) 100%);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-xl);
    padding: var(--vexo-space-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Gradient border effect */
.vexo-insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--vexo-border-radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, var(--vexo-coral), var(--vexo-mint), var(--vexo-amber));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Subtle glow effect */
.vexo-insight-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 116, 97, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vexo-insight-card.vexo-in-view {
    animation: vexo-insight-appear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes vexo-insight-appear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vexo-insight-card:nth-child(1).vexo-in-view { animation-delay: 0.1s; }
.vexo-insight-card:nth-child(2).vexo-in-view { animation-delay: 0.2s; }
.vexo-insight-card:nth-child(3).vexo-in-view { animation-delay: 0.3s; }

.vexo-insight-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(232, 116, 97, 0.2);
    border-color: var(--vexo-coral);
}

.vexo-insight-card:hover::before {
    opacity: 1;
}

.vexo-insight-card:hover::after {
    opacity: 1;
}

/* Meta section */
.vexo-insight-card__meta {
    display: flex;
    gap: var(--vexo-space-md);
    align-items: center;
    margin-bottom: var(--vexo-space-lg);
    font-size: var(--vexo-text-xs);
    color: var(--vexo-text-muted);
    position: relative;
}

.vexo-insight-card__meta time {
    font-weight: 500;
    color: var(--vexo-text-muted);
    transition: color 0.3s ease;
}

.vexo-insight-card:hover .vexo-insight-card__meta time {
    color: var(--vexo-amber);
}

.vexo-insight-card__category {
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(232, 116, 97, 0.15), rgba(127, 212, 176, 0.1));
    color: var(--vexo-coral);
    border-radius: 999px;
    font-weight: 600;
    font-size: var(--vexo-text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(232, 116, 97, 0.2);
    transition: all 0.3s ease;
}

.vexo-insight-card:hover .vexo-insight-card__category {
    background: var(--vexo-coral);
    color: var(--vexo-onyx);
    border-color: var(--vexo-coral);
    transform: scale(1.05);
}

/* Title styling */
.vexo-insight-card__title {
    font-size: var(--vexo-text-xl);
    font-weight: 700;
    margin-bottom: var(--vexo-space-md);
    line-height: 1.3;
    color: var(--vexo-text);
    transition: all 0.3s ease;
}

.vexo-insight-card:hover .vexo-insight-card__title {
    background: linear-gradient(135deg, var(--vexo-amber), var(--vexo-coral));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-2px);
}

/* Excerpt styling */
.vexo-insight-card__excerpt {
    font-size: var(--vexo-text-base);
    line-height: 1.7;
    color: var(--vexo-text-muted);
    margin-bottom: var(--vexo-space-xl);
    flex-grow: 1;
    transition: color 0.3s ease;
}

.vexo-insight-card:hover .vexo-insight-card__excerpt {
    color: var(--vexo-text);
}

/* Link styling */
.vexo-insight-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--vexo-space-xs);
    font-size: var(--vexo-text-sm);
    font-weight: 600;
    color: var(--vexo-coral);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    margin-top: auto;
}

.vexo-insight-card__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vexo-coral), var(--vexo-amber));
    transition: width 0.3s ease;
}

.vexo-insight-card__link:hover {
    gap: 0.75rem;
    color: var(--vexo-amber);
}

.vexo-insight-card__link:hover::after {
    width: 100%;
}

.vexo-insight-card__link svg {
    transition: transform 0.3s ease;
}

.vexo-insight-card__link:hover svg {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vexo-insights__grid {
        grid-template-columns: 1fr;
        gap: var(--vexo-space-lg);
    }
    
    .vexo-insight-card {
        padding: var(--vexo-space-lg);
    }
    
    .vexo-insight-card__title {
        font-size: var(--vexo-text-lg);
    }
    
    .vexo-insight-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--vexo-space-sm);
    }
}

/* ============================================
   CONTACT SECTION - ENHANCED MODERN DESIGN
   ============================================ */

.vexo-contact {
    position: relative;
    background: linear-gradient(135deg, var(--vexo-onyx) 0%, var(--vexo-graphite) 100%);
    overflow: hidden;
}

/* Animated Background */
.vexo-contact__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.vexo-contact__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: vexo-float-contact 20s ease-in-out infinite;
}

.vexo-contact__orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--vexo-amber) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.vexo-contact__orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--vexo-mint) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 3s;
}

@keyframes vexo-float-contact {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.5; }
}

.vexo-contact__grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(212, 165, 116, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 165, 116, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Section Header */
.vexo-contact__header {
    text-align: center;
    margin-bottom: var(--vexo-space-3xl);
    position: relative;
    z-index: 2;
}

.vexo-contact__label {
    font-size: var(--vexo-text-sm);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vexo-mint);
    margin-bottom: var(--vexo-space-md);
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.vexo-contact__label::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--vexo-mint));
}

.vexo-contact__label::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--vexo-mint), transparent);
}

.vexo-contact__title {
    font-size: var(--vexo-text-4xl);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--vexo-space-lg);
}

.vexo-contact__title-main {
    display: block;
    color: var(--vexo-text);
}

.vexo-contact__title-accent {
    display: block;
    background: linear-gradient(135deg, var(--vexo-amber), var(--vexo-mint));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vexo-contact__subtitle {
    font-size: var(--vexo-text-lg);
    line-height: 1.7;
    color: var(--vexo-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Layout */
.vexo-contact__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--vexo-space-3xl);
    position: relative;
    z-index: 2;
}

/* Contact Information */
.vexo-contact__cards {
    display: grid;
    gap: var(--vexo-space-lg);
    margin-bottom: var(--vexo-space-2xl);
}

.vexo-contact__card {
    display: flex;
    align-items: flex-start;
    gap: var(--vexo-space-lg);
    padding: var(--vexo-space-xl);
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.8) 0%, rgba(15, 17, 20, 0.6) 100%);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vexo-contact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.vexo-contact__card:hover {
    transform: translateY(-8px);
    border-color: var(--vexo-amber);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 165, 116, 0.2);
}

.vexo-contact__card:hover::before {
    left: 100%;
}

.vexo-contact__card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(127, 212, 176, 0.1));
    border-radius: var(--vexo-border-radius-lg);
    color: var(--vexo-amber);
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.vexo-contact__card:hover .vexo-contact__card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(127, 212, 176, 0.2));
    border-color: var(--vexo-amber);
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.3);
}

.vexo-contact__card-content {
    flex: 1;
}

.vexo-contact__card-title {
    font-size: var(--vexo-text-base);
    font-weight: 600;
    color: var(--vexo-mint);
    margin-bottom: var(--vexo-space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vexo-contact__card-value {
    display: block;
    font-size: var(--vexo-text-lg);
    font-weight: 600;
    color: var(--vexo-text);
    margin-bottom: var(--vexo-space-xs);
    font-style: normal;
    transition: color var(--vexo-transition-fast);
}

.vexo-contact__card-value:hover {
    color: var(--vexo-amber);
}

.vexo-contact__card-desc {
    font-size: var(--vexo-text-sm);
    color: var(--vexo-text-muted);
    line-height: 1.5;
}

/* Social Section */
.vexo-contact__social-section {
    padding: var(--vexo-space-xl);
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.6) 0%, rgba(15, 17, 20, 0.4) 100%);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-xl);
}

.vexo-contact__social-title {
    font-size: var(--vexo-text-lg);
    font-weight: 600;
    color: var(--vexo-text);
    margin-bottom: var(--vexo-space-lg);
    text-align: center;
}

.vexo-contact__social-links {
    display: flex;
    justify-content: center;
    gap: var(--vexo-space-md);
    flex-wrap: wrap;
}

.vexo-contact__social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vexo-graphite);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-md);
    color: var(--vexo-text-muted);
    transition: all var(--vexo-transition-base);
    position: relative;
    overflow: hidden;
}

.vexo-contact__social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--vexo-amber);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.vexo-contact__social-link:hover {
    color: var(--vexo-onyx);
    border-color: var(--vexo-amber);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.vexo-contact__social-link:hover::before {
    width: 120%;
    height: 120%;
}

/* ============================================
   FORM STYLES - ENHANCED
   ============================================ */

.vexo-contact__form {
    background: linear-gradient(135deg, rgba(26, 29, 35, 0.9) 0%, rgba(15, 17, 20, 0.7) 100%);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-xl);
    padding: var(--vexo-space-2xl);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vexo-contact__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vexo-amber), var(--vexo-mint), var(--vexo-coral));
    background-size: 200% 100%;
    animation: vexo-gradient-shift 5s linear infinite;
}

.vexo-form__header {
    margin-bottom: var(--vexo-space-2xl);
    text-align: center;
}

.vexo-form__title {
    font-size: var(--vexo-text-2xl);
    font-weight: 700;
    color: var(--vexo-text);
    margin-bottom: var(--vexo-space-sm);
}

.vexo-form__subtitle {
    font-size: var(--vexo-text-sm);
    color: var(--vexo-text-muted);
    line-height: 1.6;
}

.vexo-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vexo-space-lg);
}

.vexo-form__group {
    margin-bottom: var(--vexo-space-lg);
}

.vexo-form__label {
    display: flex;
    align-items: center;
    gap: var(--vexo-space-xs);
    font-size: var(--vexo-text-sm);
    font-weight: 600;
    margin-bottom: var(--vexo-space-sm);
    color: var(--vexo-text);
    transition: color var(--vexo-transition-fast);
}

.vexo-form__label svg {
    width: 16px;
    height: 16px;
    color: var(--vexo-mint);
    transition: all var(--vexo-transition-fast);
}

.vexo-form__group:focus-within .vexo-form__label {
    color: var(--vexo-amber);
}

.vexo-form__group:focus-within .vexo-form__label svg {
    color: var(--vexo-amber);
    transform: scale(1.1);
}

.vexo-form__input,
.vexo-form__textarea,
.vexo-form__select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(26, 29, 35, 0.6);
    border: 2px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-md);
    color: var(--vexo-text);
    font-size: var(--vexo-text-base);
    font-family: inherit;
    transition: all var(--vexo-transition-base);
}

.vexo-form__input::placeholder,
.vexo-form__textarea::placeholder {
    color: var(--vexo-text-muted);
    opacity: 0.6;
}

.vexo-form__input:hover,
.vexo-form__textarea:hover,
.vexo-form__select:hover {
    border-color: rgba(212, 165, 116, 0.4);
    background: rgba(26, 29, 35, 0.8);
}

.vexo-form__input:focus,
.vexo-form__textarea:focus,
.vexo-form__select:focus {
    outline: none;
    border-color: var(--vexo-amber);
    background: rgba(26, 29, 35, 0.9);
    box-shadow: 
        0 0 0 4px rgba(212, 165, 116, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.vexo-form__textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.vexo-form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4A574' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.vexo-form__select:focus {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4A574' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.vexo-form__note {
    display: flex;
    align-items: flex-start;
    gap: var(--vexo-space-sm);
    margin-top: var(--vexo-space-lg);
    padding: var(--vexo-space-md);
    background: rgba(127, 212, 176, 0.05);
    border: 1px solid rgba(127, 212, 176, 0.2);
    border-radius: var(--vexo-border-radius-md);
    font-size: var(--vexo-text-xs);
    color: var(--vexo-text-muted);
    line-height: 1.6;
}

.vexo-form__note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--vexo-mint);
}

/* Responsive Form */
@media (max-width: 1024px) {
    .vexo-contact__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vexo-form__row {
        grid-template-columns: 1fr;
    }
    
    .vexo-contact__form {
        padding: var(--vexo-space-xl);
    }
    
    .vexo-contact__label::before,
    .vexo-contact__label::after {
        display: none;
    }
    
    .vexo-contact__cards {
        gap: var(--vexo-space-md);
    }
    
    .vexo-contact__card {
        padding: var(--vexo-space-lg);
    }
    
    .vexo-contact__card-icon {
        width: 50px;
        height: 50px;
    }
}

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

.vexo-footer {
    background: var(--vexo-onyx);
    border-top: 1px solid var(--vexo-border);
    padding: var(--vexo-space-2xl) 0 var(--vexo-space-xl);
}

.vexo-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--vexo-space-2xl);
    margin-bottom: var(--vexo-space-xl);
}

@media (max-width: 1024px) {
    .vexo-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .vexo-footer__grid {
        grid-template-columns: 1fr;
    }
}

.vexo-footer__brand svg {
    margin-bottom: var(--vexo-space-md);
    color: var(--vexo-amber);
}

.vexo-footer__tagline {
    font-size: var(--vexo-text-base);
    line-height: 1.6;
    color: var(--vexo-text-muted);
    margin-bottom: var(--vexo-space-lg);
    max-width: 400px;
}

.vexo-footer__legal {
    font-size: var(--vexo-text-sm);
    color: var(--vexo-text-muted);
}

.vexo-footer__nav-title {
    font-size: var(--vexo-text-base);
    font-weight: 600;
    margin-bottom: var(--vexo-space-md);
    color: var(--vexo-text);
}

.vexo-footer__nav-list {
    display: grid;
    gap: var(--vexo-space-sm);
}

.vexo-footer__nav-list a {
    font-size: var(--vexo-text-sm);
    color: var(--vexo-text-muted);
    transition: color var(--vexo-transition-fast);
}

.vexo-footer__nav-list a:hover {
    color: var(--vexo-amber);
}

.vexo-footer__nav-list a:focus-visible {
    outline: 2px solid var(--vexo-amber);
    outline-offset: 2px;
    border-radius: var(--vexo-border-radius-sm);
}

.vexo-social-links {
    display: flex;
    gap: var(--vexo-space-md);
    margin-top: var(--vexo-space-md);
}

.vexo-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vexo-graphite);
    border: 1px solid var(--vexo-border);
    border-radius: var(--vexo-border-radius-md);
    color: var(--vexo-text-muted);
    transition: all var(--vexo-transition-fast);
}

.vexo-social-link:hover {
    background: var(--vexo-amber);
    color: var(--vexo-onyx);
    border-color: var(--vexo-amber);
    transform: translateY(-2px);
}

.vexo-social-link:focus-visible {
    outline: 2px solid var(--vexo-amber);
    outline-offset: 4px;
}

/* ============================================
   RESPONSIVE NAVIGATION & MOBILE MENU
   ============================================ */

@media (max-width: 767px) {
    /* Show burger menu button on mobile */
    .vexo-mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide navigation by default on mobile */
    .vexo-header__nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--vexo-onyx);
        border-right: 1px solid var(--vexo-border);
        padding: 6rem 2rem 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 100;
        box-shadow: var(--vexo-shadow-lg);
    }
    
    /* Show navigation when menu is open */
    .vexo-header__nav.vexo-nav-open {
        left: 0;
    }
    
    /* Vertical menu layout */
    .vexo-nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .vexo-nav-list li {
        width: 100%;
    }
    
    .vexo-nav-list a {
        display: block;
        padding: 1rem 1.25rem;
        font-size: var(--vexo-text-lg);
        border-bottom: 1px solid var(--vexo-border);
        transition: all var(--vexo-transition-base);
        position: relative;
        /* Touch-friendly size: minimum 44x44px */
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .vexo-nav-list a::after {
        display: none;
    }
    
    .vexo-nav-list a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, var(--vexo-amber), var(--vexo-mint));
        transition: height 0.3s ease;
    }
    
    .vexo-nav-list a:hover {
        background: rgba(212, 165, 116, 0.1);
        padding-left: 1.75rem;
    }
    
    .vexo-nav-list a:hover::before {
        height: 100%;
    }
    
    .vexo-nav-cta {
        margin-top: 1rem;
        padding: 1rem 1.25rem;
        text-align: center;
        border-radius: var(--vexo-border-radius-md);
        border-bottom: none;
        /* Touch-friendly size */
        min-height: 52px;
    }
    
    .vexo-nav-cta:hover {
        padding-left: 1.25rem;
    }
    
    /* Overlay when menu is open */
    body.vexo-menu-overlay::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 17, 20, 0.8);
        z-index: 99;
        animation: vexo-overlay-fade-in 0.3s ease forwards;
    }
    
    @keyframes vexo-overlay-fade-in {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Prevent body scroll when menu is open */
    body.vexo-menu-overlay {
        overflow: hidden;
    }
    
    .vexo-hero__actions {
        flex-direction: column;
    }
    
    .vexo-btn {
        width: 100%;
    }
}

@media (min-width: 768px) {
    /* Hide burger menu on desktop */
    .vexo-mobile-menu-toggle {
        display: none !important;
    }
}

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

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

@media (prefers-reduced-motion: reduce) {
    .vexo-service-card,
    .vexo-timeline__item,
    .vexo-testimonial,
    .vexo-impact__card,
    .vexo-insight-card {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Focus visible polyfill behavior */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--vexo-amber);
    outline-offset: 2px;
}
