* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #00f5ff;
    --primary-purple: #7b2fff;
    --primary-magenta: #ff00ff;
    --primary-blue: #0066ff;
    --dark-bg: #030308;
    --dark-surface: #0a0a12;
    --dark-card: #12121f;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #606080;
    --gradient-primary: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple), var(--primary-magenta));
    --gradient-glow: linear-gradient(135deg, rgba(0, 245, 255, 0.4), rgba(123, 47, 255, 0.4));
    --neon-glow: 0 0 10px var(--primary-cyan), 0 0 20px var(--primary-cyan), 0 0 40px var(--primary-cyan);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

#universe-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#webgl-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
}

.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
    box-shadow: 0 0 10px var(--primary-cyan), 0 0 20px var(--primary-cyan);
}

.cursor-dot.hover {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    box-shadow: 0 0 20px var(--primary-cyan);
}

.cursor-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 245, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary-magenta);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(3, 3, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

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

.logo {
    position: relative;
    z-index: 10;
}

.logo-3d {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 45px;
    height: 45px;
    animation: logoFloat 3s ease-in-out infinite;
}

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

.logo-shape {
    animation: logoRotate 10s linear infinite;
    transform-origin: center;
}

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

.logo-core {
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { opacity: 1; r: 8; }
    50% { opacity: 0.7; r: 10; }
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
}

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

.nav-link {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-cyan);
}

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

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(0, 245, 255, 0.1);
    color: var(--primary-cyan);
}

.dropdown-menu a i {
    width: 20px;
    color: var(--primary-purple);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    background: transparent;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.btn-quantum {
    position: relative;
    padding: 12px 28px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.btn-quantum:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 47, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 40px 80px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
    animation: badgeScan 2s linear infinite;
}

@keyframes badgeScan {
    0% { left: -100%; }
    100% { left: 200%; }
}

.badge-icon {
    color: var(--primary-cyan);
    font-size: 1rem;
    animation: iconPulse 2s ease-in-out infinite;
}

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

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(0, 245, 255, 0.2); }
}

.badge-icon {
    color: var(--primary-cyan);
    font-size: 1rem;
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--primary-cyan);
    position: relative;
    z-index: 1;
}

.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(20) forwards;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.hero-title {
    margin-bottom: 25px;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
}

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

.title-line.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(30px);
    opacity: 0.5;
}

.title-line.subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 20px;
}

.hero-description {
    max-width: 600px;
    margin-bottom: 40px;
}

.desc-line {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: var(--gradient-primary);
    border-radius: 50px;
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-magnetic .btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-primary-magnetic .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary-magnetic:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-primary-magnetic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.btn-secondary-hologram {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

.btn-secondary-hologram:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.hero-products-preview {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.preview-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-item:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
}

.preview-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #fff;
}

.preview-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: -40px;
    padding: 10px 0;
}

.stat-card {
    position: relative;
    padding: 14px 22px;
    background: rgba(10, 10, 30, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-card:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.2);
    transform: translateY(-5px);
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    pointer-events: none;
}

.stat-icon {
    font-size: 1.2rem;
    color: var(--primary-cyan);
    margin-bottom: 6px;
}

.stat-icon i {
    color: var(--primary-cyan);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
}

.stat-value .suffix {
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value .text-value {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 245, 255, 0.3), transparent);
}

.glitch-container {
    position: relative;
}

.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch-text:hover::before {
    animation: glitch1 0.3s infinite;
    color: var(--primary-cyan);
    opacity: 0.8;
}

.glitch-text:hover::after {
    animation: glitch2 0.3s infinite;
    color: var(--primary-magenta);
    opacity: 0.8;
}

@keyframes glitch1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes glitch2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

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

.scroll-mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(0, 245, 255, 0.5);
    border-radius: 14px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-cyan);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(15px); opacity: 0.3; }
}

.scroll-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

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

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-purple);
    top: 10%;
    left: -10%;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-cyan);
    bottom: 20%;
    right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-magenta);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

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

.section-header.left-aligned {
    text-align: left;
}

.header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-header.left-aligned .header-badge {
    justify-content: flex-start;
}

.badge-line {
    width: 50px;
    height: 1px;
    background: var(--gradient-primary);
}

.badge-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--primary-cyan);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.products-section {
    position: relative;
    padding: 120px 0;
}

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

.product-card {
    position: relative;
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(123, 47, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 245, 255, 0.3);
}

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

.product-card.featured {
    border-color: rgba(123, 47, 255, 0.5);
    background: linear-gradient(135deg, rgba(123, 47, 255, 0.1), rgba(10, 10, 18, 0.9));
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.card-content {
    position: relative;
    z-index: 1;
}

.product-icon {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.product-icon i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
}

.product-icon .icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

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

.product-icon.pulse .icon-ring {
    animation: ringPulseFast 1.5s ease-in-out infinite;
}

@keyframes ringPulseFast {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.3; }
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-cyan);
}

.feature-tag i {
    font-size: 0.7rem;
}

.product-detail {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.detail-value {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-cta:hover {
    gap: 12px;
    color: var(--primary-magenta);
}

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

.product-cta:hover i {
    transform: translateX(5px);
}

.technology-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

#neural-canvas {
    width: 100%;
    height: 100%;
}

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

.tech-visual {
    display: flex;
    justify-content: center;
}

.brain-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-inner {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: coreGlow 2s ease-in-out infinite;
}

@keyframes coreGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 30px rgba(123, 47, 255, 0.8)); }
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid;
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}

