@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Sora:wght@300;400;600;700;800&display=swap');

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

:root {
    --primary: #0A0E27;
    --accent: #00E5FF;
    --secondary: #6C63FF;
    --text: #E8E8E8;
    --text-dark: #A8A8A8;
    --bg-dark: #050814;
    --card-bg: #0F1329;
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 8, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(5, 8, 20, 0.95);
    box-shadow: 0 4px 30px rgba(0, 229, 255, 0.1);
}

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

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '█';
    animation: blink 1.2s infinite;
    color: var(--secondary);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.nav-links a.active {
    color: var(--accent);
}

.cta-button {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 229, 255, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0A0E27 100%);
}

/* Multiple gradient layers moving */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(108, 99, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
    animation: gradientWave 8s ease-in-out infinite;
}

@keyframes gradientWave {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2) rotate(10deg);
    }
}

/* Animated 3D grid background - MORE MOVEMENT */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform-origin: center;
    animation: gridWave 25s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes gridWave {
    0%, 100% { 
        transform: perspective(1000px) rotateX(60deg) rotateY(0deg) translateY(0);
    }
    25% {
        transform: perspective(1000px) rotateX(50deg) rotateY(5deg) translateY(-30px);
    }
    50% { 
        transform: perspective(1000px) rotateX(70deg) rotateY(-5deg) translateY(0);
    }
    75% {
        transform: perspective(1000px) rotateX(55deg) rotateY(3deg) translateY(-20px);
    }
}

/* Network particles system - MORE PARTICLES */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(0, 229, 255, 0.9);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(0, 229, 255, 0.8),
        0 0 30px rgba(0, 229, 255, 0.5),
        0 0 45px rgba(0, 229, 255, 0.3);
    animation: float-particle 20s infinite ease-in-out;
}

/* Network connections with MORE MOVEMENT */
.particle::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.5), transparent);
    transform-origin: left;
    animation: connectionWave 4s ease-in-out infinite;
}

.particle::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(-45deg, rgba(0, 229, 255, 0.4), transparent);
    transform-origin: left;
    animation: connectionWave 5s ease-in-out infinite 1.5s;
}

@keyframes connectionWave {
    0%, 100% { 
        opacity: 0.2; 
        width: 150px;
    }
    50% { 
        opacity: 1;
        width: 250px;
    }
}

/* Each particle with unique complex animation */
.particle:nth-child(1) { 
    left: 15%; top: 20%; 
    animation: orbit1 18s infinite ease-in-out;
}
.particle:nth-child(1)::before { transform: rotate(45deg); }
.particle:nth-child(1)::after { transform: rotate(-30deg); }

.particle:nth-child(2) { 
    left: 75%; top: 15%; 
    animation: orbit2 22s infinite ease-in-out;
}
.particle:nth-child(2)::before { transform: rotate(-60deg); }
.particle:nth-child(2)::after { transform: rotate(120deg); }

.particle:nth-child(3) { 
    left: 45%; top: 35%; 
    animation: orbit3 20s infinite ease-in-out;
}
.particle:nth-child(3)::before { transform: rotate(90deg); }
.particle:nth-child(3)::after { transform: rotate(-90deg); }

.particle:nth-child(4) { 
    left: 85%; top: 60%; 
    animation: orbit4 24s infinite ease-in-out;
}
.particle:nth-child(4)::before { transform: rotate(150deg); }
.particle:nth-child(4)::after { transform: rotate(-45deg); }

.particle:nth-child(5) { 
    left: 25%; top: 70%; 
    animation: orbit5 26s infinite ease-in-out;
}
.particle:nth-child(5)::before { transform: rotate(-120deg); }
.particle:nth-child(5)::after { transform: rotate(60deg); }

.particle:nth-child(6) { 
    left: 60%; top: 80%; 
    animation: orbit6 19s infinite ease-in-out;
}
.particle:nth-child(6)::before { transform: rotate(30deg); }
.particle:nth-child(6)::after { transform: rotate(-150deg); }

.particle:nth-child(7) { 
    left: 90%; top: 40%; 
    animation: orbit7 23s infinite ease-in-out;
}
.particle:nth-child(7)::before { transform: rotate(-90deg); }
.particle:nth-child(7)::after { transform: rotate(135deg); }

