/* Force cursor visibility - Highest priority */
html, html *, html body, html body * {
    cursor: default !important;
}

/* Override for interactive elements */
a, a *, button, button *, .cta-button, .cta-button *, 
.service-card, .service-card *, .work-item, .work-item *, 
input, input *, textarea, textarea *, select, select * {
    cursor: pointer !important;
}

input[type="text"], input[type="text"] *, 
input[type="email"], input[type="email"] *, 
textarea, textarea * {
    cursor: text !important;
}

/* CSS Reset and Variables */
:root {
    /* Color Palette */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
    
    --primary-dark: #1a1a2e;
    --primary-light: #16213e;
    --accent-purple: #667eea;
    --accent-pink: #f093fb;
    --accent-blue: #4facfe;
    --accent-orange: #ff9a56;
    
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #666666;
    
    /* Refined Colors */
    --cyber-black: #0a0a0a;
    --cyber-dark: #1a1a1a;
    --neon-cyan: #64b5f6;
    --neon-pink: #f48fb1;
    --neon-green: #81c784;
    --neon-purple: #ba68c8;
    --cyber-white: #ffffff;
    --cyber-gray: #333333;
    
    /* Typography */
    --font-heading: 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-accent: 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 20px;
    --card-radius: 24px;
    
    /* Animations */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --hover-scale: 1.05;
    
    /* Z-index */
    --z-cursor: 9999;
    --z-header: 1000;
    --z-modal: 2000;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

html, body, main, #root, #app {
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
    perspective: none !important;
    will-change: auto !important;
    contain: none !important;
    isolation: auto !important;
}

section, .hero, .hero-background, .hero-content, .services, .products, .contact, .footer {
    position: static !important;
    transform: none !important;
    filter: none !important;
    perspective: none !important;
    will-change: auto !important;
    contain: none !important;
    isolation: auto !important;
}

/* Ensure header is always on top */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition-smooth) !important;
    height: 80px !important;
    box-sizing: border-box !important;
    transform: none !important;
    will-change: auto !important;
    contain: none !important;
}

body {
    font-family: var(--font-body);
    background: var(--cyber-black);
    color: var(--cyber-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
    padding-top: 80px !important;
    margin: 0;
    width: 100%;
    position: relative;
}

/* Custom Cursor - Disabled */
.cursor-dot,
.cursor-outline {
    display: none !important;
}

/* Force default cursor everywhere */
html *, html *:before, html *:after {
    cursor: default !important;
}

/* Ensure proper cursor for all elements */
section, .container, .hero, .about, .services, .contact, .footer,
h1, h2, h3, h4, h5, h6, p, div, span {
    cursor: default !important;
}

/* Interactive elements */
a, button, .cta-button, .service-card, input, textarea, select {
    cursor: pointer !important;
}

input[type="text"], input[type="email"], textarea {
    cursor: text !important;
}

/* Specific content areas */
.hero-content, .about-content, .services-grid, .contact-content, .footer-content {
    cursor: default !important;
}

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

/* Header */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    z-index: 1002;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.logo-dash {
    color: var(--accent-pink);
    font-weight: 300;
}

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

.nav-menu a {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: 10px 0;
}

.nav-menu a:hover {
    color: var(--accent-purple);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.mobile-menu {
    position: fixed !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(100, 181, 246, 0.3) !important;
    transform: translateY(-100%) !important;
    transition: var(--transition-smooth) !important;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    display: none;
    will-change: transform !important;
    contain: layout !important;
}

.mobile-menu.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--accent-purple);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

.hero-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    perspective: 1000px;
}

.title-word {
    display: block;
    position: relative;
    animation: titleReveal 1s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.2s);
    opacity: 0;
    transform: translateY(50px);
}

.title-word:nth-child(1) { --i: 0; }
.title-word:nth-child(2) { --i: 1; }
.title-word:nth-child(3) { --i: 2; }

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.gradient-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gradient-text:hover::after {
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.subtitle-highlight {
    color: var(--accent-pink);
    font-weight: 600;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.cta-button:hover .btn-icon {
    transform: translateX(4px);
}

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

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
    transition: var(--transition-smooth);
}

.hero-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.creative-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.hero-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0;
    filter: blur(40px);
    transition: var(--transition-smooth);
    z-index: -1;
}

.hero-card:hover .card-glow {
    opacity: 0.1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

/* Diagonal Section Wrapper */
.section-diagonal {
    position: relative;
    clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 calc(100% - 5vw));
    overflow: hidden;
}
.section-diagonal.alt {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%);
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(150%);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(var(--primary-dark), var(--primary-dark)),
        linear-gradient(135deg, var(--electric-cyan), var(--magenta-glow));
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Vertical Hero Title */
.vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: left;
}

/* Particle Canvas */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Audio Visualizer */
.audio-visualizer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 3px;
    z-index: 1000;
}
.wave-bar {
    width: 3px;
    height: 15px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: wave-pulse 1.5s infinite ease-in-out;
    opacity: 0.7;
}
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave-pulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(2); }
}

