/* -----------------------------------------
   NAV WRAPPER
----------------------------------------- */
.xaas-navbar {
    width: 100%;
    background: #0f172a;
    border-bottom: 1px solid rgba(56, 189, 248, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.xaas-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

/* -----------------------------------------
   LOGO
----------------------------------------- */
.xaas-logo img {
    height: 46px;
    width: auto;
    display: block;
}

/* -----------------------------------------
   DESKTOP NAV
----------------------------------------- */
.xaas-main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.xaas-menu {
    display: flex;
    gap: 32px;
}

.xaas-menu a {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s ease;
}

.xaas-menu a:hover {
    color: #38bdf8;
}

/* -----------------------------------------
   DESKTOP CTAs
----------------------------------------- */
.xaas-nav-cta {
    display: flex;
    gap: 14px;
}

.xaas-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.xaas-btn-primary {
    background: #3b82f6;
    color: #fff;
}

.xaas-btn-outline {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

/* -----------------------------------------
   MOBILE HAMBURGER
----------------------------------------- */
.xaas-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.xaas-hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Animate to X */
.xaas-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.xaas-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.xaas-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* -----------------------------------------
   MOBILE ONLY
----------------------------------------- */
@media (max-width: 992px) {
    .xaas-main-nav,
    .xaas-nav-cta {
        display: none !important;
    }
    .xaas-hamburger {
        display: flex;
    }
}
