html,
body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #f6faf7;
	color: #1e2a23;
}
.container {
	max-width: 480px;
	margin: 32px auto 0 auto; /* уменьшенный отступ сверху */
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	padding: 28px 24px 24px 24px; /* уменьшенный padding сверху */
	text-align: center;
	position: relative;
	overflow: hidden;
}
.logo {
	width: 86px;
	height: 86px;
	margin-bottom: 16px;
	margin-top: 2px;
	border-radius: 16px;
	box-shadow: 0 2px 16px rgba(34, 197, 94, 0.11);
	background: #eaf6fd;
	display: inline-block;
	filter: hue-rotate(310deg) saturate(1.8) brightness(1);
}
h1 {
	font-size: 2rem;
	margin: 0 0 14px 0;
	letter-spacing: -1px;
	color: #059669;
	font-weight: 800;
	text-shadow: 0 2px 10px #d1fae570;
}
.desc {
	font-size: 1.08rem;
	color: #374151;
	margin-bottom: 26px;
	line-height: 1.5;
}
.video-platforms {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 19px;
}
.video-platform {
	width: 40px;
	height: 40px;
	background: #ecfdf5;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: box-shadow 0.16s;
	box-shadow: 0 2px 8px rgba(34, 197, 94, 0.09);
}
.video-platform:hover {
	box-shadow: 0 3px 14px rgba(21, 128, 61, 0.16);
	background: #dcfce7;
}
.video-platform svg {
	width: 25px;
	height: 25px;
	display: block;
}
.cta-btn {
	display: inline-block;
	margin-top: 12px;
	padding: 14px 36px;
	background: linear-gradient(90deg, #059669 0%, #22c55e 100%);
	color: #fff;
	font-size: 1.09rem;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(34, 197, 94, 0.12);
	transition: background 0.16s, box-shadow 0.16s;
}
.cta-btn:hover {
	background: linear-gradient(90deg, #047857 0%, #16a34a 100%);
	box-shadow: 0 3px 16px rgba(34, 197, 94, 0.18);
}
.features {
	text-align: left;
	margin: 28px 0 0 0;
	padding: 0;
	list-style: none;
	font-size: 1rem;
	color: #374151;
}
.features li {
	margin-bottom: 11px;
	padding-left: 23px;
	position: relative;
}
.features li:before {
	content: '▶';
	color: #059669;
	font-weight: bold;
	position: absolute;
	left: 0;
	font-size: 1.09em;
}
/* Волна сверху для современного акцента */
.wave {
	position: absolute;
	top: -30px;
	left: -60px;
	width: 540px;
	height: 70px;
	z-index: 0;
	opacity: 0.1;
	pointer-events: none;
}
@media (max-width: 600px) {
	.container {
		padding: 15px 3px 10px 3px;
		margin: 7px 1px;
	}
	h1 {
		font-size: 1.2rem;
	}
	.logo {
		width: 54px;
		height: 54px;
	}
}
