.rd-header {
background: #ffffff;
border-bottom: 1px solid #e5e7eb;
position: relative;
z-index: 50;
}

.rd-header__inner {
max-width: 1280px;
margin: 0 auto;
padding: 14px 20px;
display: flex;
align-items: center;
gap: 18px;
}

.rd-header__logo {
display: inline-flex;
align-items: center;
gap: 12px;
text-decoration: none;
}

.rd-header__logo img {
width: 36px;
height: 36px;
border-radius: 10px;
}

.rd-header__logo span {
font-size: 24px;
font-weight: 800;
color: #1e3a8a;
}

.rd-header-nav {
display: flex;
flex: 1;
justify-content: center;
gap: 10px;
}

.rd-header-nav a {
padding: 8px 14px;
border-radius: 10px;
background: #f3f6fb;
font-size: 14px;
font-weight: 600;
}

.rd-header__actions {
display: flex;
align-items: center;
gap: 10px;
}

.rd-header__submit {
padding: 10px 16px;
border-radius: 10px;
background: #1e40af;
color: #fff;
font-weight: 700;
}

.rd-mobile-toggle {
display: none;
width: 44px;
height: 44px;
border: none;
background: #eef2ff;
border-radius: 10px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 4px;
}

.rd-mobile-toggle span {
width: 20px;
height: 2px;
background: #1e3a8a;
}

.rd-mobile-menu {
display: none;
flex-direction: column;
gap: 10px;
padding: 10px 20px;
background: #fff;
}

.rd-mobile-menu.is-open {
display: flex;
}

.rd-mobile-menu a {
padding: 12px;
border-radius: 10px;
background: #f3f6fb;
text-align: center;
}

.rd-mobile-menu__submit {
background: #1e40af;
color: #fff;
}

@media (max-width: 980px) {
.rd-header-nav,
.rd-header__submit {
display: none;
}

.rd-mobile-toggle {
display: flex;
}

.rd-header__inner {
justify-content: space-between;
}
}