.particle:nth-child(8) { 
    left: 35%; top: 85%; 
    animation: orbit8 21s infinite ease-in-out;
}
.particle:nth-child(8)::before { transform: rotate(180deg); }
.particle:nth-child(8)::after { transform: rotate(-15deg); }

.particle:nth-child(9) { 
    left: 70%; top: 50%; 
    animation: orbit9 25s infinite ease-in-out;
}
.particle:nth-child(9)::before { transform: rotate(75deg); }
.particle:nth-child(9)::after { transform: rotate(-105deg); }

/* Complex orbital movements */
@keyframes orbit1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    25% { transform: translate(50px, -60px) scale(1.4); opacity: 1; }
    50% { transform: translate(-40px, 40px) scale(0.9); opacity: 0.6; }
    75% { transform: translate(60px, 50px) scale(1.3); opacity: 0.9; }
}

@keyframes orbit2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.6; }
    33% { transform: translate(-50px, 50px) rotate(120deg) scale(1.3); opacity: 1; }
    66% { transform: translate(40px, -40px) rotate(240deg) scale(0.8); opacity: 0.7; }
}

@keyframes orbit3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(-60px, -70px) scale(1.5); opacity: 1; }
}

@keyframes orbit4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    50% { transform: translate(70px, 60px) rotate(180deg); opacity: 1; }
}

@keyframes orbit5 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(-45px, -55px) scale(1.2); opacity: 0.9; }
    75% { transform: translate(55px, 45px) scale(1.4); opacity: 1; }
}

@keyframes orbit6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.7; }
    50% { transform: translate(-70px, 80px) rotate(360deg) scale(1.3); opacity: 1; }
}

@keyframes orbit7 {
    0%, 100% { transform: translate(0, 0); opacity: 0.8; }
    33% { transform: translate(60px, -50px); opacity: 1; }
    66% { transform: translate(-50px, 60px); opacity: 0.6; }
}

@keyframes orbit8 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: translate(80px, -90px) scale(1.4) rotate(-180deg); opacity: 1; }
}

@keyframes orbit9 {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    25% { transform: translate(-60px, 70px); opacity: 0.9; }
    50% { transform: translate(50px, -50px); opacity: 1; }
    75% { transform: translate(-40px, -60px); opacity: 0.8; }
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, 30px) scale(1.2);
        opacity: 0.9;
    }
}

/* Diagonal scan lines - MORE DYNAMIC */
.hero-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.4;
}

.line {
    position: absolute;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 229, 255, 0.4) 50%, transparent 100%);
    transform-origin: center;
}

.line:nth-child(1) {
    top: 0;
    right: 0;
    width: 400px;
    height: 2px;
    transform: rotate(45deg) translateX(100%);
    animation: scan-diagonal-1 12s ease-in-out infinite;
}

.line:nth-child(2) {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 2px;
    transform: rotate(-45deg) translateX(-100%);
    animation: scan-diagonal-2 15s ease-in-out infinite 4s;
}

.line:nth-child(3) {
    top: 30%;
    left: -300px;
    width: 500px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.5), transparent);
    animation: scan-diagonal-3 18s ease-in-out infinite 8s;
}

@keyframes scan-diagonal-1 {
    0%, 100% {
        transform: rotate(45deg) translateX(150%) translateY(-250%);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.8;
    }
    50% {
        transform: rotate(45deg) translateX(-150%) translateY(250%);
    }
}

@keyframes scan-diagonal-2 {
    0%, 100% {
        transform: rotate(-45deg) translateX(-150%) translateY(250%);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.8;
    }
    50% {
        transform: rotate(-45deg) translateX(150%) translateY(-250%);
    }
}

@keyframes scan-diagonal-3 {
    0%, 100% {
        left: -500px;
        opacity: 0;
        width: 500px;
    }
    10%, 90% {
        opacity: 0.6;
    }
    50% {
        left: 100%;
        width: 700px;
    }
}

/* Large glowing orbs with MORE MOVEMENT */
.hero-content::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: -120px;
    right: -80px;
    animation: orbFloat1 10s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

.hero-content::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: orbFloat2 12s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: blur(50px);
}

