/**
 * MCUBE creative mega menu
 * Frosted glass bar ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â· tabbed category rail ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â· hero gradient accents
 */
 .mcube-mega {
	--mm-purple: #263fd8;
	--mm-cyan: #7995ff;
	--mm-accent: #d4ff3f;
	--mm-gradient: linear-gradient(145deg, #263fd8, #7995ff);
	--mm-gradient-rev: linear-gradient(145deg, #7995ff, #263fd8);
	--mm-navy: #0c1222;
	--mm-navy2: #121a2e;
	--mm-cyan-b: #7995ff;
	--mm-ink: #0c1222;
	--mm-text: #0c1222;
	--mm-muted: #5b6578;
	--mm-line: #e8edf5;
	--mm-soft: #f4f6fb;
	--mm-shadow: 0 24px 70px rgba(38, 63, 216, 0.18);
	--mm-glass: rgba(12, 18, 34, 0.45);
	--mm-glass-panel: rgba(255, 255, 255, 0.72);
	position: relative;
	z-index: 1050;
	font-family: 'Sen', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Header bar ---- */
.mcube-mega-bar {
	position: sticky;
	top: 0;
	z-index: 1051;
	background: #ffffff;
	border: none;
	border-bottom: 1px solid var(--mm-line);
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
.mcube-mega-hairline {
	display: none;
}

.mcube-mega-inner {
	height: 78px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.mcube-mega-logo {
	flex-shrink: 0;
	margin-right: 0.85rem;
	display: flex;
	align-items: center;
}
.mcube-mega-logo img { height: 38px; width: auto; display: block; }

.mcube-mega-toggler {
	display: none;
	margin-left: auto;
	width: 44px;
	height: 44px;
	border: 1px solid var(--mm-line);
	border-radius: 12px;
	background: #fff;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
}
.mcube-mega-toggler span {
	display: block; width: 18px; height: 2px;
	background: var(--mm-text); border-radius: 2px;
	transition: transform 0.2s, opacity 0.2s;
}
.mcube-mega.is-open .mcube-mega-toggler span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mcube-mega.is-open .mcube-mega-toggler span:nth-child(2) { opacity: 0; }
.mcube-mega.is-open .mcube-mega-toggler span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mcube-mega-nav { display: flex; align-items: center; flex: 1; min-width: 0; gap: 0.5rem; }
.mcube-mega-items { display: flex; align-items: stretch; list-style: none; margin: 0; padding: 0; flex: 1; }

.mcube-mega-item { position: static; }

.mcube-mega-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	height: 78px;
	padding: 0 1.15rem;
	border: none;
	background: transparent;
	color: var(--mm-text);
	font-size: 0.98rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s;
}
.mcube-mega-link > i { font-size: 0.68rem; opacity: 0.55; transition: transform 0.2s, opacity 0.2s; }
.mcube-mega-link::after {
	content: '';
	position: absolute;
	left: 1.15rem;
	right: 1.15rem;
	bottom: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--mm-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.22s ease;
}
.mcube-mega-link:hover,
.mcube-mega-item.is-open > .mcube-mega-link { color: var(--mm-purple); text-decoration: none; }
.mcube-mega-link:hover::after,
.mcube-mega-item.is-open > .mcube-mega-link::after { transform: scaleX(1); }
.mcube-mega-item.is-open > .mcube-mega-link > i { transform: rotate(180deg); opacity: 1; }

.mcube-mega-cta { margin-left: auto; display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.mcube-mega-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	color: var(--mm-text);
	font-size: 0.84rem;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.15s, background 0.15s;
}
.mcube-mega-phone i {
	color: var(--mm-purple);
	font-size: 0.9rem;
}
.mcube-mega-phone:hover {
	color: var(--mm-purple);
	background: var(--mm-soft);
	text-decoration: none;
}
.mcube-mega-login {
	color: var(--mm-text);
	font-size: 0.88rem; font-weight: 600;
	text-decoration: none;
	padding: 0.55rem 0.9rem; border-radius: 10px;
	background: transparent;
	border: none;
	transition: color 0.15s, background 0.15s;
}
.mcube-mega-login:hover {
	color: var(--mm-purple);
	background: var(--mm-soft);
}
.mcube-mega-demo {
	display: inline-flex; align-items: center; gap: 0.45rem;
	padding: 0.72rem 1.35rem; border-radius: 999px;
	background: var(--mm-gradient);
	color: #ffffff !important;
	font-size: 0.92rem; font-weight: 600;
	text-decoration: none;
	border: none;
	box-shadow: 0 10px 26px rgba(38, 63, 216, 0.28);
	transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.mcube-mega-demo:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow: 0 14px 32px rgba(38, 63, 216, 0.38);
	color: #ffffff !important;
	text-decoration: none;
}

/* ---- Layout 1: full-width solid white header ---- */
body.l1-active .mcube-mega {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1050;
	padding: 0;
	background: #ffffff;
	pointer-events: none;
}
body.l1-active .mcube-mega-shell,
body.l1-active .mcube-mega-bar,
body.l1-active .mcube-mega-panel,
body.l1-active .mcube-mega-nav,
body.l1-active .mcube-mega-overlay {
	pointer-events: auto;
}
body.l1-active .mcube-mega-shell {
	position: relative;
	overflow: visible;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}
body.l1-active .mcube-mega-bar {
	position: relative;
	top: auto;
	width: 100%;
	max-width: none;
	margin: 0;
	height: auto;
	overflow: visible;
	background: #ffffff;
	border: none;
	border-bottom: 1px solid var(--mm-line);
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
body.l1-active .mcube-mega-inner {
	position: relative;
	height: 72px;
	min-height: 72px;
	padding-top: 0;
	padding-bottom: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	overflow: visible;
}
body.l1-active .mcube-mega-logo {
	margin-right: 0.85rem;
}
body.l1-active .mcube-mega-logo img {
	height: 34px;
}
body.l1-active .mcube-mega-link {
	height: 72px;
	min-height: 0;
	padding: 0 1rem;
	color: #0c1222;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: 0;
}
body.l1-active .mcube-mega-link::after {
	left: 0.75rem;
	right: 0.75rem;
	bottom: 18px;
	background: var(--mm-gradient);
}
body.l1-active .mcube-mega-link:hover,
body.l1-active .mcube-mega-item.is-open > .mcube-mega-link {
	color: var(--mm-purple);
	background: transparent;
}
body.l1-active .mcube-mega-link > i {
	opacity: 0.5;
	color: #0c1222;
}
body.l1-active .mcube-mega-login {
	color: #0c1222;
	padding: 0.5rem 0.85rem;
	border-radius: 10px;
	font-size: 0.88rem;
}
body.l1-active .mcube-mega-phone {
	color: #0c1222;
	padding: 0.45rem 0.85rem;
	border-radius: 10px;
	font-size: 0.86rem;
	font-weight: 650;
}
body.l1-active .mcube-mega-phone i {
	background: var(--mm-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
body.l1-active .mcube-mega-phone:hover {
	color: var(--mm-purple);
	background: rgba(38, 63, 216, 0.05);
}
body.l1-active .mcube-mega-login:hover {
	color: var(--mm-purple);
	background: var(--mm-soft);
}
body.l1-active .mcube-mega-demo {
	padding: 0.65rem 1.2rem;
	background: var(--mm-gradient);
	color: #ffffff !important;
	box-shadow: 0 8px 20px rgba(38, 63, 216, 0.24);
	font-size: 0.86rem;
}
body.l1-active .mcube-mega-demo:hover {
	color: #ffffff !important;
	filter: brightness(1.05);
	background: var(--mm-gradient);
	box-shadow: 0 12px 28px rgba(38, 63, 216, 0.32);
}
body.l1-active .mcube-mega-toggler {
	background: #fff;
	border-color: var(--mm-line);
}
body.l1-active .mcube-mega-toggler span {
	background: #0c1222;
}
body.l1-active .mcube-mega-overlay {
	inset: 72px 0 0 0;
	pointer-events: auto;
}
/* Desktop flyout — keep original mega panel design (gap + rounded card) */
@media (min-width: 1101px) {
	body.l1-active .mcube-mega-panel {
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		transform: none;
		width: 100%;
		max-width: none;
		animation: mmPopL1 0.2s ease forwards;
	}
	body.l1-active .mm-flyout {
		grid-template-columns: minmax(200px, 240px) minmax(0, 1fr) minmax(220px, 280px);
		min-height: 360px;
	}
}
@keyframes mmPopL1 {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ---- Flyout panel ---- */
.mcube-mega-panel {
	display: none;
	position: absolute;
	top: 86px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: min(1320px, calc(100% - 2rem));
	max-width: 100%;
	background: #ffffff;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-radius: 20px;
	box-shadow: var(--mm-shadow);
	border: 1px solid var(--mm-line);
	overflow: hidden;
	z-index: 1052;
	opacity: 0;
	animation: mmPop 0.2s ease forwards;
}
.mcube-mega-item.is-open > .mcube-mega-panel { display: block; }
@keyframes mmPop {
	from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
	to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mm-flyout {
	display: grid;
	grid-template-columns: 260px 1fr 300px;
	min-height: 380px;
}

/* ---- Category rail (tabs) ---- */
.mm-rail {
	background: linear-gradient(180deg, #f8f7ff, #eef6ff);
	border-right: 1px solid var(--mm-line);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.mm-rail-btn {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	width: 100%;
	padding: 0.75rem 0.8rem;
	border: 1px solid transparent;
	border-radius: 12px;
	background: transparent;
	color: var(--mm-text);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.12s;
}
.mm-rail-ico {
	width: 36px; height: 36px; flex-shrink: 0;
	border-radius: 10px;
	display: grid; place-items: center;
	background: #fff;
	border: 1px solid var(--mm-line);
	color: var(--mm-purple);
	font-size: 1rem;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mm-rail-label { flex: 1; min-width: 0; line-height: 1.25; }
.mm-rail-arrow { font-size: 0.7rem; opacity: 0; transform: translateX(-4px); transition: opacity 0.15s, transform 0.15s; color: var(--mm-purple); }
.mm-rail-btn:hover {
	background: #ffffff;
	border-color: transparent;
}
.mm-rail-btn.is-active {
	background: #ffffff;
	border-color: transparent;
	box-shadow: 0 8px 22px rgba(38, 63, 216, 0.1);
}
.mm-rail-btn.is-active .mm-rail-ico {
	background: var(--mm-gradient);
	border-color: transparent;
	color: #ffffff;
}
.mm-rail-btn.is-active .mm-rail-label { color: var(--mm-purple); }
.mm-rail-btn.is-active .mm-rail-arrow { opacity: 1; transform: translateX(0); }

/* ---- Stage (active category links) ---- */
.mm-stage { padding: 1.35rem 1.5rem; position: relative; }
.mm-cat { display: none; }
.mm-cat.is-active { display: block; animation: mmFade 0.22s ease; }
@keyframes mmFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.mm-cat-head {
	font-size: 0.74rem; font-weight: 800;
	text-transform: uppercase; letter-spacing: 0.08em;
	background: var(--mm-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 0.9rem;
	display: flex; align-items: center; gap: 0.45rem;
}
.mm-cat-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.35rem 1.1rem;
}

.mm-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0.75rem;
	border-radius: 12px;
	text-decoration: none;
	overflow: hidden;
	transition: background 0.14s;
}
.mm-link::before {
	content: '';
	position: absolute; left: 0; top: 0; bottom: 0;
	width: 3px; border-radius: 0 3px 3px 0;
	background: var(--mm-gradient);
	transform: scaleY(0); transform-origin: center;
	transition: transform 0.16s ease;
}
.mm-link:hover { background: var(--mm-soft); text-decoration: none; }
.mm-link:hover::before { transform: scaleY(1); }
.mm-link-ico {
	width: 40px; height: 40px; flex-shrink: 0;
	border-radius: 12px;
	display: grid; place-items: center;
	background: linear-gradient(145deg, rgba(38, 63, 216, 0.12), rgba(121, 149, 255, 0.08));
	border: 1px solid rgba(38, 63, 216, 0.14);
	color: var(--mm-purple);
	font-size: 1.05rem;
	transition: transform 0.16s, background 0.16s, color 0.16s, border-color 0.16s;
}
.mm-link:hover .mm-link-ico {
	transform: scale(1.06) rotate(-3deg);
	background: var(--mm-gradient);
	border-color: transparent;
	color: #ffffff;
}
.mm-link-txt { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.mm-link-title {
	font-size: 0.92rem; font-weight: 700; color: var(--mm-text);
	line-height: 1.3; display: flex; align-items: center; flex-wrap: wrap; gap: 0.2rem;
}
.mm-link:hover .mm-link-title { color: var(--mm-purple); }
.mm-link-sub { font-size: 0.78rem; color: var(--mm-muted); margin-top: 2px; line-height: 1.35; }
.mm-link-go {
	font-size: 0.75rem; color: var(--mm-purple);
	opacity: 0; transform: translateX(-5px);
	transition: opacity 0.16s, transform 0.16s;
	flex-shrink: 0;
}
.mm-link:hover .mm-link-go { opacity: 1; transform: translateX(0); }

.mm-badge {
	display: inline-block; font-style: normal;
	font-size: 0.56rem; font-weight: 800;
	text-transform: uppercase; letter-spacing: 0.03em;
	padding: 0.08rem 0.32rem; border-radius: 999px; line-height: 1.4;
}
.mm-badge-new { background: #dcfce7; color: #15803d; }
.mm-badge-ai { background: #ede9fe; color: #263fd8; }

/* ---- Spotlight promo ---- */
.mm-spot {
	position: relative;
	overflow: hidden;
	padding: 1.6rem 1.5rem;
	color: #eef2ff;
	background:
		radial-gradient(120% 90% at 100% 0%, rgba(121, 149, 255, 0.35), transparent 60%),
		radial-gradient(90% 70% at 0% 100%, rgba(212, 255, 63, 0.12), transparent 55%),
		var(--mm-gradient);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-left: none;
	display: flex;
	flex-direction: column;
}
.mm-spot-orb {
	position: absolute;
	width: 200px; height: 200px;
	right: -50px; bottom: -50px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
	pointer-events: none;
}
.mm-spot-ico {
	width: 52px; height: 52px;
	border-radius: 15px;
	display: grid; place-items: center;
	background: var(--mm-accent);
	color: var(--mm-ink); font-size: 1.4rem;
	box-shadow: 0 10px 24px rgba(212, 255, 63, 0.35);
	margin-bottom: 1rem;
}
.mm-spot-tag {
	font-size: 0.68rem; font-weight: 800;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--mm-accent);
	margin-bottom: 0.45rem;
}
.mm-spot-title { font-size: 1.28rem; font-weight: 800; color: #fff; margin: 0 0 0.5rem; line-height: 1.2; }
.mm-spot-text { font-size: 0.88rem; color: rgba(255, 255, 255, 0.82); line-height: 1.55; margin: 0 0 1.1rem; }
.mm-spot-stats { display: flex; gap: 1rem; margin-bottom: 1.15rem; }
.mm-spot-stats strong {
	display: block; font-size: 1.3rem; font-weight: 800;
	color: var(--mm-accent);
}
.mm-spot-stats span { font-size: 0.68rem; color: rgba(255, 255, 255, 0.65); }
.mm-spot-cta {
	margin-top: auto;
	display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
	padding: 0.72rem 1.15rem; border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff; font-size: 0.88rem; font-weight: 600;
	text-decoration: none;
	transition: background 0.15s, border-color 0.15s;
}
.mm-spot-cta:hover { background: rgba(255, 255, 255, 0.22); border-color: #fff; color: #fff; text-decoration: none; }
.mm-spot-cta i { transition: transform 0.15s; }
.mm-spot-cta:hover i { transform: translateX(3px); }

.mcube-mega-overlay {
	position: fixed;
	inset: 86px 0 0 0;
	background: rgba(12, 18, 34, 0.35);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	z-index: 1049;
}
.mcube-mega-overlay[hidden] { display: none !important; }

@media (max-width: 1240px) and (min-width: 1101px) {
	.mcube-mega-phone span { display: none; }
	.mcube-mega-phone {
		width: 38px;
		height: 38px;
		padding: 0;
		justify-content: center;
		border-radius: 10px;
		background: var(--mm-soft);
	}
}

/* ---- Mobile ---- */
@media (max-width: 1100px) {
	body:has(.mcube-mega.is-open) {
		overflow: hidden;
	}
	.mcube-mega-toggler { display: flex; }
	.mcube-mega-nav {
		display: none;
		position: absolute;
		top: 78px; left: 0; right: 0;
		background: #ffffff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border-bottom: none;
		box-shadow: var(--mm-shadow);
		flex-direction: column; align-items: stretch;
		padding: 0.75rem 1rem 1.25rem;
		max-height: calc(100vh - 78px); overflow: auto;
		z-index: 1060;
		-webkit-overflow-scrolling: touch;
	}
	body.l1-active .mcube-mega {
		pointer-events: none;
	}
	body.l1-active .mcube-mega.is-open {
		pointer-events: auto;
		bottom: 0;
	}
	body.l1-active .mcube-mega-nav {
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		width: auto;
		background: #fff;
		border: 1px solid rgba(15, 23, 42, 0.08);
		border-radius: 16px;
		box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
		max-height: min(78vh, calc(100vh - 110px));
		pointer-events: auto;
		z-index: 1060;
	}
	body.l1-active .mcube-mega-overlay {
		inset: 0;
		z-index: 1055;
		background: rgba(12, 18, 34, 0.42);
	}
	body.l1-active .mcube-mega.is-open .mcube-mega-nav .mcube-mega-link,
	body.l1-active .mcube-mega.is-open .mcube-mega-nav .mcube-mega-login {
		color: #0c1222;
	}
	body.l1-active .mcube-mega.is-open .mcube-mega-nav .mcube-mega-link:hover,
	body.l1-active .mcube-mega.is-open .mcube-mega-nav .mcube-mega-item.is-open > .mcube-mega-link {
		color: var(--mm-purple);
	}
	body.l1-active .mcube-mega.is-open .mcube-mega-nav .mcube-mega-demo {
		background: var(--mm-gradient);
		color: #fff !important;
		border: none;
	}
	.mcube-mega.is-open .mcube-mega-nav { display: flex; }
	.mcube-mega-items { flex-direction: column; width: 100%; }
	.mcube-mega-link {
		height: auto; width: 100%;
		padding: 0.95rem 0.5rem;
		color: var(--mm-text);
		border-bottom: 1px solid var(--mm-line);
		justify-content: space-between;
	}
	.mcube-mega-link::after { display: none; }
	.mcube-mega-link:hover, .mcube-mega-item.is-open > .mcube-mega-link { color: var(--mm-purple); }
	.mcube-mega-panel,
	body.l1-active .mcube-mega-panel {
		position: static !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		transform: none !important;
		width: 100% !important;
		max-width: none !important;
		background: #ffffff;
		box-shadow: none !important;
		border-radius: 12px;
		margin: 0.35rem 0 0.75rem;
		opacity: 1;
		animation: none !important;
	}
	.mm-flyout,
	body.l1-active .mm-flyout {
		grid-template-columns: 1fr !important;
		min-height: 0 !important;
	}
	.mm-rail {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0.4rem;
		overflow-x: auto;
		padding: 0.65rem 0.7rem;
		border-right: none;
		border-bottom: 1px solid var(--mm-line);
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.mm-rail::-webkit-scrollbar { display: none; }
	.mm-rail-btn {
		flex: 0 0 auto;
		width: auto;
		white-space: nowrap;
		border-radius: 999px;
		padding: 0.45rem 0.85rem;
		border: 1px solid var(--mm-line);
		background: var(--mm-soft);
		font-size: 0.78rem;
		align-items: center;
		gap: 0.35rem;
	}
	.mm-rail-arrow { display: none; }
	.mm-rail-ico {
		width: 22px;
		height: 22px;
		font-size: 0.75rem;
	}
	.mm-rail-btn.is-active {
		background: rgba(38, 63, 216, 0.1);
		border-color: rgba(38, 63, 216, 0.22);
		color: var(--mm-purple);
	}
	.mm-stage { padding: 0.65rem 0.75rem 0.85rem; }
	.mm-cat { display: none !important; border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
	.mm-cat.is-active { display: block !important; }
	.mm-cat-links { grid-template-columns: 1fr; gap: 0.15rem; }
	.mm-link-go { display: none; }
	.mm-spot { display: none; }
	.mcube-mega-cta { margin: 0.75rem 0 0; flex-direction: column; width: 100%; }
	.mcube-mega-phone,
	.mcube-mega-login,
	.mcube-mega-nav .mcube-mega-demo { width: 100%; justify-content: center; text-align: center; }
	.mcube-mega-phone {
		border: 1px solid var(--mm-line);
		background: var(--mm-soft);
		padding: 0.85rem 1rem;
	}
	.mcube-mega-login {
		border: 1px solid var(--mm-line);
		background: var(--mm-soft);
	}
}
