/* ========================================
   CYNON - Military Robotics Defense Systems
   Premium CSS with Advanced Effects
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --primary-glow: rgba(0, 255, 136, 0.3);
    --secondary: #0a192f;
    --dark: #020c1b;
    --darker: #010810;
    --light: #ccd6f6;
    --muted: #8892b0;
    --accent: #64ffda;
    --warning: #ffd700;
    --danger: #ff4757;
    --success: #00ff88;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    --gradient-dark: linear-gradient(180deg, #0a192f 0%, #020c1b 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0,255,136,0.2) 0%, rgba(100,255,218,0.1) 100%);
    
    /* Typography */
    --font-display: 'Orbitron', monospace;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1400px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader-logo-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.loader-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.loader-circle-bg {
    fill: none;
    stroke: rgba(0, 255, 136, 0.1);
    stroke-width: 2;
}

.loader-circle-progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: circleProgress 2.5s ease-out forwards;
    filter: drop-shadow(0 0 8px var(--primary));
}

@keyframes circleProgress {
    0% { stroke-dashoffset: 283; }
    100% { stroke-dashoffset: 0; }
}

.loader-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 1;
}

.loader-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.loader-brand {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 8px;
    margin: 0;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 4px;
    margin: 0;
    opacity: 0.8;
}

.loader-progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.loader-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    animation: progressFill 2.5s ease-out forwards;
    box-shadow: 0 0 10px var(--primary);
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loader-percentage {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 2px;
    margin: 0;
}

/* ========================================
   ROBOTIC RETICLE CURSOR
   ======================================== */
.cursor-reticle {
    position: fixed;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.reticle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px rgba(0, 255, 136, 0.5);
    animation: pulse-center 1.5s ease-in-out infinite;
}

@keyframes pulse-center {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.reticle-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    animation: rotate-ring 4s linear infinite;
}

.reticle-ring.ring-2 {
    width: 55px;
    height: 55px;
    border: 1px dashed rgba(0, 255, 136, 0.4);
    animation: rotate-ring-reverse 6s linear infinite;
}

