/*
  AiRithms - Elite VC-Inspired Design System v2.0
  Based on analysis of Sequoia, a16z, BITKRAFT, and other top-tier firms
*/

/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: auto;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Dark Professional Palette */
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --primary-light: #33ddff;
    --secondary: #8b5cf6;
    --accent: #ff0080;
    
    /* Dark Theme Colors */
    --white: #ffffff;
    --gray-50: #1a1a1a;
    --gray-100: #262626;
    --gray-200: #333333;
    --gray-300: #404040;
    --gray-400: #666666;
    --gray-500: #808080;
    --gray-600: #999999;
    --gray-700: #b3b3b3;
    --gray-800: #cccccc;
    --gray-900: #e6e6e6;
    --black: #000000;
    
    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: var(--accent);
    
    /* Background Colors - Dark Theme */
    --bg-primary: var(--black);
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    --bg-dark: var(--black);
    --bg-gradient: linear-gradient(135deg, var(--black) 0%, var(--gray-50) 100%);
    
    /* Text Colors - Dark Theme */
    --text-primary: var(--white);
    --text-secondary: var(--gray-700);
    --text-dark-secondary: #666666;
    --text-tertiary: var(--gray-600);
    --text-inverse: var(--black);
    
    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */
    --text-7xl: 4.5rem;     /* 72px */
    
    /* Spacing */
    --space-0: 0;
    --space-1: 0.25rem;     /* 4px */
    --space-2: 0.5rem;      /* 8px */
    --space-3: 0.75rem;     /* 12px */
    --space-4: 1rem;        /* 16px */
    --space-5: 1.25rem;     /* 20px */
    --space-6: 1.5rem;      /* 24px */
    --space-8: 2rem;        /* 32px */
    --space-10: 2.5rem;     /* 40px */
    --space-12: 3rem;       /* 48px */
    --space-16: 4rem;       /* 64px */
    --space-20: 5rem;       /* 80px */
    --space-24: 6rem;       /* 96px */
    --space-32: 8rem;       /* 128px */
    --navbar-height: 80px;  /* Navbar height */
    
    /* Radius */
    --radius-sm: 0.375rem;  /* 6px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-2xl: 1.5rem;   /* 24px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Animations */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Layout */
    --container-max-width: 1280px;
    --section-padding: var(--space-20);
    --navbar-height: 80px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

/* Loading Background Effects */
.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Loading specific effect modifications - More dynamic */
.loading-matrix {
    opacity: 0.9;
}

.loading-grid {
    opacity: 0.7;
    animation: gridPulse 4s ease-in-out infinite;
}

.loading-particles {
    opacity: 1;
}

.loading-particles .particle {
    box-shadow: 0 0 15px var(--primary);
}

.loading-particles .particle[data-speed="slow"] {
    animation: particleFloat 6s linear infinite;
}

.loading-particles .particle[data-speed="medium"] {
    animation: particleFloat 4s linear infinite;
}

.loading-particles .particle[data-speed="fast"] {
    animation: particleFloat 3s linear infinite;
}

.loading-orbs {
    opacity: 0.6;
}

.loading-orbs .orb {
    animation: orbFloat 8s ease-in-out infinite;
    filter: blur(100px);
}

.loading-neural {
    opacity: 0.8;
}

/* Loading neural lines removed */

.loading-neural .neural-pulse {
    animation: pulseMove 3s linear infinite;
    width: 25px;
    height: 25px;
    box-shadow: 0 0 20px var(--primary);
}

.loading-scanlines {
    opacity: 0.6;
    animation: scanlineMove 1s linear infinite;
}

/* Loading screen pulse animation for logo */
.loading-logo-img {
    animation: loadingLogoPulse 2s ease-in-out infinite;
}

@keyframes loadingLogoPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    position: relative;
    z-index: 2;
}

.loading-logo {
    margin-bottom: var(--space-8);
}

.loading-logo-img {
    height: 60px;
    width: auto;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-progress {
    width: 100%;
    height: 2px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-4);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    animation: progressFill 2s ease-out forwards;
}

.loading-text {
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 500;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== OUR MODEL SECTION ===== */
.our-model-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
    position: relative;
}

.our-model-content-full {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.our-model-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.our-model-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.our-model-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.our-model-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.our-model-quote-container {
    margin: var(--space-12) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.our-model-quote {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin: 0;
    padding: var(--space-8);
    border-left: 4px solid var(--primary);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 12px 12px 0;
}

.quote-attribution {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    justify-content: center;
}

.attribution-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.attribution-text {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-principle-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-16);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.model-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all 0.3s var(--ease-out-cubic);
    position: relative;
    overflow: hidden;
}

.model-step:hover {
    border-color: rgba(0, 162, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 162, 255, 0.1);
}

.model-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.model-step-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-step-description {
    font-size: var(--text-base);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.model-step-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.05), rgba(88, 28, 135, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-step:hover .model-step-background {
    opacity: 1;
}





/* ===== MISSION SECTION ===== */
.mission-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
    position: relative;
}

.mission-content-full {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.mission-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.mission-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-8);
    color: var(--white);
}

.mission-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-quote-container {
    margin: var(--space-12) 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-quote {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    margin: 0;
    padding: var(--space-8);
    border-left: 4px solid var(--primary);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 12px 12px 0;
}

.quote-attribution {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    justify-content: center;
}

.attribution-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.attribution-text {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.core-principle-framework {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-16);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.principle-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all 0.3s var(--ease-out-cubic);
    position: relative;
    overflow: hidden;
}

.principle-step:hover {
    border-color: rgba(0, 162, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 162, 255, 0.1);
}

.principle-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.principle-step-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.principle-step-description {
    font-size: var(--text-base);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.step-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 162, 255, 0.05), rgba(88, 28, 135, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.principle-step:hover .step-background {
    opacity: 1;
}

/* ===== CORE PRINCIPLES SECTION ===== */
.core-principles-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.principles-header {
    text-align: center;
    margin-bottom: var(--space-20);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.principles-label {
    font-size: var(--text-base);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-6);
    display: inline-block;
    position: relative;
    background: rgba(0, 212, 255, 0.1);
    padding: var(--space-3) var(--space-6);
    border-radius: 50px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

.principles-label::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.principles-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: var(--space-8) auto 0;
    text-align: center;
    max-width: 800px;
    font-weight: 400;
}

.principles-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 var(--space-6) 0;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 212, 255, 0.2);
    letter-spacing: -0.02em;
}

.principles-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.principle-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease-out-cubic);
    backdrop-filter: blur(10px);
}

.principle-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-alpha-30);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--primary-alpha-20);
}

.principle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-cubic);
}

.principle-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.principle-content {
    flex: 1;
    margin-right: var(--space-4);
}

.principle-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.3;
}

.principle-short {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.principle-toggle {
    background: none;
    border: 2px solid var(--primary-alpha-30);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-cubic);
    flex-shrink: 0;
}

.principle-toggle:hover {
    border-color: var(--primary);
    background: var(--primary-alpha-10);
    transform: scale(1.05);
}

.principle-toggle.active {
    border-color: var(--primary);
    background: var(--primary);
    transform: rotate(45deg);
}

.toggle-icon {
    font-size: var(--text-lg);
    font-weight: 300;
    color: var(--primary);
    transition: all 0.3s var(--ease-out-cubic);
}

.principle-toggle.active .toggle-icon {
    color: var(--black);
    transform: rotate(0deg);
}

.principle-detail {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-cubic);
    background: rgba(0, 0, 0, 0.2);
}

.principle-detail.active {
    max-height: 200px;
    padding: var(--space-6);
}

.principle-detail p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-base);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-principles-section {
        padding: var(--space-20) 0;
    }
    
    .principles-header {
        margin-bottom: var(--space-16);
        max-width: none;
        padding: 0 var(--space-5);
    }
    
    .principles-label {
        font-size: var(--text-sm);
        padding: var(--space-2) var(--space-4);
        letter-spacing: 2px;
        margin-bottom: var(--space-4);
    }
    
    .principles-label::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }
    
    .principles-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin: 0 0 var(--space-4) 0;
        text-shadow: 0 2px 15px rgba(0, 212, 255, 0.15);
    }
    
    .principles-description {
        font-size: var(--text-base);
        line-height: 1.7;
        text-align: left;
        max-width: none;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        max-width: none;
    }
    
    .principle-item {
        margin: 0 var(--space-5);
    }
    
    .principle-header {
        padding: var(--space-5);
    }
    
    .principle-title {
        font-size: var(--text-lg);
    }
    
    .principle-short {
        font-size: var(--text-sm);
    }
    
    .principle-toggle {
        width: 36px;
        height: 36px;
    }
    
    .toggle-icon {
        font-size: var(--text-base);
    }
    
    .principle-detail.active {
        padding: var(--space-5);
    }
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.1) 10%, 
        rgba(0, 212, 255, 0.3) 50%, 
        rgba(0, 212, 255, 0.1) 90%, 
        transparent 100%);
    margin: var(--space-2) 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.section-divider.alt {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 10%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 90%, 
        transparent 100%);
}

