/* ========== Corporate Enquiry — premium popup ========== */
.asmorix-corp {
	--acp-blue: #0c5adb;
	--acp-blue-deep: #0946b0;
	--acp-navy: #041424;
	--acp-yellow: #ffd200;
	--acp-muted: #5b6b7c;
	--acp-line: #e4ebf3;
	--acp-soft: #f4f7fb;
	--acp-font: "Nunito", "Poppins", sans-serif;
	--acp-display: "Rajdhani", "Nunito", sans-serif;
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.asmorix-corp.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.asmorix-corp__backdrop {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(1000px 480px at 20% 0%, rgba(12, 90, 219, 0.32), transparent 55%),
		radial-gradient(700px 360px at 90% 100%, rgba(255, 210, 0, 0.12), transparent 50%),
		rgba(4, 20, 36, 0.76);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.asmorix-corp__dialog {
	position: relative;
	z-index: 1;
	width: min(920px, 100%);
	max-height: min(92vh, 760px);
	overflow: auto;
	overscroll-behavior: contain;
	display: grid;
	grid-template-columns: minmax(240px, 0.9fr) 1.35fr;
	background: #fff;
	border-radius: 22px;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.28),
		0 32px 90px rgba(4, 20, 36, 0.42);
	font-family: var(--acp-font);
	color: var(--acp-navy);
	transform: translateY(20px) scale(0.97);
	opacity: 0;
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.asmorix-corp.is-open .asmorix-corp__dialog {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.asmorix-corp__aside {
	position: relative;
	padding: 28px 24px 24px;
	background:
		linear-gradient(165deg, #062a63 0%, #0c5adb 48%, #0a3f9e 100%);
	color: #fff;
	overflow: hidden;
}

.asmorix-corp__aside::before {
	content: "";
	position: absolute;
	inset: auto -40px -60px auto;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(255, 210, 0, 0.16);
	pointer-events: none;
}

.asmorix-corp__aside::after {
	content: "";
	position: absolute;
	top: -50px;
	left: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	pointer-events: none;
}

.asmorix-corp__eyebrow {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 14px;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.asmorix-corp__aside-title {
	position: relative;
	z-index: 1;
	margin: 0 0 10px;
	font-family: var(--acp-display);
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #ffffff !important;
}

.asmorix-corp__aside-title span {
	color: var(--acp-yellow) !important;
}

.asmorix-corp__aside-lead {
	position: relative;
	z-index: 1;
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.86);
}

.asmorix-corp__aside-list {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.asmorix-corp__aside-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.4;
}

.asmorix-corp__aside-list li svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
	color: var(--acp-yellow);
}

.asmorix-corp__aside-foot {
	position: relative;
	z-index: 1;
	margin-top: 22px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 12.5px;
	color: rgba(255, 255, 255, 0.8);
}

.asmorix-corp__aside-foot a {
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 210, 0, 0.55);
}

.asmorix-corp__body {
	position: relative;
	padding: 24px 26px 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.asmorix-corp__body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--acp-yellow) 0%, #ffe566 40%, var(--acp-blue) 100%);
}

.asmorix-corp__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: var(--acp-soft);
	color: var(--acp-navy);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
	z-index: 3;
}

.asmorix-corp__close:hover,
.asmorix-corp__close:focus-visible {
	background: #e8eef7;
	color: var(--acp-blue);
	outline: none;
}

.asmorix-corp__close svg {
	width: 16px;
	height: 16px;
	display: block;
}

.asmorix-corp__title {
	margin: 0 0 4px;
	padding-right: 40px;
	font-family: var(--acp-display);
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: var(--acp-navy);
}

.asmorix-corp__title span {
	color: var(--acp-blue);
}

.asmorix-corp__lead {
	margin: 0 0 14px;
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--acp-muted);
}

.asmorix-corp__form {
	display: grid;
	gap: 11px;
}

.asmorix-corp__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 11px;
}

.asmorix-corp__field {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.asmorix-corp__label {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	color: var(--acp-navy);
}

.asmorix-corp__label em {
	color: #e11d48;
	font-style: normal;
}

.asmorix-corp__input,
.asmorix-corp__select,
.asmorix-corp__textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1.5px solid var(--acp-line);
	border-radius: 11px;
	background: #fff;
	color: var(--acp-navy);
	font-family: inherit;
	font-size: 14px;
	line-height: 1.3;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	box-sizing: border-box;
}

.asmorix-corp__textarea {
	min-height: 78px;
	resize: vertical;
}

.asmorix-corp__input:focus,
.asmorix-corp__select:focus,
.asmorix-corp__textarea:focus {
	border-color: rgba(12, 90, 219, 0.55);
	box-shadow: 0 0 0 3px rgba(12, 90, 219, 0.12);
}

.asmorix-corp__select-wrap {
	position: relative;
}

.asmorix-corp__select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 34px;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23041424' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

.asmorix-corp__phone {
	display: grid;
	grid-template-columns: 108px 1fr;
	gap: 8px;
}

