/* FX Intelligence - Styles Loading */
/* DEBUG: CSS carregado com sucesso! */

/* FX Intelligence - Ultra Modern Design */
/* DEBUG: CSS carregado com sucesso! */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apple Inspired Design */

:root {
    /* Base Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #1a1a1a;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-strong: rgba(255, 255, 255, 0.08);
    --bg-glass-blur: rgba(13, 13, 13, 0.4);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --text-accent: #00ffff;
    
    /* Accent Colors */
    --primary-color: #0066ff;
    --secondary-color: #00ffff;
    --accent-color: #ff3366;
    --warning-color: #ffaa00;
    --success-color: #00ff88;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-blue: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
    --gradient-neon: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    --gradient-hero: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.3) 70%);
    
    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.5);
    --shadow-glow: 0 0 40px rgba(0, 255, 255, 0.3);
    --shadow-primary: 0 8px 32px rgba(0, 212, 255, 0.2);
    --shadow-secondary: 0 8px 32px rgba(255, 51, 102, 0.2);
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 32px;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 255, 255, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
    
    /* Z-Index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}







body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism Base Classes */
.glass {
    background: var(--bg-glass-blur);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.glass-strong {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-medium);
}

.glass-interactive {
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.glass-interactive:hover::before {
    left: 100%;
}

.glass-interactive:hover {
    background: var(--bg-glass-strong);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px) scale(1.02);
}

.navbar {
    background: var(--bg-glass-blur);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.hero {
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: var(--text-secondary);
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-weight: 500;
    border: none;
}

.btn-secondary {
    background-color: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    padding: 1rem 2rem;
}

.about-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
}

.section-title {
    color: var(--text-primary);
    font-size: 3rem;
}

.section-subtitle {
    color: var(--text-secondary);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: var(--shadow-glow);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}

.fx-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
    transition: var(--transition);
}

.logo-divider {
    margin: 0 0.75rem;
    color: var(--secondary-color);
    font-weight: 300;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(103, 126, 234, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-attachment: fixed;
    /* Advanced hero styling */
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 51, 102, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(103, 126, 234, 0.1) 0%, transparent 60%);
    animation: heroGlow 12s ease-in-out infinite;
    opacity: 0.8;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 255, 0.03) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 255, 0.03) 100px
        );
    animation: gridMove 30s linear infinite;
    opacity: 0.4;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 2rem;
}

.fx-main {
    font-size: 5rem; /* Metade do tamanho original */
    font-weight: 900;
    color: var(--secondary-color);
    text-shadow: 0 0 15px var(--secondary-color);
    margin-right: 1rem;
}

.intelligence-main {
    font-size: 5rem;
    font-weight: 300;
    color: var(--text-primary);
}

.hero-logo {
    white-space: nowrap; /* Impede a quebra de linha */
}



@keyframes logoGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8));
        transform: scale(1.02);
    }
}

@keyframes logoBlur {
    0% { 
        filter: blur(8px);
        opacity: 0.3;
    }
    100% { 
        filter: blur(12px);
        opacity: 0.7;
    }
}

@keyframes neonGlow {
    0% { 
        filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.5));
    }
    100% { 
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
    }
}

@keyframes heroGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--text-secondary);
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 1s ease-out 0.5s forwards;
}

.title-highlight {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    opacity: 0;
    animation: slideInUp 1s ease-out 1s forwards;
}

.hero-subtitle {
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 1.5s forwards;
}

.hero-subtitle h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #ff00ff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: liquidBackground 4s ease infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    position: relative;
}

.hero-subtitle h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(2px);
    opacity: 0.7;
    z-index: -1;
}

.hero-subtitle p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideInUp 1s ease-out 2s forwards;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    box-shadow: var(--shadow-primary);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0;
    animation: slideInUp 1s ease-out 2.5s forwards;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6));
    }
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-10px);
    }
}



/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-card {
    background: var(--bg-glass-blur);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    /* 3D Glassmorphism Effect */
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.03);
    box-shadow: var(--shadow-glow), var(--shadow-neon);
    border-color: var(--border-accent);
    background: var(--bg-glass-strong);
}

.card-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--secondary-color);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.card-features span {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-left: 1rem;
    border-left: 2px solid var(--secondary-color);
}

/* Services Section */
.services {
    background: var(--bg-primary);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--bg-glass-blur);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    /* Modern 3D Effect */
    transform-style: preserve-3d;
    perspective: 1200px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateX(15px) translateY(-8px) rotateY(8deg) scale(1.02);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow), var(--shadow-strong);
    background: var(--bg-glass-strong);
}

