:root {
	--color-bg: #000;
	--color-bg-soft: #11121a;
	--color-panel: rgba(20, 21, 31, 0.88);
	--color-panel-strong: rgba(20, 21, 31, 0.96);
	--color-border: rgba(123, 97, 255, 0.32);
	--color-border-soft: rgba(255, 255, 255, 0.1);
	--color-text: #ffffff;
	--color-muted: #a0a3bd;
	--color-dim: #6b6f8e;
	--color-violet: #7b61ff;
	--color-neon: #9f7cff;
	--color-violet-dark: #5f47df;
	--color-blue: #376eff;
	--color-cyan: #2f9cff;
	--gradient-main: linear-gradient(90deg, #7b61ff, #9f7cff);
	--shadow-card: 0 0 30px rgba(123, 97, 255, 0.15);
	--shadow-glow: 0 0 28px rgba(123, 97, 255, 0.36);
	--font-main: "Inter", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	min-width: 320px;
	color: var(--color-text);
	font-family: var(--font-main);
	background: var(--color-bg);
	display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-columns: 100%;
	min-height: 100vh;
}

a {
	color: inherit;
	transition: .3s;
}

img {
	max-width: 100%;
	height: auto;
}

.s-icon {
	height: 1em;
	width: 1em;
	fill: currentColor;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignleft {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}

.alignright {
	float: right;
	margin: 0.5em 0 0.5em 1em;
}

.alignnone {
	margin: 0.5em 0;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes neonPulse {

	0%,
	100% {
		box-shadow:
			0 0 22px rgba(159, 124, 255, 0.75),
			inset 0 0 16px rgba(123, 97, 255, 0.42);
		transform: scale(1);
	}

	50% {
		box-shadow:
			0 0 42px rgba(159, 124, 255, 0.98),
			inset 0 0 24px rgba(123, 97, 255, 0.62);
		transform: scale(1.015);
	}
}

.hero__content,
.hero__visual,
.section-card,
.service-card,
.features,
.order-faq__card,
.site-footer {
	animation: fadeUp 0.75s ease both;
}

.hero {
	background-image: url('./images/banner.webp');
	background-position: bottom center;
	background-repeat: no-repeat;
	min-height: 700px;
}

.site-header {
	position: relative;
	z-index: 20;
	padding-top: 26px;
}

.site-header__nav {
	padding: 0;
}

.site-header__container {
	align-items: center;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.site-logo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
}

.site-logo__mark small {
	font-size: 8px;
	transform: translateY(4px);
}

.site-logo__text {
	display: grid;
	line-height: 1.05;
}

.site-logo__name {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0;
}

.site-logo__tagline {
	color: var(--color-muted);
	font-size: 13px;
}

.site-menu {
	gap: 24px;
}

.site-menu__link {
	padding: 8px 0;
	color: #f2f2f5;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s ease;
}

.site-menu__link:hover,
.site-menu__link:focus {
	color: var(--color-violet);
}

.site-header__status {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
}

.site-header__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 2px solid var(--color-violet);
	border-radius: 50%;
	color: var(--color-neon);
	box-shadow: 0 0 20px rgba(123, 97, 255, 0.42);
}

.site-header__status-text a {
	text-decoration: none;
}

.site-header__status-text a:hover {
	color: var(--color-violet);
}

.site-header__toggle {
	border-color: var(--color-border);
	background-color: rgba(255, 255, 255, 0.05);
}

.navbar-toggler-icon {
	filter: invert(1);
}

.yoast-breadcrumbs a {
	text-decoration: none;
}

.yoast-breadcrumbs a:hover {
	color: var(--color-violet-dark);
}

.hero {
	position: relative;
	z-index: 2;
	padding: 62px 0 28px;
}

.hero__container {
	display: grid;
	grid-template-columns: minmax(0, 610px) minmax(360px, 1fr);
	align-items: center;
	gap: 34px;
	min-height: 512px;
}

.hero__content {
	position: relative;
	z-index: 3;
}

.hero__title {
	margin: 0 0 10px;
	max-width: 500px;
	font-size: clamp(48px, 5.15vw, 64px);
	font-weight: 700;
	line-height: 0.94;
	letter-spacing: 0;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero__title span {
	display: block;
	color: #6686ff;
}

.hero__subtitle {
	margin: 0 0 20px;
	font-size: clamp(25px, 2.6vw, 34px);
	font-weight: 800;
	line-height: 1.16;
}

.hero__subtitle strong {
	color: var(--color-neon);
	font-weight: 700;
	border-bottom: 3px solid var(--color-neon);
}

.hero__text {
	margin: 0 0 28px;
	color: #d6d6df;
	font-size: 17px;
	line-height: 1.55;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 40px;
}

.btn {
	--bs-btn-padding-x: 28px;
	--bs-btn-padding-y: 15px;
	--bs-btn-border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	gap: 11px;
	border-width: 1px;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
	transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	outline: none;
}

.btn-main {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.08);
	background: var(--gradient-main);
	box-shadow: 0 14px 34px rgba(123, 97, 255, 0.34);
}

.btn-main:hover,
.btn-main:focus {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.16);
	background: var(--gradient-main);
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: 0 18px 42px rgba(123, 97, 255, 0.48);
}

.btn-ghost {
	color: #fff;
	border-color: rgba(123, 97, 255, 0.62);
	background: rgba(5, 7, 14, 0.7);
}

.btn-ghost:hover,
.btn-ghost:focus {
	color: #fff;
	border-color: rgba(159, 124, 255, 0.92);
	background: rgba(123, 97, 255, 0.14);
	filter: brightness(1.08);
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hero-stats__item {
	display: grid;
	grid-template-columns: 34px 1fr;
	column-gap: 10px;
	align-items: center;
}

.hero-stats__icon {
	grid-row: span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 2px solid var(--color-violet);
	border-radius: 50%;
	color: var(--color-violet);
	font-weight: 900;
	box-shadow: 0 0 16px rgba(123, 97, 255, 0.45);
}

.hero-stats__value {
	color: #fff;
	font-size: 17px;
	font-weight: 800;
}

.hero-stats__label {
	color: var(--color-muted);
	font-size: 12px;
}

.hero__visual {
	position: relative;
	min-height: 520px;
	isolation: isolate;
}

.hero__city {
	position: absolute;
	inset: 10px 0 58px 40%;
	border-radius: 22px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(7, 11, 32, 0.54) 42%, rgba(0, 0, 0, 0.2)),
		repeating-linear-gradient(90deg, rgba(42, 99, 255, 0.15) 0 20px, transparent 20px 44px),
		repeating-linear-gradient(0deg, transparent 0 42px, rgba(145, 70, 255, 0.45) 42px 52px, transparent 52px 92px);
	filter: blur(0.2px);
	opacity: 0.72;
	z-index: -3;
}

.hero__ring {
	position: absolute;
	top: 70px;
	right: 84px;
	width: 460px;
	max-width: 80%;
	aspect-ratio: 1;
	border: 4px solid var(--color-neon);
	border-left-color: var(--color-violet);
	border-radius: 50%;
	animation: neonPulse 3.6s ease-in-out infinite;
	z-index: -1;
}

.gas-cloud {
	position: absolute;
	bottom: 54px;
	width: 260px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(130, 64, 255, 0.56), rgba(74, 45, 173, 0.25) 48%, transparent 72%);
	filter: blur(18px);
	opacity: 0.82;
}

