.cm1-home-video-section
{
	position: relative;
	padding: 4rem 0;
	background-color: #ffffff;
}

.cm1-home-video-section .cm1-home-video-badge
{
	display: inline-block;
	padding: 0.375rem 0.875rem;
	margin-bottom: 1rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #1890ff;
	background-color: rgba(24, 144, 255, 0.1);
	border-radius: 999px;
}

.cm1-home-video-section .cm1-home-video-title
{
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	margin-bottom: 0.75rem;
	line-height: 1.2;
}

.cm1-home-video-section .cm1-home-video-title .cm1-home-video-gradient
{
	background: linear-gradient(90deg, #1890ff, #ec328c);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.cm1-home-video-section .cm1-home-video-subtitle
{
	font-size: 1.125rem;
	color: #6b7280;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.cm1-home-video-wrapper
{
	position: relative;
	max-width: 1100px;
	margin: 2.5rem auto 0;
	padding: 0 1rem;
}

.cm1-home-video-player
{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	background-color: #f8f9fa;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(17, 24, 39, 0.18), 0 8px 16px rgba(17, 24, 39, 0.08);
	cursor: pointer;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cm1-home-video-player:hover
{
	transform: translateY(-4px);
	box-shadow: 0 28px 72px rgba(17, 24, 39, 0.22), 0 12px 24px rgba(17, 24, 39, 0.10);
}

.cm1-home-video-poster
{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.cm1-home-video-play-overlay
{
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
	transition: background 0.35s ease;
}

.cm1-home-video-player:hover .cm1-home-video-play-overlay
{
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.cm1-home-video-play-btn
{
	position: relative;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.cm1-home-video-player:hover .cm1-home-video-play-btn
{
	transform: scale(1.08);
	background: #1890ff;
}

.cm1-home-video-play-btn::before
{
	content: "";
	position: absolute;
	inset: -12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	animation: cm1HomeVideoPulse 2.4s ease-out infinite;
	z-index: 0;
}

.cm1-home-video-play-btn i
{
	position: relative;
	z-index: 1;
	font-size: 2rem;
	color: #1890ff;
	margin-left: 6px; /* optical centering for play triangle */
	transition: color 0.25s ease;
}

.cm1-home-video-player:hover .cm1-home-video-play-btn i
{
	color: #ffffff;
}

@keyframes cm1HomeVideoPulse
{
	0% { transform: scale(1); opacity: 0.6; }
	70% { transform: scale(1.45); opacity: 0; }
	100% { transform: scale(1.45); opacity: 0; }
}

.cm1-home-video-duration
{
	position: absolute;
	bottom: 16px;
	right: 16px;
	padding: 0.25rem 0.625rem;
	background: rgba(0, 0, 0, 0.75);
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 600;
	border-radius: 6px;
	backdrop-filter: blur(4px);
}

.cm1-home-video-player iframe
{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.cm1-home-video-description
{
	max-width: 960px;
	margin: 2.5rem auto 0;
	padding: 0 1rem;
}

.cm1-home-video-description .cm1-home-video-lead
{
	font-size: 1.0625rem;
	line-height: 1.75;
	color: #374151;
	text-align: center;
	margin-bottom: 2rem;
}

.cm1-home-video-features
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}

.cm1-home-video-feature
{
	display: flex;
	align-items: flex-start;
	padding: 1.25rem;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cm1-home-video-feature:hover
{
	transform: translateY(-3px);
	border-color: #1890ff;
	box-shadow: 0 12px 24px rgba(24, 144, 255, 0.08);
}

.cm1-home-video-feature-icon
{
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.875rem;
	background: rgba(24, 144, 255, 0.1);
	color: #1890ff;
	font-size: 1.0625rem;
}

.cm1-home-video-feature-content h4
{
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: #111827;
}

.cm1-home-video-feature-content p
{
	font-size: 0.875rem;
	color: #6b7280;
	margin-bottom: 0;
	line-height: 1.5;
}

@media (max-width: 767.98px)
{
	.cm1-home-video-section
	{
		padding: 2.5rem 0;
	}

	.cm1-home-video-play-btn
	{
		width: 72px;
		height: 72px;
	}

	.cm1-home-video-play-btn i
	{
		font-size: 1.5rem;
	}

	.cm1-home-video-duration
	{
		bottom: 10px;
		right: 10px;
		font-size: 0.75rem;
	}
}
