.v247-home-seo {
	padding: 50px 0 46px;
	background: var(--v247-site-surface-soft);
}

.v247-home-seo__heading {
	max-width: 900px;
	margin: 0 auto 26px;
	text-align: center;
}

.v247-home-seo__eyebrow {
	display: inline-block;
	margin-bottom: 9px;
	color: var(--v247-accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.v247-home-seo__heading h1 {
	margin: 0;
	color: var(--v247-heading-text);
	font-family: var(--v247-font-family);
	font-size: clamp(30px, 3.2vw, var(--v247-h1-home));
	font-weight: var(--v247-heading-weight);
	line-height: 1.15;
}

.v247-home-seo__heading h1::after {
	content: "";
	display: block;
	width: min(680px, 82%);
	height: 3px;
	margin: 16px auto 0;
	border-radius: 999px;
	background: var(--v247-accent);
	opacity: 0.72;
}

.v247-home-seo__card {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: 34px;
	align-items: center;
	padding: 26px;
	border: 1px solid var(--v247-panel-border);
	border-radius: 20px;
	background: var(--v247-panel-bg);
	box-shadow: var(--v247-panel-shadow);
}

.v247-home-seo__media,
.v247-home-seo__content {
	min-width: 0;
}

.v247-home-seo__video {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 18px;
	background: #0d1a14;
	cursor: pointer;
}

.v247-home-seo__video img,
.v247-home-seo__image,
.v247-home-seo__player,
.v247-home-seo__player iframe,
.v247-home-seo__player video {
	display: block;
	width: 100%;
	height: 100%;
}

.v247-home-seo__video img,
.v247-home-seo__image {
	object-fit: cover;
}

.v247-home-seo__video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .38));
}

.v247-home-seo__play {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 68px;
	border: 3px solid rgba(255, 255, 255, .9);
	border-radius: 50%;
	background: rgba(13, 146, 88, .88);
	transform: translate(-50%, -50%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	transition: transform .2s ease, background-color .2s ease;
}

.v247-home-seo__play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 52%;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 17px solid #fff;
	transform: translate(-40%, -50%);
}

.v247-home-seo__video:hover .v247-home-seo__play,
.v247-home-seo__video:focus-visible .v247-home-seo__play {
	background: var(--v247-accent-hover);
	transform: translate(-50%, -50%) scale(1.06);
}

.v247-home-seo__video-label {
	position: absolute;
	z-index: 2;
	left: 18px;
	bottom: 16px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(10, 43, 29, .78);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}

.v247-home-seo__player {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 18px;
	background: #000;
}

.v247-home-seo__player iframe,
.v247-home-seo__player video {
	border: 0;
	object-fit: contain;
}

.v247-home-seo__intro {
	color: var(--v247-text);
	font-size: 16px;
	line-height: 1.75;
}

.v247-home-seo__intro p {
	margin: 0 0 12px;
}

.v247-home-seo__features {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.v247-home-seo__features li {
	position: relative;
	margin: 0;
	padding-left: 28px;
	color: var(--v247-text);
	font-size: 16px;
	line-height: 1.55;
}

.v247-home-seo__features li::before {
	content: "✓";
	position: absolute;
	top: 1px;
	left: 0;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--v247-accent-soft);
	color: var(--v247-accent);
	font-size: 13px;
	font-weight: 800;
}

.v247-home-seo__actions {
	margin-top: 22px;
	text-align: center;
}

.v247-home-seo__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 26px;
	border-radius: 999px;
	background: var(--v247-accent);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(13, 146, 88, .14);
	transition: transform .2s ease, background-color .2s ease;
}

.v247-home-seo__button:hover,
.v247-home-seo__button:focus-visible {
	background: var(--v247-accent-hover);
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.v247-home-seo {
		padding: 40px 0;
	}

	.v247-home-seo__card {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 575px) {
	.v247-home-seo {
		padding: 32px 0 34px;
	}

	.v247-home-seo__heading {
		margin-bottom: 20px;
		text-align: left;
	}

	.v247-home-seo__heading h1 {
		font-size: var(--v247-h1-home-mobile);
	}

	.v247-home-seo__heading h1::after {
		width: 100%;
		margin-left: 0;
	}

	.v247-home-seo__card {
		gap: 20px;
		padding: 14px;
		border-radius: 18px;
	}

	.v247-home-seo__video,
	.v247-home-seo__player,
	.v247-home-seo__image {
		border-radius: 14px;
	}

	.v247-home-seo__play {
		width: 58px;
		height: 58px;
	}

	.v247-home-seo__intro,
	.v247-home-seo__features li {
		font-size: 15px;
	}
}
