/* ===== NEXON SOLUTIONS - STUNNING WEBSITE STYLES ===== */

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

:root {
    /* Colors */
    --primary-blue: #003399;
    --secondary-blue: #0066cc;
    --accent-cyan: #00ccff;
    --accent-green: #00ff88;
    --dark-bg: #0a0f1c;
    --darker-bg: #050a14;
    --card-bg: rgba(15, 23, 42, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #003399 0%, #0066cc 50%, #00ccff 100%);
    --gradient-secondary: linear-gradient(135deg, #00ccff 0%, #00ff88 100%);
    --gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 20px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 204, 255, 0.3);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

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

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 51, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 204, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
}

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

.nav-brand .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
    box-shadow: var(--shadow-glow);
}

.logo-text .company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 12px;
    color: var(--accent-cyan);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition-fast);
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hide mobile hamburger menu on desktop */
.mobile-menu-toggle {
    display: none;
}

/* Hide mobile navigation menu on desktop and show desktop nav */
@media (min-width: 769px) {
    .mobile-nav-menu {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
}

/* Body scroll prevention when mobile nav is open */
body.mobile-nav-open {
    overflow: hidden;
}

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

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 51, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 204, 255, 0.2) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 204, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 136, 0.3), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 40px 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    z-index: 2;
    padding-left: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #00ccff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00ccff; /* Fallback for browsers that don't support background-clip */
    display: inline-block;
    /* Additional browser support */
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-cyan);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    perspective: 1200px;
}