.gas-cloud--left {
	left: 62px;
}

.gas-cloud--right {
	right: 142px;
}

.bottle__valve::before,
.bottle__valve::after {
	content: "";
	position: absolute;
	background: linear-gradient(180deg, #1a1d29, #030408);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 0 14px rgba(123, 97, 255, 0.42);
}

.bottle__valve::before {
	left: 34px;
	bottom: 0;
	width: 34px;
	height: 56px;
	border-radius: 8px 8px 0 0;
}

.bottle__valve::after {
	left: 0;
	top: 8px;
	width: 102px;
	height: 20px;
	border-radius: 18px;
}

.bottle__label {
	position: absolute;
	top: 132px;
	left: 50%;
	color: rgba(255, 255, 255, 0.9);
	font-size: 54px;
	font-weight: 900;
	letter-spacing: 0;
	writing-mode: vertical-rl;
	transform: translateX(-50%);
	text-shadow: 0 2px 10px rgba(255, 255, 255, 0.22);
}

.bottle__label small {
	font-size: 28px;
}

.bottle--hero {
	z-index: 2;
}

.section {
	position: relative;
	z-index: 3;
	padding: 9px 0;
}

.section-card,
.features,
.order-faq__card {
	border: 1px solid var(--color-border-soft);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(20, 21, 31, 0.92), rgba(17, 18, 26, 0.9));
	box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 22px 40px rgba(0, 0, 0, 0.22);
}

