.pxs-eqt {
	--pxs-eqt-pink: #f02a79;
	--pxs-eqt-purple: #8427e8;
	--pxs-eqt-gold: #f3a51b;
	--pxs-eqt-text: #fbf8ff;
	--pxs-eqt-muted: rgba(251, 248, 255, 0.72);
	--pxs-eqt-line: rgba(255, 255, 255, 0.2);
	--pxs-eqt-inner-width: 1600px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 14px;
	color: var(--pxs-eqt-text);
	background: #030516;
	font-family: "Inter", "Open Sans", Arial, sans-serif;
}

.pxs-eqt,
.pxs-eqt * {
	box-sizing: border-box;
}

.pxs-eqt__shell {
	position: relative;
	width: min(var(--pxs-eqt-inner-width), 100%);
	min-height: 820px;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 24px;
	background:
		linear-gradient(90deg, rgba(4, 6, 24, 0.94), rgba(4, 6, 24, 0.76) 48%, rgba(4, 6, 24, 0.94)),
		url("../images/quote/background.jpg") left bottom / cover no-repeat,
		#050719;
	box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.025);
}

.pxs-eqt__shell::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background:
		radial-gradient(circle at 34% 19%, rgba(220, 28, 255, 0.3), transparent 15%),
		radial-gradient(circle at 11% 87%, rgba(255, 43, 131, 0.16), transparent 20%),
		linear-gradient(180deg, rgba(2, 4, 18, 0.06), rgba(2, 4, 18, 0.54));
}

.pxs-eqt__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(360px, 570px) minmax(0, 1fr);
	gap: clamp(42px, 6vw, 112px);
	min-height: 820px;
	padding: clamp(46px, 5.5vw, 70px) clamp(46px, 5vw, 70px) 36px;
}

.pxs-eqt__side {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.pxs-eqt__mark {
	width: 28px;
	height: 18px;
	margin-bottom: 38px;
	border-top: 3px solid rgba(255, 43, 131, 0.22);
	border-bottom: 3px solid rgba(255, 43, 131, 0.22);
}

.pxs-eqt__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
}

.pxs-eqt__eyebrow span {
	width: 18px;
	height: 1px;
	background: var(--pxs-eqt-pink);
}

.pxs-eqt__title {
	margin: 0;
	color: #fff;
	font-size: clamp(54px, 4.7vw, 72px);
	font-weight: 950;
	line-height: 1.05;
	letter-spacing: 0;
}

.pxs-eqt__title span,
.pxs-eqt__title em {
	display: block;
}