.service-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    min-width: 100px;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-content li {
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.service-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Solutions Section */
.solutions {
    background: var(--bg-secondary);
    position: relative;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-tabs {
    position: relative;
    z-index: 1;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

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

.solution-details {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-image {
    font-size: 8rem;
    color: var(--secondary-color);
    min-width: 200px;
    text-align: center;
}

.solution-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.benefit i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Technology Section */
.technology {
    background: var(--bg-primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-secondary);
}

.tech-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tech-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
}

.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    min-width: 60px;
    text-align: center;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-cta {
    margin-top: 2rem;
}



/* Footer */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Mobile Touch Interactions */
@media (hover: none) and (pointer: coarse) {
    .enhanced-cursor,
    .cursor-follower,
    .custom-cursor {
        display: none !important;
    }
    
    .tilt-effect:hover {
        transform: none;
    }
    
    .magnetic-effect:hover {
        transform: none;
    }
    
    .about-card:hover,
    .service-item:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Mobile-first Progressive Enhancement */
.mobile-optimized {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Swipe Gestures for Mobile */
.swipe-container {
    touch-action: pan-x;
    user-select: none;
    -webkit-user-select: none;
}

/* Modern Mobile Styles */
@media (max-width: 768px) {

    
    /* Enhanced Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-glass-blur);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-hamburger {
        display: flex;
    }

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

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .fx-main {
        font-size: 5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle h2 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .solution-details {
        flex-direction: column;
        text-align: center;
    }

    .solution-image {
        font-size: 5rem;
    }



    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .tab-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .fx-main {
        font-size: 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-card,
    .contact-form {
        padding: 1.5rem;
    }

    .service-item {
        padding: 2rem;
    }

    .solution-details {
        padding: 2rem;
    }
}

/* AOS Animation Styles */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--secondary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--accent-color), var(--secondary-color));
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--secondary-color);
    color: var(--bg-primary);
}

/* Advanced 3D Animations & Modern Effects */
@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    33% { 
        transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    }
    66% { 
        transform: translateY(-5px) rotateX(-3deg) rotateY(-3deg);
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 5px var(--secondary-color), 0 0 20px var(--secondary-color), 0 0 35px var(--secondary-color);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 10px var(--secondary-color), 0 0 40px var(--secondary-color), 0 0 80px var(--secondary-color);
        transform: scale(1.05);
    }
}

@keyframes morphing {
    0% { 
        border-radius: var(--border-radius-lg);
        transform: rotate(0deg);
    }
    25% { 
        border-radius: 50% 20% 50% 20%;
        transform: rotate(5deg);
    }
    50% { 
        border-radius: 20% 50% 20% 50%;
        transform: rotate(0deg);
    }
    75% { 
        border-radius: 50% 20% 50% 20%;
        transform: rotate(-5deg);
    }
    100% { 
        border-radius: var(--border-radius-lg);
        transform: rotate(0deg);
    }
}

@keyframes slideInAdvanced {
    0% {
        opacity: 0;
        transform: translateY(100px) translateX(-50px) rotateX(90deg) scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) translateX(10px) rotateX(-10deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotateX(0deg) scale(1);
    }
}

@keyframes liquidBackground {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes holographicShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Modern Gradient Animations */
.gradient-animated {
    background: linear-gradient(45deg, #667eea, #764ba2, #00d4ff, #ff006e);
    background-size: 400% 400%;
    animation: liquidBackground 8s ease infinite;
}

.holographic {
    position: relative;
    overflow: hidden;
}

.holographic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        rgba(0, 255, 255, 0.1),
        rgba(255, 0, 255, 0.1),
        transparent
    );
    background-size: 200% 100%;
    animation: holographicShimmer 3s ease-in-out infinite;
    pointer-events: none;
}

/* Advanced Hover Effects */
.tilt-effect {
    transition: var(--transition-smooth);
}

.tilt-effect:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.magnetic-effect {
    transition: var(--transition);
}

.magnetic-effect:hover {
    transform: scale(1.05) translateZ(10px);
}

/* Glassmorphism Card Enhancements */
.card-enhanced {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Floating Animation for Icons */
.floating-icon {
    animation: float3D 6s ease-in-out infinite;
}

/* Pulsing Glow Effect */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Morphing Border Effect */
.morphing-border {
    animation: morphing 8s ease-in-out infinite;
}

/* Advanced Button Styles */
.btn-futuristic {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 2rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-neon);
}

.btn-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-futuristic:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow), var(--shadow-strong);
    filter: brightness(1.2);
}