.section-divider.alt::before {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* ===== NAVIGATION COMPACT ===== */
.navbar-compact {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar-compact.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container-compact {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.nav-brand-compact {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-link-compact {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.brand-link-compact:hover {
    transform: scale(1.02);
}

.brand-logo-prominent {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    transition: all var(--transition-fast);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.brand-logo-prominent:hover {
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
}

.brand-info-compact {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-name-nav {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-tagline-nav {
    font-size: var(--text-xs);
    color: var(--primary);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.5px;
}

.nav-menu-compact {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list-compact {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-compact {
    position: relative;
}

.nav-link-compact {
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-link-compact:hover {
    color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

/* LinkedIn Navigation Link */
.nav-link-compact[href*="linkedin"] {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.1) 0%, rgba(0, 119, 181, 0.05) 100%);
    border: 1px solid rgba(0, 119, 181, 0.2);
    color: #0077B5;
    font-weight: 600;
}

.nav-link-compact[href*="linkedin"]:hover {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.2) 0%, rgba(0, 119, 181, 0.1) 100%);
    border-color: rgba(0, 119, 181, 0.4);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.2);
}

.nav-link-compact[href*="linkedin"] i {
    font-size: var(--text-base);
    color: #0077B5;
    transition: color var(--transition-fast);
}

.nav-link-compact[href*="linkedin"]:hover i {
    color: #ffffff;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: var(--space-2);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all var(--transition-fast);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.dropdown-section h6 {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 var(--space-1) 0;
    padding-bottom: var(--space-1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.dropdown-section a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.dropdown-section a:hover {
    color: var(--white);
    background: rgba(0, 212, 255, 0.1);
    padding-left: var(--space-3);
}

.nav-actions-compact {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
}

.contact-btn {
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.8));
    border: none;
    border-radius: var(--radius-lg);
    color: var(--black);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.mobile-toggle-compact {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-toggle-compact:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.mobile-toggle-compact .hamburger-line {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    margin: 3px 0;
}

.mobile-toggle-compact:hover .hamburger-line {
    background: var(--primary);
}

.mobile-toggle-compact.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle-compact.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle-compact.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-menu-compact {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-6) var(--space-4);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.mobile-menu-compact.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: var(--space-1);
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-2);
    font-size: var(--text-base);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
    padding-left: var(--space-4);
}

/* Mobile LinkedIn Link */
.mobile-linkedin-link {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.15) 0%, rgba(0, 119, 181, 0.08) 100%);
    border: 1px solid rgba(0, 119, 181, 0.3);
    color: #0077B5;
    font-weight: 600;
    margin: var(--space-2) 0;
    border-radius: var(--radius-lg);
}

.mobile-linkedin-link:hover {
    background: linear-gradient(135deg, rgba(0, 119, 181, 0.25) 0%, rgba(0, 119, 181, 0.15) 100%);
    border-color: rgba(0, 119, 181, 0.5);
    color: #ffffff;
    padding-left: var(--space-4);
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.mobile-linkedin-link i {
    color: #0077B5;
    font-size: var(--text-lg);
    margin-right: var(--space-2);
    transition: color var(--transition-fast);
}

.mobile-linkedin-link:hover i {
    color: #ffffff;
}

.mobile-dropdown-section {
    margin-top: var(--space-2);
    padding-left: var(--space-4);
    border-left: 2px solid rgba(0, 212, 255, 0.2);
}

.mobile-dropdown-header {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.mobile-dropdown-link {
    display: block;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    margin-bottom: var(--space-1);
}

.mobile-dropdown-link:hover {
    color: var(--white);
    background: rgba(0, 212, 255, 0.1);
    padding-left: var(--space-4);
}


/* Navigation Compact Responsive Design */
@media (max-width: 968px) {
    .nav-menu-compact {
        display: none;
    }
    
    .mobile-toggle-compact {
        display: flex;
    }
    
    .nav-container-compact {
        padding: 0 var(--space-4);
    }
    
    .brand-logo-prominent {
        width: 40px;
        height: 40px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .brand-name-nav {
        font-size: var(--text-lg);
    }
    
    /* LinkedIn Mobile Styles */
    .nav-link-compact[href*="linkedin"] {
        background: linear-gradient(135deg, rgba(0, 119, 181, 0.15) 0%, rgba(0, 119, 181, 0.08) 100%);
        border: 1px solid rgba(0, 119, 181, 0.3);
        margin: var(--space-1) 0;
        padding: var(--space-3) var(--space-4);
        border-radius: var(--radius-lg);
    }
    
    .nav-link-compact[href*="linkedin"]:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 119, 181, 0.15);
    }
    
}

@media (max-width: 1024px) {
    .navbar-compact {
        height: 60px;
    }
    
    .mobile-menu-compact {
        top: 60px;
    }
    
    .nav-container-compact {
        gap: var(--space-4);
    }
    
    .brand-info-compact {
        display: flex;
    }
    
    .brand-name-nav {
        font-size: var(--text-base);
    }
    
    .brand-tagline-nav {
        font-size: 10px;
    }
    
    .brand-logo-prominent {
        width: 35px;
        height: 35px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .nav-container-compact {
        padding: 0 var(--space-3);
    }
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.brand-link:hover {
    transform: translateY(-1px);
}

.brand-logo {
    height: 50px;
    width: auto;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-tagline {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
    padding: var(--space-2) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Enhanced Cyberpunk Grid */
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(45deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px, 40px 40px;
    opacity: 0.6;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    opacity: 0.7;
}

.particle[data-speed="slow"] {
    animation: particleFloat 12s linear infinite;
}

.particle[data-speed="medium"] {
    animation: particleFloat 8s linear infinite;
}

.particle[data-speed="fast"] {
    animation: particleFloat 6s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 45%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 65%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 80%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 95%;
    animation-delay: 5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
        transform: scale(1);
    }
    90% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Enhanced Gradient Orbs */
.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(0, 150, 255, 0.2) 50%, transparent 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 150, 0.3) 0%, rgba(150, 0, 255, 0.15) 50%, transparent 100%);
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 150, 0.25) 0%, rgba(0, 200, 255, 0.1) 50%, transparent 100%);
    bottom: 15%;
    left: 50%;
    animation-delay: 6s;
}

.orb-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.2) 0%, rgba(255, 100, 0, 0.1) 50%, transparent 100%);
    top: 30%;
    right: 40%;
    animation-delay: 9s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translate(20px, -30px) scale(1.1) rotate(90deg);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-15px, -20px) scale(0.9) rotate(180deg);
        opacity: 0.7;
    }
    75% { 
        transform: translate(-25px, 25px) scale(1.05) rotate(270deg);
        opacity: 0.4;
    }
}

/* Neural Background Lines */
.neural-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Neural lines removed - only pulses remain */

.neural-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseMove 6s linear infinite;
}

.pulse-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.pulse-2 {
    top: 75%;
    right: 15%;
    animation-delay: 3s;
}

/* neuralPulse animation removed with neural lines */

@keyframes pulseMove {
    0% { 
        transform: translateX(-50px) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: scale(1);
    }
    90% { 
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        transform: translateX(calc(100vw + 50px)) scale(0);
        opacity: 0;
    }
}

/* Scanlines Effect */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%, 
        rgba(0, 212, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    animation: scanlineMove 2s linear infinite;
    pointer-events: none;
}

@keyframes scanlineMove {
    0% { 
        transform: translateY(0);
    }
    100% { 
        transform: translateY(4px);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--space-12) var(--space-6);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-6);
    align-items: center;
    min-height: 100vh;
}

/* Hero Layout - Center Section: Main Content */
.hero-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 var(--space-4);
    flex: 1;
}

/* Right Section: Neural Network */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

/* Hero content now distributed across sections */

.title-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
    justify-content: center;
}


.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-tertiary);
    z-index: 2;
}

.scroll-text {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== SECTION STYLES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--gray-100);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

.mission-content-full {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Mission Main Content */
.mission-main {
    max-width: 100%;
}

.mission-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.mission-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.mission-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-8);
    color: var(--white);
}

.mission-highlight {
    color: var(--primary);
    position: relative;
}

