/* ============================================
   ALPHINTECH - ULTRA TECH FUTURISTIC THEME
   NO GRADIENTS - SOLID COLORS ONLY
   ============================================ */

:root {
    /* Primary Brand Colors - SOLID */
    --neon-primary: #6366f1;
    --neon-primary-light: #818cf8;
    --neon-primary-dark: #4f46e5;
    /* Accent Colors - SOLID */
    --neon-cyan: #00f5ff;
    --neon-magenta: #ff00ff;
    --neon-purple: #8b5cf6;
    --neon-green: #00ff88;
    --neon-pink: #ff0080;
    --neon-orange: #ff6b35;
    /* Dark Theme */
    --dark-void: #000008;
    --dark-deep: #050510;
    --dark-base: #0a0a1a;
    --dark-surface: #0f0f25;
    --dark-elevated: #151530;
    --dark-card: #1a1a35;
    /* Glass Effects */
    --glass-bg: rgba(99, 102, 241, 0.05);
    --glass-border: rgba(99, 102, 241, 0.25);
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;
    /* Shadows & Glows */
    --shadow-neon: 0 0 30px rgba(99, 102, 241, 0.5);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.4);
    --shadow-intense: 0 0 80px rgba(99, 102, 241, 0.6);
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-void);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--neon-primary);
    color: white;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 20px var(--neon-primary), 0 0 40px var(--neon-primary);
    transition: transform 0.1s ease;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease;
    opacity: 0.5;
}

.cursor-ring.hover {
    transform: scale(1.5);
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--neon-cyan);
}

/* Animated Cyber Grid */
.cyber-grid {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(99, 102, 241, 0.03) 79px, rgba(99, 102, 241, 0.03) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(99, 102, 241, 0.03) 79px, rgba(99, 102, 241, 0.03) 80px);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Floating Particles */
.particles-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--neon-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-primary);
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Scanlines Effect */
.scanlines {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
}

/* Noise Texture */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9996;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-glow {
    color: var(--neon-primary);
    text-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary), 0 0 40px var(--neon-primary);
}

.text-accent {
    color: var(--neon-primary);
}

/* Glitch Text */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: var(--neon-cyan);
    animation: glitch-1 0.3s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: var(--neon-primary);
    animation: glitch-2 0.3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-3px);
    }
}

@keyframes glitch-2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(3px);
    }
}

/* Typing Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--neon-primary);
    white-space: nowrap;
    animation: typing 3.5s steps(40) 1s forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Utility Classes */
.section-padding {
    padding: 140px 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(99, 102, 241, 0.3);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.section-badge i {
    font-size: 1rem;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-void);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 245, 255, 0.05) 0%, transparent 40%);
    animation: preloaderBg 4s ease-in-out infinite;
}

@keyframes preloaderBg {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.loader-logo-wrap {
    position: relative;
    width: 280px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.loader-logo {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 10;
    animation: logoGlow 2s ease-in-out infinite, logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5)) drop-shadow(0 0 40px rgba(99, 102, 241, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.8)) drop-shadow(0 0 60px rgba(99, 102, 241, 0.5)) drop-shadow(0 0 80px rgba(99, 102, 241, 0.3));
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.loader-orbital {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
    animation: orbitalSpin linear infinite;
}

.loader-orbital-1 {
    width: 300px;
    height: 300px;
    border-top-color: var(--neon-primary);
    border-right-color: rgba(99, 102, 241, 0.3);
    animation-duration: 3s;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.loader-orbital-2 {
    width: 340px;
    height: 340px;
    border-bottom-color: var(--neon-cyan);
    border-left-color: rgba(0, 245, 255, 0.2);
    animation-duration: 4s;
    animation-direction: reverse;
}

.loader-orbital-3 {
    width: 380px;
    height: 380px;
    border-top-color: var(--neon-purple);
    border-right-color: rgba(139, 92, 246, 0.2);
    animation-duration: 5s;
}

@keyframes orbitalSpin {
    to {
        transform: rotate(360deg);
    }
}

.loader-scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--neon-cyan) 20%,
            var(--neon-primary) 50%,
            var(--neon-cyan) 80%,
            transparent 100%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: scanLine 2s ease-in-out infinite;
    opacity: 0.8;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-primary);
}

@keyframes scanLine {

    0%,
    100% {
        transform: translateY(-50%) scaleX(0.3);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-50%) scaleX(1);
        opacity: 1;
    }
}

