.ah-hero-2409c3be {
	--hero-bg: #0D0D0D;
	--hero-accent: #E63946;
	--hero-headline-color: #FFFFFF;
	--hero-body-color: #A0A0A0;
	--hero-font-family-display: 'Inter', sans-serif;
	--hero-font-family-body: 'Inter', sans-serif;

	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	background-color: var(--hero-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: var(--hero-body-color);
	font-family: var(--hero-font-family-body);
}

.ah-container-2409c3be {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center; /* Default fallback, overridden by control */
}

.ah-eyebrow-2409c3be {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--hero-accent);
}

.ah-headline-2409c3be {
	font-family: var(--hero-font-family-display);
	font-size: 72px;
	font-weight: 900;
	line-height: 1.1;
	color: var(--hero-headline-color);
	margin: 0 0 24px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* Default fallback, overridden by control */
	gap: 0.25em;
}

.ah-word-2409c3be {
	display: inline-block;
}

.ah-subheadline-2409c3be {
	font-size: 22px;
	font-weight: 400;
	color: var(--hero-headline-color);
	margin-bottom: 16px;
}

.ah-body-copy-2409c3be {
	font-size: 16px;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto 40px auto;
}

.ah-container-2409c3be[style*="text-align: left;"] .ah-body-copy-2409c3be {
    margin-left: 0;
    margin-right: auto;
}
.ah-container-2409c3be[style*="text-align: right;"] .ah-body-copy-2409c3be {
    margin-left: auto;
    margin-right: 0;
}

.ah-ctas-2409c3be {
	display: flex;
	gap: 16px;
	justify-content: center; /* Default fallback, overridden by control */
}

.ah-ctas-2409c3be a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ah-btn-primary-2409c3be {
	background-color: var(--hero-accent);
	color: #fff !important;
	border: 2px solid var(--hero-accent);
}

.ah-btn-primary-2409c3be:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.ah-btn-secondary-2409c3be {
	background-color: transparent;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.ah-btn-secondary-2409c3be:hover {
	border-color: #fff;
	transform: translateY(-2px);
}

/* Floating Images Container - Use a container for better absolute positioning context if needed, but here we place them in the hero */
.ah-floating-img-2409c3be {
	position: absolute;
	z-index: 1;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	object-fit: cover;
	opacity: 0.8;
	pointer-events: none;
	animation: ah-float-2409c3be 6s ease-in-out infinite;
    display: block !important; /* Ensure they are always display block */
}

/* Specific Image Positioning */
.ah-img-1-2409c3be {
	top: 15%;
	left: 5%;
	width: 15vw; /* Use viewport relative units for better scaling */
    max-width: 180px;
    min-width: 80px;
	height: auto;
    aspect-ratio: 1/1;
	animation-delay: 0s;
}

.ah-img-2-2409c3be {
	bottom: 20%;
	left: 10%;
	width: 12vw;
    max-width: 150px;
    min-width: 70px;
	height: auto;
    aspect-ratio: 1/1;
	animation-delay: -1.5s;
}

.ah-img-3-2409c3be {
	top: 20%;
	right: 5%;
	width: 18vw;
    max-width: 220px;
    min-width: 100px;
	height: auto;
    aspect-ratio: 1/1;
	animation-delay: -3s;
}

.ah-img-4-2409c3be {
	bottom: 15%;
	right: 12%;
	width: 14vw;
    max-width: 170px;
    min-width: 90px;
	height: auto;
    aspect-ratio: 1/1;
	animation-delay: -4.5s;
}

@keyframes ah-float-2409c3be {
	0% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(2deg); }
	100% { transform: translateY(0px) rotate(0deg); }
}

/* Initial State for Entrance Animations */
.ah-hero-2409c3be:not(.is-visible) .ah-eyebrow-2409c3be,
.ah-hero-2409c3be:not(.is-visible) .ah-subheadline-2409c3be,
.ah-hero-2409c3be:not(.is-visible) .ah-body-copy-2409c3be,
.ah-hero-2409c3be:not(.is-visible) .ah-ctas-2409c3be,
.ah-hero-2409c3be:not(.is-visible) .ah-word-2409c3be,
.ah-hero-2409c3be:not(.is-visible) .ah-floating-img-2409c3be {
	opacity: 0;
	transform: translateY(30px);
}

/* Responsive */
@media (max-width: 768px) {
	.ah-container-2409c3be {
		text-align: left;
		padding: 0 15px;
	}

	.ah-headline-2409c3be {
		font-size: 36px;
		justify-content: flex-start;
	}

	.ah-subheadline-2409c3be {
		font-size: 18px;
	}

	.ah-body-copy-2409c3be {
		margin-left: 0;
	}

	.ah-ctas-2409c3be {
		flex-direction: column;
		justify-content: flex-start;
	}

	.ah-ctas-2409c3be a {
		width: 100%;
	}
	
	/* Adjust floating images for mobile */
	.ah-floating-img-2409c3be {
		opacity: 0.25; /* More transparent on mobile to not obstruct text */
        z-index: 0; /* Move behind content */
	}
	
	.ah-img-1-2409c3be {
		top: 5%;
		left: -5%;
	}

	.ah-img-2-2409c3be {
		bottom: 5%;
		left: 0%;
	}

	.ah-img-3-2409c3be {
		top: 10%;
		right: -5%;
	}

	.ah-img-4-2409c3be {
		bottom: 10%;
		right: 0%;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.ah-floating-img-2409c3be {
		animation: none;
	}
	
	.ah-hero-2409c3be:not(.is-visible) .ah-eyebrow-2409c3be,
	.ah-hero-2409c3be:not(.is-visible) .ah-subheadline-2409c3be,
	.ah-hero-2409c3be:not(.is-visible) .ah-body-copy-2409c3be,
	.ah-hero-2409c3be:not(.is-visible) .ah-ctas-2409c3be,
	.ah-hero-2409c3be:not(.is-visible) .ah-word-2409c3be,
	.ah-hero-2409c3be:not(.is-visible) .ah-floating-img-2409c3be {
		opacity: 1;
		transform: none;
	}
}