.section-card {
	padding: 24px 16px 14px;
}

.section-heading {
	margin-bottom: 22px;
	text-align: center;
}

.section-heading__title,
.order-steps__title,
.faq__title {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 3vw, 40px);
	font-weight: 700;
	letter-spacing: 0;
}

.section-heading__title::after,
.order-steps__title::after {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	margin: 11px auto 0;
	border-radius: 999px;
	background: var(--color-violet);
	box-shadow: 0 0 15px rgba(123, 97, 255, 0.8);
}

.kit-card {
	position: relative;
	min-height: 240px;
	padding: 22px 20px 18px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	background:
		radial-gradient(circle at 78% 80%, rgba(123, 97, 255, 0.22), transparent 38%),
		linear-gradient(180deg, rgba(20, 21, 31, 0.95), rgba(17, 18, 26, 0.92));
	box-shadow: var(--shadow-card);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.kit-card:hover {
	transform: scale(1.03);
	border-color: rgba(159, 124, 255, 0.66);
	box-shadow: 0 0 36px rgba(123, 97, 255, 0.24);
}

.kit-card__body {
	position: relative;
	z-index: 3;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	flex-grow: 1;
}

.kit-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
}

.kit-card__icon img {
	max-width: 42px;
	max-height: 42px;
}

.kit-card__title {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 800;
}

.kit-card__note {
	margin: 0;
	color: var(--color-muted);
	font-size: 12px;
	max-width: 245px;
}

.kit-card__list {
	position: relative;
	z-index: 3;
	margin: 20px 0 28px;
	padding-left: 18px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.85;
}

.kit-card__visual {
	position: absolute;
	top: 22px;
	right: 0;
	width: 200px;
	height: 100%;
	pointer-events: none;
}