/* Neon Text Effect */
.neon-text {
    color: var(--secondary-color);
    text-shadow: 
        0 0 5px var(--secondary-color),
        0 0 10px var(--secondary-color),
        0 0 20px var(--secondary-color),
        0 0 40px var(--secondary-color);
    animation: pulseGlow 2s ease-in-out infinite alternate;
}

/* Loading Spinner Modern */
.loader-modern {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    background: conic-gradient(from 0deg, var(--secondary-color), var(--primary-color), var(--accent-color), var(--secondary-color));
    mask: radial-gradient(circle at center, transparent 60%, black 61%);
    -webkit-mask: radial-gradient(circle at center, transparent 60%, black 61%);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLoader {
    0% { 
        transform: scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% { 
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Advanced AI Hero Elements */
.ai-neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.neural-svg {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.neural-nodes circle {
    fill: #00ffff;
    filter: url(#glow);
    animation: nodesPulse 3s ease-in-out infinite;
}

.neural-connections line {
    stroke: #00ffff;
    stroke-width: 1;
    opacity: 0.4;
    animation: connectionFlow 2s ease-in-out infinite;
}

@keyframes nodesPulse {
    0%, 100% { r: 3; opacity: 0.6; }
    50% { r: 5; opacity: 1; }
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.ai-data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #00ffff, transparent);
    animation: dataFlow 3s linear infinite;
}

@keyframes dataFlow {
    0% { transform: translateY(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(calc(100vh + 100px)); opacity: 0; }
}

.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.binary-char {
    position: absolute;
    color: #00ffff;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    opacity: 0.3;
    animation: binaryFall 8s linear infinite;
}

@keyframes binaryFall {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(calc(100vh + 100px)); opacity: 0; }
}

/* AI Panel - Interactive Sliding Display */
.ai-panel {
    position: fixed;
    top: 50%;
    right: -350px;
    transform: translateY(-50%);
    width: 350px;
    max-height: 80vh;
    background: rgba(0, 10, 25, 0.95);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ai-panel.expanded {
    right: 0;
}

.ai-panel-toggle {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    background: var(--bg-glass-blur);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border-accent);
    border-right: none;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-accent);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.ai-panel-toggle:hover {
    background: var(--bg-glass-strong);
    color: var(--text-primary);
    transform: translateY(-50%) translateX(-5px);
}

.ai-panel-toggle i {
    transition: transform 0.3s ease;
}

.ai-panel.expanded .ai-panel-toggle i {
    transform: rotate(180deg);
}

.ai-panel-content {
    padding: 1.5rem;
    height: 100%;
    overflow-y: auto;
}

.ai-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.ai-panel-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00ffff, #ffffff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {
    0%, 100% { 
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 25px rgba(0, 255, 255, 1), 0 0 35px rgba(255, 255, 255, 0.6);
        filter: brightness(1.4);
    }
}

.ai-panel-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.ai-panel-close:hover {
    background: var(--bg-glass-strong);
    color: var(--text-primary);
}

.ai-indicators {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Fixed Arrow Indicator */
.ai-arrow-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-glass-blur);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-accent);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-medium);
}

.ai-arrow-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.ai-arrow-indicator:hover {
    background: var(--bg-glass-strong);
    transform: translateY(-50%) translateX(-5px);
    box-shadow: var(--shadow-glow);
}

.ai-arrow-indicator i {
    color: var(--text-accent);
    font-size: 1.2rem;
    animation: pulseArrow 2s infinite;
}

.ai-arrow-text {
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

@keyframes pulseArrow {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(5px); opacity: 0.7; }
}

/* Speed Controller */
.speed-controller {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    background: var(--bg-glass-blur);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-accent);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-medium);
}

.speed-label {
    color: var(--text-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.speed-buttons {
    display: flex;
    gap: 0.5rem;
}

.speed-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: 60px;
}

.speed-btn:hover {
    background: var(--bg-glass-strong);
    border-color: var(--border-accent);
    color: var(--text-accent);
    transform: translateY(-2px);
}

.speed-btn.active {
    background: var(--gradient-accent);
    border-color: transparent;
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.speed-btn i {
    font-size: 1.2rem;
}

.speed-btn span {
    font-size: 0.7rem;
    font-weight: 600;
}

.ai-processor {
    background: rgba(0, 15, 30, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
    animation: processorFloat 8s ease-in-out infinite;
    margin-bottom: 1.5rem;
}

@keyframes processorFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(0.5deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(5px) rotate(-0.5deg); }
}

.processor-core {
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #00ffff, #0066ff);
    border-radius: 50%;
    position: relative;
    animation: coreRotate 2s linear infinite;
}

.processor-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-top: 2px solid #00ffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes coreRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.processor-label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 20px rgba(0, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.5);
        filter: brightness(1.3);
    }
}

