.asmorix-vm {
	--vm-navy: #041424;
	--vm-blue: #0c5adb;
	--vm-blue-dark: #0948ad;
	--vm-muted: #5b6b7c;
	--vm-line: #e5edf8;
	--vm-soft: #f4f7fb;
	width: 100%;
	margin: 8px 0 0;
}

.asmorix-vm__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.asmorix-vm__card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 28px 26px 26px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--vm-line);
	box-shadow: 0 14px 34px rgba(4, 20, 36, 0.08);
	overflow: hidden;
}

.asmorix-vm__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0c5adb 0%, #1aa0ff 100%);
}

.asmorix-vm__card--mission::before {
	background: linear-gradient(90deg, #0948ad 0%, #ffc91a 100%);
}

.asmorix-vm__badge {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	background: rgba(12, 90, 219, 0.1);
	color: var(--vm-blue);
}

.asmorix-vm__card--mission .asmorix-vm__badge {
	background: rgba(255, 201, 26, 0.18);
	color: #a16207;
}

.asmorix-vm__badge svg {
	width: 22px;
	height: 22px;
}

.asmorix-vm__eyebrow {
	margin: 0 0 8px;
	font-family: "Nunito", sans-serif;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--vm-blue);
}

.asmorix-vm__card--mission .asmorix-vm__eyebrow {
	color: #a16207;
}

.asmorix-vm__title {
	margin: 0 0 12px;
	font-family: "Rajdhani", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--vm-navy);
}

.asmorix-vm__text {
	margin: 0 0 18px;
	font-family: "Nunito", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	color: var(--vm-muted);
}

.asmorix-vm__list {
	list-style: none;
	margin: 0 0 22px;
	padding: 14px 16px;
	border-radius: 12px;
	background: var(--vm-soft);
	border: 1px solid var(--vm-line);
	flex: 1;
}

.asmorix-vm__list li {
	position: relative;
	padding: 8px 0 8px 28px;
	font-family: "Nunito", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--vm-navy);
	border-bottom: 1px solid rgba(12, 90, 219, 0.08);
}

.asmorix-vm__list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.asmorix-vm__list li:first-child {
	padding-top: 0;
}

.asmorix-vm__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 16px;
	height: 16px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: var(--vm-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 8.2l2.4 2.4L12 5'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.asmorix-vm__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: 10px;
	background: var(--vm-blue);
	color: #fff !important;
	font-family: "Rajdhani", sans-serif;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none !important;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 10px 22px rgba(12, 90, 219, 0.22);
}

.asmorix-vm__btn:hover {
	background: var(--vm-blue-dark);
	color: #fff !important;
	transform: translateY(-1px);
}

.asmorix-vm__btn--alt {
	background: #fff;
	color: var(--vm-blue) !important;
	border: 1.5px solid var(--vm-blue);
	box-shadow: none;
}

.asmorix-vm__btn--alt:hover {
	background: var(--vm-blue);
	color: #fff !important;
}

@media (max-width: 991px) {
	.asmorix-vm__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.asmorix-vm__title {
		font-size: 23px;
	}
}

@media (max-width: 575px) {
	.asmorix-vm__card {
		padding: 22px 18px 20px;
	}
}
