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

body {
    font-family: 'Courier New', 'Consolas', monospace;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 102, 0, 0.4);
}

.logo {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.neon {
    color: #ff6600;
    text-shadow: 
        0 0 8px #ff6600,
        0 0 16px #ff6600,
        0 0 24px rgba(255, 102, 0, 0.5);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            0 0 8px #ff6600,
            0 0 16px #ff6600;
    }
    to {
        text-shadow: 
            0 0 16px #ff6600,
            0 0 24px #ff6600,
            0 0 32px rgba(255, 102, 0, 0.6);
    }
}

nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6600 !important;
    opacity: 1;
    text-shadow: 0 0 8px #ff6600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6600, transparent);
    box-shadow: 0 0 8px #ff6600;
}

.section {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero {
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-text {
    font-size: 1.6rem;
    opacity: 0.9;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 102, 0, 0.3);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 102, 0, 0.1),
        transparent
    );
    transition: left 0.6s;
}

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

.service-card:hover {
    border-color: #ff6600;
    transform: translateY(-12px);
    box-shadow: 
        0 25px 50px rgba(255, 102, 0, 0.25),
        0 0 30px rgba(255, 102, 0, 0.15);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.projects .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-item {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 102, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-item:hover {
    border-color: #ff6600;
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.2);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.contact-info .email {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.contact-info .email:hover {
    color: #ff6600;
    text-shadow: 0 0 15px #ff6600;
}
@media (max-width: 1024px) {
    header { padding: 1.2rem 2rem; }
    nav { gap: 2rem; }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav {
        gap: 2rem;
        justify-content: center;
    }
    
    .section {
        padding: 100px 0 60px;
        min-height: 100vh;
    }
    
    .service-grid,
    .project-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title { letter-spacing: 1px !important; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.8rem; }
    nav a { font-size: 1rem; }
    .container { padding: 0 1.5rem; }
}

.solutions .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}


.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.contact-info .email {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    user-select: none;
}

.contact-info .email:hover {
    color: #ff6600;
    text-shadow: 0 0 15px #ff6600;
}

.soon-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 102, 0, 0.4) !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: soonPulse 3s ease-in-out infinite;
    cursor: default !important;
}

.soon-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

.lock-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 6px rgba(255, 102, 0, 0.6));
    animation: lockFloat 4s ease-in-out infinite;
}

.soon-text {
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    letter-spacing: 6px !important;
    text-transform: uppercase !important;
    color: #ff6600 !important;
    text-shadow: 
        0 0 8px rgba(255, 102, 0, 0.8),
        0 0 12px rgba(255, 102, 0, 0.4) !important;
    margin: 0 !important;
}

@keyframes soonPulse {
    0%, 100% { 
        border-color: rgba(255, 102, 0, 0.4);
        box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
        transform: scale(1);
    }
    50% { 
        border-color: rgba(255, 102, 0, 0.6);
        box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
        transform: scale(1.02);
    }
}

@keyframes lockFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-5px) rotate(2deg); }
    66% { transform: translateY(-5px) rotate(-2deg); }
}

@media (max-width: 768px) {
    .lock-icon { font-size: 3rem; }
    .soon-text { 
        font-size: 2.2rem !important;
        letter-spacing: 4px !important;
    }
}
