@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600&family=Inter:wght@300;400;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #05010a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* NAV */

.nw-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    background: rgba(5,1,10,0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nw-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    text-decoration: none;
    color: #ff00ff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nw-menu {
    list-style: none;
    display: flex;
    gap: 18px;
}

.nw-menu a {
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nw-menu a:hover {
    opacity: 1;
}

.nw-menu-btn {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
}

/* HERO */

.nw-hero {
    padding: 70px 20px 60px 20px;
    background: radial-gradient(circle at top, #ff00ff33, #05010a);
}

.nw-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.nw-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    margin: 0 0 12px 0;
    color: #ff00ff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.nw-hero p {
    margin: 0 0 22px 0;
    font-size: 15px;
    opacity: 0.85;
}

.nw-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.nw-btn-primary,
.nw-btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nw-btn-primary {
    background: #ff00ff;
    color: #05010a;
    box-shadow: 0 12px 30px rgba(255,0,255,0.4);
}

.nw-btn-secondary {
    background: transparent;
    color: #ff00ff;
    border: 1px solid #ff00ff;
}

.nw-btn-primary:hover,
.nw-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255,0,255,0.6);
}

.nw-hero-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nw-hero-tags span {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,0,255,0.12);
    color: #fff;
}

/* SECTIONS */

.nw-section {
    padding: 50px 20px;
}

.nw-section-alt {
    background: #0a0214;
}

.nw-section-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.nw-section h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #ff00ff;
}

.nw-section p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 14px;
    opacity: 0.85;
}

/* GRID */

.nw-grid {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.nw-grid-3 {
    grid-template-columns: 1fr;
}

.nw-grid-4 {
    grid-template-columns: 1fr;
}

.nw-grid-2 {
    grid-template-columns: 1fr;
}

/* CARDS */

.nw-card {
    background: #12021f;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255,0,255,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nw-card-glow {
    background: #1a032b;
    border-color: #ff00ff;
}

.nw-card-outline {
    background: #0a0214;
    border: 1px solid #ff00ff;
}

.nw-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255,0,255,0.4);
}

.nw-card h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    color: #ff00ff;
}

.nw-card p {
    margin: 0 0 10px 0;
    font-size: 13px;
    opacity: 0.85;
}

.nw-time {
    font-size: 12px;
    opacity: 0.7;
}

.nw-price {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #ff00ff;
}

/* TIMELINE */

.nw-timeline {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.nw-timeline-item {
    background: #12021f;
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(255,0,255,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    text-align: left;
}

.nw-timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(255,0,255,0.4);
}

/* CONTACT */

.nw-contact-box {
    max-width: 420px;
    margin: 24px auto 0 auto;
    background: #12021f;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255,0,255,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    font-size: 13px;
}

.nw-contact-box span {
    color: #ff00ff;
}

/* FOOTER */

.nw-footer {
    padding: 22px;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* MOBILE */

@media (max-width: 767px) {
    .nw-menu {
        display: none;
        position: absolute;
        top: 54px;
        right: 22px;
        background: rgba(5,1,10,0.96);
        flex-direction: column;
        padding: 10px 14px;
        border-radius: 12px;
        box-shadow: 0 18px 46px rgba(0,0,0,0.9);
    }

    .nw-menu-btn {
        display: block;
    }

    .nw-menu li {
        margin: 6px 0;
    }