.mission-quote-container {
    margin-top: var(--space-10);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-quote {
    font-size: var(--text-2xl);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    padding: var(--space-8) var(--space-12);
    border: none;
    position: relative;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.mission-quote::before {
    content: '"';
    font-size: var(--text-6xl);
    color: var(--primary);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.attribution-line {
    width: 60px;
    height: 1px;
    background: var(--primary);
}

.attribution-text {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CORE PRINCIPLE FRAMEWORK ===== */
.core-principle-framework {
    margin-top: var(--space-12);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.principle-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all 0.3s var(--ease-out-cubic);
    position: relative;
    overflow: hidden;
}

.principle-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 212, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--background);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s var(--ease-out-cubic);
    margin-bottom: var(--space-4);
}

.principle-step .step-background {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(147, 51, 234, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-cubic);
    z-index: 1;
}

.principle-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.principle-step:hover .step-background {
    opacity: 1;
}

.principle-step:hover .principle-step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.4);
}

.principle-step-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.principle-step-description {
    font-size: var(--text-base);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Mission Details */
.mission-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
    padding-top: var(--space-8);
}

.detail-item {
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(8px);
}

.detail-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
    position: relative;
}

.detail-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.detail-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mission Responsive Design */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
    }
    
    .mission-title {
        font-size: var(--text-4xl);
    }
    
    .mission-quote {
        font-size: var(--text-xl);
        padding-left: var(--space-4);
    }
    
    .mission-quote::before {
        font-size: var(--text-4xl);
        top: -15px;
        left: -8px;
    }
    
    .mission-details {
        padding-top: var(--space-4);
        gap: var(--space-6);
    }
    
    .detail-item:hover {
        transform: translateY(-4px) translateX(0);
    }
    
    /* Core Principle Framework Mobile */
    .core-principle-framework {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        margin-top: var(--space-8);
        padding: 0 var(--space-4);
    }
    
    .principle-step {
        padding: var(--space-4);
    }
    
    .principle-step:hover {
        transform: none;
        box-shadow: 0 4px 16px rgba(0, 212, 255, 0.08);
    }
    
    .principle-step-number {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
        margin-bottom: var(--space-3);
    }
    
    .principle-step-title {
        font-size: var(--text-base);
    }
    
    .principle-step-description {
        font-size: var(--text-sm);
        line-height: 1.6;
    }
}

.statement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-xl);
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
}

.mission-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.statement-text {
    flex: 1;
}

.statement-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.mission-quote {
    font-size: var(--text-2xl);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    padding-left: var(--space-6);
    border-left: 3px solid var(--primary);
}


/* ===== SERVICES SECTION (WHAT WE DO) ===== */
.services-section {
    padding: var(--space-24) 0;
    background: var(--white);
    color: var(--black);
}

.services-content {
    max-width: 100%;
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.services-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.services-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.services-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: #000000;
}

.services-highlight {
    color: var(--primary);
    position: relative;
}

.services-subtitle {
    font-size: var(--text-xl);
    color: #2a2a2a;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
}

/* Services Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.service-item {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-8);
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-item:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--primary);
    opacity: 0.8;
    line-height: 1;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    position: relative;
}

.service-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.service-content {
    flex: 1;
}

.service-title-new {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.service-description-new {
    font-size: var(--text-base);
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: var(--space-6);
    font-weight: 400;
}

.service-features-new {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.service-features-new li {
    font-size: var(--text-sm);
    color: #6a6a6a;
    position: relative;
    padding-left: var(--space-4);
    font-weight: 500;
}

.service-features-new li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: var(--text-base);
}

/* Services Responsive Design */
@media (max-width: 1024px) {
    .services-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-number {
        align-self: center;
    }
}

@media (max-width: 1024px) {
    .services-title {
        font-size: var(--text-4xl);
    }
    
    .services-subtitle {
        font-size: var(--text-lg);
    }
    
    .service-item {
        padding: var(--space-6);
    }
    
    .service-item:hover {
        transform: translateY(-4px);
    }
}


/* ===== VISION SECTION ===== */
.vision-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Vision Main Content */
.vision-main {
    padding-right: var(--space-6);
}

.vision-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.vision-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.vision-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.vision-highlight {
    color: var(--primary);
    position: relative;
}

.vision-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

.vision-opportunity {
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
    text-align: center;
}

.opportunity-text {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.5;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* Vision Content */
.vision-content-new {
    padding-left: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.vision-quote-container {
    order: 1;
}

.vision-quote {
    font-size: var(--text-xl);
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    margin: 0;
    padding: var(--space-6);
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: relative;
}

.vision-quote::before {
    content: '"';
    position: absolute;
    top: var(--space-2);
    left: var(--space-4);
    font-size: var(--text-3xl);
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
    opacity: 0.7;
}

.quote-attribution {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding-left: var(--space-6);
    justify-content: flex-start;
}

.attribution-line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    opacity: 0.6;
}

.attribution-text {
    font-size: var(--text-xs);
    color: rgba(0, 212, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.vision-description {
    order: 2;
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-description p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.vision-conclusion-new {
    order: 3;
    padding: var(--space-6);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
}

.vision-conclusion-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.conclusion-text-new {
    font-size: var(--text-lg);
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
    font-style: italic;
}

/* Vision Responsive Design */
@media (max-width: 1024px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        align-items: stretch;
    }
    
    .vision-main {
        padding-right: 0;
        text-align: center;
        order: 1;
    }
    
    .vision-content-new {
        padding-left: 0;
        order: 2;
        gap: var(--space-6);
    }
    
    .vision-title {
        font-size: var(--text-3xl);
    }
    
    .vision-subtitle {
        font-size: var(--text-lg);
    }
    
    .opportunity-text {
        font-size: var(--text-lg);
        max-width: none;
        padding: 0 var(--space-4);
    }
    
    .vision-quote {
        font-size: var(--text-lg);
        padding: var(--space-4);
    }
    
    .vision-quote::before {
        font-size: var(--text-2xl);
        top: var(--space-1);
        left: var(--space-2);
    }
    
    .quote-attribution {
        padding-left: var(--space-4);
        margin-top: var(--space-3);
    }
    
    .vision-description {
        padding: var(--space-4);
    }
    
    .vision-conclusion-new {
        padding: var(--space-4);
    }
    
    .conclusion-text-new {
        font-size: var(--text-base);
    }
}


/* ===== ABOUT AIRITHMS SECTION ===== */
.about-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-20);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* About Main Content */
.about-main {
    padding-right: var(--space-8);
}

.about-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.about-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--primary);
}

.about-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-8);
    color: var(--white);
}

.about-highlight {
    color: var(--primary);
    position: relative;
}

.about-intro-new {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.intro-text-new {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.core-statement-new {
    padding: var(--space-6);
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.core-statement-new p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.highlight-text-new {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

/* About Content */
.about-content-new {
    padding-left: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.future-vision-new {
    order: 1;
}

.vision-title-new {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-8);
    line-height: 1.3;
}

.vision-items-new {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.vision-item-new {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.vision-item-new:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(8px);
}

.vision-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.7));
    color: var(--black);
    font-weight: 800;
    font-size: var(--text-sm);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.vision-content-item {
    flex: 1;
}

.vision-heading {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.vision-content-item p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.conclusion-statement-new {
    order: 2;
}

.conclusion-card-new {
    padding: var(--space-8);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
}

.conclusion-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.conclusion-title-new {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.conclusion-text-new {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.infinite-text-new {
    color: var(--primary);
    font-weight: 700;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* About Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        align-items: stretch;
    }
    
    .about-main {
        padding-right: 0;
        order: 1;
    }
    
    .about-content-new {
        padding-left: 0;
        order: 2;
        gap: var(--space-8);
    }
    
    .about-title {
        font-size: var(--text-4xl);
        text-align: center;
    }
    
    .about-label {
        text-align: center;
        display: block;
    }
    
    .about-label::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .intro-text-new {
        font-size: var(--text-lg);
        text-align: center;
    }
    
    .core-statement-new {
        padding: var(--space-4);
    }
    
    .vision-title-new {
        font-size: var(--text-xl);
        text-align: center;
    }
    
    .vision-item-new {
        padding: var(--space-4);
        flex-direction: column;
        text-align: center;
        gap: var(--space-3);
    }
    
    .vision-item-new:hover {
        transform: translateY(-4px) translateX(0);
    }
    
    .vision-marker {
        align-self: center;
    }
    
    .conclusion-card-new {
        padding: var(--space-6);
    }
    
    .conclusion-title-new {
        font-size: var(--text-lg);
    }
    
    .conclusion-text-new {
        font-size: var(--text-base);
    }
}

.about-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, var(--primary) 1px, transparent 1px),
                radial-gradient(circle at 80% 60%, var(--secondary) 1px, transparent 1px),
                radial-gradient(circle at 40% 80%, var(--accent) 1px, transparent 1px),
                radial-gradient(circle at 60% 20%, var(--primary) 0.5px, transparent 0.5px);
    background-size: 120px 120px, 80px 80px, 150px 150px, 60px 60px;
    opacity: 0.3;
    animation: aboutParticles 30s ease-in-out infinite;
}

.about-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.05) 30%, transparent 60%),
        linear-gradient(45deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
    animation: waveShift 20s ease-in-out infinite;
}

.about-content {
    position: relative;
    z-index: 2;
    margin-top: var(--space-16);
}

.about-intro {
    text-align: center;
    margin-bottom: var(--space-16);
}

.intro-text {
    font-size: var(--text-3xl);
    line-height: 1.4;
    color: var(--white);
    margin-bottom: var(--space-8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.core-statement {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.1), var(--shadow-2xl);
    position: relative;
    overflow: hidden;
}

.core-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.core-statement p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 2;
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.3;
}

.future-vision {
    margin: var(--space-16) 0;
}

.vision-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-12);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.vision-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.vision-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.vision-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent, rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.vision-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2), 0 5px 15px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.vision-item:hover::before {
    transform: scaleX(1);
}