.mini-bottle {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 46px;
	height: 126px;
	transform: translateX(-50%);
	border-radius: 23px 23px 8px 8px;
	background: linear-gradient(90deg, #05060b, #d1d3dc 42%, #111523 54%, #020205);
	box-shadow: inset 8px 0 16px rgba(0, 0, 0, 0.8), 0 0 16px rgba(123, 97, 255, 0.45);
}

.mini-bottle::before {
	content: "N2O";
	position: absolute;
	top: 46px;
	left: 50%;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 800;
	writing-mode: vertical-rl;
	transform: translateX(-50%);
}

.mini-bottle::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(100% - 2px);
	width: 58px;
	height: 26px;
	transform: translateX(-50%);
	border-radius: 12px;
	background: linear-gradient(90deg, #080912, #242738, #05060a);
}

.balloon {
	position: absolute;
	width: 40px;
	height: 54px;
	border-radius: 50% 50% 48% 48%;
	background: radial-gradient(circle at 35% 30%, #b492ff, #5c25d9 48%, #1d0b5a 100%);
	box-shadow: 0 0 16px rgba(123, 97, 255, 0.6);
}

.balloon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	width: 1px;
	height: 38px;
	background: rgba(255, 255, 255, 0.28);
}

.balloon--one {
	left: 0;
	bottom: 12px;
}

.balloon--two {
	right: 0;
	bottom: 22px;
}

.balloon--three {
	right: 42px;
	bottom: 0;
}

.balloon--four {
	left: 42px;
	bottom: 4px;
}

.kit-card__footer {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.kit-card__price {
	color: var(--color-violet);
	font-size: 26px;
	font-weight: 900;
}

.btn-card {
	min-width: 148px;
	min-height: 38px;
	padding: 8px 20px;
	color: #fff;
	border-color: rgba(123, 97, 255, 0.76);
	background: rgba(7, 8, 14, 0.7);
	font-size: 14px;
}

.btn-card:hover,
.btn-card:focus {
	color: #fff;
	background: rgba(123, 97, 255, 0.18);
}

.service-card {
	position: relative;
	min-height: 250px;
	overflow: hidden;
	border: 1px solid var(--color-border-soft);
	border-radius: 18px;
	background: linear-gradient(90deg, rgba(20, 21, 31, 0.96), rgba(17, 18, 26, 0.96));
	box-shadow: var(--shadow-card);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
	height: 100%;
}

.service-card:hover {
	transform: scale(1.03);
	border-color: rgba(159, 124, 255, 0.62);
	box-shadow: 0 0 36px rgba(123, 97, 255, 0.24);
}

.service-card--blue {
	box-shadow: inset -60px 0 120px rgba(47, 156, 255, 0.22);
}

.service-card--purple {
	box-shadow: var(--shadow-card), inset -60px 0 120px rgba(123, 97, 255, 0.26);
}

.service-card__content {
	position: relative;
	z-index: 3;
	max-width: 360px;
	padding: 30px 30px 24px;
}

.service-card__icon {
	float: left;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	margin: 0 24px 18px 0;
	border: 2px solid currentColor;
	border-radius: 50%;
	color: var(--color-cyan);
	font-size: 22px;
	font-weight: 900;
	box-shadow: 0 0 20px rgba(47, 156, 255, 0.36);
}

.service-card--purple .service-card__icon {
	color: var(--color-violet);
	box-shadow: 0 0 20px rgba(123, 97, 255, 0.42);
}

.service-card__title {
	margin: 4px 0 8px;
	font-size: 24px;
	font-weight: 800;
}

.service-card__text {
	margin: 0 0 14px;
	color: #d9d9e3;
	font-size: 14px;
	line-height: 1.45;
}

.service-card__list {
	clear: both;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.75;
}

.service-card__list li::before {
	content: "✓";
	margin-right: 10px;
	color: var(--color-cyan);
	font-weight: 900;
}

.service-card--purple .service-card__list li::before {
	color: var(--color-violet);
}

.btn-service {
	min-height: 40px;
	padding: 9px 28px;
	color: #fff;
	background: linear-gradient(135deg, #2f9cff, #266bda);
	font-size: 14px;
	box-shadow: 0 10px 24px rgba(47, 156, 255, 0.3);
}

.btn-service--purple {
	background: var(--gradient-main);
	box-shadow: 0 10px 24px rgba(123, 97, 255, 0.36);
}

.btn-service:hover,
.btn-service:focus {
	color: #fff;
	filter: brightness(1.08);
	transform: translateY(-2px);
}

.service-card__visual {
	position: absolute;
	inset: auto 54px -86px auto;
	width: 160px;
	height: 270px;
}

.bottle--small {
	bottom: 0;
	width: 92px;
	height: 260px;
}

.features {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 8px;
	padding: 24px 28px;
}

.features__item {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 8px 16px;
}

.features__icon {
	grid-row: span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
}

.features__title {
	margin: 0;
	align-self: end;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
}

.features__text {
	margin: 0;
	color: #cfd0d8;
	font-size: 12px;
	line-height: 1.45;
}

.order-faq__card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
	gap: 34px;
	padding: 28px;
}

.order-steps {
	padding-right: 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.order-steps__title::after {
	margin-left: 0;
}

.order-steps__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: 28px;
	margin: 26px 0;
}

.order-steps__item {
	position: relative;
	text-align: center;
}

.order-steps__item:not(:last-child)::after {
	content: "→";
	position: absolute;
	top: 20px;
	right: -24px;
	color: var(--color-violet);
	font-size: 34px;
	line-height: 1;
}

.order-steps__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 14px;
	border: 2px solid var(--color-violet);
	border-radius: 50%;
	color: var(--color-violet);
	font-size: 30px;
	font-weight: 900;
	box-shadow: 0 0 18px rgba(123, 97, 255, 0.4);
}

.order-steps__item p {
	margin: 0;
	color: #e0e0e7;
	font-size: 14px;
	line-height: 1.45;
}

.order-steps__button {
	width: min(330px, 100%);
	margin-left: 100px;
}

.faq__title {
	margin-bottom: 14px;
}

.faq__accordion {
	overflow: hidden;
	border-radius: 12px;
}

.faq__item {
	color: #fff;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	background: transparent;
}

.faq__button {
	padding: 13px 18px;
	color: #fff;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: none;
	font-size: 14px;
	font-weight: 700;
}

.faq__button:not(.collapsed) {
	color: #fff;
	background: rgba(123, 97, 255, 0.18);
	box-shadow: none;
}

.faq__button::after {
	filter: invert(1);
}

.faq__body {
	color: #cfd0d8;
	background: rgba(255, 255, 255, 0.035);
	font-size: 14px;
}

.faq__more {
	min-height: 38px;
	margin: 18px auto 0;
	padding: 9px 24px;
	font-size: 14px;
}

.site-footer {
	position: relative;
	z-index: 3;
	margin-top: 16px;
	padding: 26px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(0, 0, 0, 0.2);
}

.site-footer__top {
	align-items: flex-start;
}

.site-footer__logo {
	margin-bottom: 20px;
}

.site-footer__text,
.site-footer__copy,
.site-footer__mail,
.site-footer__links a {
	color: #c0c1ca;
	font-size: 14px;
	line-height: 1.6;
	text-decoration: none;
}

.site-footer__text {
	max-width: 260px;
	margin: 0 0 14px;
}

.site-footer__copy {
	margin: 0;
}

.site-footer__title {
	margin: 0 0 16px;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
}

.site-footer__button {
	width: min(280px, 100%);
	min-height: 54px;
	margin-bottom: 16px;
}

.site-footer__mail {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.site-footer__links {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
	color: #fff;
}

.cookie-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
	background: rgba(4, 5, 9, 0.96);
	backdrop-filter: blur(18px);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-bar--hidden {
	display: none;
	transform: translateY(0);
	opacity: 0;
	pointer-events: none;
}

.cookie-bar__container {
	display: grid;
	grid-template-columns: 54px minmax(190px, 280px) 1fr auto;
	gap: 22px;
	align-items: center;
}

.cookie-bar__age {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	color: #fff;
	font-size: 19px;
	font-weight: 800;
}

.cookie-bar__text {
	margin: 0;
	color: #bcbec9;
	font-size: 13px;
	line-height: 1.55;
}

.cookie-bar__text a {
	color: #d8d8df;
}

.cookie-bar__button {
	min-width: 140px;
	min-height: 44px;
	padding: 10px 24px;
	color: #fff;
	border-radius: 12px;
	background: var(--gradient-main);
	box-shadow: 0 10px 28px rgba(123, 97, 255, 0.36);
}

.cookie-bar__button:hover,
.cookie-bar__button:focus {
	color: #fff;
	filter: brightness(1.08);
	transform: translateY(-2px);
}

.review-card {
	box-shadow: var(--shadow-card);
	background: radial-gradient(circle at 78% 80%, rgba(123, 97, 255, 0.22), transparent 38%), linear-gradient(180deg, rgba(20, 21, 31, 0.95), rgba(17, 18, 26, 0.92));
}

.product-price {
	color: var(--color-neon);
}

#map {
	height: 400px;
}

input:not([type="submit"]):not([type="checkbox"]),
textarea,
select {
	margin-bottom: 16px;
	outline: none;
	width: 100%;
	padding: 10px 15px;
	border: 1px solid rgba(123, 97, 255, 0.62);
	border-radius: 12px;
	background: transparent;
	box-shadow: var(--shadow-card);
	color: var(--color-text);
	transition: .3s;
}

input:not([type=submit]):not([type=checkbox]).wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
	border-color: var(--bs-red);
}

