/* ======================
   Custom Font - Higuen Elegant Serif
   ====================== */
@font-face {
    font-family: 'Higuen Elegant Serif';
    src: url('higuen-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ======================
   Global Styles & Reset
   ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Focus States for Accessibility */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Smooth Scrolling with Reduced Motion Support */
@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;
    }
}

/* Selection Styling */
::selection {
    background-color: rgba(34, 197, 94, 0.3);
    color: var(--text-primary);
}

/* Logo Styling with Beautiful Backgrounds - Optimized for Crystalline X */
.logo-image {
    padding: 8px 12px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(34, 197, 94, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.2),
        0 0 30px rgba(0, 212, 255, 0.1);
    filter: contrast(1.1) brightness(1.05);
}

.logo-image:hover {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.15) 0%, 
        rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(0, 212, 255, 0.3),
        0 0 40px rgba(0, 212, 255, 0.2);
    filter: contrast(1.15) brightness(1.1);
}

.hero-logo {
    animation: logoFloat 3s ease-in-out infinite;
    padding: 20px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 212, 255, 0.12) 0%, 
        rgba(15, 23, 42, 0.6) 50%,
        transparent 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 212, 255, 0.25),
        0 0 60px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
    filter: contrast(1.08) brightness(1.05);
}

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

/* Logo in sections - styled containers with cyan theme */
.section-intro img[src="logo.png"],
.about-text img[src="logo.png"],
.team-section > .container > img[src="logo.png"],
.impact-section > .container > img[src="logo.png"] {
    padding: 15px 20px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08), 
        rgba(15, 23, 42, 0.5));
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(5px);
    filter: contrast(1.08) brightness(1.05);
}

/* Footer logo styling */
.footer-column img[src="logo.png"] {
    padding: 12px 15px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1), 
        rgba(15, 23, 42, 0.6));
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.25);
    filter: contrast(1.1) brightness(1.05);
}

/* Enhanced section backgrounds for logo areas */
.products-section .section-intro,
.about-section .about-text,
.team-section .container,
.impact-section .container {
    position: relative;
}

.products-section .section-intro::before,
.about-section .about-text::before,
.team-section .container::before,
.impact-section .container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, 
        rgba(0, 212, 255, 0.12) 0%, 
        rgba(34, 197, 94, 0.06) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.products-section .section-intro > *,
.about-section .about-text > *,
.team-section .container > *,
.impact-section .container > * {
    position: relative;
    z-index: 1;
}

:root {
    /* ========================================
       Enhanced Color System with WCAG AA Compliance
       ======================================== */
    --primary-green: #22c55e;
    --primary-green-light: #4ade80;
    --primary-green-dark: #16a34a;
    --dark-green: #15803d;
    --navy: #1e293b;
    --dark-navy: #0f172a;
    --light-gray: #f1f5f9;
    --gray: #64748b;
    --white: #ffffff;
    --black: #000000;
    
    /* Semantic Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Surface Colors */
    --surface-0: #ffffff;
    --surface-1: #f8fafc;
    --surface-2: #f1f5f9;
    --surface-3: #e2e8f0;
    --surface-dark: #1e293b;
    --surface-darker: #0f172a;
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --text-inverse: #ffffff;
    
    /* ========================================
       Typography System
       ======================================== */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Consolas', 'Monaco', 'Courier New', monospace;
    
    /* Font Sizes - Modular Scale (1.25 ratio) */
    --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 */
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* ========================================
       Spacing System - 8px Grid
       ======================================== */
    --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 */
    
    /* Section Spacing */
    --section-padding: clamp(4rem, 8vw, 7.5rem) 0;
    --container-width: 1280px;
    --container-width-narrow: 960px;
    --container-padding: clamp(1rem, 3vw, 2.5rem);
    
    /* Legacy spacing (for compatibility) */
    --spacing-xs: var(--space-2);
    --spacing-sm: var(--space-4);
    --spacing-md: var(--space-8);
    --spacing-lg: var(--space-12);
    --spacing-xl: var(--space-16);
    
    /* ========================================
       Border Radii
       ======================================== */
    --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 - Depth System
       ======================================== */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-green-glow: 0 0 20px rgba(34, 197, 94, 0.3), 0 0 40px rgba(34, 197, 94, 0.15);
    
    /* ========================================
       Transitions & Animations
       ======================================== */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.1, 1);
    
    /* Easing Curves */
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* ========================================
       Z-Index Scale
       ======================================== */
    --z-base: 0;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: var(--surface-0);
}