.loader-progress {
    width: 280px;
    height: 3px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-progress::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 3px;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-primary), var(--neon-cyan), var(--neon-primary));
    background-size: 200% 100%;
    width: 0%;
    animation: loadProgress 2s ease-out forwards, progressGlow 1s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-cyan);
    border-radius: 3px;
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes progressGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.loader-status {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--neon-primary);
    margin-top: 20px;
    opacity: 0.8;
    animation: statusBlink 1s steps(1) infinite;
}

@keyframes statusBlink {

    0%,
    50% {
        opacity: 0.8;
    }

    51%,
    100% {
        opacity: 0.4;
    }
}


/* Navigation */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 0px transparent);
}

.brand-logo:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6)) drop-shadow(0 0 40px rgba(99, 102, 241, 0.3)) brightness(1.1);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: white;
}

.brand-text span {
    color: var(--neon-primary);
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 12px 22px !important;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--neon-primary);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--neon-primary);
    transform: scaleX(0);
    transition: var(--transition);
    box-shadow: 0 0 10px var(--neon-primary);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 2px solid var(--glass-border);
    padding: 10px 14px;
    border-radius: 10px;
    transition: var(--transition);
}

.navbar-toggler:hover {
    border-color: var(--neon-primary);
    box-shadow: var(--shadow-neon);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236366f1' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons - NO GRADIENTS */
.btn-primary {
    background: var(--neon-primary);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    color: #ffffff;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-primary);
    color: var(--neon-primary);
    font-weight: 600;
    padding: 16px 38px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: var(--neon-primary);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon);
}

.btn-ghost {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--neon-primary);
    color: var(--neon-primary);
    box-shadow: var(--shadow-neon);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 800px;
    height: 800px;
    background: var(--neon-primary);
    top: -400px;
    right: -300px;
    opacity: 0.2;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--neon-purple);
    bottom: -300px;
    left: -200px;
    opacity: 0.15;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: 40%;
    left: 30%;
    opacity: 0.1;
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }

    75% {
        transform: translate(30px, 20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 100px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    color: var(--neon-primary);
    animation: fadeSlideUp 1s ease 0.2s both;
}

.hero-eyebrow i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.05;
    animation: fadeSlideUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeSlideUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 70px;
    animation: fadeSlideUp 1s ease 0.8s both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeSlideUp 1s ease 1s both;
}

.hero-stat {
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.hero-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--neon-primary);
    box-shadow: 0 0 10px var(--neon-primary);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeIn 1.5s ease 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    animation: heroFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.4));
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-25px) rotate(0deg);
    }

    75% {
        transform: translateY(-15px) rotate(-0.5deg);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--dark-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 20px 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-neon);
    animation: cardFloat 5s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.8rem;
    color: var(--neon-primary);
}

.floating-card span {
    font-size: 1rem;
}

.card-1 {
    top: 8%;
    left: -8%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 12%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: var(--shadow-neon);
    }

    50% {
        transform: translateY(-20px);
        box-shadow: var(--shadow-intense);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease 1.5s both;
}

.scroll-indicator a {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.scroll-indicator a:hover {
    color: var(--neon-primary);
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: var(--neon-primary);
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s infinite;
    box-shadow: 0 0 10px var(--neon-primary);
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* About Section */
.about-section {
    background: var(--dark-deep);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neon-primary);
    opacity: 0.3;
    box-shadow: 0 0 20px var(--neon-primary);
}

.about-image-wrapper {
    position: relative;
    padding: 40px;
}

.about-image {
    width: 100%;
    border-radius: 30px;
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-glow);
    transition: var(--transition);
}

.about-image:hover {
    border-color: var(--neon-primary);
    box-shadow: var(--shadow-intense);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--neon-primary);
    padding: 35px 45px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-glow);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.exp-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.exp-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.about-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.9;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    background: var(--dark-elevated);
    border-color: var(--neon-primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-neon);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--neon-primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
    transform: rotateY(180deg);
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: var(--dark-base);
}

.team-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--neon-primary);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 10;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-glow);
    border-color: var(--neon-primary);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-image-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all 0.6s ease;
    filter: grayscale(40%);
}

.team-card:hover .team-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: var(--neon-primary);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 35px;
}

.team-card:hover .team-overlay {
    opacity: 0.95;
}

.team-social {
    display: flex;
    gap: 18px;
}

.team-social a {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    transition: var(--transition);
    transform: translateY(30px);
    opacity: 0;
}