.vision-item:hover::after {
    opacity: 1;
}

.vision-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: var(--text-xl);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.vision-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: var(--text-base);
}

.vision-text strong {
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.conclusion-statement {
    text-align: center;
    margin-top: var(--space-16);
}

.conclusion-card {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-200);
}

.conclusion-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.conclusion-text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0;
}

.infinite-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: var(--text-xl);
    animation: infiniteGlow 3s ease-in-out infinite;
}

/* ===== BREAKTHROUGH OFFERINGS SECTION ===== */
.offerings-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

/* Offerings Header */
.offerings-header {
    text-align: center;
    margin-bottom: var(--space-20);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offerings-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.offerings-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--primary);
}

.offerings-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--white);
}

.offerings-highlight {
    color: var(--primary);
    position: relative;
}

/* Offerings Grid */
.offerings-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
}

.offering-item-new {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.offering-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(0, 212, 255, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.offering-item-new:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offering-item-new:hover::before {
    transform: scaleX(1);
}

.offering-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.7));
    color: var(--black);
    font-weight: 900;
    font-size: var(--text-xl);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    position: relative;
}

.offering-number::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
}

.offering-content-new {
    flex: 1;
}

.offering-title-new {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.offering-description-new {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.offering-features-new {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.feature-tag-new {
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.feature-tag-new:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Offerings Responsive Design */
@media (max-width: 1024px) {
    .offerings-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .offerings-title {
        font-size: var(--text-4xl);
    }
    
    .offering-item-new {
        flex-direction: column;
        text-align: center;
        padding: var(--space-6);
        gap: var(--space-4);
    }
    
    .offering-item-new:hover {
        transform: translateY(-4px);
    }
    
    .offering-number {
        align-self: center;
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .offering-number::after {
        bottom: -10px;
        width: 30px;
    }
    
    .offering-title-new {
        font-size: var(--text-xl);
    }
    
    .offering-description-new {
        font-size: var(--text-sm);
    }
    
    .feature-tag-new {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-3);
    }
}

.offerings-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.offerings-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--primary) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--secondary) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, var(--accent) 0.5px, transparent 0.5px),
        linear-gradient(0deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(139, 92, 246, 0.05) 75%, rgba(139, 92, 246, 0.05) 76%, transparent 77%, transparent);
    background-size: 80px 80px, 120px 120px, 60px 60px, 40px 40px;
    animation: techGrid 20s linear infinite;
    opacity: 0.4;
}

.offerings-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 0, 128, 0.08) 0%, transparent 50%);
    animation: glowShift 12s ease-in-out infinite;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    margin-top: var(--space-16);
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.offering-card {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    overflow: hidden;
    cursor: pointer;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.offering-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.offering-card:hover::before {
    opacity: 1;
}

.offering-card:hover::after {
    transform: scaleX(1);
}

.offering-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 0, 0, 0.9);
}

.offering-header {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 2;
}

.offering-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: var(--text-2xl);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: all var(--transition-base);
    position: relative;
}

.offering-card[data-category="gaming"] .offering-icon {
    background: linear-gradient(135deg, var(--primary), #00a2cc);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.offering-card[data-category="film"] .offering-icon {
    background: linear-gradient(135deg, var(--secondary), #6d28d9);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.offering-card[data-category="music"] .offering-icon {
    background: linear-gradient(135deg, var(--accent), #c21c77);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
}

.offering-card[data-category="advertising"] .offering-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.offering-card:hover .offering-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
}

.offering-card[data-category="film"]:hover .offering-icon {
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.4);
}

.offering-card[data-category="music"]:hover .offering-icon {
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.4);
}

.offering-card[data-category="advertising"]:hover .offering-icon {
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.4);
}

.offering-title {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.offering-content {
    position: relative;
    z-index: 2;
}

.offering-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    font-size: var(--text-lg);
    font-weight: 400;
}

.offering-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.offering-card[data-category="gaming"]:hover .feature-tag {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.offering-card[data-category="film"]:hover .feature-tag {
    background: rgba(139, 92, 246, 0.2);
    color: var(--secondary);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.offering-card[data-category="music"]:hover .feature-tag {
    background: rgba(255, 0, 128, 0.2);
    color: var(--accent);
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.2);
}

.offering-card[data-category="advertising"]:hover .feature-tag {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

.offering-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.offering-card:hover .offering-glow-effect {
    opacity: 1;
}

/* ===== FOR CLIENTS SECTION ===== */
.for-clients-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

/* Clients Header */
.clients-header {
    text-align: center;
    margin-bottom: var(--space-20);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clients-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.clients-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 2px;
    background: var(--primary);
}

.clients-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    color: var(--white);
}

.clients-highlight {
    color: var(--primary);
    position: relative;
}

/* Clients Grid */
.clients-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    max-width: 1000px;
    margin: 0 auto;
}

.client-item-new {
    display: flex;
    gap: var(--space-8);
    padding: var(--space-10);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.client-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(0, 212, 255, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.client-item-new:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.client-item-new:hover::before {
    transform: scaleX(1);
}

.client-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.7));
    color: var(--black);
    font-weight: 900;
    font-size: var(--text-3xl);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
    position: relative;
}

.client-number::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    opacity: 0.5;
}

.client-content-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.client-header-new {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-4);
}

.client-title-new {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
    line-height: 1.2;
}

.client-subtitle-new {
    font-size: var(--text-lg);
    color: var(--primary);
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.client-intro-new p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.client-features-new {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.feature-point-new {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.feature-point-new:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(8px);
}

.feature-marker {
    color: var(--primary);
    font-weight: bold;
    font-size: var(--text-lg);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.feature-point-new p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.client-outcome-new {
    padding: var(--space-6);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
}

.outcome-title-new {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.outcome-text-new {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Process Steps */
.collaboration-process-new {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.process-step-new {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.process-step-new:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(6px);
}

.step-number-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.7));
    color: var(--black);
    font-weight: 800;
    font-size: var(--text-sm);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.step-content-new {
    flex: 1;
}

.step-title-new {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.step-content-new p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* CTA */
.client-cta-new {
    padding: var(--space-6);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.client-cta-new p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.cta-button-new {
    padding: var(--space-3) var(--space-6);
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.8));
    border: none;
    border-radius: var(--radius-lg);
    color: var(--black);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-button-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Creator Capabilities */
.creator-capabilities-new {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.capabilities-title-new {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-6);
    line-height: 1.3;
    text-align: center;
    position: relative;
}

.capabilities-title-new::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.capability-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

.capability-item-new {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6) var(--space-8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: all 0.3s var(--ease-out-cubic);
    position: relative;
    overflow: hidden;
}

.capability-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(147, 51, 234, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-cubic);
    z-index: 1;
}

.capability-item-new:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.capability-item-new:hover::before {
    opacity: 1;
}

.capability-marker {
    color: var(--primary);
    font-weight: 800;
    font-size: var(--text-2xl);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 4px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.capability-item-new p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Clients Responsive Design */
@media (max-width: 1024px) {
    .clients-title {
        font-size: var(--text-4xl);
    }
    
    .client-item-new {
        flex-direction: column;
        text-align: center;
        padding: var(--space-8);
        gap: var(--space-6);
    }
    
    .client-item-new:hover {
        transform: translateY(-4px);
    }
    
    .client-number {
        align-self: center;
        width: 60px;
        height: 60px;
        font-size: var(--text-2xl);
    }
    
    .client-number::after {
        bottom: -15px;
        width: 40px;
        height: 2px;
    }
    
    .client-header-new {
        text-align: center;
    }
    
    .client-title-new {
        font-size: var(--text-2xl);
    }
    
    .client-subtitle-new {
        font-size: var(--text-base);
    }
    
    .feature-point-new:hover,
    .process-step-new:hover,
    .capability-item-new:hover {
        transform: translateY(-2px) translateX(0);
    }
    
    .step-number-small {
        width: 30px;
        height: 30px;
        font-size: var(--text-xs);
    }
    
    .client-cta-new {
        padding: var(--space-4);
    }
    
    .cta-button-new {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-sm);
    }
}

.clients-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.clients-matrix {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 0, 128, 0.1) 1px, transparent 1px);
    background-size: 100px 100px, 100px 100px, 150px 150px, 80px 80px;
    animation: matrixFlow 20s linear infinite;
    opacity: 0.4;
}

.clients-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 0, 128, 0.08) 0%, transparent 50%);
    animation: orbsFloat 15s ease-in-out infinite;
}