/* Container System */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.container-narrow {
    max-width: var(--container-width-narrow);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ======================
   Navigation
   ====================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Higuen Elegant Serif', serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: #e0f2fe;
}

.obsidian {
    color: #e0f2fe;
}

.tensor {
    color: #e0f2fe;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #a0d4e8;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.contact-btn {
    background: transparent;
    color: var(--white);
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-btn:hover {
    background: rgba(253, 180, 75, 0.08);
    color: #FDB44B;
    border-color: rgba(253, 180, 75, 0.4);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #00D4FF;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* ======================
   Hero Section
   ====================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    margin-top: 70px;
    padding-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        #0a0e1a 0%, 
        #111827 50%, 
        #0a0e1a 100%
    );
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.neural-network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    z-index: 1; /* Keep canvas in background */
}

#neuralCanvas {
    width: 100%;
    height: 100%;
    cursor: default;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    pointer-events: none; /* Allow clicks to pass through to canvas */
}

.hero-content {
    pointer-events: none; /* Content wrapper also transparent */
}

.hero-title {
    pointer-events: none; /* Let clicks pass through title text to concepts */
    display: inline-block;
}

.hero-cta {
    pointer-events: auto; /* Only the button container blocks clicks */
}

.btn-primary,
.btn-secondary {
    pointer-events: auto; /* Ensure buttons are clickable */
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: var(--font-secondary);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3); }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 30%, #bae6fd 70%, #7dd3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroTitleGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 25px rgba(186, 230, 253, 0.5));
    }
    50% {
        filter: drop-shadow(0 4px 35px rgba(125, 211, 252, 0.7)) drop-shadow(0 0 50px rgba(186, 230, 253, 0.5));
    }
}

.hero-closing {
    display: inline-block;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 25%, #14b8a6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-top: 0.5em;
    letter-spacing: -0.02em;
}

