*,
*::after,
*::before {
	border: 0px;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;

	transition: background 0.1s ease-in-out, border 0.1s ease-in-out, box-shadow 0.1s ease-in-out, transform 0.1s ease-in-out, color 0.1s ease-in-out, opacity 0.1s ease-in-out, fill 0.1s ease-in-out, stroke 0.1s ease-in-out;
}

*:focus,
*:active {
	outline: none;
	text-decoration: none;
}

html,
body {
	background: #F4F5FF;

	color: #583200;

	font-family: "Roboto", sans-serif;
	font-weight: 500;

	overflow-x: hidden;
	min-height: 100vh;
	width: 100%;
}

a,
a:hover,
a:visited {
	text-decoration: none;
}

input,
button,
textarea {
	background: transparent;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
}

button {
	cursor: pointer;
}

ul li {
	list-style: none;
}

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

.top-cta {
	background: #ffffff;
	border-radius: 16px;
	padding: 24px;
	max-width: 420px;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.top-cta__title {
	text-align: center;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}

.top-cta__buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 14px;
}

.cta-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 14px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	transition: .2s;
}

.cta-btn.telegram {
	background: #2AABEE;
}

.cta-btn.max {
	background: #000;
}

.cta-btn.disabled {
	opacity: .4;
	pointer-events: none;
}

.top-cta__policy {
	display: flex;
	gap: 8px;
	font-size: 14px;
	line-height: 1.4;
	cursor: pointer;
}

/* Кнопки мессенджеров */
.top-cta__buttons .cta-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 14px 18px;
}

/* Контейнер иконки */
.top-cta__buttons .cta-btn img {
	width: 22px;
	height: 22px;
	min-width: 22px;
	object-fit: contain;
}

/* Текст в кнопке */
.top-cta__buttons .cta-btn span {
	white-space: nowrap;
}
/* Блок выгоды */
.cta-benefit {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: #f3f7ff;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 1.4;
}

/* Зеленый кружок */
.cta-benefit__dot {
	width: 10px;
	height: 10px;
	margin-top: 6px;
	border-radius: 50%;
	background: #28c76f;
	flex-shrink: 0;
}

/* Подпись под кнопками */
.cta-note {
	margin-top: 12px;
	text-align: center;
	font-size: 13px;
	line-height: 1.4;
	color: #6b7280;
}
/* Политика конфиденциальности */
.form-policy {
	margin-top: 10px;
}

.form-policy__label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	line-height: 1.4;
	color: #9aa0a6;
	cursor: pointer;
}

/* Чекбокс */
.form-policy__label input[type="checkbox"] {
	width: 14px;
	height: 14px;
	margin-top: 2px;
	accent-color: #4f7cff;
}

/* Ссылка */
.form-policy__label a {
	color: #6b7cff;
	text-decoration: none;
}

.form-policy__label a:hover {
	text-decoration: underline;
}
