.nav-dropdown-btn { background: none; border: none; padding: 0; margin: 0; font-family: var(--body); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-btn:hover { color: var(--royal); }
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 12px); left: 0; z-index: 99999; background: #fff; border: 1px solid #e2e8f0; box-shadow: 0 8px 32px rgba(10,22,40,0.12); min-width: 280px; padding: 8px 0; }
.nav-dropdown-wrap:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-item { display: flex; padding: 14px 20px; text-decoration: none; }
.nav-dropdown-item:hover { background: #f8f9fb; }
.nav-dropdown-item strong { display: block; font-size: 14px; font-weight: 700; color: #0a1628; margin-bottom: 2px; }
.nav-dropdown-item em { display: block; font-style: normal; font-size: 12px; color: #64748b; }