.wpcf7-spinner {
	display: none;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
	border-color: inherit;
}

.modal-close {
	position: absolute;
	right: 8px;
	top: 8px;
	-webkit-filter: invert(100%);
	filter: invert(100%);
}

.modal-content {
	background: radial-gradient(circle at 78% 80%, rgba(123, 97, 255, 0.22), transparent 38%), linear-gradient(180deg, rgba(20, 21, 31, 0.95), rgba(17, 18, 26, 0.92));
	box-shadow: var(--shadow-card);
	border: 1px solid var(--color-border);
	border-radius: 12px;
}

.modal-title {
	color: var(--color-text);
	font-weight: 700;
	font-size: 24px;
}

.modal-header {
	border: none;
}

input[type="checkbox"] {
	border: 2px solid var(--color-border);
	width: 20px;
	height: 20px;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	margin-right: 15px;
	flex: 0 0 auto;
	position: relative;
}

input[type="checkbox"]:checked:before {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	background-color: var(--color-border);
}

.wpcf7-acceptance {
	font-size: 14px;
	color: var(--color-text);
}

.wpcf7-acceptance a:hover {
	color: var(--color-border);
}

.wpcf7-acceptance .wpcf7-list-item-label {
	margin-bottom: 16px;
}

.wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item label {
	display: flex;
}

.wpcf7-not-valid-tip,
.wpcf7 form .wpcf7-response-output {
	display: none;
}