.clients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-top: var(--space-16);
    position: relative;
    z-index: 2;
}

.client-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.client-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-card:hover::after {
    opacity: 1;
}

.client-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 
        0 0 60px rgba(0, 212, 255, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 0, 0, 0.9);
}

.client-header {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.client-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: var(--text-2xl);
    flex-shrink: 0;
    transition: all var(--transition-base);
    position: relative;
}

.client-card[data-client="brands"] .client-icon {
    background: linear-gradient(135deg, var(--primary), #0099cc);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.client-card[data-client="agencies"] .client-icon {
    background: linear-gradient(135deg, var(--secondary), #6d28d9);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.client-card[data-client="creators"] .client-icon {
    background: linear-gradient(135deg, var(--accent), #c21c77);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
}

.client-card:hover .client-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.4);
}

.client-card[data-client="agencies"]:hover .client-icon {
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.4);
}

.client-card[data-client="creators"]:hover .client-icon {
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.4);
}

.client-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 var(--space-2) 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.client-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.client-content {
    position: relative;
    z-index: 2;
}

.client-intro {
    margin-bottom: var(--space-8);
}

.client-intro p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.client-features {
    margin-bottom: var(--space-8);
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.feature-point p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.client-outcome {
    background: rgba(0, 212, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.outcome-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 var(--space-3) 0;
}

.outcome-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.collaboration-process {
    margin-bottom: var(--space-8);
}

.process-step {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.process-step:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--secondary);
    transform: translateX(8px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    font-weight: 800;
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 var(--space-2) 0;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.client-cta {
    background: linear-gradient(135deg, var(--black), var(--gray-50));
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--gray-300);
}

.client-cta p {
    color: var(--white);
    font-size: var(--text-lg);
    margin: 0 0 var(--space-6) 0;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
}

.creator-capabilities {
    margin-bottom: var(--space-6);
}

.capabilities-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 var(--space-6) 0;
}

.capability-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.capability-item:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

.capability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    font-size: var(--text-base);
}

.capability-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ===== IDEAGARAGE SECTION ===== */
.ideagarage-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

.ideagarage-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-20);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

/* IdeaGarage Main Content */
.ideagarage-main {
    padding-right: var(--space-8);
}

.ideagarage-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.ideagarage-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 2px;
    background: var(--primary);
}

.ideagarage-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.ideagarage-highlight {
    color: var(--primary);
    position: relative;
}

.ideagarage-subtitle {
    display: block;
    font-size: var(--text-lg);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-2);
}

.ideagarage-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    font-style: italic;
}

.garage-intro-new {
    padding: var(--space-6);
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.garage-intro-new p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* IdeaGarage Content */
.ideagarage-content-new {
    padding-left: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.capabilities-section {
    order: 1;
}

.capabilities-title-new {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-8);
    line-height: 1.3;
}

.capabilities-grid-new {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.capability-item-new {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.capability-item-new:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(8px);
}

.capability-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.7));
    color: var(--black);
    font-weight: 800;
    font-size: var(--text-sm);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.capability-content-new {
    flex: 1;
}

.capability-title-new {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.capability-description-new {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: var(--space-4);
}

.capability-features-new {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.feature-tag-garage {
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    color: rgba(0, 212, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.feature-tag-garage:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    transform: scale(1.02);
}

.garage-conclusion-new {
    order: 2;
}

.conclusion-highlight-new {
    padding: var(--space-8);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
}

.conclusion-highlight-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.highlight-title-new {
    font-size: var(--text-lg);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.highlight-main-new {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

/* IdeaGarage Responsive Design */
@media (max-width: 1024px) {
    .ideagarage-grid {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        align-items: stretch;
    }
    
    .ideagarage-main {
        padding-right: 0;
        order: 1;
        text-align: center;
    }
    
    .ideagarage-label::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ideagarage-content-new {
        padding-left: 0;
        order: 2;
        gap: var(--space-8);
    }
    
    .ideagarage-title {
        font-size: var(--text-4xl);
    }
    
    .ideagarage-description {
        font-size: var(--text-lg);
    }
    
    .garage-intro-new {
        padding: var(--space-4);
        text-align: left;
    }
    
    .capabilities-title-new {
        font-size: var(--text-xl);
        text-align: center;
        margin-bottom: var(--space-4);
    }
    
    .capabilities-title-new::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }
    
    .capability-grid-new {
        max-width: none;
        margin: 0 var(--space-4);
        gap: var(--space-4);
    }
    
    .capability-item-new {
        flex-direction: row;
        text-align: left;
        padding: var(--space-4) var(--space-5);
        gap: var(--space-3);
    }
    
    .capability-item-new:hover {
        transform: translateY(-1px);
    }
    
    .capability-marker {
        align-self: center;
        width: 30px;
        height: 30px;
        font-size: var(--text-xs);
    }
    
    .capability-title-new {
        font-size: var(--text-base);
    }
    
    .capability-description-new {
        font-size: var(--text-xs);
    }
    
    .conclusion-highlight-new {
        padding: var(--space-6);
    }
    
    .highlight-title-new {
        font-size: var(--text-base);
    }
    
    .highlight-main-new {
        font-size: var(--text-lg);
    }
}

.ideagarage-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.garage-matrix {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.15) 2px, transparent 2px);
    background-size: 80px 80px, 80px 80px, 120px 120px;
    animation: matrixFlow 60s linear infinite;
    opacity: 0.3;
}

.garage-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    animation: particleFloat 45s ease-in-out infinite;
}

.garage-circuit {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px;
    animation: circuitPulse 40s ease-in-out infinite;
}

.ideagarage-content {
    position: relative;
    z-index: 2;
    margin-top: var(--space-16);
}

.garage-intro {
    margin-bottom: var(--space-16);
    display: flex;
    justify-content: center;
}

.intro-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.03) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(139, 92, 246, 0.03) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-xl);
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    position: relative;
    z-index: 2;
}

.intro-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
}

.intro-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.intro-text p {
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.garage-capabilities {
    margin-bottom: var(--space-16);
}

.capabilities-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-12);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.capability-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.capability-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.85);
}

.capability-card[data-capability="narrative"]:hover {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.capability-card[data-capability="hybrid"]:hover {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.capability-card[data-capability="prototype"]:hover {
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.3), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.capability-card[data-capability="campaigns"]:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.capability-card[data-capability="sentient"]:hover {
    box-shadow: 0 0 40px rgba(255, 64, 129, 0.3), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.capability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.capability-icon i {
    font-size: var(--text-xl);
    color: var(--white);
}

.capability-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.capability-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.capability-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.garage-conclusion {
    text-align: center;
    margin-top: var(--space-20);
}

.conclusion-statement {
    display: inline-block;
    position: relative;
}

.statement-highlight {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    position: relative;
    overflow: hidden;
}

.statement-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        transparent 50%, 
        rgba(139, 92, 246, 0.05) 100%);
    animation: shimmer 4s ease-in-out infinite;
}

.highlight-title {
    font-size: var(--text-2xl);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
}

.highlight-main {
    font-size: var(--text-4xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
}

/* ===== FUTURELAB SECTION ===== */
.futurelab-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

/* FutureLab Header */
.futurelab-header {
    text-align: center;
    margin-bottom: var(--space-20);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.futurelab-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.futurelab-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 2px;
    background: var(--primary);
}

.futurelab-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.futurelab-highlight {
    color: var(--primary);
    position: relative;
}

.futurelab-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-8);
    font-style: italic;
}

.lab-intro-new {
    padding: var(--space-8);
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-xl);
    max-width: 800px;
    margin: 0 auto;
}

.lab-intro-new p {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* FutureLab Grid */
.futurelab-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
}

.research-item-new {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.research-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), rgba(0, 212, 255, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.research-item-new:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.research-item-new:hover::before {
    transform: scaleX(1);
}

.research-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.7));
    color: var(--black);
    font-weight: 900;
    font-size: var(--text-xl);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    position: relative;
}

.research-number::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary);
    opacity: 0.5;
}

.research-content-new {
    flex: 1;
}

