@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 250 1000;
  src: url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff-variations');
}

@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 300;
  src: url('/static/assets/fonts/TildaSans-VF.eot');
  src: url('/static/assets/fonts/TildaSans-VF.eot?#iefix') format('embedded-opentype'),
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff');
}
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 400;
  src: url('/static/assets/fonts/TildaSans-VF.eot');
  src: url('/static/assets/fonts/TildaSans-VF.eot?#iefix') format('embedded-opentype'),
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff-variations'),  
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff');
}
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 500;
  src: url('/static/assets/fonts/TildaSans-VF.eot');
  src: url('/static/assets/fonts/TildaSans-VF.eot?#iefix') format('embedded-opentype'),
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff-variations'),  
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff');
}
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 600;
  src: url('/static/assets/fonts/TildaSans-VF.eot');
  src: url('/static/assets/fonts/TildaSans-VF.eot?#iefix') format('embedded-opentype'),
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff-variations'),  
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff');
}
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 700;
  src: url('/static/assets/fonts/TildaSans-VF.eot');
  src: url('/static/assets/fonts/TildaSans-VF.eot?#iefix') format('embedded-opentype'),
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff-variations'),  
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff');
}
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 800;
  src: url('/static/assets/fonts/TildaSans-VF.eot');
  src: url('/static/assets/fonts/TildaSans-VF.eot?#iefix') format('embedded-opentype'),
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff-variations'),  
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff');
}
@font-face {
  font-family: 'TildaSans';
  font-style: normal;
  font-weight: 900;
  src: url('/static/assets/fonts/TildaSans-VF.eot');
  src: url('/static/assets/fonts/TildaSans-VF.eot?#iefix') format('embedded-opentype'),
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2-variations'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff-variations'),  
       url('/static/assets/fonts/TildaSans-VF.woff2') format('woff2'),
       url('/static/assets/fonts/TildaSans-VF.woff') format('woff');
}


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'TildaSans', Arial, sans-serif;
}

:root {
	--bg-main: #1c1c1c;
	--bg-elev: #1c1c1c;
	--bg-card: #232323;
	--line: rgba(255, 255, 255, 0.1);
	--text-main: #ffffff;
	--text-soft: rgba(255, 255, 255, 0.78);
	--accent: #5bff89;
	--accent-strong: #32f76e;
}

body {
	background: var(--bg-main);
	color: var(--text-main);
}

.container {
	max-width: 1160px;
	width: 100%;
	padding: 0 24px;
	margin: 0 auto;
}

.hero {
	background: var(--bg-main);
	padding: 86px 0 64px;
}

.hero__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
	align-items: center;
	gap: 48px;
}

.hero__content {
	max-width: 660px;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--line);
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.04);
}

.hero__eyebrow-icon {
	width: 18px;
	height: 18px;
	display: block;
	border-radius: 6px;
	background: #1f2126;
	padding: 2px;
	object-fit: cover;
}

.hero__title {
	font-size: 54px;
	line-height: 1.06;
	font-weight: 700;
	margin-top: 18px;
	color: #ffffff;
}

.hero__subtitle {
	font-size: 22px;
	color: var(--text-soft);
	max-width: 620px;
	margin-top: 16px;
	line-height: 1.4;
	font-weight: 400;
}

.hero__trust {
	margin-top: 22px;
}

.hero__trust-text {
	font-size: 16px;
	color: var(--text-soft);
}

.hero__trust-rating {
	margin-top: 4px;
	font-size: 22px;
	letter-spacing: 0.12em;
	color: #ffd85e;
}

.hero__points {
	margin-top: 20px;
	list-style: none;
	display: grid;
	gap: 10px;
}

.hero__point {
	position: relative;
	padding-left: 26px;
	font-size: 18px;
	line-height: 1.35;
	color: #ffffff;
}

.hero__point::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent);
}

.hero__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.hero__visual--mobile {
	display: none;
}

.hero__img {
	width: min(100%, 250px);
	height: auto;
	object-fit: contain;
	object-position: center;
	display: block;
	filter: none;
	position: relative;
	z-index: 1;
}

.hero__buttons {
	display: flex;
	gap: 14px;
	justify-content: flex-start;
	margin-top: 34px;
	flex-wrap: wrap;
}

.hero__button {
	min-width: 190px;
	height: 58px;
	border-radius: 999px;
	background: linear-gradient(120deg, #79ff9f, #53fb83 65%, #32f76e);
	color: #0f1712;
	border: 1px solid rgba(137, 255, 175, 0.65);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	padding: 6px 18px;
	box-shadow: 0 10px 24px rgba(50, 247, 110, 0.28);
}

.hero__button:hover {
	transform: translateY(-2px);
	opacity: 0.96;
	box-shadow: 0 14px 28px rgba(50, 247, 110, 0.34);
}

.hero__button-top {
	font-size: 11px;
	line-height: 1;
	font-weight: 600;
	opacity: 0.85;
}

.hero__button-label {
	font-size: 16px;
	line-height: 1.1;
	font-weight: 700;
	margin-top: 3px;
}

.section {
	padding: 78px 0 84px;
	background: var(--bg-elev);
}

.section--accent {
	background: var(--bg-elev);
}

.section__title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	color: #ffffff;
}

