* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    background-color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-link {
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link-home { color: #db2777; }
.nav-link-home:hover { color: #be185d; }

.nav-link-services { color: #2563eb; }
.nav-link-services:hover { color: #1d4ed8; }

.nav-link-industries { color: #9333ea; }
.nav-link-industries:hover { color: #7e22ce; }

.nav-link-insights { color: #059669; }
.nav-link-insights:hover { color: #047857; }

.nav-link-about { color: #e11d48; }
.nav-link-about:hover { color: #be123c; }

.nav-link-candidates { color: #4f46e5; }
.nav-link-candidates:hover { color: #4338ca; }

.nav-link-contact { color: #0d9488; }
.nav-link-contact:hover { color: #0f766e; }

.nav-link.active {
    background: linear-gradient(to right, #db2777, #9333ea);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 600;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, #db2777, #9333ea, #2563eb);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-letter {
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(to right, #db2777, #9333ea, #2563eb);
    -webkit-background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    text-decoration: none;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.hidden {
    display: none;
}
.mobile-nav.hidden {
    display: none;
}

.mobile-nav:not(.hidden) {
    display: block;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 100;
}
.mobile-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    text-decoration: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }
}