.pxs-eqt__title em {
	color: transparent;
	background: linear-gradient(90deg, var(--pxs-eqt-pink), #bb27d5 73%, var(--pxs-eqt-purple));
	background-clip: text;
	-webkit-background-clip: text;
	font-style: normal;
	-webkit-text-fill-color: transparent;
}

.pxs-eqt__lead {
	max-width: 530px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.62;
}

.pxs-eqt__lead strong {
	color: #ff438f;
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pxs-eqt__nameplate {
	margin-top: 58px;
	color: var(--pxs-eqt-gold);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.3;
	text-transform: uppercase;
}

.pxs-eqt__nameplate strong,
.pxs-eqt__nameplate span {
	display: block;
}

.pxs-eqt__contacts {
	display: grid;
	gap: 14px;
	margin-top: 28px;
}

.pxs-eqt__contact {
	display: inline-grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	width: fit-content;
	color: #fff;
	font-size: 20px;
	font-weight: 850;
	line-height: 1.25;
	text-decoration: none;
}

.pxs-eqt__contact span:last-child {
	min-width: 0;
}

.pxs-eqt__contact-icon {
	display: grid;
	place-items: center;
	color: var(--pxs-eqt-pink);
}

.pxs-eqt__contact-icon svg {
	width: 23px;
	height: 23px;
}

.pxs-eqt__socials {
	display: flex;
	gap: 16px;
	margin-top: 30px;
}

.pxs-eqt__socials a {
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, 0.09);
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.pxs-eqt__socials a:hover,
.pxs-eqt__socials a:focus-visible {
	background: rgba(255, 43, 131, 0.28);
	transform: translateY(-2px);
}

.pxs-eqt__socials svg {
	width: 23px;
	height: 23px;
}

.pxs-eqt__benefits {
	width: min(100%, 520px);
	margin-top: auto;
	padding: 28px 30px;
	border: 1.5px solid color-mix(in srgb, var(--pxs-eqt-pink) 72%, var(--pxs-eqt-purple));
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(255, 43, 131, 0.12), rgba(132, 39, 232, 0.09)), rgba(6, 8, 27, 0.62);
	box-shadow: inset 0 0 48px rgba(255, 255, 255, 0.035);
}

.pxs-eqt__benefits h3 {
	margin: 0 0 20px;
	color: #ff4c98;
	font-size: 24px;
	font-weight: 950;
	line-height: 1.15;
}

.pxs-eqt__benefits ul {
	display: grid;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pxs-eqt__benefits li {
	display: grid;
	grid-template-columns: 25px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
	line-height: 1.35;
}

.pxs-eqt__benefits svg {
	width: 23px;
	height: 23px;
	color: var(--pxs-eqt-pink);
}

.pxs-eqt__form-panel {
	min-width: 0;
	padding-top: 8px;
}

.pxs-eqt__form-intro {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 17px;
	font-weight: 750;
	line-height: 1.25;
}

.pxs-eqt-form,
.pxs-eqt .wpcf7 form {
	display: grid;
	gap: 22px;
	margin: 0;
}

.pxs-eqt-form__step {
	display: grid;
	gap: 16px;
}

.pxs-eqt-form__step h3 {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	color: #fff;
	font-size: 26px;
	font-weight: 950;
	line-height: 1.1;
}

.pxs-eqt-form__step h3 span {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: #fff;
	background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.26), transparent 30%), linear-gradient(135deg, #ff4a91, #df1264);
	box-shadow: 0 0 18px rgba(255, 43, 131, 0.42);
	font-size: 17px;
	font-weight: 950;
}

.pxs-eqt-form__packages,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.pxs-eqt-form__package,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item {
	--pxs-eqt-card-accent: var(--pxs-eqt-pink);
	--pxs-eqt-card-glow: rgba(240, 42, 121, 0.34);
	--pxs-eqt-card-glow-soft: rgba(240, 42, 121, 0.18);
	position: relative;
	display: grid;
	justify-items: center;
	min-height: 235px;
	margin: 0;
	padding: 36px 22px 24px;
	border: 1.5px solid var(--pxs-eqt-card-accent);
	border-radius: 10px;
	color: #fff;
	background: rgba(5, 7, 25, 0.68) !important;
	text-align: center;
	cursor: pointer;
	outline: 0 solid transparent;
	outline-offset: 0;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, outline-color 0.22s ease, outline-offset 0.22s ease, transform 0.22s ease;
}

.pxs-eqt-form__package--purple,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:nth-child(2) {
	--pxs-eqt-card-accent: var(--pxs-eqt-purple);
	--pxs-eqt-card-glow: rgba(132, 39, 232, 0.34);
	--pxs-eqt-card-glow-soft: rgba(132, 39, 232, 0.18);
}

.pxs-eqt-form__package--gold,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:nth-child(3) {
	--pxs-eqt-card-accent: var(--pxs-eqt-gold);
	--pxs-eqt-card-glow: rgba(243, 165, 27, 0.34);
	--pxs-eqt-card-glow-soft: rgba(243, 165, 27, 0.18);
}

.pxs-eqt-form__package input,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages input {
	position: absolute;
	top: 17px;
	left: 17px;
	width: 21px;
	height: 21px;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
	border: 2px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	background: transparent !important;
	box-shadow: none;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pxs-eqt-form__package input:checked,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages input:checked {
	border-color: var(--pxs-eqt-card-accent);
	background: radial-gradient(circle, #fff 0 4px, var(--pxs-eqt-card-accent) 5px 8px, transparent 9px) !important;
	box-shadow: 0 0 0 3px var(--pxs-eqt-card-glow-soft);
}

.pxs-eqt-form__package:has(input:checked),
.pxs-eqt-form__package.is-selected,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:has(input:checked),
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item.is-selected {
	border-color: var(--pxs-eqt-card-accent);
	background: rgba(5, 7, 25, 0.68) !important;
	outline: 2px solid var(--pxs-eqt-card-glow);
	outline-offset: 4px;
	box-shadow:
		0 0 20px var(--pxs-eqt-card-glow-soft),
		inset 0 0 0 1px rgba(255, 255, 255, 0.035);
	transform: translateY(-2px);
}

.pxs-eqt-form__package:hover,
.pxs-eqt-form__package:focus-within,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:hover,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:focus-within {
	background: rgba(5, 7, 25, 0.68) !important;
	box-shadow:
		0 0 0 1px var(--pxs-eqt-card-glow-soft),
		0 0 14px rgba(255, 255, 255, 0.04);
	transform: translateY(-1px);
}

.pxs-eqt-form__package:has(input:checked):hover,
.pxs-eqt-form__package:has(input:checked):focus-within,
.pxs-eqt-form__package.is-selected:hover,
.pxs-eqt-form__package.is-selected:focus-within,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:has(input:checked):hover,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:has(input:checked):focus-within,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item.is-selected:hover,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item.is-selected:focus-within {
	background: rgba(5, 7, 25, 0.68) !important;
	outline-color: var(--pxs-eqt-card-glow);
	outline-offset: 4px;
	box-shadow:
		0 0 22px var(--pxs-eqt-card-glow-soft),
		inset 0 0 0 1px rgba(255, 255, 255, 0.035);
	transform: translateY(-2px);
}

.pxs-eqt-form__package-clock,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item label::before {
	display: block;
	width: 52px;
	height: 52px;
	margin: 0 auto 24px;
	border: 4px solid var(--pxs-eqt-card-accent);
	border-radius: 50%;
	content: "";
	background:
		linear-gradient(var(--pxs-eqt-card-accent), var(--pxs-eqt-card-accent)) 50% 20% / 4px 18px no-repeat,
		linear-gradient(var(--pxs-eqt-card-accent), var(--pxs-eqt-card-accent)) 66% 58% / 20px 4px no-repeat;
	transform: rotate(45deg);
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item label::before {
	background:
		linear-gradient(var(--pxs-eqt-card-accent), var(--pxs-eqt-card-accent)) 50% 20% / 4px 18px no-repeat,
		linear-gradient(var(--pxs-eqt-card-accent), var(--pxs-eqt-card-accent)) 66% 58% / 20px 4px no-repeat !important;
}

.pxs-eqt-form__package strong,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item-label {
	display: block;
	color: #fff;
	font-size: 21px;
	font-weight: 950;
	line-height: 1.1;
}

.pxs-eqt-form__package em,
.pxs-eqt-form__package small {
	display: block;
}

.pxs-eqt-form__package em {
	margin-top: 12px;
	color: var(--pxs-eqt-card-accent);
	font-size: 17px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.25;
}

.pxs-eqt-form__package small {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.42;
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item label {
	display: block;
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	border: 0 !important;
	color: inherit;
	background: transparent !important;
	box-shadow: none !important;
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item label *,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages input:checked + .wpcf7-list-item-label,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages input:checked ~ .wpcf7-list-item-label,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item-label {
	border: 0 !important;
	background: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item-label::before,
.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item-label::after {
	border: 0 !important;
	background-color: transparent !important;
	background-image: none !important;
	box-shadow: none !important;
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages input:checked {
	background: radial-gradient(circle, #fff 0 4px, var(--pxs-eqt-card-accent) 5px 8px, transparent 9px) !important;
	box-shadow: 0 0 0 3px var(--pxs-eqt-card-glow-soft) !important;
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item-label::after {
	display: block;
	margin-top: 12px;
	color: var(--pxs-eqt-card-accent);
	font-size: 16px;
	font-weight: 900;
	line-height: 1.3;
	white-space: pre-line;
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label::after {
	content: "40 perces pörgős műsor\A\A Ideális fesztiválokra, falunapokra vagy meglepetésvendégnek.";
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::after {
	content: "Éjfélig tartó műsor\A\A Teljes esti zenei szolgáltatás a vacsorától éjfélig.";
}

.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::after {
	content: "Egész estét lefedő műsor\A\A Korlátlan zenei élmény hajnalig tartó bulival.";
}

.pxs-eqt-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 20px;
}

.pxs-eqt-form__field {
	position: relative;
	min-width: 0;
}

.pxs-eqt-form__field label {
	position: absolute;
	z-index: 2;
	top: 12px;
	left: 66px;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.pxs-eqt-form__field label::first-letter {
	color: inherit;
}

.pxs-eqt-form__field input,
.pxs-eqt-form__field textarea,
.pxs-eqt .wpcf7-form-control:not(.wpcf7-radio):not(.wpcf7-submit):not(.wpcf7-acceptance) {
	width: 100%;
	min-height: 65px;
	margin: 0;
	padding: 27px 18px 12px 66px;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 8px;
	color: #fff;
	background: rgba(4, 7, 24, 0.5);
	box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.02);
	font: inherit;
	font-size: 16px;
	font-weight: 650;
	line-height: 1.2;
	outline: 0;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pxs-eqt-form__field::before {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 24px;
	width: 22px;
	height: 22px;
	content: "";
	color: rgba(255, 255, 255, 0.72);
	background: currentColor;
	mask: var(--pxs-eqt-field-icon) center / contain no-repeat;
	-webkit-mask: var(--pxs-eqt-field-icon) center / contain no-repeat;
	transform: translateY(-50%);
	pointer-events: none;
}

.pxs-eqt-form__field--textarea::before {
	top: 28px;
	transform: none;
}

.pxs-eqt-form__field--date {
	--pxs-eqt-field-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h2v3H7V2Zm8 0h2v3h-2V2ZM4 5h16v17H4V5Zm2 6v9h12v-9H6Zm0-4v2h12V7H6Z'/%3E%3C/svg%3E");
}

.pxs-eqt-form__field--time {
	--pxs-eqt-field-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm-1 2h2v7l5 3-1 1.7-6-3.6V6Z'/%3E%3C/svg%3E");
}

.pxs-eqt-form__field--location {
	--pxs-eqt-field-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a8 8 0 0 0-8 8c0 5.4 8 12 8 12s8-6.6 8-12a8 8 0 0 0-8-8Zm0 2a6 6 0 0 1 6 6c0 3.2-3.9 7.5-6 9.5C9.9 17.5 6 13.2 6 10a6 6 0 0 1 6-6Zm0 3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

.pxs-eqt-form__field--guests {
	--pxs-eqt-field-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm8 2a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Zm0-2a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM2 21v-2c0-4 3.6-7 7-7s7 3 7 7v2h-2v-2c0-2.8-2.5-5-5-5s-5 2.2-5 5v2H2Zm14.5-8c3.1.2 5.5 2.8 5.5 6v2h-2v-2c0-2-1.3-3.6-3.2-4.4l.7-1.6Z'/%3E%3C/svg%3E");
}

.pxs-eqt-form__field--name {
	--pxs-eqt-field-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0-2a3 3 0 1 0 0-6 3 3 0 0 0 0 6ZM4 22v-3c0-4 3.6-7 8-7s8 3 8 7v3h-2v-3c0-2.8-2.7-5-6-5s-6 2.2-6 5v3H4Z'/%3E%3C/svg%3E");
}

.pxs-eqt-form__field--email {
	--pxs-eqt-field-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5h18v14H3V5Zm2 3.2V17h14V8.2l-7 5.2-7-5.2ZM6.3 7l5.7 4.2L17.7 7H6.3Z'/%3E%3C/svg%3E");
}

.pxs-eqt-form__field--phone {
	--pxs-eqt-field-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m8 3 4 4-2.5 2.5c1.2 2.5 2.8 4.1 5.3 5.3L17.3 12l4 4-4.1 4.1C10 18.9 5.1 14 3.9 6.9L8 3Zm0 .1Z'/%3E%3C/svg%3E");
}

.pxs-eqt-form__field--message {
	--pxs-eqt-field-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4h18v13H8l-5 5V4Zm2 2v11.2L7.2 15H19V6H5Z'/%3E%3C/svg%3E");
}

.pxs-eqt-form__field input[type="date"] {
	cursor: pointer;
}

.pxs-eqt-form__field input[type="date"]::-webkit-calendar-picker-indicator {
	cursor: pointer;
	filter: invert(1);
	opacity: 0.75;
}

.pxs-eqt-form__field input::placeholder,
.pxs-eqt-form__field textarea::placeholder,
.pxs-eqt .wpcf7-form-control::placeholder {
	color: rgba(255, 255, 255, 0.56);
	opacity: 1;
}

.pxs-eqt-form__field input:focus,
.pxs-eqt-form__field textarea:focus,
.pxs-eqt .wpcf7-form-control:focus {
	border-color: var(--pxs-eqt-pink);
	box-shadow: 0 0 0 1px rgba(255, 43, 131, 0.3);
}

.pxs-eqt-form__field textarea,
.pxs-eqt .pxs-eqt-form__field textarea.wpcf7-form-control {
	min-height: 105px;
	padding-top: 22px;
	resize: vertical;
}

.pxs-eqt-form__field--textarea b {
	position: absolute;
	right: 18px;
	bottom: 12px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 14px;
	font-weight: 750;
}

.pxs-eqt-form__accept,
.pxs-eqt .wpcf7-acceptance .wpcf7-list-item label {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 13px;
	align-items: start;
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 16px;
	font-weight: 650;
	line-height: 1.45;
}

.pxs-eqt-form__accept {
	display: block;
}

.pxs-eqt-form__accept .wpcf7-list-item {
	margin: 0;
}

.pxs-eqt-form__accept input,
.pxs-eqt .wpcf7-acceptance input {
	width: 20px;
	height: 20px;
	margin: 1px 0 0;
	border-color: var(--pxs-eqt-pink);
	accent-color: var(--pxs-eqt-pink);
}

.pxs-eqt-form__accept a,
.pxs-eqt .wpcf7-acceptance a {
	color: var(--pxs-eqt-pink);
	font-weight: 900;
	text-decoration: none;
}

.pxs-eqt-form__submit-wrap {
	position: relative;
}

.pxs-eqt-form__submit-wrap::before {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: calc(50% - 130px);
	width: 25px;
	height: 25px;
	content: "";
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	color: #fff;
	transform: translateY(-50%) rotate(35deg);
	pointer-events: none;
}

.pxs-eqt-form__submit,
.pxs-eqt .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 100%;
	min-height: 58px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(100deg, #f32678, #c224d8 55%, #6719dc);
	box-shadow: 0 0 24px rgba(255, 43, 131, 0.22), inset 0 0 18px rgba(255, 255, 255, 0.12);
	font-size: 20px;
	font-weight: 950;
	letter-spacing: 4px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pxs-eqt-form__submit-wrap .wpcf7-submit {
	padding-left: 58px;
}

.pxs-eqt-form__submit svg {
	width: 25px;
	height: 25px;
}

.pxs-eqt-form__submit:hover,
.pxs-eqt-form__submit:focus-visible,
.pxs-eqt .wpcf7-submit:hover,
.pxs-eqt .wpcf7-submit:focus-visible {
	color: #fff;
	box-shadow: 0 0 32px rgba(255, 43, 131, 0.34);
	transform: translateY(-2px);
}

.pxs-eqt .wpcf7-spinner {
	position: absolute;
}

.pxs-eqt .wpcf7-not-valid-tip,
.pxs-eqt .wpcf7-response-output {
	color: #ff8bb8;
	font-size: 13px;
}

.pxs-eqt .wpcf7-response-output {
	margin: 0;
	padding: 12px 14px;
	border-color: var(--pxs-eqt-pink);
	border-radius: 8px;
}

.pxs-eqt__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 15px;
	font-weight: 650;
}

.pxs-eqt__secure svg {
	width: 18px;
	height: 18px;
}

@media (max-width: 1200px) {
	.pxs-eqt__inner {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.pxs-eqt__benefits {
		margin-top: 36px;
	}
}

@media (max-width: 760px) {
	.pxs-eqt {
		padding: 0;
	}

	.pxs-eqt__shell {
		border-radius: 0;
	}

	.pxs-eqt__inner {
		min-height: 0;
		padding: 34px 18px;
	}

	.pxs-eqt__mark {
		margin-bottom: 24px;
	}

	.pxs-eqt__title {
		font-size: clamp(42px, 13vw, 56px);
	}

	.pxs-eqt__lead,
	.pxs-eqt__contact,
	.pxs-eqt__benefits li {
		font-size: 16px;
	}

	.pxs-eqt__nameplate {
		margin-top: 34px;
		font-size: 18px;
	}

	.pxs-eqt__benefits {
		padding: 22px;
	}

	.pxs-eqt-form__packages,
	.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages,
	.pxs-eqt-form__grid {
		grid-template-columns: 1fr;
	}

	.pxs-eqt-form__package,
	.pxs-eqt .wpcf7-radio.pxs-eqt-form__packages .wpcf7-list-item {
		min-height: 190px;
	}

	.pxs-eqt-form__step h3 {
		font-size: 22px;
	}

	.pxs-eqt-form__submit,
	.pxs-eqt .wpcf7-submit {
		font-size: 16px;
		letter-spacing: 2px;
	}
}