@keyframes subtle-glow {
    0%, 100% {
        filter: drop-shadow(0 2px 20px rgba(6, 182, 212, 0.6));
    }
    50% {
        filter: drop-shadow(0 4px 30px rgba(6, 182, 212, 0.8)) drop-shadow(0 0 40px rgba(20, 184, 166, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-family: var(--font-body);
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 50px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: var(--space-5) var(--space-12);
    border-radius: var(--radius-full);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: var(--text-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(253, 180, 75, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #ffffff;
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(59, 130, 246, 0.4);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 15px 40px rgba(59, 130, 246, 0.6), 0 0 50px rgba(16, 185, 129, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md), 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: var(--shadow-md), 0 0 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    color: #60a5fa;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-family: var(--font-body);
}

/* ======================
   AI Tech Stack Section
   ====================== */
.tech-stack-section {
    padding: 80px 0 120px 0; /* Added more bottom padding for breathing room */
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.tech-stack-section .container {
    max-width: 100%;
    padding: 0 40px;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tech-stack-section .section-intro {
    position: relative;
    z-index: 2;
}

.tech-stack-section .section-intro h2 {
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.3));
}

.tech-stack-section .section-intro p {
    color: #cbd5e1;
}

.tech-visualization {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* AI Code Demo */
.ai-code-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    width: 98%;
    max-width: 1800px;
    margin: 0 auto;
    height: 700px;
}

/* Code Editor Container */
.code-editor-container {
    display: flex;
    flex-direction: column;
    background: #1e1e1e;
    border-right: 1px solid rgba(34, 197, 94, 0.3);
    height: 100%;
    overflow: hidden;
}

.editor-header {
    background: #2d2d30;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3e3e42;
}

.editor-tabs {
    display: flex;
    gap: 5px;
}

.tab {
    background: #1e1e1e;
    padding: 6px 12px;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #cccccc;
    font-family: 'Consolas', 'Monaco', monospace;
}

.tab.active {
    background: #1e1e1e;
    border-top: 2px solid var(--primary-green);
}

.tab i {
    color: #3776ab;
    font-size: 0.9rem;
}

.editor-actions i {
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.editor-actions i:hover {
    transform: scale(1.2);
}

.editor-content {
    display: flex;
    background: #1e1e1e;
    padding: 15px 0;
    flex-grow: 1;
    min-height: 300px;
    overflow: hidden;
}

.line-numbers {
    padding: 0 15px;
    color: #858585;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: right;
    user-select: none;
}

.code-area {
    flex-grow: 1;
    margin: 0;
    padding: 0 15px;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
}

.code-area code {
    display: block;
}

/* Syntax Highlighting */
.keyword { color: #569cd6; }
.string { color: #ce9178; }
.function { color: #dcdcaa; }
.comment { color: #6a9955; font-style: italic; }
.number { color: #b5cea8; }
.class { color: #4ec9b0; }

/* Terminal */
.terminal {
    background: #0d1117;
    border-top: 1px solid #3e3e42;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
}

.terminal-header {
    background: #161b22;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #30363d;
}

.terminal-header span {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.terminal-header i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.terminal-content {
    padding: 15px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.85rem;
    color: #58a6ff;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.terminal-line {
    margin-bottom: 8px;
    line-height: 1.5;
}

.terminal-line.success {
    color: var(--primary-green);
}

.terminal-line.error {
    color: #f85149;
}

.terminal-line.info {
    color: #79c0ff;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--primary-green);
    animation: blink 1s infinite;
    margin-left: 2px;
}

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

/* Tech Stack Container (Right) */
/* Tech Stack Container */
.tech-stack-container {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(34, 197, 94, 0.3);
    overflow: hidden;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px; /* Reduced gap for tighter layout */
    padding: 25px; /* Reduced padding */
    background: #0d1117;
    overflow: hidden;
    height: 100%;
}

/* Visualization Container (Center) */
.visualization-container {
    display: flex;
    flex-direction: column;
    background: #1e1e1e;
    border-right: 1px solid rgba(34, 197, 94, 0.3);
    height: 100%;
    overflow: hidden;
    min-width: 0;
}

.output-header {
    background: #2d2d30;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3e3e42;
}

.output-header span {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 600;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #8b949e;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.neural-viz-container {
    background: #0d1117;
    padding: 30px;
    flex: 1;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btn-primary.small { padding: 6px 10px; font-size: 0.85rem; }
.prediction { color: #a7f3d0; font-size: 0.95rem; }

/* CNN pipeline viz */
.cnn-visualization { 
    position: relative; 
    display: flex; 
    flex-direction: row;
    gap: var(--space-12); 
    background: linear-gradient(135deg, var(--dark-navy) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 3px solid rgba(34, 197, 94, 0.4);
    padding: var(--space-16) var(--space-12); 
    margin: 0 auto var(--space-12) auto; 
    max-width: 100%;
    width: 98%;
    min-height: 500px;
    border-radius: var(--radius-2xl);
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-2xl), var(--shadow-green-glow);
    transition: all var(--transition-smooth);
}

.cnn-visualization:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: var(--shadow-2xl), 
                0 0 30px rgba(34, 197, 94, 0.4), 
                0 0 60px rgba(34, 197, 94, 0.2);
}
.cnn-left { 
    display: flex; 
    flex-direction: row; 
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

/* Input Features Grid */
.input-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
.input-features-wrapper {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}
.feature-input {
    position: relative;
    opacity: 0;
    animation: fadeInFeature 0.5s ease forwards;
}
.feature-input:nth-child(1) { animation-delay: 0.3s; }
.feature-input:nth-child(2) { animation-delay: 0.5s; }
.feature-input:nth-child(3) { animation-delay: 0.7s; }
.feature-input:nth-child(4) { animation-delay: 0.9s; }
@keyframes fadeInFeature {
    to { opacity: 1; }
}
.feature-box {
    position: relative;
    width: 180px;
    height: 130px;
    border: 3px solid rgba(34,197,94,0.6);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg), 
                0 4px 12px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.feature-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-box:hover {
    border-color: rgba(34,197,94,0.9);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl), 
                0 8px 24px rgba(34, 197, 94, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-box:hover::before {
    opacity: 1;
}
.feature-label {
    display: none;
}

.cnn-left .output-metrics { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: var(--space-6);
    padding: var(--space-8) var(--space-6);
    background: linear-gradient(135deg, #161b22 0%, #1a1f26 100%);
    border: 4px solid rgba(34, 197, 94, 0.6);
    border-radius: var(--radius-xl);
    width: 100%;
    box-shadow: var(--shadow-lg), 
                0 4px 16px rgba(34, 197, 94, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cnn-left .output-metrics::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cnn-left .output-metrics:hover {
    border-color: rgba(34, 197, 94, 0.7);
    box-shadow: var(--shadow-xl), 
                0 8px 24px rgba(34, 197, 94, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.cnn-controls { display:none; }
.segmentation-chips { display:none; }
.cnn-note { color:#a7f3d0; font-size:.85rem; margin-top:8px; }
.cnn-right { 
    position:relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
    flex: 1;
}
.processing-status {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(34, 197, 94, 0.5);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 600px;
    text-align: center;
}
.processing-status.active {
    opacity: 1;
}
#cnnSvg { 
    width:100%; 
    height:200px; 
    overflow: visible;
    transform: scale(0.85);
    transform-origin: left top;
    margin-top: 50px;
    margin-bottom: 50px;
}
.layer-group { transition: all 0.3s ease; cursor: pointer; }
.layer-group:hover { transform: scale(1.05); }
.layer-group .map { fill: rgba(34,197,94,0.12); stroke: rgba(34,197,94,0.7); stroke-width: 5; transition: all 0.3s ease; }
.layer-group:hover .map { fill: rgba(34,197,94,0.2); stroke: rgba(34,197,94,1); stroke-width: 6; }
.layer-group .layer-label { 
    fill:#22c55e; 
    font-size: 2.2rem; 
    font-weight: 900;
    font-family: var(--font-secondary);
    letter-spacing: 1px;
}
.layer-group .layer-sublabel { 
    fill:#a7f3d0; 
    font-size: 1.8rem; 
    font-weight: 600;
    opacity: 0.95;
}
.conn { fill:none; stroke: rgba(34,197,94,0.8); stroke-width:6; }
.output-node { fill: rgba(34,197,94,0.3); stroke: rgba(34,197,94,0.8); stroke-width: 3; }
.cnn-pred { margin-top:8px; color:#a7f3d0; }
/* Output Section */
.output-section {
    padding: 20px;
    background: transparent;
    border: none;
    border-radius: 12px;
    text-align: center;
    width: auto;
    max-width: 1400px;
    flex-shrink: 0;
    margin-top: 0;
}
.output-label {
    color: #22c55e;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.output-image-wrap {
    position: relative;
    width: 600px;
    height: 700px;
    margin: 0 auto;
    border: 5px solid rgba(34,197,94,0.7);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg, #0d1117 0%, #0f1419 100%);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-2xl), 
                0 10px 40px rgba(34, 197, 94, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(1);
    transform-origin: center center;
    transition: all var(--transition-smooth);
}

.output-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.output-image-wrap:hover {
    border-color: rgba(34,197,94,0.9);
    box-shadow: var(--shadow-2xl), 
                0 15px 50px rgba(34, 197, 94, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(1.01);
}
#outputDogImage {
    width: 100%;
    height: calc(100% - 100px);
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

#outputDogImage.visible {
    opacity: 1;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.output-text {
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.98) 0%, rgba(15, 20, 25, 1) 100%);
    color: var(--primary-green);
    padding: var(--space-6);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 3px solid rgba(34,197,94,0.6);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: var(--leading-tight);
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5),
                 0 0 40px rgba(34, 197, 94, 0.3);
    transition: all var(--transition-base);
}

.output-text:hover {
    border-top-color: rgba(34,197,94,0.9);
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.7),
                 0 0 50px rgba(34, 197, 94, 0.4);
}

#neuralVizCanvas {
    width: 100%;
    height: 100%;
    max-height: 100%;
}

.output-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px 20px;
    background: #161b22;
    border-top: 1px solid #30363d;
    min-height: fit-content;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    min-height: fit-content;
    padding: 10px;
}

.metric-label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.metric-value {
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.2;
    white-space: nowrap;
    overflow: visible;
}

.output-metrics .metric-value {
    font-size: 2.4rem;
}

.ai-brain {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
}

#brainCanvas {
    width: 100%;
    height: 100%;
}

.brain-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.brain-stat {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.brain-stat:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-count {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-text {
    font-family: var(--font-secondary);
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}


.tech-item {
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(34, 197, 94, 0.3);
    padding: 18px 14px; /* Reduced padding for more compact boxes */
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-item:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.tech-icon {
    font-size: 2.3rem; /* Reduced icon size for compact boxes */
    color: var(--primary-green);
    margin-bottom: 8px; /* Reduced margin */
    filter: drop-shadow(0 2px 8px rgba(34, 197, 94, 0.3));
}

.tech-item h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem; /* Slightly smaller for compact boxes */
    font-weight: 800;
    margin-bottom: 6px; /* Reduced margin */
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
    filter: drop-shadow(0 2px 12px rgba(16, 185, 129, 0.2));
}

.tech-item p {
    font-size: 0.8rem;
    color: #a7f3d0;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

/* Scroll Animation Styles */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered animation delays for sequential appearance */
.scroll-animate:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.scroll-animate:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.scroll-animate:nth-child(3).animate-in {
    transition-delay: 0.3s;
}

.scroll-animate:nth-child(4).animate-in {
    transition-delay: 0.4s;
}

.scroll-animate:nth-child(5).animate-in {
    transition-delay: 0.5s;
}

.scroll-animate:nth-child(6).animate-in {
    transition-delay: 0.6s;
}

/* Enhanced Tech Boxes - Each with unique style */

/* Deep Learning - Green Theme */
.tech-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(34, 197, 94, 0.08));
    border: 2px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
    animation: deepLearningGlow 3s ease-in-out infinite;
}

@keyframes deepLearningGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
        border-color: rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(16, 185, 129, 0.35), 0 0 60px rgba(34, 197, 94, 0.25);
        border-color: rgba(16, 185, 129, 0.6);
    }
}

.tech-item:nth-child(1) .tech-icon {
    color: #10b981;
    filter: drop-shadow(0 2px 12px rgba(16, 185, 129, 0.5));
}

.tech-item:nth-child(1) h4 {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(16, 185, 129, 0.4));
}

.tech-item:nth-child(1) p {
    color: #6ee7b7;
}

/* Neural Networks - Cyan Theme */
.tech-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08), rgba(20, 184, 166, 0.08));
    border: 2px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.2);
    animation: neuralGlow 3s ease-in-out infinite 0.2s;
}

@keyframes neuralGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(6, 182, 212, 0.2);
        border-color: rgba(6, 182, 212, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(6, 182, 212, 0.35), 0 0 60px rgba(20, 184, 166, 0.25);
        border-color: rgba(6, 182, 212, 0.6);
    }
}

.tech-item:nth-child(2) .tech-icon {
    color: #06b6d4;
    filter: drop-shadow(0 2px 12px rgba(6, 182, 212, 0.5));
}

.tech-item:nth-child(2) h4 {
    background: linear-gradient(135deg, #06b6d4 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(6, 182, 212, 0.4));
}

.tech-item:nth-child(2) p {
    color: #67e8f9;
}

/* LLMs - Purple Theme */
.tech-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(168, 85, 247, 0.08));
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
    animation: llmGlow 3s ease-in-out infinite 0.4s;
}

@keyframes llmGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
        border-color: rgba(139, 92, 246, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(139, 92, 246, 0.35), 0 0 60px rgba(168, 85, 247, 0.25);
        border-color: rgba(139, 92, 246, 0.6);
    }
}

.tech-item:nth-child(3) .tech-icon {
    color: #8b5cf6;
    filter: drop-shadow(0 2px 12px rgba(139, 92, 246, 0.5));
}

.tech-item:nth-child(3) h4 {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(139, 92, 246, 0.4));
}

.tech-item:nth-child(3) p {
    color: #c4b5fd;
}

/* ML Ops - Orange Theme */
.tech-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(251, 146, 60, 0.08));
    border: 2px solid rgba(249, 115, 22, 0.4);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
    animation: mlopsGlow 3s ease-in-out infinite 0.6s;
}

@keyframes mlopsGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
        border-color: rgba(249, 115, 22, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(249, 115, 22, 0.35), 0 0 60px rgba(251, 146, 60, 0.25);
        border-color: rgba(249, 115, 22, 0.6);
    }
}

.tech-item:nth-child(4) .tech-icon {
    color: #f97316;
    filter: drop-shadow(0 2px 12px rgba(249, 115, 22, 0.5));
}

.tech-item:nth-child(4) h4 {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(249, 115, 22, 0.4));
}

.tech-item:nth-child(4) p {
    color: #fdba74;
}

/* Vector DBs - Pink Theme */
.tech-item:nth-child(5) {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(244, 114, 182, 0.08));
    border: 2px solid rgba(236, 72, 153, 0.4);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.2);
    animation: vectorGlow 3s ease-in-out infinite 0.8s;
}

@keyframes vectorGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(236, 72, 153, 0.2);
        border-color: rgba(236, 72, 153, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(236, 72, 153, 0.35), 0 0 60px rgba(244, 114, 182, 0.25);
        border-color: rgba(236, 72, 153, 0.6);
    }
}

