/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #4c63ff;
    --secondary-color: #ff6b6b;
    --accent-color: #4ecdc4;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-africa: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Neutrals */
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #6c6c6c;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    list-style: none;
}

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

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

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

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

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
}

.africa-ignition-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    z-index: 1;
}

.africa-continent-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.africa-map {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.4));
}

.continent-outline {
    fill: none;
    stroke: url(#continentGradient);
    stroke-width: 3;
    opacity: 0.8;
    animation: continent-glow 4s ease-in-out infinite alternate;
}

@keyframes continent-glow {
    0% { 
        stroke-width: 3;
        opacity: 0.6;
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
    }
    100% { 
        stroke-width: 4;
        opacity: 1;
        filter: drop-shadow(0 0 40px rgba(102, 126, 234, 0.6));
    }
}

.ignition-origin {
    fill: #ff6b6b;
    stroke: #ff6b6b;
    stroke-width: 2;
    filter: drop-shadow(0 0 15px #ff6b6b);
    animation: origin-pulse 1.5s ease-in-out infinite;
}

@keyframes origin-pulse {
    0%, 100% { 
        r: 8;
        opacity: 1;
        filter: drop-shadow(0 0 15px #ff6b6b);
    }
    50% { 
        r: 12;
        opacity: 0.8;
        filter: drop-shadow(0 0 25px #ff6b6b);
    }
}

.ignition-point {
    fill: #4c63ff;
    stroke: #4c63ff;
    stroke-width: 1;
    opacity: 0;
    filter: drop-shadow(0 0 10px #4c63ff);
    animation: ignition-sequence 8s ease-in-out infinite;
}

.ignition-point:nth-child(2) { animation-delay: 0.5s; }
.ignition-point:nth-child(3) { animation-delay: 1s; }
.ignition-point:nth-child(4) { animation-delay: 1.5s; }
.ignition-point:nth-child(5) { animation-delay: 2s; }
.ignition-point:nth-child(6) { animation-delay: 2.5s; }
.ignition-point:nth-child(7) { animation-delay: 3s; }
.ignition-point:nth-child(8) { animation-delay: 3.5s; }

@keyframes ignition-sequence {
    0%, 5% { 
        opacity: 0;
        r: 0;
    }
    10%, 90% { 
        opacity: 1;
        r: 6;
        filter: drop-shadow(0 0 10px #4c63ff);
    }
    95%, 100% { 
        opacity: 0.6;
        r: 8;
        filter: drop-shadow(0 0 15px #4c63ff);
    }
}

.neural-path {
    fill: none;
    stroke-width: 2;
    opacity: 0;
    stroke-linecap: round;
    filter: drop-shadow(0 0 5px currentColor);
}

.neural-path.primary {
    stroke: #667eea;
    animation: neural-flow 6s ease-in-out infinite;
    animation-delay: 1s;
}

.neural-path.secondary {
    stroke: #764ba2;
    animation: neural-flow 6s ease-in-out infinite;
    animation-delay: 2s;
}

.neural-path.tertiary {
    stroke: #f093fb;
    animation: neural-flow 6s ease-in-out infinite;
    animation-delay: 3s;
}

.neural-path.quaternary {
    stroke: #4ecdc4;
    animation: neural-flow 6s ease-in-out infinite;
    animation-delay: 4s;
}

.neural-path.cross {
    stroke: #ff6b6b;
    animation: neural-flow 6s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes neural-flow {
    0%, 10% { 
        opacity: 0;
        stroke-dasharray: 0 1000;
    }
    20%, 80% { 
        opacity: 1;
        stroke-dasharray: 1000 0;
        filter: drop-shadow(0 0 8px currentColor);
    }
    90%, 100% { 
        opacity: 0.3;
        stroke-dasharray: 1000 0;
    }
}

.energy-wave {
    fill: none;
    stroke: rgba(102, 126, 234, 0.3);
    stroke-width: 1;
    opacity: 0;
}

.wave-1 {
    animation: energy-pulse 3s ease-out infinite;
    animation-delay: 0s;
}

.wave-2 {
    animation: energy-pulse 3s ease-out infinite;
    animation-delay: 1s;
}

.wave-3 {
    animation: energy-pulse 3s ease-out infinite;
    animation-delay: 2s;
}

@keyframes energy-pulse {
    0% { 
        r: 20;
        opacity: 0.8;
        stroke-width: 3;
    }
    100% { 
        r: 200;
        opacity: 0;
        stroke-width: 0.5;
    }
}

.neural-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.ai-energy-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 65%, rgba(255, 107, 107, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.1) 0%, transparent 25%),
                radial-gradient(circle at 70% 30%, rgba(118, 75, 162, 0.1) 0%, transparent 35%);
    animation: energy-field-pulse 8s ease-in-out infinite;
}

@keyframes energy-field-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.quantum-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-shift 20s linear infinite;
    opacity: 0.2;
}

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

/* Advanced animation effects */
@keyframes data-pulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -100%) rotate(var(--rotation)) scaleY(0.8);
    }
    50% { 
        opacity: 0.8;
        transform: translate(-50%, -100%) rotate(var(--rotation)) scaleY(1.2);
    }
}

@keyframes quantum-fluctuation {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    33% { 
        opacity: 0.6;
        transform: scale(1.05) rotate(120deg);
    }
    66% { 
        opacity: 0.4;
        transform: scale(0.95) rotate(240deg);
    }
}

/* Product card enhancements */
.product-card.featured .product-visual {
    position: relative;
    overflow: hidden;
}

.product-card.featured .product-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.product-card.featured:hover .product-visual::before {
    left: 100%;
}

.product-image {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.2);
}

/* Enhanced glowing effects */
.ignition-explosion {
    animation: explosion-glow 2s ease-out forwards;
}

@keyframes explosion-glow {
    0% { 
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        filter: brightness(2);
    }
    20% { 
        transform: translate(-50%, -50%) scale(3);
        opacity: 1;
        filter: brightness(3) saturate(2);
    }
    60% { 
        transform: translate(-50%, -50%) scale(6);
        opacity: 0.7;
        filter: brightness(2) saturate(1.5);
    }
    100% { 
        transform: translate(-50%, -50%) scale(10);
        opacity: 0;
        filter: brightness(1) saturate(1);
    }
}

.neural-lightning {
    animation: lightning-strike 0.8s ease-out forwards;
}

@keyframes lightning-strike {
    0% { 
        opacity: 0;
        transform: translate(-50%, -100%) rotate(var(--angle)) scaleY(0);
        filter: brightness(3) blur(2px);
    }
    10% { 
        opacity: 1;
        transform: translate(-50%, -100%) rotate(var(--angle)) scaleY(1);
        filter: brightness(4) blur(0px);
    }
    90% { 
        opacity: 0.8;
        transform: translate(-50%, -100%) rotate(var(--angle)) scaleY(1.2);
        filter: brightness(2) blur(1px);
    }
    100% { 
        opacity: 0;
        transform: translate(-50%, -100%) rotate(var(--angle)) scaleY(0.8);
        filter: brightness(1) blur(3px);
    }
}

/* Enhanced hero effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    animation: hero-ambiance 12s ease-in-out infinite;
    z-index: 0;
}

@keyframes hero-ambiance {
    0%, 100% { opacity: 0.5; }
    33% { opacity: 0.8; }
    66% { opacity: 0.6; }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .africa-ignition-system {
        width: 400px;
        height: 400px;
    }
    
    .neural-particles {
        display: none; /* Reduce particles on mobile for performance */
    }
    
    .quantum-grid {
        display: none; /* Disable grid on mobile */
    }
}

