:root {
	--primary: #7f11f4;
	--primary-dark: #560fb2;
	--alt1: #085e20;
	--alt2: #11f558;
	--alt3: #c67810;
	--alt4: #f59811;
}

body.whatsapp-landing {
	background: radial-gradient(circle at top, rgba(127, 17, 244, 0.35),
		transparent 55%), var(--primary-dark);
	color: #ffffff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	padding: 3rem 1.5rem;
	text-align: center;
}

.whatsapp-landing header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.whatsapp-landing header img {
	width: 120px;
	height: auto;
}

.whatsapp-landing header h1 {
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: 700;
	max-width: 680px;
}

.whatsapp-landing .feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
	font-size: 1.05rem;
}

.whatsapp-landing .feature-list li::before {
	content: "✓";
	color: var(--alt2);
	margin-right: 0.5rem;
}

.whatsapp-landing .cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: var(--primary);
	color: #ffffff;
	font-weight: 700;
	font-size: 1.1rem;
	padding: 0.95rem 1.75rem;
	border-radius: 0.85rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-landing .cta-button:hover, .whatsapp-landing .cta-button:focus
	{
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(127, 17, 244, 0.35);
	color: #ffffff;
}

.whatsapp-landing .cta-button img {
	width: 28px;
	height: 28px;
}

.whatsapp-landing .store-link img {
	width: 160px;
	height: auto;
}

.whatsapp-landing #slider {
	width: min(100%, 720px);
	height: auto;
	min-height: 140px;
	position: relative;
	overflow: hidden;
	border-radius: 0.85rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.whatsapp-landing .slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	font-size: 1.05rem;
	font-weight: 600;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}

.whatsapp-landing .slide.visible {
	opacity: 1;
}

@media ( max-width : 576px) {
	body.whatsapp-landing {
		padding: 2.5rem 1.25rem;
	}
	.whatsapp-landing header h1 {
		font-size: 1.75rem;
	}
	.whatsapp-landing .cta-button {
		width: 100%;
	}
}