.tech-item:nth-child(5) .tech-icon {
    color: #ec4899;
    filter: drop-shadow(0 2px 12px rgba(236, 72, 153, 0.5));
}

.tech-item:nth-child(5) h4 {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(236, 72, 153, 0.4));
}

.tech-item:nth-child(5) p {
    color: #f9a8d4;
}

/* Cloud Architecture - Blue Theme */
.tech-item:nth-child(6) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.08));
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    animation: cloudGlow 3s ease-in-out infinite 1s;
}

@keyframes cloudGlow {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
        border-color: rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 12px 40px rgba(59, 130, 246, 0.35), 0 0 60px rgba(16, 185, 129, 0.2);
        border-color: rgba(59, 130, 246, 0.6);
    }
}

.tech-item:nth-child(6) .tech-icon {
    color: #3b82f6;
    filter: drop-shadow(0 2px 12px rgba(59, 130, 246, 0.5));
}

.tech-item:nth-child(6) h4 {
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(59, 130, 246, 0.4));
}

.tech-item:nth-child(6) p {
    color: #93c5fd;
}

/* AI Metrics Dashboard */
.ai-metrics-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.ai-metrics-dashboard h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 18px rgba(59, 130, 246, 0.3));
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.metric-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.metric-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.ai-metrics-dashboard .metric-value {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 10px;
    line-height: 1;
}