.team-card:hover .team-social a {
    transform: translateY(0);
    opacity: 1;
}

.team-card:hover .team-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.team-card:hover .team-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.team-card:hover .team-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.team-social a:hover {
    background: #ffffff;
    color: var(--neon-primary);
    transform: translateY(-5px);
}

.team-info {
    padding: 35px;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-role {
    color: var(--neon-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Products Section */
.products-section {
    background: var(--dark-surface);
}

.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 70px;
}

.filter-btn {
    background: var(--dark-elevated);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-primary);
    border-color: var(--neon-primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--dark-elevated);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--neon-primary);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 10;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--neon-primary);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.7);
}

.product-card:hover .product-image {
    transform: scale(1.15);
    filter: brightness(1);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: var(--dark-elevated);
    opacity: 0.6;
}

.product-content {
    padding: 35px 40px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.product-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-primary);
    transition: var(--transition);
}

.product-card:hover .product-icon-wrap {
    background: var(--neon-primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.product-badge {
    background: var(--neon-primary);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.product-title {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.product-tagline {
    color: var(--neon-primary);
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.product-features li:hover {
    color: var(--text-primary);
    transform: translateX(8px);
}

.product-features li i {
    color: var(--neon-green);
    font-size: 1rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--neon-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    padding: 18px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

.product-link:hover {
    background: var(--neon-primary);
    color: #ffffff;
    border-color: var(--neon-primary);
    box-shadow: var(--shadow-neon);
    gap: 18px;
}

/* Featured Product Styles */
.product-featured {
    grid-column: 1 / -1;
}

.product-featured-inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    height: auto;
}

.product-featured .product-image-wrap {
    height: 100%;
    min-height: 450px;
}

.product-featured .product-content {
    padding: 45px 50px;
}

.product-featured .product-title {
    font-size: 2.2rem;
}

.product-featured .product-description {
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.product-description-extended {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.8;
    border-left: 3px solid var(--neon-primary);
    padding-left: 16px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.product-features-grid li {
    margin-bottom: 0;
}

/* Why Us Section */
.why-us-section {
    background: var(--dark-deep);
}

.advantage-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 45px;
    height: 100%;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--neon-primary), transparent 30%);
    animation: rotateBorder 8s linear infinite paused;
    opacity: 0;
    transition: opacity 0.3s;
}

.advantage-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--dark-surface);
    border-radius: 25px;
    z-index: 0;
}

.advantage-card:hover::before {
    animation-play-state: running;
    opacity: 1;
}

@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}

.advantage-card:hover {
    transform: translateY(-12px);
}

.advantage-card>* {
    position: relative;
    z-index: 1;
}

.advantage-icon {
    width: 100px;
    height: 100px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--neon-primary);
    margin: 0 auto 32px;
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--neon-primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
    transform: rotateY(180deg) scale(1.1);
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.advantage-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: var(--dark-base);
    padding: 120px 0;
    position: relative;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neon-primary);
    opacity: 0.3;
}

.stats-section::before {
    top: 0;
}

.stats-section::after {
    bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-primary);
    box-shadow: var(--shadow-neon);
}

.stat-icon {
    font-size: 3rem;
    color: var(--neon-primary);
    margin-bottom: 24px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--neon-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-title {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* ============================================
   CLIENTS SECTION - ULTRA TECH STYLE
   ============================================ */
.clients-section {
    background: var(--dark-base);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Client Logo Grid */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.client-logo-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 5px;
    transition: var(--transition);
    overflow: hidden;
}

.client-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s ease;
}

.client-logo-card:hover::before {
    left: 100%;
}

.client-logo-card:hover {
    border-color: var(--neon-primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(99, 102, 241, 0.15);
}

.client-logo-inner {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    transition: var(--transition);
}

.client-logo-card:hover .client-logo-inner {
    background: linear-gradient(145deg, #ffffff, #f8f8ff);
}

.client-logo-inner img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(20%);
}

.client-logo-card:hover .client-logo-inner img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Client Highlight Cards */
.client-highlight-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.client-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neon-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.client-highlight-card:hover::before {
    transform: scaleX(1);
}

.client-highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 102, 241, 0.1);
}

.client-highlight-card.featured {
    background: var(--dark-elevated);
    border-color: var(--neon-primary);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.15);
}

.client-highlight-card.featured::before {
    transform: scaleX(1);
}

.highlight-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon-wrap i {
    font-size: 2.2rem;
    color: var(--neon-primary);
    z-index: 1;
    position: relative;
    transition: var(--transition);
}

