/* ========================
   RESPONSIVE NAV + HAMBURGER
   ======================== */

.nav-container {
    width: 100%;
}

.logo {
    margin-right: auto;
}

.nav-links,
.nav-cta {
    display: flex;
}

.hamburger {
    display: none;
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-dark);
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    margin-left: auto;
    z-index: 1301;
    transition: all 0.3s ease;
}

.hamburger:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(26, 95, 63, 0.2);
}

.hamburger span {
    display: block;
    height: 2.5px;
    width: 22px;
    background: var(--text-dark);
    margin: 0;
    transform-origin: center;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(3, 9, 7, 0.96);
    backdrop-filter: blur(8px);
    transform: translateY(-8px) scale(1.01);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    padding: 7.5rem 8vw 2.5rem;
    z-index: 1200;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-links {
    counter-reset: menuitem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
}

.mobile-links li {
    counter-increment: menuitem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-links li::before {
    content: counter(menuitem, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #00f08a;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.mobile-links a {
    display: block;
    padding: 1rem 0 1rem 3rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    font-size: clamp(2rem, 3.4vw, 3.2rem);
    line-height: 1.15;
    border-radius: 0;
    transition: all 0.3s ease;
}

.mobile-links a:hover {
    color: #00f08a;
    transform: translateX(8px);
}

.mobile-cta {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .hamburger {
        display: inline-flex;
    }
}