#hero_home {
	margin: 1px -15px 0;
	padding: 0;
}
#hero_home .mms-hero {
	position: relative;
	background: linear-gradient(135deg, #664999 0%, #403060 50%, #443366 100%);
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	clear: both;
}
#hero_home .mms-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.04)"/><circle cx="50" cy="70" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="80" r="0.8" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="10" r="1.2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
	opacity: 1;
}
#hero_home .mms-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 40px 20px;
}
#hero_home .mms-hero-title {
	font-size: 48px;
	color: #fff;
	margin: 0 0 16px 0;
	line-height: 1.2;
	text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#hero_home .mms-hero-subtitle {
	font-size: 18px;
	font-weight: 300;
	color: rgba(255,255,255,0.9);
	margin: 0 0 30px 0;
	line-height: 1.6;
	/* 3.2em = 2 x line-height: always at least two lines tall,
	   at whatever font size this breakpoint uses. */
	min-height: 3.2em;
}
#hero_home .mms-hero-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
}
#hero_home .mms-chip {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(255,255,255,0.15);
	color: #fff;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.2);
	transition: all 0.2s ease;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}
#hero_home .mms-chip:hover {
	background: rgba(255,255,255,0.25);
	transform: translateY(-2px);
}
#hero_home .mms-btn {
	display: inline-block;
	padding: 14px 36px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
}
#hero_home .mms-btn-primary {
	background: #fff;
	color: #6a4c93;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
#hero_home .mms-btn-primary:hover {
	background: #f4f1f8;
	color: #5a3c83;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
@media (max-width: 767px) {
	#hero_home .mms-hero {
		min-height: 350px;
	}
	#hero_home .mms-hero-title {
		font-size: 32px;
	}
	#hero_home .mms-hero-subtitle {
		font-size: 15px;
	}
	#hero_home .mms-chip {
		padding: 6px 14px;
		font-size: 12px;
	}
	#hero_home .mms-btn {
		padding: 12px 28px;
		font-size: 13px;
	}
}