:root {
    --neon: #b0fb47;
    --dark: #0a0a0b;
    --gray: #1a1a1c;
    --text: #f0f0f0;
    --text-dim: #888;
    --transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

h1, h2, h3, h4, .np-logo, .np-pulse-tag, .np-num {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
}

.neon-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(176, 251, 71, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 251, 71, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

/* Nav */
.np-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 0;
    transition: var(--transition);
}

.np-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.np-logo {
    font-size: 2rem;
    text-decoration: none;
    color: var(--text);
}

.np-logo span { color: var(--neon); }

.np-menu {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

.np-menu a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
}

.np-menu a:hover { color: var(--neon); }

.np-btn-neon {
    border: 1px solid var(--neon);
    padding: 0.8rem 2rem;
    color: var(--neon) !important;
    box-shadow: 0 0 20px rgba(176, 251, 71, 0.1);
}

/* Hero */
.np-hero {
    min-height: 100vh;
    padding-top: 15rem;
}

.np-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.np-pulse-tag {
    color: var(--neon);
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
}

.np-pulse-tag::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--neon);
    border-radius: 50%;
    margin-right: 1.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.np-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 3rem;
}

.np-title span { color: var(--neon); text-shadow: 0 0 30px rgba(176, 251, 71, 0.3); }

.np-desc {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 500px;
    margin-bottom: 4rem;
}

.np-actions {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.np-btn-main {
    background: var(--neon);
    color: var(--dark);
    border: none;
    padding: 1.5rem 4rem;
    font-weight: 700;
    font-family: 'Syncopate';
    cursor: pointer;
    transition: 0.3s;
}

.np-btn-main:hover {
    box-shadow: 0 0 40px var(--neon);
    transform: translateY(-5px);
}

.np-social-icons {
    display: flex;
    gap: 2rem;
    font-size: 2rem;
    color: var(--text-dim);
}

.np-img-frame {
    position: relative;
}.np-img-frame img { width: 100%; border-radius: 30px; }
.np-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--neon);
    filter: blur(150px);
    opacity: 0.1;
    z-index: -1;
}

/* Gear */
.np-gear { padding: 10rem 0; }
.np-sec-head { margin-bottom: 6rem; }

.np-gear-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.np-gear-card {
    background: var(--gray);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid #333;
}

.np-gear-card:hover { border-color: var(--neon); transform: translateY(-10px); }

.np-gear-img img { width: 100%; height: 350px; object-fit: cover; }

.np-gear-info { padding-top: 2rem; }
.np-gear-info h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.np-gear-info p { color: var(--text-dim); font-size: 0.8rem; margin-bottom: 1.5rem; }
.np-price { color: var(--neon); font-weight: 800; font-size: 1.2rem; }

/* Services */
.np-services { padding: 10rem 0; background: rgba(176, 251, 71, 0.02); }
.np-serv-flex { display: flex; align-items: center; gap: 8rem; }
.np-serv-item { margin-top: 4rem; }
.np-serv-item h4 { color: var(--neon); margin-bottom: 1rem; }
.np-serv-img img { border-radius: 40px; }

/* Bento Gallery */
.np-gallery { padding: 10rem 0; }
.np-bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 350px);
    gap: 1.5rem;
}
.np-bento-lg { grid-row: span 2; }
.np-bento-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

/* Process */
.np-process { padding: 10rem 0; }
.np-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; margin-top: 6rem; }
.np-num { font-size: 4rem; color: transparent; -webkit-text-stroke: 1px var(--neon); }

/* Feedback */
.np-reviews { padding: 10rem 0; text-align: center; }
.np-rev-card p { font-size: 2.5rem; font-weight: 200; font-style: italic; max-width: 900px; margin: 0 auto; color: var(--neon); }
.np-user { margin-top: 3rem; text-transform: uppercase; letter-spacing: 3px; }

/* Contact */
.np-contact { padding-bottom: 15rem; }
.np-contact-card {
    background: var(--gray);
    padding: 8rem;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 5px solid var(--neon);
}

.np-form { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 4.5rem; }
.np-form input, .np-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 1.5rem 0;
    color: #fff;
    outline: none;
}
.np-form input:focus { border-color: var(--neon); }

/* Footer */
.np-footer { padding: 8rem 0 4rem; border-top: 1px solid #222; }
.np-foot-grid { display: flex; justify-content: space-between; margin-bottom: 5rem; }
.np-foot-links { display: flex; gap: 4rem; }
.np-foot-links a { text-decoration: none; color: #555; }
.np-copy { text-align: center; color: #333; font-size: 0.7rem; letter-spacing: 2px; }

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.3s; }

/* New Sections Styles */
.np-mission { padding: 10rem 0; }
.np-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.np-m-card { background: var(--gray); padding: 4rem; border-left: 2px solid var(--neon); }
.np-m-card h3 { font-size: 2.5rem; margin: 2rem 0; line-height: 1.1; }

.np-pricing { padding: 10rem 0; background: #000; }
.np-price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.np-price-card { background: var(--gray); padding: 4rem; border: 1px solid #333; position: relative; }
.np-price-card.featured { border-color: var(--neon); transform: scale(1.02); }
.np-price-amt { font-size: 3rem; color: var(--neon); font-family: 'Syncopate'; margin-bottom: 3rem; }
.np-p-list { list-style: none; margin-bottom: 3rem; color: var(--text-dim); }
.np-p-list li { padding: 1rem 0; border-bottom: 1px solid #333; }

.np-roi { padding: 10rem 0; }
.np-roi-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; margin-top: 6rem; }
.np-roi-item h4 { font-size: 3rem; color: var(--neon); margin-bottom: 1rem; }

.np-hiring { padding: 15rem 0; background: var(--gray); }
.np-h-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; margin-top: 8rem; }
.np-h-num { font-size: 1.2rem; color: var(--neon); font-family: 'Syncopate'; margin-bottom: 2rem; border-bottom: 1px solid var(--neon); padding-bottom: 1rem; }

.np-faq { padding: 10rem 0; }
.np-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 6rem; }
.np-faq-item { border-bottom: 1px solid #333; padding-bottom: 2rem; }
.np-faq-item h4 { color: var(--neon); margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }

@media (max-width: 1024px) {
    .np-hero-grid, .np-gear-grid, .np-serv-flex, .np-steps-grid, .np-mission-grid, .np-price-grid, .np-roi-list, .np-h-grid, .np-faq-grid {
        grid-template-columns: 1fr;
    }
    .np-title { font-size: 3.5rem; }
    .np-actions { flex-direction: column; gap: 3rem; align-items: flex-start; }
}
