/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 5%;
    background: #000000;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06)
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-icon svg {
    width: 18px;
    height: 18px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    line-height: 30px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FF8E55 -3.6%, #FF5100 147.54%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    color: #fff;
    border: 1.5px solid white;
    border-radius: 35px;
    padding: 10px 22px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 650;
    cursor: pointer;
    transition: all .2s
}

.nav-cta:hover {
    background: linear-gradient(90deg, #FF8E55 -3.6%, #FF5100 147.54%);
    transform: translateY(-1px);
    border-color: var(--orange-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s
}

.logo img {
    width: 218px;
}