.ring-1 {
    width: 140px;
    height: 140px;
    border-color: rgba(0, 245, 255, 0.5);
}

.ring-2 {
    width: 180px;
    height: 180px;
    border-color: rgba(123, 47, 255, 0.4);
    animation-direction: reverse;
    animation-duration: 15s;
}

.ring-3 {
    width: 220px;
    height: 220px;
    border-color: rgba(255, 0, 255, 0.3);
    animation-duration: 20s;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.neural-paths {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.neural-path {
    fill: none;
    stroke: url(#logoGrad);
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: pathDraw 3s ease-in-out infinite;
}

.neural-path:nth-child(2) { animation-delay: 0.5s; }
.neural-path:nth-child(3) { animation-delay: 1s; }
.neural-path:nth-child(4) { animation-delay: 1.5s; }

@keyframes pathDraw {
    0% { stroke-dashoffset: 300; opacity: 0; }
    50% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -300; opacity: 0; }
}

.data-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-node {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 18, 0.9);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-cyan);
    animation: nodeFloat 3s ease-in-out infinite;
}

.node-1 { top: 10%; left: 10%; animation-delay: 0s; }
.node-2 { top: 10%; right: 10%; animation-delay: 0.5s; }
.node-3 { bottom: 10%; left: 10%; animation-delay: 1s; }
.node-4 { bottom: 10%; right: 10%; animation-delay: 1.5s; }

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

.tech-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateX(10px);
}

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

.tech-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tech-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-tags span {
    padding: 4px 10px;
    background: rgba(123, 47, 255, 0.2);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--primary-purple);
}

.cases-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-card {
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.case-industry {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.case-industry i {
    color: var(--primary-cyan);
}

.case-tag {
    padding: 5px 12px;
    background: rgba(123, 47, 255, 0.2);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--primary-purple);
}

.case-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.case-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.case-metrics {
    display: flex;
    gap: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(0, 245, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.3);
}

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

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

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

.about-visual {
    display: flex;
    justify-content: center;
}

.hologram-container {
    position: relative;
}

.hologram-frame {
    width: 420px;
    height: 560px;
    background: rgba(10, 10, 18, 0.85);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 24px;
    overflow-y: auto;
    position: relative;
}

.hologram-content {
    padding: 28px 28px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hologram-image {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.image-placeholder {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 2.4rem;
    color: #fff;
}

.hologram-data {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-row:last-child {
    border-bottom: none;
}

.data-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.data-value {
    font-size: 0.95rem;
    color: var(--primary-cyan);
    font-weight: 600;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(15, 15, 30, 0.9);
    border: 1px solid rgba(0, 245, 255, 0.12);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(0, 245, 255, 0.45);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 245, 255, 0.12);
}

.service-card.highlight {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(123, 47, 255, 0.1));
    border-color: rgba(0, 245, 255, 0.3);
}

.service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.18), rgba(123, 47, 255, 0.18));
    border-radius: 10px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.1rem;
    color: var(--primary-cyan);
}

.service-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.service-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.hologram-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    animation: scanline 3s linear infinite;
    opacity: 0.5;
}

@keyframes scanline {
    0% { top: 0; }
    100% { top: 100%; }
}

.hologram-base {
    width: 200px;
    height: 20px;
    background: linear-gradient(to right, transparent, rgba(0, 245, 255, 0.3), transparent);
    margin: 20px auto 0;
    border-radius: 50%;
    filter: blur(5px);
}

.contact-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

#particle-canvas {
    width: 100%;
    height: 100%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 12px;
    color: var(--primary-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

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

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-5px);
}

.contact-form-container {
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.floating {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
    appearance: none;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group textarea ~ label {
    top: 15px;
    transform: translateY(0);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-cyan);
    outline: none;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: 0;
    left: 10px;
    transform: translateY(-50%);
    font-size: 0.75rem;
    background: var(--dark-card);
    padding: 0 5px;
    color: var(--primary-cyan);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-border,
.form-group textarea:focus ~ .input-border,
.form-group select:focus ~ .input-border {
    width: 100%;
}

.btn-submit-quantum {
    position: relative;
    padding: 16px 35px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-submit-quantum:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 47, 255, 0.4);
}

.btn-submit-quantum .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer {
    position: relative;
    padding: 80px 0 30px;
    background: rgba(5, 5, 10, 0.9);
    border-top: 1px solid rgba(0, 245, 255, 0.1);
}

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

.footer-grid {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.8;
}

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

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

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

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
}

.transition-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
}

.layer-1 { background: var(--primary-cyan); }
.layer-2 { background: var(--primary-purple); }
.layer-3 { background: var(--primary-magenta); }

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .tech-showcase {
        grid-template-columns: 1fr;
    }

    .tech-visual {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }
    
    .hologram-frame {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 480px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-container {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 80px;
        height: 1px;
    }

    .hero-products-preview {
        gap: 15px;
    }

    .preview-item {
        padding: 10px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .case-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .title-line {
        font-size: 2rem;
    }

    .title-line.subtitle {
        font-size: 1rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary-magnetic,
    .btn-secondary-hologram {
        width: 100%;
        justify-content: center;
    }
}