.dashboard-preview {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform: perspective(1200px) rotateY(-5deg) rotateX(3deg) translateZ(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 600px;
    position: relative;
    
    /* Enhanced floating shadows */
    box-shadow: 
        0 25px 80px rgba(0, 51, 153, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 5px 20px rgba(0, 204, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    /* Subtle floating animation */
    animation: dashboardFloat 6s ease-in-out infinite;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.05), transparent 50%, rgba(0, 255, 136, 0.03));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    transition: opacity 0.6s ease;
    opacity: 0.7;
}

.dashboard-preview::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(0, 51, 153, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    transform: scale(0.9);
    z-index: -2;
    animation: shadowFloat 6s ease-in-out infinite;
}

.dashboard-preview:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateZ(60px) translateY(-8px);
    box-shadow: 
        0 35px 100px rgba(0, 51, 153, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 8px 30px rgba(0, 204, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}

.dashboard-preview:hover::before {
    opacity: 1;
}

.dashboard-preview:hover::after {
    transform: scale(1.1);
    filter: blur(25px);
}

/* Floating animation keyframes */
@keyframes dashboardFloat {
    0%, 100% {
        transform: perspective(1200px) rotateY(-5deg) rotateX(3deg) translateZ(40px) translateY(0px);
    }
    33% {
        transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateZ(45px) translateY(-4px);
    }
    66% {
        transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateZ(35px) translateY(-2px);
    }
}

@keyframes shadowFloat {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    33% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    66% {
        transform: scale(0.85);
        opacity: 0.7;
    }
}

.dashboard-header {
    background: rgba(0, 51, 153, 0.1);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-nav {
    display: flex;
    gap: 24px;
}

.nav-item {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-item.active {
    background: var(--gradient-primary);
    color: white;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: var(--dark-bg);
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.dashboard-content {
    padding: 24px;
}

.dashboard-header-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.stat-widget:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 4px;
}

.compliance-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.projects-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.time-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-trend {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.stat-trend.up {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.dashboard-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.recent-activity h3,
.compliance-chart h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.activity-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.activity-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.activity-icon.new {
    background: linear-gradient(135deg, #00ccff, #0099cc);
}

.activity-icon.review {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.activity-icon.submission {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.activity-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.activity-status {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-status.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.activity-status.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.chart-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 16px;
    height: 120px;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    gap: 8px;
    align-items: end;
    width: 100%;
    height: 100%;
}

.bar {
    flex: 1;
    background: var(--gradient-secondary);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growUp 1.2s ease-out forwards;
    transform-origin: bottom;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
}

.bar-label {
    position: absolute;
    bottom: -20px;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

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

@keyframes growUp {
    from { 
        height: 0; 
        opacity: 0;
        transform: scaleY(0);
    }
    to { 
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SMARTREGULATE SECTION ===== */
.smartregulate {
    background: rgba(0, 51, 153, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.platform-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    background: var(--glass-bg);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab:hover:not(.active) {
    color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
}

/* Platform feature screenshots optimized for mobile */
.feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    padding: 20px;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.feature-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.4;
}

.showcase-content {
    position: relative;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

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

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-glow);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--dark-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

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

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
}

/* ===== TECHNOLOGY SECTION ===== */
.technology {
    background: rgba(0, 204, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

/* AI CPU Chip Visualization */
.ai-cpu-chip {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cpu-core {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    border: 3px solid var(--accent-cyan);
    border-radius: 16px;
    box-shadow: 
        0 0 40px rgba(0, 204, 255, 0.4),
        inset 0 0 60px rgba(0, 204, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cpu-center {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #003399 0%, #0066cc 50%, #00ccff 100%);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 0 30px rgba(0, 204, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: cpuPulse 2s ease-in-out infinite;
}

.ai-text {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 800;
    color: white;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 204, 255, 0.6);
    letter-spacing: 4px;
    z-index: 2;
}

.cpu-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.grid-line {
    position: absolute;
    background: var(--accent-cyan);
    opacity: 0.6;
}

.grid-line:nth-child(1) {
    width: 100%;
    height: 1px;
    top: 25%;
    left: 0;
}

.grid-line:nth-child(2) {
    width: 100%;
    height: 1px;
    top: 75%;
    left: 0;
}

.grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    top: 0;
    left: 25%;
}

.grid-line:nth-child(4) {
    width: 1px;
    height: 100%;
    top: 0;
    left: 75%;
}

/* CPU Pins */
.cpu-pins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pin-row {
    position: absolute;
    display: flex;
    gap: 8px;
}

.pin {
    width: 8px;
    height: 20px;
    background: linear-gradient(145deg, #64748b, #334155);
    border-radius: 2px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    animation: pinGlow 3s ease-in-out infinite;
}

.pin-top {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.pin-bottom {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.pin-left {
    left: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    flex-direction: row;
}

.pin-right {
    right: -25px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    flex-direction: row;
}

/* Circuit Traces */
.circuit-traces {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.trace {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    height: 2px;
    animation: dataFlow 2s linear infinite;
}

.trace-1 {
    top: 20%;
    left: -50px;
    width: 120px;
    animation-delay: 0s;
}

.trace-2 {
    bottom: 20%;
    right: -50px;
    width: 120px;
    animation-delay: 0.5s;
}

.trace-3 {
    left: 20%;
    top: -50px;
    width: 2px;
    height: 120px;
    animation-delay: 1s;
    background: linear-gradient(0deg, transparent, var(--accent-green), transparent);
}

.trace-4 {
    right: 20%;
    bottom: -50px;
    width: 2px;
    height: 120px;
    animation-delay: 1.5s;
    background: linear-gradient(0deg, transparent, var(--accent-green), transparent);
}

/* Data Flow Particles */
.data-flow-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: particleFlow 3s linear infinite;
}

.particle:nth-child(1) {
    top: 10%;
    left: -10px;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    bottom: 10%;
    right: -10px;
    animation-delay: 0.6s;
}

.particle:nth-child(3) {
    left: 10%;
    top: -10px;
    animation-delay: 1.2s;
}

.particle:nth-child(4) {
    right: 10%;
    bottom: -10px;
    animation-delay: 1.8s;
}

.particle:nth-child(5) {
    top: 50%;
    left: -20px;
    animation-delay: 2.4s;
}

/* Animations */
@keyframes cpuPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(0, 204, 255, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 
            0 0 50px rgba(0, 204, 255, 0.8),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

@keyframes pinGlow {
    0%, 100% { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 2px 8px rgba(0, 204, 255, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3); }
}

@keyframes dataFlow {
    0% { opacity: 0; transform: translateX(-100px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100px); }
}

@keyframes particleFlow {
    0% { 
        opacity: 0; 
        transform: translate(0, 0) scale(0.5); 
    }
    20% { 
        opacity: 1; 
        transform: translate(50px, 50px) scale(1); 
    }
    80% { 
        opacity: 1; 
        transform: translate(200px, 200px) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translate(300px, 300px) scale(0.5); 
    }
}

/* ===== ABOUT SECTION - TEMPORARILY HIDDEN (UNCOMMENT TO RESTORE) ===== */
/*
.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 204, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about .about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.about .about-text {
    z-index: 2;
    position: relative;
}

.about-story h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about .about-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.about .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
}

.about .about-stat {
    text-align: center;
    padding: 16px;
}

.about .about-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.about .about-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.about .about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about .value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.about .value:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 204, 255, 0.3);
}

.about .value i {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.value-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about .about-visual {
    position: relative;
    z-index: 2;
}

.about-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.about-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 51, 153, 0.8) 0%,
        rgba(0, 204, 255, 0.6) 50%,
        rgba(0, 255, 136, 0.4) 100%
    );
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.about-image-container:hover .overlay-content {
    transform: translateY(0);
}

.innovation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
}

.tech-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* ===== ORIGINAL ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    max-width: 500px;
}

.about-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.about-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-cyan);
    display: block;
    line-height: 1;
}

.about-stat .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value i {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.value h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.value p {
    color: var(--text-secondary);
    font-size: 14px;
}

.about-visual {
    display: flex;
    justify-content: center;
}
*/
/* ===== END ABOUT SECTION ===== */

.team-grid {
    display: grid;
    gap: 24px;
    max-width: 300px;
}

.team-member {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-glow);
}

.member-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.member-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== DEMO SECTION ===== */
.demo {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

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

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

.demo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.video-container {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 80px rgba(0, 204, 255, 0.2);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2;
}

.video-overlay:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 4;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
    z-index: 3;
}

.play-icon:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: playPulse 2s infinite;
}

@keyframes playPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.video-info {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 3;
}

.video-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-info p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.video-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
}

#demo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
}





/* Responsive Design */
@media (max-width: 1024px) {
    .video-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .demo {
        padding: 80px 0;
    }
    
    .demo-content {
        margin-top: 60px;
    }
    

    
    .video-info h3 {
        font-size: 24px;
    }
    
    .video-info p {
        font-size: 16px;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .video-info {
        bottom: 30px;
    }
    
    .play-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .play-pulse {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .video-info h3 {
        font-size: 20px;
    }
    
    .video-info p {
        font-size: 14px;
    }
    

}

/* ===== CONTACT SECTION ===== */
.contact {
    background: rgba(0, 51, 153, 0.02);
    border-top: 1px solid var(--border-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition-fast);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.contact-image-container {
    position: relative;
    width: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
}

.contact-image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 204, 255, 0.3);
}

.contact-image {
    width: 400px;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.contact-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 51, 153, 0.85) 0%,
        rgba(0, 204, 255, 0.7) 50%,
        rgba(0, 255, 136, 0.5) 100%
    );
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image-container:hover .contact-image-overlay {
    opacity: 1;
}

.contact-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.contact-image-container:hover .contact-overlay-content {
    transform: translateY(0);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-glow);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.contact-details {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px;
    backdrop-filter: blur(20px);
    width: 400px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 4px 0;
    transition: var(--transition-fast);
}

.link-group a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container,
    .tech-showcase,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --container-padding: 0 20px;
    }
    
    /* ===== MOBILE-FIRST NAVIGATION ===== */
    .nav-menu,
    .nav-toggle {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .navbar {
        padding: 12px 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(13, 17, 23, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-container {
        padding: 0 16px;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }
    
    .nav-brand {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
    }
    
    .logo-text .tagline {
        display: none;
    }
    
    .logo-text .company-name {
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        letter-spacing: 0.8px;
    }
    
    /* Mobile Hamburger Menu */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }
    
    .hamburger-line {
        width: 18px;
        height: 1.5px;
        background: rgba(255, 255, 255, 0.9);
        margin: 2px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    /* Mobile Menu Animation */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
    }
    
    /* Mobile Navigation Menu */
    .mobile-nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        padding: 20px 0;
    }
    
    .mobile-nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }
    
    .mobile-nav-link {
        display: block;
        padding: 16px 0;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        color: #00ccff;
        padding-left: 10px;
    }
    
    .mobile-nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-cta {
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .mobile-cta-btn {
        display: block;
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, #003399, #0066cc);
        color: white;
        text-decoration: none;
        text-align: center;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    
    .mobile-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 204, 255, 0.3);
    }
    
    /* ===== MOBILE CONTENT SIMPLIFICATION ===== */
    .hero-visual,
    .about-visual,
    .contact-info,
    #about,
    .platform-screenshot,
    .eqms-showcase,
    .tech-showcase {
        display: none !important;
    }
    
    /* ===== HERO SECTION - MOBILE OPTIMIZED ===== */
    .hero {
        min-height: 100vh;
        padding: 120px 0 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin: 0 auto 24px auto;
        display: inline-flex;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 24px;
        text-align: center;
        font-weight: 800;
    }
    
    .hero-description {
        font-size: 17px;
        margin-bottom: 40px;
        line-height: 1.6;
        text-align: center;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .btn {
        padding: 18px 32px;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
        text-align: center;
        border-radius: 14px;
        min-height: 56px;
    }
    
    .contact-form .btn {
        min-height: 56px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        margin-top: 8px;
    }
    
    /* ===== DEMO SECTION - MOBILE OPTIMIZED ===== */
    .demo {
        padding: 60px 0;
        background: var(--dark-bg);
    }
    
    .demo-content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .video-wrapper {
        max-width: 100%;
        margin: 0 auto;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-icon {
        width: 28px;
        height: 28px;
    }
    
    .video-info {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 300px;
    }
    
    .video-duration {
        font-size: 14px;
        padding: 6px 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* ===== SECTION OPTIMIZATIONS ===== */
    .section-header {
        margin-bottom: 40px;
        padding: 0 20px;
        text-align: center;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 8px 16px;
        margin: 0 auto 16px auto;
        display: inline-flex;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 16px;
        font-weight: 700;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 1.6;
        max-width: 380px;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* ===== SMARTREGULATE SECTION - HIDDEN ON MOBILE ===== */
    .smartregulate {
        display: none !important;
    }
    
    .showcase-tabs {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        margin-bottom: 32px;
    }
    
    .tab {
        width: 100%;
        padding: 12px 16px;
        justify-content: center;
        font-size: 14px;
    }
    
    /* ===== SERVICES SECTION - HORIZONTAL SCROLL ===== */
    .services {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .services-grid {
        display: flex;
        gap: 20px;
        padding: 0 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        flex: 0 0 280px;
        padding: 28px 24px;
        text-align: center;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        scroll-snap-align: start;
    }
    
    .service-card:first-child {
        margin-left: 0;
    }
    
    .service-card:last-child {
        margin-right: 20px;
    }
    
    .service-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 20px auto;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
        font-weight: 600;
    }
    
    .service-card p {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 16px;
    }
    
    .service-features {
        margin-top: 16px;
        text-align: left;
    }
    
    .service-features li {
        font-size: 13px;
        padding: 6px 0;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .service-features li::before {
        width: 14px;
        height: 14px;
        margin-right: 8px;
    }
    
    .service-link {
        margin-top: 16px;
        padding: 10px 20px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 8px;
    }
    
    /* Hide service badge on mobile */
    .service-badge {
        display: none;
    }
    
    /* Add scroll indicator */
    .services::after {
        content: '';
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
    }
    
    /* ===== CONTACT SECTION ===== */
    .contact {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .contact-content {
        display: block;
        max-width: 400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .contact-form {
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        padding: 32px 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 32px;
        box-sizing: border-box;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 16px;
        font-size: 15px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }
    
    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    /* ===== TECHNOLOGY SECTION ===== */
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    .tech-visual {
        order: -1;
        height: 280px;
        margin-bottom: 20px;
    }
    
    .ai-cpu-chip {
        width: 220px;
        height: 220px;
    }
    
    .cpu-core {
        width: 160px;
        height: 160px;
    }
    
    .cpu-center {
        width: 100px;
        height: 100px;
    }
    
    .ai-text {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .tech-features {
        gap: 20px;
    }
    
    .tech-feature {
        gap: 16px;
    }
    
    .tech-icon {
        width: 48px;
        height: 48px;
    }
    
    .tech-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .tech-content p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* ===== ABOUT SECTION MOBILE - TEMPORARILY HIDDEN =====
    .about .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about .about-text {
        margin-bottom: 40px;
    }

    .about .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 32px 0;
        padding: 24px;
    }

    .about .about-values {
        gap: 16px;
    }

    .about .value {
        padding: 20px;
    }

    .about .value i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-description {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .about-stat .stat-number {
        font-size: 24px;
    }
    
    .about-stat .stat-label {
        font-size: 12px;
    }
    
    .about-values {
        gap: 16px;
    }
    
    .value {
        gap: 12px;
    }
    
    .value i {
        width: 32px;
        height: 32px;
    }
    
    .value h4 {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .value p {
        font-size: 13px;
        line-height: 1.4;
    }
    */
    
    /* ===== CONTACT SECTION ===== */
        .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    .contact {
        padding: 40px 0;
    }

    .contact-form {
        padding: 24px 20px;
        margin: 0 0 32px 0;
    }

    .contact-visual {
        align-items: center;
    }
    
    .contact-image-container {
        display: none;
    }
    
    .contact-details {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .detail {
        padding: 16px 0;
        font-size: 15px;
        line-height: 1.6;
    }
    
    .detail i {
        font-size: 18px;
        min-width: 24px;
    }
    
    .form-group {
        margin-bottom: 24px;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
        font-weight: 500;
        display: block;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px;
        font-size: 16px;
        border-radius: 8px;
        min-height: 48px;
        -webkit-appearance: none;
        appearance: none;
    }
    
    .form-group input[type="email"] {
        -webkit-text-size-adjust: 100%;
        font-size: 16px;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
        line-height: 1.5;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ccff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }
    
    /* ===== SIMPLIFIED FOOTER FOR MOBILE ===== */
    .footer {
        padding: 40px 0 20px;
        background: rgba(0, 0, 0, 0.2);
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-brand .logo-container {
        margin-bottom: 4px;
    }
    
    .footer-brand p {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.6);
        max-width: 280px;
    }
    
    /* Hide footer links on mobile for simplicity */
    .footer-links {
        display: none;
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 24px;
    }
    
    .footer-bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
    }
    
    .footer-social {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background: var(--primary-color);
        transform: translateY(-1px);
    }
    
    /* ===== PLATFORM SCREENSHOTS - MOBILE OPTIMIZED ===== */
    .platform-screenshot {
        margin: 16px 0;
        border-radius: 8px;
    }
    
    .screenshot-header {
        padding: 8px 16px;
    }
    
    .screenshot-title {
        font-size: 12px;
    }
    
    .screenshot-content {
        padding: 16px;
    }
    
    .dashboard-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dashboard-card,
    .compliance-card {
        padding: 16px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .metric-large {
        font-size: 24px;
    }
    
    .metric-label {
        font-size: 12px;
    }
    
    .notification-item {
        padding: 10px;
    }
    
    .notification-text {
        font-size: 13px;
    }
    
    .notification-time {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    /* ===== ULTRA-MOBILE TYPOGRAPHY ===== */
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .hero-description,
    .section-description {
        font-size: 15px;
    }
    
    /* ===== HERO ULTRA-MOBILE ===== */
    .hero {
        padding: 30px 0 40px;
    }
    
    .hero-container {
        padding: 0 12px;
        gap: 24px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    /* HERO STATS - COMMENTED OUT IN HTML
    .hero-stats {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    */
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* ===== SECTIONS ULTRA-MOBILE ===== */
    .section-header {
        margin-bottom: 30px;
        padding: 0 12px;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    /* ===== PLATFORM SHOWCASE ULTRA-MOBILE ===== */
    .platform-showcase {
        padding: 0 12px;
    }
    
    .showcase-tabs {
        padding: 8px;
        gap: 6px;
        margin-bottom: 24px;
    }
    
    .tab {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* ===== SERVICES ULTRA-MOBILE ===== */
    .services-grid {
        padding: 0 12px;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px 16px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .service-features li {
        font-size: 12px;
        padding: 4px 0;
        padding-left: 20px;
    }
    
    .service-features li::before {
        left: 0;
    }
    
    /* ===== TECHNOLOGY ULTRA-MOBILE ===== */
    .tech-showcase {
        padding: 0 12px;
        gap: 30px;
    }
    
    .tech-visual {
        height: 240px;
        margin-bottom: 16px;
    }
    
    .ai-cpu-chip {
        width: 180px;
        height: 180px;
    }
    
    .cpu-core {
        width: 130px;
        height: 130px;
    }
    
    .cpu-center {
        width: 80px;
        height: 80px;
    }
    
    .ai-text {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .tech-features {
        gap: 16px;
    }
    
    .tech-feature {
        gap: 12px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-content h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .tech-content p {
        font-size: 13px;
        line-height: 1.3;
    }
    
    /* ===== ABOUT ULTRA-MOBILE ===== */
    .about-content {
        padding: 0 12px;
        gap: 24px;
    }
    
    .about-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .about-stats {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .about-stat .stat-number {
        font-size: 20px;
    }
    
    .about-stat .stat-label {
        font-size: 11px;
    }
    
    .about-values {
        gap: 12px;
    }
    
    .value i {
        width: 28px;
        height: 28px;
    }
    
    .value h4 {
        font-size: 15px;
        margin-bottom: 2px;
    }
    
    .value p {
        font-size: 12px;
        line-height: 1.3;
    }
    
    /* ===== CONTACT ULTRA-MOBILE ===== */
    .contact-content {
        padding: 0 12px;
    }
    
    .contact-form {
        padding: 20px 16px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
    
    /* ===== FOOTER ULTRA-MOBILE ===== */
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        padding: 0 12px;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-brand p {
        font-size: 13px;
        margin-top: 10px;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .link-group h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .link-group a {
        font-size: 12px;
        padding: 2px 0;
    }
    
    .footer-bottom {
        padding: 12px;
        gap: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    /* ===== PLATFORM SCREENSHOTS ULTRA-MOBILE ===== */
    .platform-screenshot {
        margin: 12px 0;
        border-radius: 6px;
    }
    
    .screenshot-header {
        padding: 6px 12px;
    }
    
    .screenshot-title {
        font-size: 11px;
    }
    
    .screenshot-content {
        padding: 12px;
    }
    
    .dashboard-card,
    .compliance-card {
        padding: 12px;
    }
    
    .card-title {
        font-size: 13px;
    }
    
    .metric-large {
        font-size: 20px;
    }
    
    .metric-label {
        font-size: 11px;
    }
    
    .notification-item {
        padding: 8px;
    }
    
    .notification-text {
        font-size: 12px;
    }
    
    .notification-time {
        font-size: 10px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-cyan);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.hidden { display: none; }
.visible { display: block; }

/* Print styles */
@media print {
    .navbar,
    .hero-particles,
    .footer-social {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-title,
    .hero-title {
        color: black;
    }
}

/* ===== BLOG STYLES ===== */

/* Blog Header */
.blog-header {
    padding: 140px 0 80px;
    background: rgba(0, 51, 153, 0.02);
    border-bottom: 1px solid var(--border-color);
}

.blog-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.blog-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Featured Article */
.featured-article {
    padding: 80px 0;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    backdrop-filter: blur(20px);
}

.featured-badge {
    background: var(--gradient-secondary);
    color: var(--dark-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.featured-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

.featured-card p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.author-role {
    font-size: 12px;
    color: var(--text-muted);
}

.article-date, .read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 14px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Featured Visual */
.featured-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visualization {
    position: relative;
    width: 200px;
    height: 200px;
}

.ai-core {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(0, 204, 255, 0.4);
}

.data-streams {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.stream {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    animation: flow 2s linear infinite;
}

.stream:nth-child(1) {
    top: 30%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.stream:nth-child(2) {
    top: 50%;
    left: 0;
    width: 100%;
    animation-delay: 0.7s;
}

.stream:nth-child(3) {
    top: 70%;
    left: 0;
    width: 100%;
    animation-delay: 1.4s;
}

/* Blog Categories */
.blog-categories {
    padding: 80px 0;
    background: rgba(0, 204, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.categories-header {
    text-align: center;
    margin-bottom: 60px;
}

.categories-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.categories-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.category-card:hover,
.category-card.active {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-glow);
}

.category-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.article-count {
    font-size: 14px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

/* Blog Articles */
.blog-articles {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.article-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-lg);
}

.article-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 51, 153, 0.1);
}

.compliance-visual, .tech-visual, .eqms-visual, .case-study-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-icon, .tech-icon, .eqms-icon, .case-study-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: var(--shadow-glow);
}

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-secondary);
    color: var(--dark-bg);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-content {
    padding: 32px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.article-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.author-simple {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 14px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: 16px;
}

.article-link:hover {
    gap: 12px;
}

/* Load More */
.load-more-section {
    text-align: center;
}

.load-more-btn {
    padding: 16px 32px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: rgba(0, 51, 153, 0.02);
    border-top: 1px solid var(--border-color);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.newsletter-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-group-inline {
    display: flex;
    gap: 16px;
}

.form-group-inline input {
    flex: 1;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
}

.form-group-inline input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.1);
}

/* Responsive Blog Styles */
@media (max-width: 1024px) {
    .featured-card,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 120px 0 60px;
    }
    
    .featured-card {
        padding: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .featured-card {
        padding: 24px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 24px;
    }
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tech-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tech-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.tech-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

/* Platform Screenshot */
.platform-screenshot {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
}

.screenshot-header {
    background: rgba(0, 51, 153, 0.1);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.screenshot-nav {
    display: flex;
    gap: 6px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.nav-dot.red { background: #ff5f57; }
.nav-dot.yellow { background: #ffbd2e; }
.nav-dot.green { background: #28ca42; }

.screenshot-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.screenshot-content {
    padding: 20px;
}

.reports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.report-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    transition: var(--transition-smooth);
}

.report-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.report-card.wide {
    grid-column: span 2;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.report-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.report-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.report-icon.compliance {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.report-icon.timeline {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.report-icon.analytics {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.report-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.progress-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-cyan) 0deg 338deg, rgba(255, 255, 255, 0.1) 338deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-ring::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
}

.progress-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    z-index: 2;
}

.timeline-items {
    display: flex;
    gap: 8px;
    align-items: center;
}

.timeline-item {
    width: 40px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.timeline-item.completed {
    background: var(--gradient-secondary);
}

.timeline-item.active {
    background: var(--accent-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.risk-matrix {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.risk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.risk-item.low {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.risk-item.medium {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.risk-item.high {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Platform Screenshot Responsive */
@media (max-width: 768px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }
    
    .report-card.wide {
        grid-column: span 1;
    }
}

/* eQMS Interface Styles */
.eqms-showcase {
    margin-bottom: 40px;
}

.eqms-interface {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
}

.eqms-header {
    background: rgba(0, 51, 153, 0.1);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eqms-breadcrumb {
    font-size: 14px;
    color: var(--text-secondary);
}

.eqms-breadcrumb .active {
    color: var(--accent-cyan);
    font-weight: 600;
}

.eqms-actions {
    display: flex;
    gap: 12px;
}

.eqms-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.eqms-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.eqms-btn.secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.eqms-btn:hover {
    transform: translateY(-2px);
}

.eqms-content {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.document-item:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.doc-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.doc-icon::after {
    content: '📄';
    font-size: 18px;
}

.doc-info {
    flex: 1;
}

.doc-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.doc-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.doc-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-status.approved {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.doc-status.review {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.doc-status.draft {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.doc-actions {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
}

.eqms-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.workflow-status h4,
.compliance-summary h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.step::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
}

.step.completed {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.step.completed::before {
    background: #22c55e;
}

.step.active {
    background: rgba(0, 204, 255, 0.1);
    color: var(--accent-cyan);
}

.step.active::before {
    background: var(--accent-cyan);
    animation: pulse 2s ease-in-out infinite;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.compliance-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.compliance-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* eQMS Responsive */
@media (max-width: 768px) {
    .eqms-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .eqms-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Dashboard Interface Styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition-smooth);
}

.dashboard-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.dashboard-card.wide {
    grid-column: span 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.overview-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.projects-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.notifications-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.analytics-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.card-content {
    text-align: center;
}

.metric-large {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.trend-indicator {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.trend-indicator.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.notification-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.notification-dot.urgent {
    background: #ef4444;
}

.notification-dot.info {
    background: #3b82f6;
}

.notification-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-primary);
}

.notification-time {
    font-size: 12px;
    color: var(--text-muted);
}

.analytics-chart {
    display: flex;
    align-items: center;
    gap: 24px;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.compliant {
    background: #22c55e;
}

.legend-color.review {
    background: #f59e0b;
}

.legend-color.pending {
    background: #ef4444;
}

.donut-chart {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        #22c55e 0deg 302deg,
        #f59e0b 302deg 331deg,
        #ef4444 331deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-chart::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--card-bg);
}

.donut-center {
    z-index: 2;
    text-align: center;
}

.donut-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1;
}

.donut-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Compliance Interface Styles */
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition-smooth);
}

.compliance-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.compliance-card.wide {
    grid-column: span 2;
}

.card-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.card-status.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.card-status.in-progress {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.classification-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.gspr-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.regulatory-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.classification-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.device-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.device-class {
    font-size: 14px;
    color: var(--text-secondary);
}

.confidence-score {
    text-align: right;
}

.confidence-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.confidence-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.gspr-progress {
    margin-bottom: 16px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.progress-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.gspr-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gspr-item {
    font-size: 14px;
    padding: 8px 0;
}

.gspr-item.completed {
    color: #22c55e;
}

.gspr-item.pending {
    color: var(--text-secondary);
}

.submission-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.submission-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.submission-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.submission-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.submission-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
}

.submission-icon.submitted {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.submission-icon.review {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.submission-icon.pending {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
}

.submission-info {
    flex: 1;
}

.submission-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.submission-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.submission-status {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submission-status.submitted {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.submission-status.review {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.submission-status.pending {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

/* Interface Screenshots Responsive */
@media (max-width: 768px) {
    .dashboard-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card.wide,
    .compliance-card.wide {
        grid-column: span 1;
    }
    
    .analytics-chart {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .classification-result {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===== SIMPLE PROFESSIONAL LOGO ===== */
.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #003399 0%, #0066cc 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 51, 153, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    border-radius: 12px;
}

.logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 51, 153, 0.4);
}

.logo-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    position: relative;
    z-index: 2;
}

.logo-n, .logo-s {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-icon:hover .logo-n {
    transform: translateX(-1px);
}

.logo-icon:hover .logo-s {
    transform: translateX(1px);
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-n, .logo-s {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .logo-n, .logo-s {
        font-size: 14px;
    }
}
