/* MTT Support — Frontend styles */

.mtt-support {
	background: #263765;
	color: #fff;
	padding: 90px 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.mtt-support::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.mtt-support::after {
	content: "";
	position: absolute;
	bottom: -200px;
	left: -200px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.mtt-support-inner {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Eyebrow */
.mtt-support-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	margin-bottom: 20px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Title */
.mtt-support h2.mtt-support-title {
	color: #fff;
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 18px 0;
}

.mtt-support h2.mtt-support-title em {
	font-style: normal;
	color: oklch(0.78 0.12 75);
	font-weight: 400;
}

/* Text */
.mtt-support p.mtt-support-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 17px;
	line-height: 1.65;
	margin: 0 0 32px 0;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Buttons */
.mtt-support-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.mtt-support a.mtt-support-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: all 0.2s;
	cursor: pointer;
	text-decoration: none;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
	border: 1.5px solid transparent;
	box-shadow: none;
	outline: none;
	line-height: 1.4;
}

.mtt-support a.mtt-support-btn-white {
	background: #fff;
	color: #263765;
}

.mtt-support a.mtt-support-btn-white:hover,
.mtt-support a.mtt-support-btn-white:focus {
	background: #f3f5fb;
	color: #263765;
	text-decoration: none;
}

.mtt-support a.mtt-support-btn-ghost {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.mtt-support a.mtt-support-btn-ghost:hover,
.mtt-support a.mtt-support-btn-ghost:focus {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
	color: #fff;
	text-decoration: none;
}

.mtt-support .mtt-support-arr {
	transition: transform 0.2s;
}

.mtt-support a.mtt-support-btn:hover .mtt-support-arr {
	transform: translateX(3px);
}

/* Responsive */
@media (max-width: 640px) {
	.mtt-support {
		padding: 60px 0;
	}

	.mtt-support-inner {
		padding: 0 20px;
	}

	.mtt-support-btns {
		flex-direction: column;
		align-items: center;
	}
}
