.rwm-top-menu,
.rwm-top-menu *{
	box-sizing:border-box;
}

.rwm-top-menu{
	width:100%;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:28px;
	background:#ffffff;
	padding:22px 44px;
	border-radius:28px;
	box-shadow:0 18px 50px rgba(8,36,92,.08);
}

.rwm-top-menu__brand{
	display:flex;
	align-items:center;
	gap:12px;
	text-decoration:none !important;
	min-width:230px;
}

.rwm-top-menu__logo-icon{
	width:48px;
	height:48px;
	display:grid;
	place-items:center;
	color:#FF6B00;
	font-size:42px;
	line-height:1;
	flex:0 0 auto;
}

.rwm-top-menu__logo-icon svg{
	width:1em;
	height:1em;
	fill:currentColor;
}

.rwm-top-menu__logo-img{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	flex:0 0 auto;
}

.rwm-top-menu__logo-img img{
	width:42px;
	height:auto;
	display:block;
}

.rwm-top-menu__brand-text{
	display:flex;
	flex-direction:column;
	line-height:1.1;
}

.rwm-top-menu__brand-title{
	font-size:24px;
	font-weight:850;
	letter-spacing:-.03em;
	color:#08245C;
}

.rwm-top-menu__tagline{
	margin-top:5px;
	font-size:12px;
	font-weight:500;
	color:#526684;
}

.rwm-top-menu__nav{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:46px;
	flex:1;
}

.rwm-top-menu__link{
	position:relative;
	display:inline-flex;
	align-items:center;
	gap:6px;
	padding:8px 0;
	font-size:15px;
	font-weight:750;
	line-height:1;
	color:#08245C;
	text-decoration:none !important;
	white-space:nowrap;
	transition:.2s ease;
}

.rwm-top-menu__link:hover,
.rwm-top-menu__link.is-active{
	color:#FF6B00;
}

.rwm-top-menu__link.is-active:after{
	content:"";
	position:absolute;
	left:50%;
	bottom:-14px;
	width:58px;
	height:3px;
	border-radius:99px;
	background:#FF6B00;
	transform:translateX(-50%);
}

.rwm-top-menu__dropdown{
	font-size:14px;
	line-height:1;
	transform:translateY(-1px);
}

.rwm-top-menu__cta{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	padding:15px 26px;
	border-radius:10px;
	background:#FF6B00;
	color:#fff !important;
	font-size:15px;
	font-weight:850;
	line-height:1;
	text-decoration:none !important;
	white-space:nowrap;
	box-shadow:0 12px 26px rgba(255,107,0,.25);
	transition:.2s ease;
}

.rwm-top-menu__cta:hover{
	transform:translateY(-2px);
}

.rwm-top-menu__cta svg{
	width:16px;
	height:16px;
	fill:currentColor;
}

.rwm-top-menu__toggle{
	display:none;
	width:46px;
	height:46px;
	border:1px solid rgba(8,36,92,.10);
	border-radius:12px;
	background:#ffffff;
	cursor:pointer;
	padding:0;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	gap:5px;
	box-shadow:0 8px 22px rgba(8,36,92,.06);
}

.rwm-top-menu__toggle span{
	display:block;
	width:20px;
	height:2px;
	background:#08245C;
	border-radius:99px;
	transition:.2s ease;
}

.rwm-top-menu.is-open .rwm-top-menu__toggle span:nth-child(1){
	transform:translateY(7px) rotate(45deg);
}

.rwm-top-menu.is-open .rwm-top-menu__toggle span:nth-child(2){
	opacity:0;
}

.rwm-top-menu.is-open .rwm-top-menu__toggle span:nth-child(3){
	transform:translateY(-7px) rotate(-45deg);
}

@media (max-width:1024px){
	.rwm-hide-menu-tablet .rwm-top-menu__nav{
		display:none;
	}

	.rwm-top-menu{
		padding:18px 24px;
	}
}

@media (max-width:767px){
	.rwm-top-menu{
		border-radius:18px;
		gap:14px;
		padding:16px 18px;
		flex-wrap:wrap;
		align-items:center;
	}

	.rwm-top-menu__brand{
		width:calc(100% - 60px);
		min-width:0;
		gap:10px;
	}

	.rwm-top-menu__brand-text{
		min-width:0;
		flex:1 1 auto;
	}

	.rwm-top-menu__brand-title{
		font-size:20px;
		line-height:1.05;
		white-space:nowrap;
		overflow:hidden;
		text-overflow:ellipsis;
	}

	.rwm-top-menu__tagline{
		font-size:11px;
		line-height:1.2;
		margin-top:4px;
	}

	.rwm-top-menu__logo-icon{
		width:40px;
		height:40px;
		font-size:34px;
	}

	.rwm-top-menu__toggle{
		display:inline-flex;
		flex:0 0 46px;
		margin-left:auto;
		order:1;
	}

	.rwm-top-menu__cta{
		width:100%;
		order:2;
		justify-content:center;
		min-height:50px;
		padding:14px 18px;
		font-size:16px;
	}

	.rwm-top-menu__nav{
		display:none;
		width:100%;
		order:3;
		flex-direction:column;
		align-items:stretch;
		gap:8px;
		padding:14px 0 0;
		margin-top:2px;
		border-top:1px solid rgba(8,36,92,.08);
	}

	.rwm-top-menu.is-open .rwm-top-menu__nav{
		display:flex;
	}

	.rwm-top-menu__link{
		width:100%;
		justify-content:space-between;
		padding:14px 16px;
		border-radius:12px;
		background:#F7FAFF;
	}

	.rwm-top-menu__link.is-active:after{
		display:none;
	}

	.rwm-top-menu__link.is-active{
		background:#FFF4EC;
	}

	.rwm-hide-cta-mobile .rwm-top-menu__cta{
		display:none !important;
	}
}

@media (max-width:480px){
	.rwm-top-menu__tagline{
		display:none;
	}
}
}


/* v1.0.5 Frontend consistency guard */
.rwm-top-menu a,
.rwm-top-menu a:hover,
.rwm-top-menu a:focus{
	text-decoration:none !important;
}

.rwm-top-menu img{
	max-width:100%;
	height:auto;
}

.rwm-top-menu__brand,
.rwm-top-menu__nav,
.rwm-top-menu__cta{
	font-family:inherit;
}

.rwm-top-menu__brand{
	line-height:1;
}

.rwm-top-menu__logo-img img{
	max-width:none;
}