.metric-label {
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.metric-progress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-green), #a3e635);
    border-radius: 3px;
    animation: progressLoad 2s ease-out;
}

@keyframes progressLoad {
    from {
        width: 0 !important;
    }
}

/* ======================
   Products Section
   ====================== */
/* ========================================
   Products Section - Modern Design
   ======================================== */
.products-section {
    padding: 120px 0;
    background: linear-gradient(180deg, 
        #0a0e1a 0%, 
        #111827 50%, 
        #0a0e1a 100%
    );
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.products-badge i {
    font-size: 1rem;
}

.products-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.products-title .gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.3));
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.3));
}

.products-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #94a3b8;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Product Cards */
.product-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.2),
        0 0 100px rgba(59, 130, 246, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

/* Featured Product Card */
.product-card-featured {
    border: 2px solid rgba(59, 130, 246, 0.4);
    background: rgba(17, 24, 39, 0.8);
}

.product-card-featured::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.product-card-featured:hover {
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 
        0 25px 70px rgba(59, 130, 246, 0.25),
        0 0 120px rgba(59, 130, 246, 0.15);
}

/* Product Badge */
.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    width: fit-content;
}

.badge-featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.15));
    border-color: rgba(59, 130, 246, 0.4);
}

/* Featured Tag */
.featured-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    color: #1e293b;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.featured-tag i {
    font-size: 0.9rem;
}