.research-title-new {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.research-category-new {
    display: block;
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.research-description-new {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.research-highlights-new {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.highlight-tag-lab {
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.highlight-tag-lab:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
    transform: scale(1.05);
}

/* FutureLab Responsive Design */
@media (max-width: 1024px) {
    .futurelab-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .futurelab-title {
        font-size: var(--text-4xl);
    }
    
    .futurelab-description {
        font-size: var(--text-lg);
    }
    
    .lab-intro-new {
        padding: var(--space-6);
    }
    
    .research-item-new {
        flex-direction: column;
        text-align: center;
        padding: var(--space-6);
        gap: var(--space-4);
    }
    
    .research-item-new:hover {
        transform: translateY(-4px);
    }
    
    .research-number {
        align-self: center;
        width: 50px;
        height: 50px;
        font-size: var(--text-lg);
    }
    
    .research-number::after {
        bottom: -10px;
        width: 30px;
    }
    
    .research-title-new {
        font-size: var(--text-xl);
    }
    
    .research-category-new {
        text-align: center;
    }
    
    .research-description-new {
        font-size: var(--text-sm);
    }
    
    .highlight-tag-lab {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-3);
    }
}

.futurelab-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.quantum-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(0, 212, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(255, 0, 128, 0.06) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px, 250px 250px;
    animation: quantumShift 40s linear infinite;
    opacity: 0.6;
}

.neural-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: neuralPulse 25s ease-in-out infinite;
    opacity: 0.4;
}

.tech-orbits {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 0, 128, 0.04) 0%, transparent 40%);
    animation: techOrbits 35s ease-in-out infinite;
}

.futurelab-content {
    position: relative;
    z-index: 2;
    margin-top: var(--space-16);
}

.lab-intro {
    text-align: center;
    margin-bottom: var(--space-20);
}

.intro-statement {
    font-size: var(--text-xl);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    background: rgba(139, 92, 246, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
}

.tech-research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
    max-width: 1200px;
    margin: 0 auto;
}

.research-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.research-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.02) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(0, 212, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.research-card:hover::after {
    opacity: 1;
}

.research-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 0 60px rgba(139, 92, 246, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(0, 0, 0, 0.9);
}

.research-card[data-tech="quantum"]:hover {
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.3), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.research-card[data-tech="neuro"]:hover {
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.3), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.research-card[data-tech="synthetic"]:hover {
    box-shadow: 0 0 60px rgba(255, 0, 128, 0.3), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.research-card[data-tech="reality"]:hover {
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.3), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.research-header {
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 2;
}

.research-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    position: relative;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.research-icon i {
    font-size: var(--text-2xl);
    color: var(--white);
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    animation: iconGlow 3s ease-in-out infinite;
}

.research-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.research-category {
    font-size: var(--text-sm);
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.research-content {
    position: relative;
    z-index: 2;
}

.research-description {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-8);
}

.research-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.highlight-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(8px);
}

.highlight-item i {
    color: var(--secondary);
    font-size: var(--text-sm);
}

.highlight-item span {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
}

/* Optimized Animations */
@keyframes circuitPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

@keyframes quantumShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(5px) translateY(-5px); }
}

@keyframes techOrbits {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

/* ===== APPROACH SECTION ===== */
.approach-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

/* Approach Header */
.approach-header {
    text-align: center;
    margin-bottom: var(--space-20);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.approach-label {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-4);
    display: inline-block;
    position: relative;
}

.approach-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary);
}

.approach-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--white);
}

.approach-highlight {
    color: var(--primary);
    position: relative;
}

.approach-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Approach Grid */
.approach-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 1300px;
    margin: 0 auto;
}

.approach-item-new {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-7);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.approach-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), rgba(0, 212, 255, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.approach-item-new:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.approach-item-new:hover::before {
    transform: scaleX(1);
}

.approach-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), rgba(0, 212, 255, 0.7));
    color: var(--black);
    font-weight: 900;
    font-size: var(--text-lg);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 212, 255, 0.4);
    position: relative;
}

.approach-number::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary);
    opacity: 0.4;
}

.approach-content-new {
    flex: 1;
}

