* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
}

body {
	background: #1a1a1a url('bg.jpeg') no-repeat center center fixed;
	background-size: cover;
	color: #fff;
	overflow-x: hidden;
	position: relative;
	min-height: 100vh;
}

h1 {
	color: #fff;
	font-size: 3.5em;
	margin-bottom: 36px;
}

p {
	color: #fff;
	font-size: 1.2em;
}

.funnel-container {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin: 0 auto;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.step {
	display: none;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	min-height: 100vh;
}

.step-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px 20px 20px;
	width: 100%;
	min-height: 100vh;
}

#step1 p, #step2 p, #step3 p, #step4 p, #step5 p, #step6 p {margin-bottom: 30px;}

.step p { font-size: 1.6rem; margin-bottom: 16px;}

.step-count { font-size: 1.6rem; margin-bottom: 10px !important}

.services, .options {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	width: 100%;
}

.service-card, .option {
	padding: 20px;
	border-radius: 10px;
	cursor: pointer;
	transition: transform 0.3s, background 0.3s, color 0.3s;
	width: 220px;
	text-align: center;
}



.option {
	background-color: #E60914;
	font-size: 1.2rem;
	font-weight: bold;
	border-radius: 5px;
	padding: 20px;
}

.service-card.grow {
	animation: growShrink 0.6s ease forwards;
}

@keyframes growShrink {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.option:hover {
	background-color: #C11119;
	transition: background-color 1000ms linear;
}

.service-card.selected {
	animation: none;
}

.service-icon {
	display: block;
}

.option-icon {
	font-size: 1.5em;
	margin-right: 10px;
}

.cta-button {
	background: #E60914;
	color: #fff;
	text-decoration: none;
	border: none;
	padding: 20px 30px;
	font-size: 1.2em;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
	margin-top: 20px;
	position: relative; /* For pseudo-element positioning */
	overflow: hidden; /* Contain the gloss */
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,    /* Start: transparent */
		rgba(255, 255, 255, 0.3) 100% /* End: 30% opacity white */
	);
	background-size: 20px 100%;        /* 20px wide gradient */
	background-repeat: no-repeat;
	background-position: -20px 0;      /* Start off-screen left */
	animation: glossSlide 4s linear infinite; /* 2s duration */
	transform: skewX(-15deg);          /* Skew only the gloss */
	z-index: 1;                        /* Above button background, below text */
}

.cta-button:hover {
	background: #E60914;
	transform: scale(1.05);
}

@keyframes glossSlide {
	0% { background-position: -20px 0; }
	25% { background-position: calc(100% + 20px) 0; } /* 1s mark */
	100% { background-position: calc(100% + 20px) 0; } /* Hold for 3s */
}

.processing .spinner {
	width: 50px;
	height: 50px;
	border: 5px solid #FFFFFF;
	border-top: 5px solid transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.card-container {
	perspective: 1000px;
	margin: 20px 0;
	display: flex;
	justify-content: center;
	align-items: center; /* Center vertically too */
	width: 200px; /* Match card width */
	height: 120px; /* Match card height */
}

.orange {background-color: #FF8C00 !important;color:#fff !important; }
.red {background-color: #FF3008 !important;color:#fff !important; }
.green {background-color: #40C165 !important;color:#000 !important; }
.yellow {background-color: #FFE13B !important;color:#000 !important; }

.card {
	position: relative;
	width: 200px; /* Match your image width */
	height: 120px; /* Match your image height */
	transform-style: preserve-3d;
	animation: rotateCard 4s linear infinite;
	transform-origin: 50% 50%; /* Pivot at card center */
	box-shadow: 0 2px 25px 0 rgba(0,0,0,0.50);
}

.card-face {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
}

.card-front {
	z-index: 2;
}

.card-back {
	transform: rotateY(180deg);
}

@keyframes rotateCard {
	0% { transform: rotateY(0deg); }
	100% { transform: rotateY(360deg); }
}

@media (max-width: 600px) {
	.card-container {
		width: 150px;
		height: 90px;
	}
	.card {
		width: 150px;
		height: 90px;
	}
}

.social-proof {
	position: fixed;
	bottom: 20px;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 0.8em;
	z-index: 1;
	display: block; /* Ensure it’s visible by default */
}


@media (max-width: 600px) {
	h1 { font-size: 1.8em; }
	p { font-size: 1em; }
	.services {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.service-card {
		width: 100%;
		font-size: 0.8rem;
	}
	.options {
		flex-direction: column;
		align-items: center;
	}
	.option {
		width: 100%;
		max-width: 300px;
		padding: 15px;
	}
	.step p { font-size: 1.1rem; }
}

@media (max-width: 767px) {
	body {
		height: 100%; /* Fit content */
		min-height: 0; /* Prevent forced height */
	}
	.funnel-container {
		height: 100%; /* Fit content */
		min-height: 0; /* Prevent forced height */
	}
	.step {
		height: 100%; /* Fit content */
		min-height: 0; /* Prevent forced height */
	}
	.step-content {
		display: flex;
		flex-direction: column;
		justify-content: center; /* Vertical centering */
		align-items: center; /* Horizontal centering */
		height: 100%; /* Fit content */
		min-height: 100svh; /* Use small viewport height to avoid scroll */
	}
}