/* Cyber Header */
.cyber-header {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    transform: none !important;
    will-change: auto !important;
    contain: none !important;
}

/* Cyber Hero */
.cyber-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cyber-black) 0%, var(--cyber-dark) 100%);
}

.hologram-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    will-change: transform;
    contain: layout;
    pointer-events: none;
}

.hologram-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(100, 181, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 30s linear infinite;
}

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

.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
    contain: layout;
    pointer-events: none;
}

.code-rain {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 200%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 98px,
        var(--neon-green) 100px
    );
    animation: code-fall 5s linear infinite;
}

@keyframes code-fall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(50%); }
}

.cyber-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glow-pulse 6s ease-in-out infinite alternate;
}

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

/* Stunning Background Animations */

/* Floating Orbs with 3D Effect */
.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(100, 181, 246, 0.9), 
        rgba(244, 143, 177, 0.8), 
        rgba(186, 104, 200, 0.6));
    box-shadow: 
        0 0 60px rgba(100, 181, 246, 0.8),
        inset 0 0 30px rgba(255, 255, 255, 0.4);
    animation: float-3d 8s ease-in-out infinite;
    filter: blur(1px);
}

.orb-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.orb-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.orb-5 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 11s;
}

@keyframes float-3d {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1) rotateZ(0deg);
        opacity: 0.9;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.1) rotateZ(90deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-60px) translateX(-10px) scale(0.9) rotateZ(180deg);
        opacity: 0.95;
    }
    75% { 
        transform: translateY(-20px) translateX(-30px) scale(1.05) rotateZ(270deg);
        opacity: 1;
    }
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0;
    animation: wave-pulse 6s ease-out infinite;
}

.wave-1 {
    border-color: rgba(100, 181, 246, 0.7);
    animation-delay: 0s;
    top: 50%;
    left: 30%;
}

.wave-2 {
    border-color: rgba(244, 143, 177, 0.6);
    animation-delay: 2s;
    top: 30%;
    left: 60%;
}

.wave-3 {
    border-color: rgba(129, 199, 132, 0.6);
    animation-delay: 4s;
    top: 70%;
    left: 20%;
}

@keyframes wave-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Neural Network */
.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-cyan);
    animation: node-pulse 3s ease-in-out infinite;
}

.node-1 { top: 25%; left: 25%; animation-delay: 0s; }
.node-2 { top: 35%; right: 30%; animation-delay: 0.5s; }
.node-3 { bottom: 40%; left: 40%; animation-delay: 1s; }
.node-4 { top: 60%; left: 60%; animation-delay: 1.5s; }
.node-5 { bottom: 25%; right: 25%; animation-delay: 2s; }

.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-cyan), 
        transparent);
    opacity: 0;
    animation: line-draw 4s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    left: 25%;
    width: 45%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.line-2 {
    top: 35%;
    right: 30%;
    width: 30%;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.line-3 {
    bottom: 40%;
    left: 40%;
    width: 20%;
    transform: rotate(60deg);
    animation-delay: 2s;
}

.line-4 {
    top: 60%;
    left: 60%;
    width: 25%;
    transform: rotate(-30deg);
    animation-delay: 3s;
}

@keyframes node-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes line-draw {
    0%, 20% { 
        opacity: 0;
        transform: scaleX(0);
    }
    50% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    80%, 100% { 
        opacity: 0;
        transform: scaleX(1);
    }
}

/* Quantum Particles */
.quantum-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.quantum-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-pink);
    animation: quantum-float 5s linear infinite;
}

.quantum-dot:nth-child(1) { 
    top: 10%; left: 20%; 
    animation-delay: 0s;
    animation-duration: 8s;
}
.quantum-dot:nth-child(2) { 
    top: 30%; right: 15%; 
    animation-delay: 1s;
    animation-duration: 6s;
}
.quantum-dot:nth-child(3) { 
    bottom: 20%; left: 30%; 
    animation-delay: 2s;
    animation-duration: 7s;
}
.quantum-dot:nth-child(4) { 
    top: 50%; left: 70%; 
    animation-delay: 3s;
    animation-duration: 9s;
}
.quantum-dot:nth-child(5) { 
    bottom: 40%; right: 40%; 
    animation-delay: 4s;
    animation-duration: 5s;
}
.quantum-dot:nth-child(6) { 
    top: 70%; left: 50%; 
    animation-delay: 5s;
    animation-duration: 8s;
}
.quantum-dot:nth-child(7) { 
    top: 20%; left: 80%; 
    animation-delay: 6s;
    animation-duration: 6s;
}
.quantum-dot:nth-child(8) { 
    bottom: 60%; left: 10%; 
    animation-delay: 7s;
    animation-duration: 7s;
}

@keyframes quantum-float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) translateX(30px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(-20px) scale(0.5);
        opacity: 0;
    }
}