/* Product Icon */
.product-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.product-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.15));
    border-radius: 20px;
    animation: iconPulse 3s ease-in-out infinite;
}

.product-icon {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: #3b82f6;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* Product Text */
.product-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 2px 15px rgba(59, 130, 246, 0.2));
}

.product-tagline {
    font-size: 1rem;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-description {
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.product-feature {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.product-feature:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.15));
    border-radius: 10px;
    color: #60a5fa;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.1rem;
}

.feature-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 12px rgba(16, 185, 129, 0.2));
}

.feature-content p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* Product Stats */
.product-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    margin-bottom: 32px;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(71, 85, 105, 0.3);
}

/* Product Button */
.btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: #60a5fa;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-product:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.btn-product i {
    transition: transform 0.3s ease;
}

.btn-product:hover i {
    transform: translateX(4px);
}

.btn-product-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    color: #ffffff;
}

.btn-product-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

/* Trust Indicators */
.products-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(71, 85, 105, 0.2);
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-item i {
    font-size: 1.3rem;
    color: #10b981;
}

/* ======================
   Solutions Section - Matching Products Blue Theme
   ====================== */
.solutions-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, 
        #0a0e1a 0%, 
        #111827 50%, 
        #0a0e1a 100%
    );
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.section-intro h2 {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.3));
}

.section-intro p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.8;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.solution-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    color: #ffffff;
    padding: 0;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.solution-content {
    padding: 40px 35px 30px;
    flex-grow: 1;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.15));
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.solution-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    filter: drop-shadow(0 2px 15px rgba(96, 165, 250, 0.3));
}

.solution-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 28px;
}

.solution-features {
    list-style: none;
    margin-bottom: 0;
}

.solution-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
}