@keyframes orbFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(-50px, 60px) scale(1.3);
        opacity: 0.7;
    }
    50% {
        transform: translate(40px, -40px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(-30px, -50px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes orbFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(60px, -50px) scale(1.4);
        opacity: 0.7;
    }
    66% {
        transform: translate(-40px, 40px) scale(0.85);
        opacity: 0.5;
    }
}

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

/* Hero Module Variations */
.hero.hero-module {
    min-height: 60vh;
    padding: 10rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(5, 8, 20, 0.98));
}

.hero.hero-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 229, 255, 0.1) 0%, transparent 30%);
    animation: heroGradient 15s ease-in-out infinite;
}

.hero.hero-maintenance::before {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 30%);
}

@keyframes heroGradient {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.9; }
}

.hero.hero-module::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.4;
}

.hero.hero-maintenance::after {
    background-image: 
        linear-gradient(90deg, rgba(108, 99, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(108, 99, 255, 0.03) 1px, transparent 1px);
}

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

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-decoration::before {
    content: '⚙️';
    position: absolute;
    font-size: 15rem;
    opacity: 0.03;
    top: 10%;
    right: -5%;
    animation: rotate 30s linear infinite;
    filter: blur(2px);
}

.hero-decoration::after {
    content: '🏭';
    position: absolute;
    font-size: 20rem;
    opacity: 0.03;
    bottom: -10%;
    left: -8%;
    animation: float 25s ease-in-out infinite;
    filter: blur(2px);
}

.hero-decoration.maintenance::before {
    content: '🔧';
}

.hero-decoration.maintenance::after {
    content: '🔩';
}

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

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

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-tag, .module-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.module-tag.maintenance {
    background: rgba(108, 99, 255, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero.hero-module h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero.hero-maintenance h1 {
    background: linear-gradient(135deg, var(--text) 30%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero.hero-module .hero-subtitle {
    max-width: 700px;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateY(-3px);
}

.btn-primary.maintenance {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.btn-primary.maintenance:hover {
    box-shadow: 0 6px 30px rgba(108, 99, 255, 0.5);
}

.btn-secondary.maintenance {
    border-color: var(--secondary);
}

.btn-secondary.maintenance:hover {
    background: rgba(108, 99, 255, 0.1);
}

/* Stats Section */
.stats {
    padding: 4rem 2rem 6rem;
    background: var(--card-bg);
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Space Mono', monospace;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 300;
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.section.features {
    padding: 8rem 2rem;
    position: relative;
    margin-top: 4rem;
}

.section.features .section-header {
    margin-bottom: 8rem;
}

.section-alt {
    background: var(--card-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section.features .section-header {
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section.features .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Feature Cards */
.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(108, 99, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-description {
    color: var(--text-dark);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Feature Showcase - for module pages only */
.section .feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.section .feature-showcase:last-child {
    border-bottom: none;
}

.section .feature-showcase.large-image {
    gap: 2rem;
}

.feature-showcase:nth-child(even) {
    /* Vertical layout - no direction change needed */
}

.feature-showcase:nth-child(even) > * {
    /* Vertical layout - no direction change needed */
}

.section .feature-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-align: center;
}

.section .feature-content.maintenance h3 {
    color: var(--secondary);
}

.section .feature-content p {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section .feature-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section .feature-list li {
    padding: 1rem 1.5rem;
    color: var(--text);
    font-size: 1rem;
    position: relative;
    padding-left: 3rem;
    background: rgba(0, 229, 255, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.section .feature-list li:hover {
    background: rgba(0, 229, 255, 0.1);
    transform: translateX(5px);
}

.section .feature-list li::before {
    content: '▸';
    position: absolute;
    left: 1rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.section .feature-list.maintenance li {
    background: rgba(108, 99, 255, 0.05);
    border-left-color: var(--secondary);
}

.section .feature-list.maintenance li:hover {
    background: rgba(108, 99, 255, 0.1);
}

.section .feature-list.maintenance li::before {
    color: var(--secondary);
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
    transition: all 0.4s ease;
    background: var(--bg-dark);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    cursor: zoom-in;
}

.feature-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 229, 255, 0.3);
    border-color: var(--accent);
}

.feature-image.maintenance {
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
}

.feature-image.maintenance:hover {
    box-shadow: 0 30px 80px rgba(108, 99, 255, 0.3);
    border-color: var(--secondary);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Benefit Cards */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card.maintenance {
    border-color: rgba(108, 99, 255, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(108, 99, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card.maintenance::before {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 229, 255, 0.05));
}

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

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.2);
}

.benefit-card.maintenance:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 40px rgba(108, 99, 255, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-card.maintenance .benefit-icon {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-dark);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Component Grid */
.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.component-item {
    background: var(--bg-dark);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.component-item.maintenance {
    border-color: rgba(108, 99, 255, 0.2);
    border-left-color: var(--secondary);
}

.component-item:hover {
    transform: translateX(5px);
    background: var(--card-bg);
    box-shadow: 0 5px 20px rgba(0, 229, 255, 0.15);
}

.component-item.maintenance:hover {
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.15);
}

.component-item h4 {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.component-item.maintenance h4 {
    color: var(--secondary);
}

.component-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Large Screenshot Display */
.screenshot-large {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 229, 255, 0.2);
    transition: all 0.4s ease;
    background: var(--bg-dark);
    width: 100%;
    margin: 2rem auto;
    cursor: zoom-in;
}

.screenshot-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 100px rgba(0, 229, 255, 0.3);
    border-color: var(--accent);
}

.screenshot-large.maintenance {
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 30px 80px rgba(108, 99, 255, 0.2);
}

.screenshot-large.maintenance:hover {
    box-shadow: 0 40px 100px rgba(108, 99, 255, 0.3);
    border-color: var(--secondary);
}

.screenshot-large img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Lightbox / Image Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    cursor: zoom-out;
    animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { 
        transform: scale(0.8);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 30px 100px rgba(0, 229, 255, 0.3);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(0, 229, 255, 0.2);
    border: 2px solid var(--accent);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-hint {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dark);
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

/* Cursor hint on images */
.feature-image {
    position: relative;
}

.screenshot-large {
    position: relative;
}

/* Modules Section */
.modules {
    padding: 8rem 2rem;
    background: var(--card-bg);
}

.modules-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background: var(--bg-dark);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.95);
}

.module-card.visible {
    opacity: 1;
    transform: scale(1);
}

.module-card:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
    box-shadow: 0 15px 50px rgba(108, 99, 255, 0.3);
}

.module-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(108, 99, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.module-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.module-card:hover .module-image::before {
    left: 100%;
}

.module-content {
    padding: 2rem;
}

.module-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.module-description {
    color: var(--text-dark);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section.cta-section {
    padding: 6rem 2rem;
    background: var(--card-bg);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section.cta-section .cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 300;
}

.section.cta-section .cta-content p {
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--primary);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.section footer {
    padding: 3rem 2rem 2rem;
    text-align: center;
    color: var(--text-dark);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.footer-section p, .footer-section a {
    color: var(--text-dark);
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero.hero-module {
        padding: 8rem 1.5rem 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .features, .modules, .cta-section {
        padding: 4rem 1.5rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .feature-showcase {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .feature-content h3 {
        font-size: 1.8rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-list li {
        padding: 0.75rem 1rem;
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }
    
    .lightbox.active {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: -45px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .lightbox-hint {
        font-size: 0.8rem;
        bottom: -50px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .feature-showcase {
        gap: 2rem;
    }
    
    .feature-content h3 {
        font-size: 2.2rem;
    }
    
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1201px) {
    .feature-showcase {
        gap: 2.5rem;
    }
}
.reports-row{
    display:flex;
    gap:2rem;
    justify-content:center;
    align-items:flex-start;
    margin-top:2rem;
}

.report-card{
    flex:1;
    max-width:420px;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.03);
    transition:.15s ease;
    text-decoration:none;
}

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

.report-title{
    padding:.8rem 1rem;
    font-weight:700;
    color:var(--text-light);
}

.report-card img{
    width:100%;
    display:block;
}

.img-preview{
    display:inline-block;
    border-radius:14px;
    overflow:hidden;
    transition:all .25s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.img-preview img{
    display:block;
    width:100%;
    height:auto;
    transition:transform .35s ease;
}

.img-preview:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 50px rgba(0,0,0,.6);
}

.img-preview:hover img{
    transform:scale(1.04);
}