.highlight-glow {
    position: absolute;
    inset: 0;
    background: var(--neon-primary);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(20px);
    transition: var(--transition);
}

.client-highlight-card:hover .highlight-glow {
    opacity: 0.25;
    transform: scale(1.2);
}

.client-highlight-card:hover .highlight-icon-wrap i {
    transform: scale(1.1);
    color: var(--neon-primary-light);
}

.client-highlight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
}

.client-highlight-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.highlight-stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-stat .stat-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neon-primary);
    line-height: 1;
}

.highlight-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Responsive - Clients Section */
@media (max-width: 1200px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 991px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .client-logo-inner {
        padding: 10px;
    }

    .client-logo-inner img {
        max-height: 40px;
    }

    .client-highlight-card {
        padding: 30px 24px;
    }
}

@media (max-width: 767px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .client-logo-inner {
        padding: 8px;
    }

    .client-logo-inner img {
        max-height: 35px;
    }

    .highlight-icon-wrap {
        width: 65px;
        height: 65px;
    }

    .highlight-icon-wrap i {
        font-size: 1.8rem;
    }

    .client-highlight-card h3 {
        font-size: 1.2rem;
    }

    .highlight-stat .stat-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .client-logo-card {
        padding: 4px;
        border-radius: 10px;
    }

    .client-logo-inner {
        padding: 6px;
        border-radius: 8px;
    }

    .client-logo-inner img {
        max-height: 30px;
    }

    .client-highlight-card {
        padding: 25px 20px;
    }
}

/* Testimonials */

.testimonials-section {
    background: var(--dark-void);
}

.testimonial-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 45px;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--neon-primary);
    border-radius: 28px 28px 0 0;
    transform: scaleX(0);
    transition: var(--transition);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card.featured {
    background: var(--dark-elevated);
    border-color: var(--neon-primary);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.quote-icon {
    font-size: 4.5rem;
    color: var(--neon-primary);
    opacity: 0.4;
    margin-bottom: 24px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 35px;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 18px;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 4px;
}

/* CTA Section */
.cta-section {
    padding: 160px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon-primary);
    opacity: 0.03;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 28px;
}

.cta-description {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* Contact Section */
.contact-section {
    background: var(--dark-base);
}

.contact-info {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 28px 20px;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--neon-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-neon);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--neon-primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--neon-primary);
    color: #ffffff;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    width: 55px;
    height: 55px;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--neon-primary);
    border-color: var(--neon-primary);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 50px;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--neon-primary);
    border-radius: 28px 28px 0 0;
}

.form-floating>.form-control,
.form-floating>.form-select {
    background: var(--dark-elevated);
    border: 1px solid var(--glass-border);
    color: #ffffff;
    border-radius: 16px;
    height: auto;
    padding: 1.5rem 1rem;
}