.data-flow {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.flow-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: rgba(0, 20, 40, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.8rem;
    backdrop-filter: blur(10px);
    animation: floatItem 6s ease-in-out infinite;
}

.flow-item:nth-child(2) { animation-delay: -1s; }
.flow-item:nth-child(3) { animation-delay: -2s; }
.flow-item:nth-child(4) { animation-delay: -3s; }
.flow-item:nth-child(5) { animation-delay: -4s; }

.flow-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #00ffff, #0066ff);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.flow-item:hover {
    background: rgba(0, 30, 60, 0.9);
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.flow-item:hover::before {
    transform: scaleY(1);
}

.flow-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.flow-value {
    color: #00ffff;
    font-weight: 700;
    font-family: var(--font-mono);
    font-size: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    background: linear-gradient(45deg, #00ffff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulseGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 60px;
    text-align: right;
}

.flow-value:hover {
    transform: scale(1.1);
    text-shadow: 0 0 25px rgba(0, 255, 255, 1);
}

@keyframes floatItem {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-3px) translateX(2px); }
    50% { transform: translateY(0px) translateX(-1px); }
    75% { transform: translateY(3px) translateX(1px); }
}

@keyframes pulseGlow {
    0%, 100% { 
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 25px rgba(0, 255, 255, 1), 0 0 35px rgba(0, 255, 255, 0.5);
        filter: brightness(1.2);
    }
}



.ai-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff88;
    border-radius: 50px;
    width: fit-content;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.status-text {
    color: #00ff88;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.ai-gradient-text {
    background: linear-gradient(45deg, #00ffff, #0066ff, #ff00ff, #00ffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.title-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glitch-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0;
    animation: glitchEffect 6s ease-in-out infinite;
}

@keyframes glitchEffect {
    0%, 95% { opacity: 0; }
    96%, 98% { opacity: 0.8; transform: translate(2px, 0); }
    97% { opacity: 0.8; transform: translate(-2px, 0); }
    99%, 100% { opacity: 0; }
}

/* Advanced AI Typewriter Effect */
.ai-typewriter {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.typewriter-text {
    background: linear-gradient(45deg, #00ffff, #0066ff, #ff00ff, #00ffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    display: inline-block;
    position: relative;
}

.cursor-blink {
    color: #00ffff;
    font-weight: 300;
    animation: cursorBlink 1s infinite;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.ai-writing-text {
    display: inline;
    color: #ffffff;
    font-weight: 500;
    position: relative;
}

.ai-writing-text::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: #00ffff;
    margin-left: 2px;
    animation: cursorBlink 1s infinite;
    vertical-align: text-bottom;
}

/* Scroll-triggered Movement */
.scroll-triggered {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-indicators.scroll-active {
    transform: translateY(-20px) scale(1.05);
}

.ai-capabilities.scroll-active .capability-item {
    animation: floatUp 2s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.hero-description strong {
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.ai-capabilities {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.capability-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-width: 120px;
}

.capability-item:hover {
    background: var(--bg-glass-strong);
    border-color: var(--border-accent);
    transform: translateY(-5px);
}

.capability-item i {
    font-size: 1.5rem;
    color: var(--text-accent);
}

.capability-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.btn-ai {
    background: linear-gradient(45deg, #00ffff, #0066ff);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

.btn-neural {
    background: transparent;
    border: 2px solid var(--text-accent);
    position: relative;
}

.btn-neural::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--text-accent);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-neural:hover::before {
    width: 100%;
}

.btn-neural:hover {
    color: var(--bg-primary);
}

/* Mobile Optimizations for AI Elements */
@media (max-width: 768px) {
    .ai-panel {
        width: 300px;
        right: -300px;
    }
    
    .ai-panel-content {
        padding: 1rem;
    }
    
    .ai-arrow-indicator {
        right: 10px;
        padding: 0.8rem;
    }
    
    .ai-arrow-text {
        font-size: 0.6rem;
    }
    
    .speed-controller {
        bottom: 1rem;
        left: 1rem;
        right: auto;
        transform: scale(0.9);
    }
    
    .speed-buttons {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .speed-btn {
        flex-direction: row;
        min-width: auto;
        padding: 0.5rem;
    }
    
    .speed-btn span {
        font-size: 0.6rem;
    }
    
    .ai-capabilities {
        gap: 1rem;
    }
    
    .capability-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .ai-typewriter {
        font-size: 1.8rem;
    }
    
    .neural-svg {
        opacity: 0.1;
    }
}