/* High performance mode */
.low-performance .neural-particles,
.low-performance .quantum-grid,
.low-performance .ai-energy-field {
    display: none;
}

.low-performance .africa-map {
    filter: none;
}

.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ai-particles::before,
.ai-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.ai-particles::before {
    top: 20%;
    left: 30%;
    animation-delay: -2s;
}

.ai-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: -4s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--spacing-md);
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.ai-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-secondary);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
}

.primary-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.secondary-button {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.secondary-button:hover {
    border-color: var(--primary-color);
    background: rgba(76, 99, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 1px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--spacing-xl) 0;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(76, 99, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(76, 99, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    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;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(76, 99, 255, 0.05) 0%, transparent 50%);
}

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

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(76, 99, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    position: relative;
    padding-left: 20px;
}

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

/* ===== PRODUCTS SECTION ===== */
.products {
    background: var(--bg-secondary);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.product-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: var(--shadow-lg);
}

.product-visual {
    position: relative;
    height: 250px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card.featured .product-visual {
    height: auto;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.product-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.product-content {
    padding: var(--spacing-lg);
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.product-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.product-tag {
    background: rgba(78, 205, 196, 0.2);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.product-features {
    margin-bottom: var(--spacing-md);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
}

.feature i {
    color: var(--accent-color);
}

.product-stats {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.product-cta {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== INNOVATION SECTION ===== */
.innovation {
    position: relative;
}

.innovation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(76, 99, 255, 0.05) 0%, transparent 50%);
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.innovation-text .section-header {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.pipeline-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.pipeline-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.pipeline-item:hover {
    border-color: rgba(76, 99, 255, 0.3);
    transform: translateX(10px);
}

.pipeline-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.pipeline-content h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.pipeline-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.innovation-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.innovation-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.ai-brain-system {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-core {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neural-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ff6b6b, #ff6b6b80, transparent);
    border-radius: 50%;
    animation: neural-pulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 20px #ff6b6b,
        0 0 40px #ff6b6b50,
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.synapse-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: synapse-rotation 8s linear infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    border-top-color: #667eea;
    border-right-color: #667eea;
    animation-duration: 8s;
}

.ring-2 {
    width: 160px;
    height: 160px;
    border-bottom-color: #764ba2;
    border-left-color: #764ba2;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 200px;
    height: 200px;
    border-top-color: #4ecdc4;
    border-bottom-color: #4ecdc4;
    animation-duration: 16s;
}

@keyframes neural-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 
            0 0 20px #ff6b6b,
            0 0 40px #ff6b6b50;
    }
    50% { 
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 
            0 0 30px #ff6b6b,
            0 0 60px #ff6b6b80,
            0 0 80px #ff6b6b30;
    }
}

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

.brain-connections {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.brain-connections::before,
.brain-connections::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, #667eea, transparent);
    animation: connection-pulse 3s ease-in-out infinite;
}

.brain-connections::before {
    top: 20%;
    left: 30%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.brain-connections::after {
    bottom: 20%;
    right: 30%;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

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

.thought-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.thought-particles::before,
.thought-particles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: thought-flow 4s ease-in-out infinite;
    box-shadow: 0 0 10px #4ecdc4;
}

.thought-particles::before {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.thought-particles::after {
    bottom: 30%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes thought-flow {
    0%, 100% { 
        transform: translate(0, 0) scale(0.5);
        opacity: 0.5;
    }
    50% { 
        transform: translate(50px, -30px) scale(1.5);
        opacity: 1;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.contact-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 99, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 16px;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--bg-secondary);
    padding: 0 8px;
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

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

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

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--primary-color);
    background: rgba(76, 99, 255, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo-text {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section h4 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

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

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

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

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-30px) translateX(5px); }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}