/* Refined Title */
.refined-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

.elegant-text {
    display: block;
    position: relative;
    color: var(--cyber-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.elegant-text:hover {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.accent-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

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

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(2px, 2px); }
    30% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    50% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    70% { transform: translate(-2px, 2px); }
    80% { transform: translate(2px, -2px); }
    90% { transform: translate(-2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(2px, 2px); }
    20% { transform: translate(-2px, -2px); }
    30% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    50% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    70% { transform: translate(2px, -2px); }
    80% { transform: translate(-2px, 2px); }
    90% { transform: translate(2px, 2px); }
}

/* Refined Subtitle */
.refined-subtitle {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.service-text {
    color: var(--neon-cyan);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.vision-text {
    color: var(--cyber-white);
    opacity: 0.9;
}

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

@keyframes blink {
    0%, 50% { border-color: var(--neon-cyan); }
    51%, 100% { border-color: transparent; }
}

/* Cyber Ripple Effect */
.cyber-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    transform: scale(0);
    animation: cyber-ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes cyber-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced CTA Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--cyber-dark), var(--cyber-gray));
    border: 2px solid var(--neon-cyan);
    color: var(--cyber-white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    color: var(--cyber-black);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.cta-button.secondary {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.cta-button.secondary:hover {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

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

.section-label {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.title-sub {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    font-style: italic;
}

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

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.5) 0%, rgba(26, 26, 46, 0.8) 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    text-align: center;
}

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

.about-stats {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-intro {
    margin-bottom: 20px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.about-badge {
    display: inline-block;
    background: rgba(240, 147, 251, 0.1);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--accent-pink);
    font-weight: 500;
    margin-bottom: 15px;
}

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

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

.skills-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.skill-card:hover::before {
    opacity: 0.05;
}

.skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.skill-icon.gradient-1 { background: var(--primary-gradient); }
.skill-icon.gradient-2 { background: var(--secondary-gradient); }
.skill-icon.gradient-3 { background: var(--accent-gradient); }
.skill-icon.gradient-4 { background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%); }

.skill-card h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.skill-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    backdrop-filter: blur(20px);
}

.stat-item {
    position: relative;
}

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

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-pink);
    display: inline;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 10px;
}

/* Services Section */
.services {
    position: relative;
    padding-top: 60px;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card.premium:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.service-features i {
    color: var(--accent-purple);
    font-size: 0.8rem;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover .service-overlay {
    opacity: 0.02;
}

/* Products Section */
.products {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.product-card.featured:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.15);
}

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

.product-icon {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 40px;
}

.product-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--accent-purple);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.product-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 5px;
}

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

.product-actions {
    display: flex;
    gap: 15px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.product-btn.primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.product-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.product-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.4);
    color: var(--accent-purple);
}

.product-btn i {
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

/* Product Video */
.product-video {
    margin-top: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-video iframe {
    width: 100%;
    height: 200px;
    border: none;
    display: block;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 40px;
    backdrop-filter: blur(20px);
}

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

.contact-card > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.contact-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

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

/* Premium Form */
.premium-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--card-radius);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
}

.form-group input:focus + .form-line,
.form-group textarea:focus + .form-line {
    width: 100%;
}

.premium-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius);
    padding: 16px 32px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.premium-btn .btn-ripple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
}

.premium-btn:hover .btn-ripple {
    transform: translateX(100%);
}

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

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    transform: translateY(-2px);
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--accent-purple);
    transform: translateX(5px);
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
}

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

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Desktop Design */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: fixed !important;
        right: 20px !important;
        top: 25px !important;
        z-index: 10001 !important;
        background: rgba(10, 10, 10, 0.8) !important;
        border-radius: 4px !important;
        padding: 5px !important;
    }
    
        .mobile-menu {
        display: block;
    }
    
    .mobile-menu:not(.active) {
        display: none;
    }
    
    .hero {
        min-height: 100vh;
        padding-bottom: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .scroll-indicator {
        bottom: 20px;
        font-size: 0.75rem;
    }
    
    .scroll-indicator .mouse {
        width: 20px;
        height: 32px;
        margin-bottom: 8px;
    }
    
    .scroll-indicator .wheel {
        width: 2px;
        height: 6px;
        top: 6px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .skills-showcase {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-grid {
        gap: 30px;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-stats {
        gap: 20px;
    }

    .product-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    

    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .service-card,
    .product-card,
    .contact-card,
    .premium-form {
        padding: 30px 20px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 1.6rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
        font-size: 0.7rem;
    }
    
    .scroll-indicator .mouse {
        width: 18px;
        height: 28px;
        margin-bottom: 6px;
    }
    
    .scroll-indicator .wheel {
        width: 2px;
        height: 5px;
        top: 5px;
    }
}

#about, #about * {
  transform: none !important;
  filter: none !important;
  perspective: none !important;
  will-change: auto !important;
  contain: none !important;
} 