.form-floating>.form-control:focus {
    border-color: var(--neon-primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.form-floating>label {
    color: var(--text-muted);
    padding: 1.5rem 1rem;
    background: transparent !important;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    background: var(--dark-elevated) !important;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: var(--text-muted);
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

/* Extra fix for select label */
.form-floating select.form-control+label,
.form-floating .form-select+label {
    background: var(--dark-elevated) !important;
}

/* Footer */
.footer {
    background: var(--dark-void);
}

.footer-top {
    padding: 120px 0 70px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 28px;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 350px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--neon-primary);
    border-color: var(--neon-primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.footer-links h4 {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--neon-primary);
    transform: translateX(5px);
}

.footer-newsletter h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    position: relative;
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 24px;
    padding-right: 70px;
    color: #ffffff;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form:focus-within {
    border-color: var(--neon-primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.newsletter-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--neon-primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-neon);
}

/* Select Dropdown Fix */
select.form-control,
select.form-select {
    background: var(--dark-elevated) !important;
    border: 1px solid var(--glass-border) !important;
    color: #ffffff !important;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    height: auto;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236366f1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 16px 12px !important;
    cursor: pointer;
}

select.form-control:focus,
select.form-select:focus {
    border-color: var(--neon-primary) !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2) !important;
    outline: none;
}

select.form-control option,
select.form-select option {
    background: var(--dark-base);
    color: #ffffff;
    padding: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 35px 0;
}

.copyright {
    color: var(--text-muted);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 35px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--neon-primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--neon-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: var(--shadow-intense);
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark-surface);
        padding: 30px;
        border-radius: 24px;
        margin-top: 20px;
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-neon);
    }

    /* Mobile Navigation Links */
    .navbar-nav {
        gap: 8px;
    }

    .navbar-nav .nav-item {
        border-bottom: none;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(99, 102, 241, 0.1);
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    /* Mobile Get Started Button */
    .navbar .btn-primary {
        margin-top: 20px;
        margin-left: 0 !important;
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-visual {
        margin-top: 70px;
    }

    .floating-card {
        display: none;
    }

    .about-image-wrapper {
        margin-bottom: 60px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-featured-inner {
        grid-template-columns: 1fr;
    }

    .product-featured .product-image-wrap {
        min-height: 280px;
    }

    .product-features-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 100px 0;
    }

    .hero-stats {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   MOBILE SCROLLING FIXES
   ============================================ */

/* Prevent horizontal overflow on mobile */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Smooth touch scrolling for iOS */
html {
    -webkit-overflow-scrolling: touch;
}

/* Fix for elements that might cause horizontal scroll */
.container,
.row,
section,
header,
footer,
nav {
    max-width: 100%;
}

/* Mobile-specific scrolling fixes */
@media (max-width: 991px) {

    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100vw;
    }

    /* Fix hero orbs from causing overflow */
    .hero-orb {
        max-width: 100%;
    }

    .orb-1 {
        right: -50%;
        width: 150%;
    }

    .orb-2 {
        left: -50%;
        width: 120%;
    }

    /* Prevent hero image from overflowing */
    .hero-image-container {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
    }

    /* Fix background effects overflow */
    .cyber-grid,
    .particles-container,
    .scanlines,
    .noise {
        width: 100%;
        max-width: 100vw;
    }

    /* Fix contact form wrapper on mobile */
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    /* Ensure buttons don't overflow */
    .btn-primary,
    .btn-outline,
    .btn-ghost {
        max-width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Fix product cards */
    .product-card {
        max-width: 100%;
    }

    /* Fix testimonial cards */
    .testimonial-card {
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    /* Extra small device fixes */
    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Reduce padding on very small screens */
    .section-padding {
        padding: 60px 0;
    }

    /* Fix hero buttons stacking */
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
    }

    /* Fix hero stats on small screens */
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    /* Fix contact cards */
    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Fix navbar brand */
    .brand-text {
        font-size: 1.3rem;
    }

    .brand-logo {
        width: 90%;
        height: auto;
    }

    /* Fix back to top button position */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    /* Newsletter form fix */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        padding-right: 24px;
        text-align: center;
    }

    .newsletter-form button {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 10px;
        border-radius: 12px;
        padding: 14px;
    }

    /* Fix section badges */
    .section-badge {
        font-size: 0.65rem;
        padding: 10px 20px;
        letter-spacing: 2px;
    }

    /* Fix advantage cards */
    .advantage-card {
        padding: 30px 20px;
    }

    /* Fix team cards */
    .team-card {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

/* Spec Cards */
.spec-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}

.spec-card:hover {
    border-color: var(--neon-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.spec-card h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-card h4 i {
    font-size: 1.4rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 12px 0;
    font-size: 0.95rem;
}

.spec-table td:first-child {
    color: var(--text-secondary);
    width: 45%;
}

.spec-table td:last-child {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
}

/* Quick Features */
.quick-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 0.95rem;
}

.quick-feature i {
    font-size: 1.1rem;
}

/* Security Features */
.security-feature {
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.security-feature:hover {
    border-color: var(--neon-primary);
}

.security-feature i {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.security-feature h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.security-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-list li i {
    font-size: 1.2rem;
}

/* Scenario Cards */
.scenario-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.scenario-card:hover {
    border-color: var(--neon-primary);
    transform: translateX(10px);
}

.scenario-icon {
    width: 50px;
    height: 50px;
    background: var(--neon-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scenario-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.scenario-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.scenario-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Integration Categories */
.integration-category {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

.integration-category h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.integration-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-category li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.integration-category li:last-child {
    border-bottom: none;
}

/* FAQ Accordion - Theme Styled */
.faq-section .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--glass-border);
}

.faq-section .accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 24px 30px;
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(99, 102, 241, 0.1);
    color: var(--neon-primary);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236366f1'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--neon-primary);
}

.faq-section .accordion-body {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-section .accordion-collapse {
    border-top: 1px solid var(--glass-border);
}

/* Step Numbers */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--neon-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-neon);
}