.solution-features i {
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.solution-footer {
    padding: 20px 30px;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.solution-price {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.solution-btn {
    background: transparent;
    color: #10b981;
    border: none;
    padding: 0;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-btn:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

/* ======================
   Coming Soon Modal
   ====================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(15, 23, 42, 0.95));
    border: 2px solid rgba(59, 130, 246, 0.4);
    margin: 10% auto;
    padding: 50px;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: 0 20px 80px rgba(59, 130, 246, 0.3);
    animation: slideDown 0.4s ease;
    text-align: center;
}

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

.modal-close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #3b82f6;
    transform: scale(1.2);
}

.modal-icon {
    font-size: 4rem;
    color: #3b82f6;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.7));
    }
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.3));
}

.modal-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.modal-text strong {
    color: #10b981;
    font-weight: 700;
}

.modal-btn {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #60a5fa, #34d399);
}

/* ======================
   About Section - Matching Products Blue Theme
   ====================== */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, 
        #0a0e1a 0%, 
        #111827 50%, 
        #0a0e1a 100%
    );
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.problem-section {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.4);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.25), 0 0 80px rgba(59, 130, 246, 0.15);
    transition: all 0.4s ease;
    animation: problemGlow 3s ease-in-out infinite;
}

@keyframes problemGlow {
    0%, 100% {
        box-shadow: 0 15px 50px rgba(59, 130, 246, 0.25), 0 0 80px rgba(59, 130, 246, 0.15);
        border-color: rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 20px 70px rgba(59, 130, 246, 0.35), 0 0 120px rgba(59, 130, 246, 0.25);
        border-color: rgba(59, 130, 246, 0.6);
    }
}

.problem-section:hover {
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 25px 80px rgba(59, 130, 246, 0.4), 0 0 140px rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
    animation: none;
}

.problem-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 2px 18px rgba(16, 185, 129, 0.3));
}

.problem-section p {
    color: #cbd5e1;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.3));
}

.about-text h2 {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-family: var(--font-primary) !important;
    font-weight: 800 !important;
    filter: drop-shadow(0 2px 15px rgba(16, 185, 129, 0.3)) !important;
}

.about-text h3 {
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-family: var(--font-secondary) !important;
    font-weight: 700 !important;
    filter: drop-shadow(0 2px 12px rgba(96, 165, 250, 0.3)) !important;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #94a3b8;
    font-family: var(--font-body);
}

.story-section {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    padding: 60px;
    border-radius: 24px;
    margin-bottom: 60px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.story-section:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

.story-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 2px 20px rgba(96, 165, 250, 0.3));
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #cbd5e1;
    font-family: var(--font-body);
    margin-bottom: 25px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mv-card {
    background: rgba(17, 24, 39, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.4);
    color: #ffffff;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.mv-card:hover {
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.25);
    transform: translateY(-8px);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3b82f6;
}

.mv-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(59, 130, 246, 0.3));
}

.mv-card p {
    color: #cbd5e1;
    font-family: var(--font-body);
    line-height: 1.8;
}

.focus-section {
    position: relative;
    z-index: 1;
}

.focus-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.3));
}

.focus-section > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #94a3b8;
    font-family: var(--font-body);
    text-align: center;
    line-height: 1.8;
}

.focus-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar {
    text-align: center;
    padding: 35px;
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.pillar-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.pillar h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    filter: drop-shadow(0 2px 15px rgba(16, 185, 129, 0.3));
}

.pillar p {
    color: #cbd5e1;
    font-family: var(--font-body);
    line-height: 1.7;
}

/* ======================
   Impact Section
   ====================== */
.impact-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--surface-1) 0%, var(--light-gray) 50%, var(--surface-1) 100%);
    text-align: center;
    position: relative;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.impact-section h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(59, 130, 246, 0.3));
}

.impact-intro {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--surface-2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-green);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
}

.impact-highlights h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 18px rgba(59, 130, 246, 0.3));
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.highlight-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--surface-2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-green);
}

.highlight-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.highlight-item h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(59, 130, 246, 0.25));
}

/* ======================
   Team Section - Matching Products Blue Theme
   ====================== */
.team-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, 
        #0a0e1a 0%, 
        #111827 50%, 
        #0a0e1a 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.team-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

.team-section h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    filter: drop-shadow(0 2px 20px rgba(96, 165, 250, 0.3));
    z-index: 1;
}