.asmorix-corp__modes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.asmorix-corp__mode {
	margin: 0;
	cursor: pointer;
}

.asmorix-corp__mode input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.asmorix-corp__mode span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 6px 8px;
	border: 1.5px solid var(--acp-line);
	border-radius: 10px;
	background: #fff;
	font-size: 12.5px;
	font-weight: 700;
	text-align: center;
	color: var(--acp-navy);
	transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.asmorix-corp__mode input:checked + span {
	border-color: var(--acp-blue);
	background: rgba(12, 90, 219, 0.08);
	color: var(--acp-blue);
	box-shadow: 0 0 0 3px rgba(12, 90, 219, 0.1);
}

.asmorix-corp__field.is-error .asmorix-corp__input,
.asmorix-corp__field.is-error .asmorix-corp__select,
.asmorix-corp__field.is-error .asmorix-corp__textarea,
.asmorix-corp__phone.is-error .asmorix-corp__input,
.asmorix-corp__modes.is-error .asmorix-corp__mode span {
	border-color: #e11d48;
}

.asmorix-corp__field-error {
	margin: 0;
	font-size: 11.5px;
	font-weight: 700;
	color: #e11d48;
}

.asmorix-corp__msg {
	margin: 0;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	background: var(--acp-soft);
	color: var(--acp-navy);
}

.asmorix-corp__msg.is-error {
	background: #fff1f2;
	color: #be123c;
}

.asmorix-corp__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 50px;
	padding: 12px 18px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--acp-blue) 0%, var(--acp-blue-deep) 100%);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(12, 90, 219, 0.28);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.asmorix-corp__submit:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 16px 32px rgba(12, 90, 219, 0.34);
	filter: brightness(1.03);
}

.asmorix-corp__submit:disabled {
	opacity: 0.72;
	cursor: wait;
}

.asmorix-corp__submit-arrow {
	display: inline-flex;
}

.asmorix-corp__submit-arrow svg {
	width: 18px;
	height: 18px;
}

.asmorix-corp__note {
	margin: 0;
	text-align: center;
	font-size: 12px;
	color: var(--acp-muted);
}

.asmorix-corp__contact {
	margin: 0;
	text-align: center;
	font-size: 12.5px;
	color: var(--acp-muted);
}

.asmorix-corp__contact a {
	color: var(--acp-blue);
	font-weight: 800;
	text-decoration: none;
}

.asmorix-corp__hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.asmorix-corp__view[hidden],
.asmorix-corp__success[hidden],
.asmorix-corp__msg[hidden] {
	display: none !important;
}

.asmorix-corp__success {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 10px;
	padding: 28px 10px 12px;
}

.asmorix-corp__success-icon {
	width: 64px;
	height: 64px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(12, 90, 219, 0.1);
	color: var(--acp-blue);
}

.asmorix-corp__success-icon svg {
	width: 42px;
	height: 42px;
}

.asmorix-corp__success-title {
	margin: 4px 0 0;
	font-family: var(--acp-display);
	font-size: 26px;
	font-weight: 700;
	color: var(--acp-navy);
}

.asmorix-corp__success-text,
.asmorix-corp__success-note,
.asmorix-corp__success-phone {
	margin: 0;
	max-width: 420px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--acp-muted);
}

.asmorix-corp__success-phone a {
	color: var(--acp-blue);
	font-weight: 800;
	text-decoration: none;
}

.asmorix-corp__success-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 8px;
}

.asmorix-corp__success-again,
.asmorix-corp__success-close {
	min-height: 42px;
	padding: 8px 16px;
	border-radius: 10px;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 800;
	cursor: pointer;
}

.asmorix-corp__success-again {
	border: 1.5px solid var(--acp-line);
	background: #fff;
	color: var(--acp-navy);
}

.asmorix-corp__success-close {
	border: 0;
	background: var(--acp-blue);
	color: #fff;
}

body.asmorix-corp-lock {
	overflow: hidden;
}

@media (max-width: 860px) {
	.asmorix-corp__dialog {
		grid-template-columns: 1fr;
		max-height: min(94vh, 860px);
	}

	.asmorix-corp__aside {
		padding: 20px 18px 16px;
	}

	.asmorix-corp__aside-list {
		grid-template-columns: 1fr 1fr;
	}

	.asmorix-corp__aside-foot {
		margin-top: 14px;
		padding-top: 12px;
	}
}

@media (max-width: 640px) {
	.asmorix-corp {
		padding: 10px;
		align-items: flex-end;
	}

	.asmorix-corp__dialog {
		border-radius: 18px 18px 12px 12px;
		max-height: 94vh;
	}

	.asmorix-corp__row,
	.asmorix-corp__modes,
	.asmorix-corp__aside-list,
	.asmorix-corp__phone {
		grid-template-columns: 1fr;
	}

	.asmorix-corp__body {
		padding: 18px 16px 16px;
	}

	.asmorix-corp__modes {
		grid-template-columns: 1fr 1fr;
	}
}
