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

:root {
    --cyan: #00F0FF;
    --cyan-glow: rgba(0, 240, 255, 0.6);
    --deep-cyan: #008B9E;
    --dark-bg: #0A0E1A;
    --darker-bg: #050810;
    --accent-purple: #B084FF;
    --accent-green: #00FF88;
    --glass: rgba(10, 30, 50, 0.3);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--darker-bg);
    color: var(--cyan);
    overflow-x: hidden;
    position: relative;
}

.system-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    perspective: 1000px;
}

.bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.bg-layer-1 { transform: translateZ(-200px); }
.bg-layer-2 { transform: translateZ(-100px); opacity: 0.25; }
.bg-layer-3 { transform: translateZ(0); opacity: 0.35; }

.circuit-grid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(var(--cyan) 1px, transparent 1px),
        linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.05;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.08; }
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--cyan-glow);
    animation: flow linear infinite;
}

@keyframes flow {
    from {
        transform: translateX(0) translateY(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    to {
        transform: translateX(var(--tx)) translateY(var(--ty));
        opacity: 0;
    }
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    opacity: 0.4;
    animation: streamFlow linear infinite;
}

@keyframes streamFlow {
    from { transform: translateY(-100vh); }
    to { transform: translateY(100vh); }
}

.energy-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow:
        0 0 20px var(--cyan-glow),
        0 0 40px var(--cyan-glow);
    animation: nodePulse 2s ease-in-out infinite;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

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

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: statusBlink 2s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

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

.nav-menu a {
    color: rgba(0, 240, 255, 0.7);
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cyan);
    box-shadow: 0 0 5px var(--cyan-glow);
    transition: width 0.3s ease;
}

.nav-menu a:hover { color: var(--cyan); }
.nav-menu a:hover::before { width: 100%; }

.btn-primary {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    display: inline-block;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cyan);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--darker-bg);
    box-shadow: 0 0 40px var(--cyan-glow);
}

.btn-primary:hover::before { left: 0; }

.btn-secondary {
    padding: 12px 28px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--cyan);
    color: var(--cyan);
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    font-size: 20px;
    cursor: pointer;
    padding: 8px 16px;
    font-family: 'Share Tech Mono', monospace;
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 8, 16, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-top: 1px solid rgba(0, 240, 255, 0.2);
    }
    .nav-menu.active { display: flex; }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 80px;
}

.holo-interface {
    position: absolute;
    border: 1px solid var(--cyan);
    background: rgba(0, 240, 255, 0.03);
    backdrop-filter: blur(5px);
    padding: 20px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    pointer-events: none;
    box-shadow:
        inset 0 0 20px rgba(0, 240, 255, 0.1),
        0 0 30px rgba(0, 240, 255, 0.2);
    animation: holoFloat 8s ease-in-out infinite;
}

@media (max-width: 1023px) {
    .holo-interface { display: none; }
}

@keyframes holoFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-20px) rotateX(5deg) rotateY(5deg); }
    50% { transform: translateY(-10px) rotateX(-3deg) rotateY(-3deg); }
    75% { transform: translateY(-15px) rotateX(4deg) rotateY(-4deg); }
}

.holo-1 { top: 15%; left: 5%; animation-delay: 0s; }
.holo-2 { top: 20%; right: 8%; animation-delay: 2s; }
.holo-3 { bottom: 25%; left: 8%; animation-delay: 4s; }
.holo-4 { bottom: 20%; right: 10%; animation-delay: 6s; }

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.3;
    animation: scan 6s linear infinite;
}

@keyframes scan {
    from { transform: translateY(0); }
    to { transform: translateY(100vh); }
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    z-index: 20;
    position: relative;
}

.system-status {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-green);
    margin-bottom: 24px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.system-status::before,
.system-status::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
}

.hero .tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--cyan);
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 0 0 20px var(--cyan-glow);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 20px var(--cyan-glow)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 40px var(--cyan-glow)); }
}