.approach-title-new {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.approach-description-new {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.approach-tags-new {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag-approach {
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    color: rgba(0, 212, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.tag-approach:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    transform: scale(1.02);
}

/* Approach Responsive Design */
@media (max-width: 1024px) {
    .approach-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 1024px) {
    .approach-grid-new {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .approach-title {
        font-size: var(--text-4xl);
    }
    
    .approach-description {
        font-size: var(--text-lg);
    }
    
    .approach-item-new {
        flex-direction: column;
        text-align: center;
        padding: var(--space-5);
        gap: var(--space-3);
    }
    
    .approach-item-new:hover {
        transform: translateY(-4px);
    }
    
    .approach-number {
        align-self: center;
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }
    
    .approach-number::after {
        bottom: -8px;
        width: 25px;
    }
    
    .approach-title-new {
        font-size: var(--text-lg);
    }
    
    .approach-description-new {
        font-size: var(--text-xs);
    }
    
    .tag-approach {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-2);
    }
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-16);
}

.approach-card {
    background: var(--gray-100);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-base);
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.approach-card:hover::before {
    transform: scaleY(1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-weight: 700;
    font-size: var(--text-lg);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-top: var(--space-16);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-form-container {
    background: var(--gray-100);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    background: var(--gray-200);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER COMPACT ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--space-12) 0 var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-compact {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.footer-brand-compact {
    max-width: 400px;
}

.footer-logo-compact {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: none !important;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.15);
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.brand-name {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.brand-tagline {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 500;
    line-height: 1;
}

.footer-description-compact {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.nav-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.nav-group h5 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 var(--space-3) 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-group a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    padding: var(--space-1) 0;
}

.nav-group a:hover {
    color: var(--white);
    padding-left: var(--space-1);
}

.footer-contact-compact h5 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 var(--space-3) 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.contact-email,
.contact-phone {
    font-size: var(--text-sm);
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

.contact-address {
    margin-top: var(--space-2);
    padding-top: var(--space-2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-address p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.footer-bottom-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: var(--space-6);
}

.footer-left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.footer-left p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-tagline {
    font-size: var(--text-xs);
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.footer-legal {
    display: flex;
    gap: var(--space-4);
}

.footer-legal a {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-social-compact {
    display: flex;
    gap: var(--space-2);
}

.footer-social-compact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: var(--text-xs);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.footer-social-compact a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--black);
    transform: translateY(-1px);
}

/* Footer Compact Responsive Design */
@media (max-width: 968px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .footer-navigation {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
    
    .footer-bottom-compact {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .footer-left {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .footer-right {
        gap: var(--space-4);
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: var(--space-10) 0 var(--space-4);
    }
    
    .footer-compact {
        gap: var(--space-6);
    }
    
    .footer-top {
        gap: var(--space-6);
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .footer-logo-compact {
        margin-bottom: var(--space-3);
    }
    
    .footer-logo-img {
        width: 35px;
        height: 35px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        filter: none !important;
    }
    
    .brand-name {
        font-size: var(--text-lg);
    }
    
    .nav-group h5 {
        margin-bottom: var(--space-2);
    }
    
    .footer-bottom-compact {
        padding-top: var(--space-4);
        gap: var(--space-3);
    }
    
    .footer-right {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .footer-legal {
        gap: var(--space-3);
    }
}

/* Footer Responsive Design */
@media (max-width: 968px) {
    .footer-content-new {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .footer-links-new {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .footer-bottom-new {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: var(--space-16) 0 var(--space-6);
    }
    
    .footer-content-new {
        gap: var(--space-10);
        margin-bottom: var(--space-12);
    }
    
    .footer-contact-info {
        gap: var(--space-6);
    }
    
    .contact-item-footer {
        padding: var(--space-4);
    }
    
    .footer-links-new {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .footer-section-title {
        font-size: var(--text-base);
        margin-bottom: var(--space-2);
        padding-bottom: var(--space-1);
    }
    
    .footer-links-list {
        gap: var(--space-1);
    }
    
    .footer-bottom-new {
        padding-top: var(--space-6);
        gap: var(--space-4);
    }
    
    .footer-social-new {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .social-links-new {
        justify-content: center;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}


.footer-brand-text {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-list a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-list a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-8);
    text-align: center;
}

.footer-copyright p {
    color: var(--gray-500);
    font-size: var(--text-sm);
}

/* ===== MATRIX RAIN ===== */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Enhanced styling for binary characters */
.matrix-column {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-shadow: 0 0 5px currentColor;
    letter-spacing: 2px;
}

/* Special glow for binary digits */
.matrix-column:nth-child(3n) {
    color: #00ff41 !important;
    text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41;
}

.matrix-column:nth-child(5n) {
    color: #ffffff !important;
    text-shadow: 0 0 8px #ffffff, 0 0 15px #00d4ff;
}

.matrix-rain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, var(--secondary) 50%, transparent 100%);
    background-size: 2px 100%, 100% 2px;
    opacity: 0.1;
    animation: matrixScroll 3s linear infinite;
}

/* ===== HERO TEXT ===== */

/* Desktop Terminal Positioning - In hero-left column */
@media (min-width: 1025px) {
    .hero-terminal {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 480px !important;
        height: 420px !important;
        margin: 20px 0 !important;
        transform: none !important;
    }
    
    .hero-left {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        padding-top: 80px !important;
    }
}

/* Draggable terminal */
.hero-terminal.dragging {
    position: fixed;
    z-index: 1002;
    cursor: grabbing;
    transform: rotate(2deg);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.5),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-terminal.floating {
    position: fixed;
    z-index: 1001;
    cursor: default;
}

/* Non-draggable header */
.terminal-header {
    cursor: default;
    user-select: none;
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    background: var(--gray-100);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: 1px solid var(--gray-200);
}

.terminal-title {
    color: var(--text-secondary);
    font-size: var(--text-xs);
    font-weight: 500;
}

.terminal-controls {
    display: flex;
    gap: var(--space-2);
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.minimize {
    background: #fbbf24;
}

.control-dot.maximize {
    background: #10b981;
}

.control-dot.close {
    background: #ef4444;
}

/* Interactive control buttons */
.control-dot {
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.control-dot.minimize:hover {
    box-shadow: 0 0 10px #f59e0b;
}

.control-dot.maximize:hover {
    box-shadow: 0 0 10px #10b981;
}

.control-dot.close:hover {
    box-shadow: 0 0 10px #ef4444;
}

/* Resize Handle */
.resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: nw-resize;
    background: linear-gradient(-45deg, transparent 30%, var(--primary) 30%, var(--primary) 40%, transparent 40%, transparent 60%, var(--primary) 60%, var(--primary) 70%, transparent 70%);
    border-bottom-right-radius: var(--radius-lg);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.resize-handle:hover {
    opacity: 1;
    background: linear-gradient(-45deg, transparent 30%, rgba(0, 212, 255, 0.8) 30%, rgba(0, 212, 255, 0.8) 40%, transparent 40%, transparent 60%, rgba(0, 212, 255, 0.8) 60%, rgba(0, 212, 255, 0.8) 70%, transparent 70%);
}

.terminal-body {
    padding: var(--space-4);
    flex: 1;
    overflow-y: auto;
    max-height: calc(420px - 60px); /* Total height minus header */
}

/* Custom scrollbar for terminal */
.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.8);
}

/* Fixed input area at bottom */
.terminal-input-area {
    border-top: 1px solid var(--gray-600);
    padding: var(--space-3) var(--space-4);
    background: rgba(0, 0, 0, 0.3);
}

/* Chat messages area */
.chat-messages {
    margin-top: var(--space-4);
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
}

.prompt {
    color: var(--primary);
    font-weight: 600;
}

.command {
    color: var(--text-primary);
    animation: typewriter 2s steps(30) 1s both;
}

.output {
    color: var(--text-secondary);
}

.output.success {
    color: var(--success);
}

.output.info {
    color: var(--primary);
    font-style: italic;
}

/* Interactive Terminal Styles */
.terminal-input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    font-size: var(--text-sm);
    flex: 1;
    margin-left: var(--space-2);
}

.terminal-input::placeholder {
    color: var(--gray-400);
    opacity: 0.7;
}

.input-line {
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInInput 1s ease-out 6s forwards;
}

.cursor-blink {
    color: var(--primary);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fadeInInput {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Terminal Responses */
.terminal-responses {
    margin-top: var(--space-4);
}

.response-line {
    margin: var(--space-2) 0;
    padding-left: var(--space-6);
    border-left: 2px solid var(--primary);
    background: rgba(0, 212, 255, 0.05);
    padding: var(--space-2) var(--space-3);
    border-radius: 4px;
    animation: slideInResponse 0.5s ease-out;
}

@keyframes slideInResponse {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.response-line .response-text {
    color: #ffffff;
    font-size: var(--text-sm);
    line-height: 1.6;
    font-weight: 400;
}

.response-line .response-source {
    color: var(--primary);
    font-size: var(--text-xs);
    margin-top: var(--space-1);
    opacity: 0.8;
}

/* Boot sequence animation timing */
.boot-line:nth-child(1) { animation: typeWriter 1s ease-out 1s forwards; }
.boot-line:nth-child(2) { animation: typeWriter 1s ease-out 2s forwards; }
.boot-line:nth-child(3) { animation: typeWriter 1s ease-out 3s forwards; }
.boot-line:nth-child(4) { animation: typeWriter 1s ease-out 4s forwards; }
.boot-line:nth-child(5) { animation: typeWriter 1s ease-out 5s forwards; }
.boot-line:nth-child(6) { animation: typeWriter 1s ease-out 5.5s forwards; }

@keyframes typeWriter {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Typing indicator */
.typing-indicator {
    opacity: 0.8;
}

.typing-dots {
    color: var(--gray-400);
    font-style: italic;
}

.typing-dots .dot {
    animation: typingDot 1.5s infinite;
}

.typing-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.typing-dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        opacity: 0.4;
    }
    30% {
        opacity: 1;
    }
}

/* Conversation styling */
.terminal-line .prompt {
    color: var(--primary);
    font-weight: bold;
    min-width: 40px;
    display: inline-block;
}

.terminal-line .command {
    color: #ffffff;
}

/* ===== HERO TEXT ===== */
.hero-text {
    text-align: center;
    max-width: 100%;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

/* Hero Packshot */
.hero-packshot {
    margin: var(--space-6) 0;
    text-align: center;
}

.packshot-text {
    display: inline-block;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: var(--space-2) var(--space-6);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.packshot-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.packshot-text:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.8);
}

.packshot-text:hover::before {
    left: 100%;
}


/* ===== HERO VISUAL ===== */
/* Hero visual now in hero-right section */

.ai-visualization {
    width: 100%;
    max-width: 400px;
}

.neural-network {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
}

.node-layer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    z-index: 2;
}

.neural-node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--primary-light);
    position: relative;
    animation: neuralPulse 2s ease-in-out infinite;
}

.neural-node[data-type="games"] {
    background: var(--primary);
    animation-delay: 0s;
}

.neural-node[data-type="movies"] {
    background: var(--secondary);
    animation-delay: 0.5s;
}

.neural-node[data-type="social"] {
    background: var(--accent);
    animation-delay: 1s;
}

.neural-node[data-type="mobile"] {
    background: var(--success);
    animation-delay: 1.5s;
}

.neural-node.processing {
    background: var(--gray-400);
    animation-delay: 0.25s;
}

.neural-node.output {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    width: 24px;
    height: 24px;
}

.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-arrow {
    font-size: var(--text-lg);
    animation: arrowBounce 2s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes matrixScroll {
    0% { 
        background-position: 0% 0%, 0% 0%;
    }
    100% { 
        background-position: 0% 100%, 100% 0%;
    }
}

@keyframes typewriter {
    0% { 
        width: 0;
    }
    100% { 
        width: 100%;
    }
}

@keyframes neuralPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes arrowBounce {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(10px);
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
    }
    33% { 
        transform: translate(20px, -15px) rotate(120deg);
    }
    66% { 
        transform: translate(-15px, 10px) rotate(240deg);
    }
}

@keyframes aboutParticles {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.05;
    }
    33% { 
        transform: translate(30px, -20px) rotate(120deg);
        opacity: 0.08;
    }
    66% { 
        transform: translate(-20px, 15px) rotate(240deg);
        opacity: 0.03;
    }
}

@keyframes infiniteGlow {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0%, 100% { 
        transform: translateX(-100%);
    }
    50% { 
        transform: translateX(100%);
    }
}

@keyframes waveShift {
    0%, 100% { 
        background-position: 0% 50%, 100% 50%;
    }
    33% { 
        background-position: 50% 0%, 50% 100%;
    }
    66% { 
        background-position: 100% 50%, 0% 50%;
    }
}

@keyframes gridShift {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% { 
        transform: translate(10px, 10px);
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.08;
        transform: scale(1);
    }
    50% { 
        opacity: 0.12;
        transform: scale(1.1);
    }
}

@keyframes techGrid {
    0% { 
        transform: translate(0, 0) rotate(0deg);
    }
    100% { 
        transform: translate(40px, 40px) rotate(360deg);
    }
}

@keyframes glowShift {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
    }
    33% { 
        transform: rotate(120deg) scale(1.1);
    }
    66% { 
        transform: rotate(240deg) scale(0.9);
    }
}

@keyframes matrixFlow {
    0% { 
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% { 
        background-position: 150px 150px, 150px 150px, 200px 200px, 100px 100px;
    }
}

@keyframes orbsFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: translate(-15px, 20px) scale(0.9);
        opacity: 0.4;
    }
}

@keyframes gridFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(12px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    :root {
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: var(--space-16);
        --navbar-height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        display: block;
        max-height: calc(100vh - var(--navbar-height));
        overflow-y: auto;
    }
    
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: var(--space-6) 0;
        align-items: stretch;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link {
        display: block;
        padding: var(--space-4) var(--space-6);
        color: var(--text-secondary);
        text-decoration: none;
        transition: all var(--transition-fast);
        border-left: 3px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
        background: rgba(0, 212, 255, 0.05);
        border-left-color: var(--primary);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .brand-tagline {
        font-size: var(--text-xs);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
        padding: calc(var(--navbar-height) + var(--space-4)) var(--space-4) var(--space-8) var(--space-4);
        min-height: calc(100vh - var(--navbar-height));
        margin-top: 0;
    }
    
    .hero-left {
        order: 1;
        align-items: center;
    }
    
    .hero-center {
        order: 2;
        padding: var(--space-2) 0;
        margin-top: var(--space-4);
    }
    
    .hero-right {
        order: 3;
        align-items: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-4);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
        line-height: 1.6;
        margin-bottom: var(--space-6);
    }
    
    .packshot-text {
        font-size: var(--text-base);
        letter-spacing: 1px;
        padding: var(--space-2) var(--space-4);
    }
    
    /* Mobile Hero Effects */
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .orb-1, .orb-2, .orb-3, .orb-4 {
        filter: blur(60px);
    }
    
    .orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .orb-2 {
        width: 200px;
        height: 200px;
    }
    
    .orb-3 {
        width: 220px;
        height: 220px;
    }
    
    .orb-4 {
        width: 180px;
        height: 180px;
    }
    
    .cyber-grid {
        background-size: 60px 60px, 60px 60px, 30px 30px;
    }
    
    .neural-line {
        height: 1px;
    }
    
    .neural-pulse {
        width: 15px;
        height: 15px;
    }
    
    /* Mobile Terminal Positioning - In hero-center after packshot */
    .hero-terminal {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: calc(100% - 40px) !important;
        max-width: 400px !important;
        height: 350px !important;
        margin: 20px auto !important;
        min-width: 300px;
        z-index: 1001 !important;
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: default !important;
    }
    
    /* Mobile: Hide terminal from hero-left */
    .hero-left {
        display: none !important;
    }
    
    /* Disable dragging cursor on mobile */
    .hero-terminal .terminal-header {
        cursor: default !important;
        user-select: none !important;
    }
    
    /* Hide resize handle on mobile */
    .hero-terminal .resize-handle {
        display: none !important;
    }
    
    /* All control buttons active on all devices */
    .hero-terminal .control-dot.minimize,
    .hero-terminal .control-dot.maximize,
    .hero-terminal .control-dot.close {
        cursor: pointer !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .hero-terminal.floating {
        box-shadow: 
            0 0 15px rgba(0, 212, 255, 0.4),
            0 10px 25px rgba(0, 0, 0, 0.3);
        z-index: 1001 !important;
        position: fixed !important;
    }
    
    .terminal-body {
        max-height: calc(350px - 60px);
    }
    
    /* Keep hero-left for terminal container on mobile */
    .hero-left {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    /* Ensure neural network doesn't overlap terminal on mobile */
    .hero-right {
        z-index: 1;
    }
    
    .ai-visualization {
        z-index: 1;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    
    .neural-network {
        height: 200px;
    }
    
    .mission-statement {
        flex-direction: column;
        text-align: center;
        gap: var(--space-6);
    }
    
    .statement-icon {
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-items {
        grid-template-columns: 1fr;
    }
    
    .intro-text {
        font-size: var(--text-xl);
    }
    
    .core-statement {
        padding: var(--space-6);
    }
    
    .vision-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        max-width: none;
    }
    
    .offering-card {
        padding: var(--space-6);
    }
    
    .offering-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .offering-icon {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }
    
    .offering-title {
        font-size: var(--text-xl);
    }
    
    .client-card {
        padding: var(--space-6);
    }
    
    .client-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .client-icon {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }
    
    .client-title {
        font-size: var(--text-2xl);
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .nav-container {
        padding: 0 var(--space-4);
    }
    
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .mission-quote blockquote {
        font-size: var(--text-xl);
        padding: var(--space-6);
    }
    
    .statement-card {
        padding: var(--space-6);
    }
    
    .approach-card {
        padding: var(--space-6);
    }
    
    .contact-form-container {
        padding: var(--space-6);
    }
}

/* ===== UTILITIES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-mono { font-family: var(--font-mono); }
.font-display { font-family: var(--font-display); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

/* Mobile Responsive for IdeaGarage & FutureLab */
@media (max-width: 1024px) {
    /* IdeaGarage Mobile Responsive */
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .intro-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-8);
        max-width: 100%;
    }
    
    .garage-intro .intro-icon {
        width: 60px;
        height: 60px;
        margin-bottom: var(--space-4);
        align-self: center;
    }
    
    .garage-conclusion {
        margin-top: var(--space-16);
    }
    
    .statement-highlight {
        padding: var(--space-8);
    }
    
    .highlight-main {
        font-size: var(--text-3xl);
    }
    
    .capability-card {
        padding: var(--space-6);
    }
    
    .capability-icon {
        width: 50px;
        height: 50px;
    }
    
    /* FutureLab Mobile Responsive */
    .tech-research-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .research-card {
        padding: var(--space-8);
    }
    
    .research-icon {
        width: 60px;
        height: 60px;
    }
    
    .intro-statement {
        font-size: var(--text-lg);
        padding: var(--space-8);
    }
    
    .research-highlights {
        gap: var(--space-3);
    }
    
    .futurelab-content .highlight-item {
        padding: var(--space-2) var(--space-3);
    }
    
    .research-title {
        font-size: var(--text-lg);
    }
    
    .research-description {
        font-size: var(--text-sm);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .loading-screen {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: var(--space-8) 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ===== ENHANCED PERFORMANCE OPTIMIZATIONS ===== */
/* Respect user motion preferences */
@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;
    }
}

/* Performance-critical elements GPU acceleration */
.hero-section *,
.loading-screen *,
[class*="particle"],
[class*="matrix"],
[class*="animation"],
.nav-link-compact,
.mobile-nav-link,
.hero-terminal {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Adaptive performance CSS variables */
:root {
    --animation-play-state: running;
    --transition-duration: 0.3s;
    --gpu-acceleration: translateZ(0);
}

/* Performance-optimized transitions */
.performance-optimized {
    transition: transform var(--transition-duration) ease-out,
                opacity var(--transition-duration) ease-out;
    animation-play-state: var(--animation-play-state);
    will-change: transform, opacity;
}

/* Efficient animations with GPU acceleration */
@keyframes optimizedPulse {
    0%, 100% { 
        transform: var(--gpu-acceleration) scale(1);
        opacity: 1;
    }
    50% { 
        transform: var(--gpu-acceleration) scale(1.05);
        opacity: 0.8;
    }
}

.pulse-optimized {
    animation: optimizedPulse 2s ease-in-out infinite;
    animation-play-state: var(--animation-play-state);
}

/* Reduce heavy animations on low-end devices */
/* Mobile Hero Optimizations */
@media (max-width: 480px) {
    .hero-container {
        padding: calc(var(--navbar-height) + var(--space-2)) var(--space-3) var(--space-6) var(--space-3);
        gap: var(--space-4);
    }
    
    .hero-title {
        font-size: var(--text-3xl) !important;
        margin-bottom: var(--space-3);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: var(--text-base) !important;
        line-height: 1.5;
        margin-bottom: var(--space-4);
    }
    
    .hero-center {
        margin-top: var(--space-2);
        padding: 0;
    }
}

@media (max-width: 768px) and (max-height: 768px) {
    [class*="particle"],
    [class*="matrix"],
    .hero-background-effects {
        animation-duration: 0.5s !important;
        opacity: 0.3 !important;
    }
}

/* ===== MONETIZATION OF IDEAS SECTION ===== */
.monetization-section {
    padding: var(--space-24) 0;
    background: var(--black);
    color: var(--white);
}

.monetization-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.monetization-label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--primary);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.monetization-title {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.monetization-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.monetization-description {
    font-size: var(--text-lg);
    color: var(--gray-700);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.monetization-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.monetization-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.monetization-item:hover::before {
    opacity: 1;
}

.monetization-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.monetization-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-6);
}

.monetization-title-item {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.monetization-description-item {
    font-size: var(--text-base);
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.monetization-examples {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.example-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-3);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 6px;
    color: var(--secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .monetization-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .monetization-title {
        font-size: var(--text-3xl);
    }
    
    .monetization-item {
        padding: var(--space-6);
    }
} 