.team-intro {
    font-size: 1.3rem;
    color: #94a3b8;
    font-family: var(--font-body);
    margin-bottom: 60px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-member {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.15));
    border: 3px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #3b82f6;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-member:hover .member-photo {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.team-member h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    filter: drop-shadow(0 2px 15px rgba(59, 130, 246, 0.3));
}

.member-role {
    color: #60a5fa;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.member-bio {
    color: #cbd5e1;
    font-family: var(--font-body);
    line-height: 1.8;
    margin-bottom: 25px;
}

.member-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

/* ======================
   Testimonials Section
   ====================== */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: var(--light-gray);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-green);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.client-info {
    flex-grow: 1;
}

.client-info h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 12px rgba(59, 130, 246, 0.25));
}

.client-info p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--navy);
    font-style: italic;
    margin: 0;
}

.testimonial-metrics {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-metrics .metric {
    font-size: 0.85rem;
    color: var(--gray);
}

.metric-highlight {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-green);
    display: block;
    margin-bottom: 3px;
}

/* Client Logos */
.client-logos {
    text-align: center;
    padding: 60px 0;
    background: var(--light-gray);
    border-radius: 20px;
}

.client-logos h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    filter: drop-shadow(0 2px 18px rgba(59, 130, 246, 0.3));
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.logo-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-align: center;
}

/* ======================
   Contact Section - Matching Products Blue Theme
   ====================== */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, 
        #0a0e1a 0%, 
        #111827 50%, 
        #0a0e1a 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

.contact-section h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    filter: drop-shadow(0 2px 20px rgba(96, 165, 250, 0.3));
    z-index: 1;
}

.contact-intro {
    font-size: 1.3rem;
    color: #94a3b8;
    font-family: var(--font-body);
    margin-bottom: 60px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.contact-info {
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 15px rgba(16, 185, 129, 0.3));
}

.contact-item p {
    color: #cbd5e1;
    font-family: var(--font-body);
    line-height: 1.8;
}

.contact-form {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    padding: 45px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2563eb, #059669);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

/* ======================
   Footer - Matching Products Blue Theme
   ====================== */
.footer {
    background: linear-gradient(180deg, 
        #0a0e1a 0%, 
        #111827 50%, 
        #0a0e1a 100%
    );
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #60a5fa 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 2px 15px rgba(96, 165, 250, 0.3));
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94a3b8;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #3b82f6;
    transform: translateX(3px);
}

.footer-column p {
    color: #94a3b8;
    font-family: var(--font-body);
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-column p i {
    color: #10b981;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-family: var(--font-body);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #94a3b8;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

/* ======================
   Responsive Design
   ====================== */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .focus-pillars {
        grid-template-columns: 1fr;
    }
    
    .tech-visualization {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-code-demo {
        grid-template-columns: 1fr;
    }
    
    .code-editor-container,
    .visualization-container {
        border-right: none;
        border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    }
    
    .tech-grid {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
        border-top: 1px solid rgba(0, 212, 255, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .cnn-visualization {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        min-height: auto;
    }
    
    .cnn-left {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .input-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-box {
        width: 140px;
        height: 100px;
    }
    
    #cnnSvg {
        height: 300px;
        transform: scale(0.7);
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .output-image-wrap {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 4/5;
    }
    
    .output-section {
        padding: 15px;
        max-width: 100%;
    }
    
    .hero-taglines {
        font-size: 1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products Section - Mobile */
    .products-section {
        padding: 80px 0;
    }
    
    .products-header {
        margin-bottom: 60px;
    }
    
    .products-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .products-trust {
        flex-direction: column;
        gap: 20px;
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .products-grid {
        gap: 30px;
        margin-top: 40px;
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 32px 24px;
    }
    
    .featured-tag {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 16px;
    }
    
    .product-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .product-icon {
        font-size: 2rem;
    }
    
    .product-name {
        font-size: 1.6rem;
    }
    
    .product-tagline {
        font-size: 0.9rem;
    }
    
    .product-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .product-feature {
        padding: 14px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    .product-stats {
        padding: 20px 0;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .btn-product {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .btn-product:hover {
        transform: translateY(-2px);
    }
    
    .about-hero {
        grid-template-columns: 1fr;
    }
    
    .mission-vision,
    .team-grid,
    .highlights-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-brain {
        height: 300px;
    }
    
    .brain-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .brain-stat {
        padding: 10px;
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stat-count {
        font-size: 1.2rem;
    }
    
    .stat-text {
        font-size: 0.65rem;
    }
}