.hero p {
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.6;
    color: rgba(0, 240, 255, 0.8);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

section {
    padding: 160px 40px;
    position: relative;
}

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

.section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--cyan);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 800;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header p {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(0, 240, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.card-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .card-grid { grid-template-columns: 1fr; }
}

.card {
    padding: 40px;
    background: rgba(0, 240, 255, 0.02);
    border: 1px solid rgba(0, 240, 255, 0.3);
    backdrop-filter: blur(10px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.problem .card {
    animation: cardFloat 6s ease-in-out infinite;
}

.problem .card:nth-child(1) { animation-delay: 0s; animation-duration: 6s; }
.problem .card:nth-child(2) { animation-delay: 1.5s; animation-duration: 6.5s; }
.problem .card:nth-child(3) { animation-delay: 3s; animation-duration: 7s; }
.problem .card:nth-child(4) { animation-delay: 4.5s; animation-duration: 6.8s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
    25% { transform: translateY(-15px) rotateX(2deg) rotateY(1deg); }
    50% { transform: translateY(-8px) rotateX(-1deg) rotateY(-1deg); }
    75% { transform: translateY(-12px) rotateX(1deg) rotateY(-0.5deg); }
}

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

.card:hover {
    border-color: var(--cyan);
    box-shadow:
        0 0 40px rgba(0, 240, 255, 0.3),
        inset 0 0 40px rgba(0, 240, 255, 0.1);
    transform: translateY(-10px) scale(1.02);
    animation-play-state: paused;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 24px;
    opacity: 0.5;
    filter: drop-shadow(0 0 10px var(--cyan-glow));
}

.card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 240, 255, 0.7);
}

.problem {
    background: rgba(0, 240, 255, 0.02);
}

.process-flow {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.data-highway {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--cyan), var(--accent-purple), transparent);
    opacity: 0.3;
}

.data-highway::before,
.data-highway::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.data-highway::before {
    top: 0;
    animation: dataFlow 3s linear infinite;
}

.data-highway::after { bottom: 0; }

@keyframes dataFlow {
    from { transform: translateX(-50%) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    to { transform: translateX(-50%) translateY(100vh); opacity: 0; }
}

.process-step {
    margin-bottom: 120px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
    position: relative;
}

.process-step.active { opacity: 1; }

.step-number {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--cyan);
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.process-step h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.process-step p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 240, 255, 0.7);
    max-width: 700px;
}

.service-category {
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(0, 240, 255, 0.02);
}

.service-category h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-category ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .service-category ul { grid-template-columns: 1fr; }
}

.service-category li {
    padding: 12px 16px;
    border-left: 2px solid var(--cyan);
    color: rgba(0, 240, 255, 0.8);
    font-size: 15px;
    transition: all 0.3s ease;
}

.service-category li:hover {
    background: rgba(0, 240, 255, 0.05);
    border-left-color: var(--accent-green);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.02);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
    transform: translateY(-10px);
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.pricing-card p {
    color: rgba(0, 240, 255, 0.6);
    font-size: 14px;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-content { flex-direction: column; text-align: center; }
}

.about-avatar {
    flex-shrink: 0;
}

.about-avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 40px var(--cyan-glow);
    object-fit: cover;
}

.about-text h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(0, 240, 255, 0.8);
    margin-bottom: 16px;
}

.about-text .tagline {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-green);
    font-size: 20px;
    margin-top: 24px;
}

.contact {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 3s ease-out infinite;
    pointer-events: none;
}

.contact-pulse:nth-child(2) { animation-delay: 1s; }
.contact-pulse:nth-child(3) { animation-delay: 2s; }

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

footer {
    padding: 60px 40px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    background: rgba(5, 8, 16, 0.9);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    opacity: 0.7;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--cyan);
}

.footer-tagline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(0, 240, 255, 0.6);
    text-decoration: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: rgba(0, 240, 255, 0.4);
    font-size: 12px;
    font-family: 'Share Tech Mono', monospace;
}

.italic {
    font-style: italic;
    color: rgba(0, 240, 255, 0.5);
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
}

.text-center { text-align: center; }

@media (max-width: 968px) {
    section { padding: 100px 24px; }
    .container { padding: 0 24px; }
    .card-grid { grid-template-columns: 1fr; gap: 24px; }
    .data-highway { display: none; }
    .hero { padding: 100px 24px 60px; }
}
