@font-face {
  font-family: 'Rosnoc';
  src: url('/fonts/Rosnoc.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



.mpt-footer {
	position: relative;
	background-color: #050b18;
	overflow: hidden;
	padding-top: 130px;
}

.mpt-footer__glow {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(120px);
	opacity: 0.09;
	z-index: 0;
}

.mpt-footer__glow--cyan {
	width: 500px;
	height: 360px;
	background: #00cacc;
	top: 80px;
	left: -80px;
}

.mpt-footer__glow--blue {
	width: 420px;
	height: 300px;
	background: #00cacc;
	bottom: 40px;
	right: -60px;
}

.mpt-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 1300px;
	margin: 0 auto;
	padding: 60px 40px 55px;
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 80px;
	align-items: start;
	border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

/* Newsletter */
.mpt-newsletter__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #00cacc;
	margin-bottom: 14px;
}

.mpt-newsletter__desc {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.44);
	margin: 0 0 26px;
}

.mpt-newsletter__field {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 6px 6px 6px 14px;
	transition: border-color 0.3s ease;
}

.mpt-newsletter__field:focus-within {
	border-color: rgba(0, 212, 200, 0.4);
	background: rgba(0, 212, 200, 0.025);
}

.mpt-newsletter__icon {
	width: 16px;
	height: 16px;
	color: #00cacc;
	flex-shrink: 0;
	margin-right: 10px;
}

.mpt-newsletter__input {
	flex: 1;
	background: none;
	border: none;
	outline: none;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	padding: 6px 0;
}

.mpt-newsletter__input::placeholder {
	color: rgba(255, 255, 255, 0.26);
}

.mpt-newsletter__btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #00cacc;
	color: #050b18;
	border: none;
	border-radius: 7px;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.25s ease, gap 0.25s ease;
	white-space: nowrap;
}

.mpt-newsletter__btn svg {
	width: 13px;
	height: 13px;
	border-color: #ffffff;
	transition: transform 0.25s ease;
	box-shadow: 0 8px 26px rgba(255, 255, 255, 0.3);
}

.mpt-newsletter__btn:hover { background: #ffffff; gap: 12px; }
.mpt-newsletter__btn:hover svg { transform: translateX(3px); }

/* Links */
.mpt-footer__links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.mpt-footer__col-title {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 18px;
}

.mpt-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mpt-footer__list li { margin-bottom: 11px; }

.mpt-footer__list li a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	transition: color 0.2s ease, padding-left 0.2s ease;
	display: inline-block;
}

.mpt-footer__list li a:hover {
	color: #00cacc;
	padding-left: 6px;
}

/* Bottom bar */
.mpt-footer__bottom {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.16);
}

.mpt-footer__bottom-inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 22px 40px;
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

.mpt-footer__logo img {
	height: 40px;
	width: auto;
}

.mpt-footer__copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.28);
	margin: 0 0 0 auto;
}

.mpt-footer__copy a {
	color: #00cacc;
	text-decoration: none;
}

.mpt-footer__copy a:hover { text-decoration: underline; }

.mpt-footer__socials {
	display: flex;
	gap: 8px;
}

.mpt-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.36);
	text-decoration: none;
	transition: all 0.25s ease;
}

.mpt-footer__social-link svg { width: 16px; height: 16px; }

.mpt-footer__social-link:hover {
	border-color: #00cacc;
	color: #00cacc;
	background: rgba(0, 212, 200, 0.07);
	transform: translateY(-2px);
}

/* =============================================
   Responsive
============================================= */

@media (max-width: 1024px) {
	.mpt-footer {
		padding-top: 110px;
	}
	.mpt-footer__inner {
		grid-template-columns: 1fr;
		gap: 50px;
		padding: 50px 30px 45px;
	}
}

@media (max-width: 640px) {
	.mpt-footer {
		padding-top: 90px;
	}
	.mpt-footer__inner {
		padding: 40px 20px 36px;
	}
	.mpt-footer__links {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
	.mpt-footer__bottom-inner {
		padding: 18px 20px;
		gap: 14px;
		flex-wrap: wrap;
	}
	.mpt-footer__copy {
		margin: 0;
		order: 3;
		width: 100%;
		text-align: center;
	}
	.mpt-footer__socials {
		margin-left: auto;
	}
}