@keyframes rotate-ring {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-ring-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

.reticle-crosshair {
    position: absolute;
    background: var(--primary);
    box-shadow: 0 0 5px var(--primary);
}

.reticle-crosshair.top {
    top: 0;
    left: 50%;
    width: 2px;
    height: 12px;
    transform: translateX(-50%);
    animation: crosshair-pulse 2s ease-in-out infinite;
}

.reticle-crosshair.bottom {
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 12px;
    transform: translateX(-50%);
    animation: crosshair-pulse 2s ease-in-out infinite 0.5s;
}

.reticle-crosshair.left {
    left: 0;
    top: 50%;
    width: 12px;
    height: 2px;
    transform: translateY(-50%);
    animation: crosshair-pulse 2s ease-in-out infinite 1s;
}

.reticle-crosshair.right {
    right: 0;
    top: 50%;
    width: 12px;
    height: 2px;
    transform: translateY(-50%);
    animation: crosshair-pulse 2s ease-in-out infinite 1.5s;
}

@keyframes crosshair-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.reticle-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.reticle-corner.tl {
    top: 5px;
    left: 5px;
    border-right: none;
    border-bottom: none;
}

.reticle-corner.tr {
    top: 5px;
    right: 5px;
    border-left: none;
    border-bottom: none;
}

.reticle-corner.bl {
    bottom: 5px;
    left: 5px;
    border-right: none;
    border-top: none;
}

.reticle-corner.br {
    bottom: 5px;
    right: 5px;
    border-left: none;
    border-top: none;
}

.reticle-data {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Orbitron', monospace;
    font-size: 8px;
    color: var(--primary);
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 5px var(--primary);
}

.cursor-trail {
    position: fixed;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

/* Hover state - Target locked */
.cursor-reticle.locked {
    width: 80px;
    height: 80px;
}

.cursor-reticle.locked .reticle-center {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
}

.cursor-reticle.locked .reticle-ring {
    border-color: var(--accent);
    animation-duration: 1s;
}

.cursor-reticle.locked .reticle-ring.ring-2 {
    border-color: rgba(255, 107, 53, 0.5);
}

.cursor-reticle.locked .reticle-crosshair {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.cursor-reticle.locked .reticle-corner {
    border-color: var(--accent);
    width: 14px;
    height: 14px;
}

.cursor-reticle.locked .reticle-data {
    opacity: 1;
    color: var(--accent);
}

.cursor-trail.locked {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

/* Click effect */
.cursor-reticle.clicking {
    transform: translate(-50%, -50%) scale(0.85);
}

.cursor-reticle.clicking .reticle-ring {
    animation: none;
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
}

/* ========================================
   BACKGROUND EFFECTS
   ======================================== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 9999;
    animation: scanLine 8s linear infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes scanLine {
    0% { top: -2px; }
    100% { top: 100%; }
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
}

#header.scrolled {
    background: rgba(2, 12, 27, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    width: 100%;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: var(--transition-normal);
}

.logo:hover {
    filter: drop-shadow(0 0 20px var(--primary));
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--light);
    position: relative;
    padding: 10px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-access {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    z-index: -1;
}

.btn-access:hover::before {
    left: 0;
}

.btn-access:hover {
    color: var(--dark);
}

.hamburger {
    display: none;
    width: 45px;
    height: 45px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.hamburger:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.hamburger.active {
    background: rgba(0, 255, 136, 0.15);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 40px 80px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 10;
}

.hero-badge {
    position: absolute;
    top: -72px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50px;
    white-space: nowrap;
    z-index: 20;
    animation: fadeInUp 1s ease;
}

.hero-badge i {
    color: var(--primary);
}

.hero-badge span {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary);
}

.hero-logo-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 40px auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease 0.2s backwards;
    overflow: visible;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.hero-logo {
    width: 450px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: float 6s ease-in-out infinite;
}

.logo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.logo-ring.ring-2 {
    width: 115%;
    height: 115%;
    border-width: 2px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.logo-ring.ring-3 {
    width: 130%;
    height: 130%;
    border-width: 2px;
    animation-duration: 40s;
    border-style: dashed;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-title {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s backwards;
    position: relative;
    z-index: 10;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.3;
}

.title-line.accent {
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-subtitle {
    max-width: 700px;
    margin: 80px auto 20px;
    font-size: 20px;
    color: var(--light);
    animation: fadeInUp 1s ease 0.6s backwards;
    position: relative;
    z-index: 10;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.8s backwards;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    white-space: nowrap;
}

.stat-number {
    display: inline;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    display: inline;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-top: 10px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(transparent, var(--primary), transparent);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
    animation: fadeInUp 1s ease 1s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: var(--dark);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 1.2s backwards;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--muted);
}

.hero-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.hero-corner.top-left {
    top: 80px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.hero-corner.top-right {
    top: 80px;
    right: 40px;
    border-left: none;
    border-bottom: none;
}

.hero-corner.bottom-left {
    bottom: 40px;
    left: 40px;
    border-right: none;
    border-top: none;
}

.hero-corner.bottom-right {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-tag i {
    font-size: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--primary);
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--gradient-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    margin-bottom: 40px;
}

.about-text .lead {
    font-size: 20px;
    color: var(--light);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--muted);
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 13px;
    color: var(--muted);
}

.about-visual {
    position: relative;
}

.visual-frame {
    position: relative;
    padding: 40px;
    background: rgba(10, 25, 47, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
}

.frame-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.frame-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.visual-content {
    text-align: center;
}

.hud-element {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary);
}

.hud-element.top {
    margin-bottom: 30px;
}

.hud-element.bottom {
    margin-top: 30px;
    flex-direction: column;
    gap: 15px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.robot-display {
    font-size: 120px;
    color: var(--primary);
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 255, 136, 0.2);
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient-primary);
    animation: progressAnim 2s ease-in-out infinite;
}

@keyframes progressAnim {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

.visual-data {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.data-item {
    text-align: center;
}

.data-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 5px;
}

.data-value {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--light);
}

.data-value.success {
    color: var(--primary);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    background: var(--darker);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition-normal);
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(10, 25, 47, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-tag {
    padding: 5px 15px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid var(--primary);
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--primary);
}

.product-icon {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
    transition: var(--transition-normal);
}

.product-card:hover .product-icon {
    opacity: 0.6;
    transform: scale(1.1);
}

.product-hud {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hud-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.hud-circle {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.product-content {
    padding: 30px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-code {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
}

.product-status {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--primary);
    padding: 3px 10px;
    background: rgba(0, 255, 136, 0.1);
}

.product-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.product-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-specs {
    list-style: none;
    margin-bottom: 25px;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--light);
    margin-bottom: 8px;
}

.product-specs i {
    color: var(--primary);
    font-size: 10px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.product-link:hover {
    gap: 15px;
}

/* ========================================
   TECHNOLOGY SECTION
   ======================================== */
.technology {
    background: var(--gradient-dark);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circuit-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
}

.tech-core {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.core-ring.ring-2 {
    width: 150%;
    height: 150%;
    animation-duration: 15s;
    animation-direction: reverse;
}

.core-ring.ring-3 {
    width: 200%;
    height: 200%;
    animation-duration: 20s;
    border-style: dashed;
}

.core-center {
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

.tech-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(10, 25, 47, 0.9);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    animation: nodeFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.node:nth-child(2) { right: 0; top: 50%; transform: translateY(-50%); }
.node:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.node:nth-child(4) { left: 0; top: 50%; transform: translateY(-50%); }

@keyframes nodeFloat {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition-normal);
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.tech-info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tech-info p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 15px;
}

.tech-bar {
    height: 4px;
    background: rgba(0, 255, 136, 0.2);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: var(--width);
    background: var(--gradient-primary);
    transition: width 1s ease;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: var(--transition-normal);
}

.info-card:hover {
    border-color: var(--primary);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content h4 {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--primary);
}

.info-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.security-notice {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    margin-top: auto;
}

.security-notice i {
    color: var(--warning);
    font-size: 20px;
    flex-shrink: 0;
}

.security-notice p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.1);
    padding: 40px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    margin-bottom: 30px;
}

.form-header i {
    color: var(--primary);
    font-size: 20px;
}

.form-header span {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(2, 12, 27, 0.8);
    border: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--light);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group select option {
    background: var(--dark);
    color: var(--light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.form-group input:focus ~ .input-line,
.form-group select:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.captcha-area {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
}

.captcha-area i {
    color: var(--primary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    height: 168px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.footer-brand p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--primary);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
}

.footer-nav h4 {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 25px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--muted);
    font-size: 14px;
    transition: var(--transition-normal);
}

.footer-nav a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 13px;
}

.classification {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.classification i {
    color: var(--danger);
}

.classification span {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--danger);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-nav:last-child {
        display: none;
    }
    
    .hero-logo-container {
        width: 420px;
        height: 420px;
        margin-bottom: 100px;
    }
    
    .hero-logo {
        width: 580px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 30px;
        transition: var(--transition-normal);
        border-left: 1px solid rgba(0, 255, 136, 0.1);
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1002;
        animation: none !important;
        transform: none !important;
    }
    
    .hamburger:hover {
        transform: none !important;
    }
    
    .nav-actions {
        display: none;
    }
    
    .about-grid,
    .tech-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .tech-visual {
        height: 350px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
        justify-content: center;
    }
    
    .stat-divider {
        display: block;
    }
    
    .hero-logo-container {
        width: 380px;
        height: 380px;
        margin-bottom: 90px;
    }
    
    .hero-logo {
        width: 520px;
    }
    
    .logo {
        height: 80px;
    }
    
    .footer-logo {
        height: 120px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 80px 20px 60px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 40px;
    }
    
    .hero-logo-container {
        width: 320px;
        height: 320px;
        margin-bottom: 80px;
    }
    
    .hero-logo {
        width: 440px;
    }
    
    .logo-ring {
        border-width: 1px;
    }
    
    .logo-ring.ring-2 {
        width: 115%;
        height: 115%;
    }
    
    .logo-ring.ring-3 {
        width: 130%;
        height: 130%;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: row;
        width: auto;
        max-width: none;
        margin: 0 auto;
        gap: 15px;
    }
    
    .btn {
        width: auto;
        justify-content: center;
        padding: 14px 25px;
        font-size: 11px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card {
        padding: 0;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        height: 100px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        gap: 20px;
        text-align: center;
        justify-content: space-between;
    }
    
    .hero-corner {
        display: block;
    }
    
    /* Keep cursor effects on tablet */
    .cursor-reticle,
    .cursor-trail {
        display: block;
    }

    .header {
        padding: 15px 0;
    }
    
    .logo {
        height: 70px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
    
    .about-image-container,
    .tech-visual {
        height: 300px;
    }
    
    .stat-item {
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 20px;
        padding: 0 10px;
    }
    
    .nav-menu {
        width: 280px;
        right: -100%;
        padding: 80px 30px 40px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    }
    
    /* Preloader mobile - Identical to desktop behavior */
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .loader-content {
        position: relative;
        transform: none;
        animation: none;
    }
    
    .loader-logo-container {
        width: 150px;
        height: 150px;
        position: relative;
        transform: none;
        animation: none;
    }
    
    .loader-logo {
        width: 100px;
        transform: none;
        animation: none;
    }
    
    .loader-glow {
        position: absolute;
        transform: none;
        animation: none;
    }
    
    .loader-circle {
        position: absolute;
        transform: rotate(-90deg);
    }
    
    .loader-brand {
        font-size: 20px;
        letter-spacing: 6px;
        transform: none;
        animation: none;
    }
    
    .loader-text-container {
        transform: none;
        animation: none;
    }
    
    .loader-progress-bar {
        width: 180px;
        transform: none;
        animation: none;
    }
    
    .loader-percentage {
        transform: none;
        animation: none;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 70px 15px 50px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 30px;
    }
    
    .hero-logo-container {
        width: 260px;
        height: 260px;
        margin-bottom: 70px;
    }
    
    .hero-logo {
        width: 360px;
    }
    
    .logo-ring.ring-2 {
        width: 115%;
        height: 115%;
    }
    
    .logo-ring.ring-3 {
        width: 130%;
        height: 130%;
    }
    
    .hero-subtitle {
        font-size: 13px;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 10px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    
    .stat-item {
        min-width: 80px;
        text-align: center;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 11px;
    }
    
    .logo {
        height: 55px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .footer-title {
        font-size: 14px;
    }
    
    .footer-nav ul li a {
        font-size: 13px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .feature-box h4 {
        font-size: 14px;
    }
    
    .feature-box p {
        font-size: 12px;
    }
    
    .about-image-container,
    .tech-visual {
        height: 280px;
    }
    
    .tech-feature {
        padding: 15px;
    }
    
    .tech-feature h4 {
        font-size: 14px;
    }
    
    .contact-info-box {
        padding: 20px;
    }
    
    .contact-info-box h4 {
        font-size: 14px;
    }
    
    /* Preloader mobile - Identical to desktop behavior */
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .loader-content {
        position: relative;
        transform: none;
        animation: none;
    }
    
    .loader-logo-container {
        width: 140px;
        height: 140px;
        position: relative;
        transform: none;
        animation: none;
    }
    
    .loader-logo {
        width: 90px;
        transform: none;
        animation: none;
    }
    
    .loader-glow {
        position: absolute;
        transform: none;
        animation: none;
    }
    
    .loader-circle {
        position: absolute;
        transform: rotate(-90deg);
    }
    
    .loader-brand {
        font-size: 18px;
        letter-spacing: 5px;
        transform: none;
        animation: none;
    }

    .loading-text {
        font-size: 10px;
        letter-spacing: 3px;
        transform: none;
        animation: none;
    }
    
    .loader-text-container {
        transform: none;
        animation: none;
    }
    
    .loader-progress-bar {
        width: 160px;
        transform: none;
        animation: none;
    }

    .loader-percentage {
        font-size: 12px;
        transform: none;
        animation: none;
    }

    /* Keep visual effects on mobile */
    .scan-line,
    .grid-bg {
        display: block;
    }
}

@media (max-width: 360px) {
    .hero-logo-container {
        width: 220px;
        height: 220px;
        margin-bottom: 60px;
    }
    
    .hero-logo {
        width: 300px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .logo {
        height: 45px;
    }
    
    .btn {
        padding: 10px 14px;
        font-size: 9px;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .footer-logo {
        height: 60px;
    }

    /* Preloader mobile 360px - Identical to desktop behavior */
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .loader-content {
        position: relative;
        transform: none;
        animation: none;
    }
    
    .loader-logo-container {
        width: 120px;
        height: 120px;
        position: relative;
        transform: none;
        animation: none;
    }
    
    .loader-logo {
        width: 80px;
        transform: none;
        animation: none;
    }
    
    .loader-glow {
        position: absolute;
        transform: none;
        animation: none;
    }
    
    .loader-circle {
        position: absolute;
        transform: rotate(-90deg);
    }
    
    .loader-brand {
        font-size: 16px;
        letter-spacing: 4px;
        transform: none;
        animation: none;
    }
    
    .loader-text-container {
        transform: none;
        animation: none;
    }
    
    .loader-progress-bar {
        width: 140px;
        transform: none;
        animation: none;
    }
    
    .loader-percentage {
        transform: none;
        animation: none;
    }
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.3s infinite linear alternate-reverse;
    color: var(--primary);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite linear alternate-reverse;
    color: var(--danger);
    z-index: -2;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 2px); }
    20% { clip-path: inset(10% 0 70% 0); transform: translate(2px, -2px); }
    40% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(40% 0 40% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 2px); }
    100% { clip-path: inset(80% 0 0% 0); transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(60% 0 20% 0); transform: translate(2px, -2px); }
    20% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 2px); }
    40% { clip-path: inset(30% 0 50% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(40% 0 40% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(2px, -2px); }
    100% { clip-path: inset(0% 0 80% 0); transform: translate(-2px, 2px); }
}
