/* ── Navigation ── */
#solvoyo-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 88px;
  background: rgba(5, 10, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  padding: 0 80px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.nav-logo svg { width: 40px; height: 40px; }
.nav-wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  letter-spacing: .08em;
}

/* ── Center link group ── */
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

/* ── Individual nav item ── */
.nav-item {
  position: static;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  padding: 0 18px;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color .15s;
}
.nav-link:hover,
.nav-item:hover .nav-link { color: #fff; }

/* Chevron icon */
.nav-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .5;
  transition: transform .2s, opacity .2s;
  margin-top: 1px;
}
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ── CTA Button ── */
.nav-cta {
  position: absolute;
  right: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  height: 40px;
  background: #fff;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #03091B;
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.nav-cta:hover {
  background: #E6EAF4;
}

/* ── Mega Menu Dropdown ── */
.nav-dropdown {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: #070E27;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  z-index: 999;
  padding: 44px 80px 52px;
}

.nav-item:hover .nav-dropdown { display: block; }

/* Inner container */
.nav-dd-inner {
  max-width: 1136px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* Vertical column divider */
.nav-dd-divider {
  width: 1px;
  background: rgba(255,255,255,.08);
  align-self: stretch;
  margin: 0 52px;
  flex-shrink: 0;
}

/* Column */
.nav-dd-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 210px;
}

/* Column heading */
.nav-dd-col-head {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 0 12px;
  margin-bottom: 6px;
}

/* Link list */
.nav-dd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dd-list a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, color .15s;
  line-height: 1.2;
}

.nav-dd-list a:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

/* Active / current page item */
.nav-dd-active {
  color: #1065FF !important;
  background: rgba(16,101,255,.12) !important;
}
.nav-dd-active:hover {
  background: rgba(16,101,255,.18) !important;
  color: #1065FF !important;
}

/* Green dot for active page */
.nav-dd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4BDB64;
  box-shadow: 0 0 6px #4BDB64;
  flex-shrink: 0;
}

/* Offset page content below fixed nav */
.nav-spacer { height: 88px; }