.section__subtitle {
	margin: 12px auto 0;
	max-width: 560px;
	text-align: center;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.45;
	color: var(--text-soft);
}

.why__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 34px;
}

.why-item {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 12px;
	flex-direction: column;
	background: #232323;
	padding: 22px 20px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-item__icon {
	display: block;
	width: 44px;
	height: 44px;
	opacity: 0.92;
}

.why-item__title {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: #ffffff;
}

.why-item__text {
	font-size: 15px;
	line-height: 1.45;
	color: var(--text-soft);
	font-weight: 400;
}


.tariff-picker {
	max-width: 740px;
	margin: 28px auto 0;
	background: #232323;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.cta-tariff__label {
	max-width: 560px;
	margin: 34px auto 16px;
	text-align: left;
}

.cta-tariff__controls {
	max-width: 560px;
	margin: 0 auto;
}

.tariff-picker__label {
	display: block;
	font-size: 14px;
	color: var(--text-soft);
	margin-bottom: 10px;
}

.tariff-picker__controls {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.tariff-picker__select {
	height: 52px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: #171717;
	color: #ffffff;
	font-size: 16px;
	padding: 0 14px;
	outline: none;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
	transition: border-color 0.2s ease;
}

.tariff-picker__select:focus {
	border-color: rgba(255, 255, 255, 0.32);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.tariff-picker__button {
	padding: 14px 28px;
	color: #0f1712;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	background: linear-gradient(120deg, #79ff9f, #53fb83 65%, #32f76e);
	border: 1px solid rgba(137, 255, 175, 0.65);
	box-shadow: 0 10px 24px rgba(50, 247, 110, 0.28);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	width: 100%;
	text-align: center;
	margin-top: 12px;
}

.tariff-picker__button:hover {
	transform: translateY(-2px);
	opacity: 0.96;
	box-shadow: 0 14px 28px rgba(50, 247, 110, 0.34);
}


.footer {
	background: var(--bg-main);
	padding: 56px 0;
}

.cta-strip {
	padding: 12px 0 34px;
	background: var(--bg-main);
}


.quick-start {
	padding: 18px 0 28px;
	background: var(--bg-main);
}

.quick-start__title {
	text-align: center;
	font-size: 34px;
	line-height: 1.15;
	font-weight: 700;
	color: #ffffff;
}

.quick-start__steps {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	position: relative;
}

.quick-start__item {
	position: relative;
	padding: 8px 10px 8px 0;
}

.quick-start__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 18px;
	right: -9px;
	width: 18px;
	height: 1px;
	background: rgba(255, 255, 255, 0.24);
}

.quick-start__num {
	display: inline-flex;
	min-width: 40px;
	height: 20px;
	border-radius: 0;
	align-items: center;
	justify-content: flex-start;
	background: transparent;
	color: #8cffb0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.quick-start__num::after {
	content: "";
	display: inline-block;
	width: 26px;
	height: 1px;
	background: rgba(140, 255, 176, 0.5);
	margin-left: 8px;
}

.quick-start__item-title {
	margin-top: 12px;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 600;
	color: #ffffff;
}

.quick-start__item-text {
	margin-top: 7px;
	font-size: 14px;
	line-height: 1.45;
	color: var(--text-soft);
}

.cta-strip__card {
	max-width: 980px;
	margin: 0 auto;
	background: #242529;
	border-radius: 30px;
	padding: 42px 24px;
	text-align: center;
}

.cta-strip__icon {
	width: 40px;
	height: 40px;
	display: block;
	margin: 0 auto 14px;
	opacity: 0.9;
}

.cta-strip__title {
	font-size: 40px;
	line-height: 1.15;
	font-weight: 700;
	color: #ffffff;
}

.cta-strip__text {
	margin-top: 12px;
	font-size: 18px;
	line-height: 1.45;
	color: var(--text-soft);
}

.cta-strip__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 230px;
	height: 54px;
	margin-top: 24px;
	border-radius: 999px;
	background: linear-gradient(120deg, #79ff9f, #53fb83 65%, #32f76e);
	color: #0f1712;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid rgba(137, 255, 175, 0.65);
	box-shadow: 0 10px 24px rgba(50, 247, 110, 0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cta-strip__button:hover {
	transform: translateY(-2px);
	opacity: 0.96;
	box-shadow: 0 14px 28px rgba(50, 247, 110, 0.34);
}

.footer .container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	text-align: center;
}

.footer__img {
	width: 108px;
	height: 108px;
	display: block;
}

.footer__title {
	font-size: 30px;
	font-weight: 700;
	margin-top: 14px;
	margin-bottom: 10px;
	color: #ffffff;
}

.footer__subtitle {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--text-soft);
}

.footer__link-text {
	font-size: 17px;
	color: var(--text-main);
	text-decoration: none;
	line-height: 1.55;
	opacity: 0.95;
}

.footer__link-text + .footer__link-text {
	margin-top: 3px;
}

.footer__links {
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.footer__link {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.4;
	text-decoration: none;
	padding: 6px 0;
}

.footer__requisites {
	font-weight: 300;
	font-size: 14px;
	text-align: center;
	line-height: 1.7;
	margin-top: 16px;
	opacity: 0.7;
}

.footer__company-link {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
}

a {
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	opacity: 0.92;
}

@media screen and (max-width: 960px) {
	.hero {
		padding: 64px 0 58px;
	}

	.hero__layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.hero__content {
		max-width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
	}

	.hero__eyebrow {
		align-self: center;
		width: fit-content;
	}

	.hero__visual:not(.hero__visual--mobile) {
		display: none;
	}

	.hero__visual--mobile {
		display: flex;
		margin-top: 16px;
		order: 4;
	}

	.hero__buttons {
		order: 5;
		margin-top: 14px;
	}

	.hero__trust {
		order: 6;
	}

	.hero__points {
		justify-items: center;
		order: 7;
	}

	.hero__point {
		text-align: left;
		max-width: 520px;
	}

	.hero__buttons {
		justify-content: center;
	}

	.hero__img {
		width: min(46vw, 190px);
		height: auto;
	}

	.section {
		padding: 62px 0 70px;
	}

	.why__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cta-strip__title {
		font-size: 32px;
	}

	.quick-start__steps {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.quick-start__title {
		font-size: 28px;
	}

	.quick-start__item {
		padding: 0 0 10px 0;
	}

	.quick-start__item:not(:last-child)::after {
		top: auto;
		right: auto;
		left: 20px;
		bottom: -8px;
		width: 1px;
		height: 12px;
	}
}

@media screen and (max-width: 768px) {
	.container {
		padding: 0 18px;
	}

	.hero__title {
		font-size: 40px;
	}

	.hero__subtitle {
		font-size: 18px;
	}

	.hero__trust-text {
		font-size: 14px;
	}

	.hero__point {
		font-size: 16px;
	}

	.hero__button {
		min-width: 148px;
		height: 46px;
		padding: 4px 12px;
	}

	.hero__button-top {
		font-size: 9px;
	}

	.hero__button-label {
		font-size: 13px;
		margin-top: 2px;
	}

	.section__title {
		font-size: 30px;
	}

	.section__subtitle {
		font-size: 16px;
	}

	.why__list {
		grid-template-columns: 1fr;
	}

	.cta-strip {
		padding: 4px 0 26px;
	}

	.quick-start {
		padding: 0 0 20px;
	}

	.quick-start__title {
		font-size: 24px;
	}

	.quick-start__item-title {
		font-size: 17px;
	}

	.cta-strip__card {
		padding: 30px 18px;
		border-radius: 22px;
	}

	.cta-strip__title {
		font-size: 26px;
	}

	.cta-strip__text {
		font-size: 15px;
	}

	.cta-strip__button {
		min-width: 190px;
		height: 48px;
		font-size: 14px;
	}

	.tariff-picker {
		padding: 16px;
	}

	.tariff-picker__controls {
		grid-template-columns: 1fr;
	}

	.tariff-picker__button {
		width: 100%;
		text-align: center;
	}

}

.container-text {
	max-width: 800px;
	padding: 64px 20px;
	margin: 0 auto;
}

.container-text__title {
	font-size: 28px;
	text-align: center;
	margin-top: 24px;
	color: var(--accent);
}

.container-text__text {
	font-size: 20px;
	line-height: 1.55;
	font-weight: 300;
	color: var(--text-soft);
}

@media screen and (max-width: 1200px) {
	.container-text__text {
		font-size: 18px;
	}
}
@media screen and (max-width: 640px) {
	.container-text {
		padding: 32px 20px;
	}

	.container-text__title {
		font-size: 24px;
	}

	.container-text__text {
		font-size: 16px;
		line-height: 1.45;
	}
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.72);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 1;
	opacity: 0;
	pointer-events: none;
}

.modal--active {
	opacity: 1;
	pointer-events: all;
	transition: opacity .3s ease-in-out;
}

.is-hidden {
	display: none !important;
}

.modal__title {
	font-size: 48px;
	margin-bottom: 12px;
	line-height: 1.08;
	font-weight: 700;
	text-align: center;
	color: #ffffff;
}

.modal__subtitle {
	text-align: center;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.55;
	margin-bottom: 26px;
	color: var(--text-soft);
}

.modal__step {
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #8cffb0;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.dropdown {
	position: relative;
	margin-bottom: 24px;
}

.dropdown::after {
	content: ' ';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	border-color: var(--accent) transparent transparent transparent;
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
}

.dropdown > select {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 5px;
	box-sizing: border-box;
	cursor: pointer;
	height: 60px;
	padding: 0 45px 0 20px;
	font-size: 16px;
	line-height: 1.33;
	outline: 0;
	background: rgba(8, 16, 13, 0.8);
	color: var(--text-main);
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
}

.modal__input {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 16px;
	box-sizing: border-box;
	cursor: pointer;
	height: 74px;
	padding: 0 22px;
	font-size: 18px;
	line-height: 1.33;
	outline: 0;
	margin-bottom: 16px;
	background: #27272b;
	color: var(--text-main);
}

.modal__input::placeholder {
	color: rgba(255, 255, 255, 0.38);
}

.modal__field-label {
	display: block;
	margin: 2px 0 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
}

.modal__platforms {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 18px;
}

.modal__platform-btn {
	height: 52px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-decoration: none;
	font-size: 12px;
	font-weight: 700;
	color: #0f1712;
	border: 1px solid rgba(137, 255, 175, 0.65);
	background: linear-gradient(120deg, #79ff9f, #53fb83 65%, #32f76e);
	box-shadow: 0 10px 24px rgba(50, 247, 110, 0.2);
}

.modal__platform-top {
	font-size: 9px;
	line-height: 1;
	opacity: 0.85;
}

.modal__platform-label {
	font-size: 13px;
	line-height: 1.1;
	margin-top: 2px;
}

.modal__platform-btn:hover {
	opacity: 0.96;
	transform: translateY(-1px);
}

.modal__quiz-form.is-hidden {
	display: none;
}

.modal__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 20px;
}

.modal__actions--single {
	justify-content: flex-end;
}

.checkbox__input {
	position: absolute;
	opacity: 0;
	width: 20px;
	height: 20px;
}

.checkbox__input:checked + .checkbox__box::after {
	content: '';
	position: absolute;
	display: block;
	left: 6px;
	top: 2px;
	width: 3px;
	height: 8px;
	border: solid var(--accent);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox__box {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid var(--line);
	position: relative;
	vertical-align: middle;
}

.checkbox {
	display: inline-block;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 300;
	cursor: pointer;
	margin-bottom: 24px;
	color: var(--text-soft);
}

.checkbox a {
	text-decoration: none;
	color: var(--accent);
}

.checkbox__text {
	display: inline-block;
}

.modal__content {
	padding: 46px 48px;
	max-width: 560px;
	background: linear-gradient(180deg, #0d1412 0%, #101917 100%);
	border: 1px solid var(--line);
	border-radius: 14px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.48);
	display: flex;
	flex-direction: column;
}

.modal__content--quiz {
	max-width: 660px;
	background: linear-gradient(180deg, #151515 0%, #1b1b1b 100%);
	border: 1px solid rgba(137, 255, 175, 0.22);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.54);
}

.modal__close {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.modal__button {
	padding: 16px 32px;
	color: #07140c;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 999px;
	background: linear-gradient(120deg, #79ff9f, #53fb83 65%, #32f76e);
	border: 1px solid rgba(137, 255, 175, 0.65);
	box-shadow: 0 10px 24px rgba(50, 247, 110, 0.28);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.modal__button--next {
	background: #2b2e34;
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: none;
	color: #d5fce2;
}

.modal__button--next:hover {
	box-shadow: none;
	background: #32363d;
}

.modal__button--ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: none;
	color: #ffffff;
}

.modal__button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.modal__button:not(.modal__button--next):hover {
	transform: translateY(-2px);
	opacity: 0.96;
	box-shadow: 0 14px 28px rgba(50, 247, 110, 0.34);
}

body.no-scroll {
	overflow: hidden;
	margin-right: 15px;
}

@media screen and (max-width: 640px) {
	.modal__content {
		padding: 20px;
		max-width: 100vw;
		width: 100%;
		height: 100%;
	}
	.modal__close {
		top: 0;
		right: 0;
	}
	.modal {
		padding: 50px 0px 0px 0px;
	}
	.modal__title {
		font-size: 40px;
	}
	.modal__subtitle {
		font-size: 15px;
	}
	.checkbox {
		font-size: 12px;
		line-height: 1.45;
	}
	.modal__input {
		font-size: 16px;
		height: 62px;
	}
	.modal__actions {
		flex-direction: column-reverse;
	}
	.modal__actions .modal__button {
		width: 100%;
	}
	.dropdown > select {
		height: 50px;
		font-size: 16px;
	}
}