/* OPA Hero Engine CSS */
.opa-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: var(--opa-text);
	overflow: hidden;
}

.opa-hero__bg-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.opa-hero__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.opa-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.opa-hero__container {
	position: relative;
	z-index: 3;
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 4% 40px;
	width: 100%;
}

.opa-hero__content {
	max-width: 800px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.opa-hero__content.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.opa-hero__badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	padding: 6px 16px;
	border-radius: 50px;
	font-family: var(--opa-font-body);
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 24px;
	letter-spacing: 0.5px;
	color: var(--opa-primary);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.opa-hero__headline {
	font-family: var(--opa-font-heading);
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 24px 0;
	letter-spacing: -1px;
}

.opa-hero__description {
	font-family: var(--opa-font-body);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.6;
	color: var(--opa-text-sec);
	margin: 0 0 40px 0;
	max-width: 650px;
}

.opa-hero__actions {
	display: flex;
	gap: 20px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.opa-hero__actions .opa-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 50px;
	font-family: var(--opa-font-body);
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.opa-hero__actions .opa-cta-button--primary {
	background: var(--opa-primary);
	color: var(--opa-dark);
	box-shadow: 0 4px 15px rgba(201, 161, 74, 0.2);
}

.opa-hero__actions .opa-cta-button--primary:hover {
	background: var(--opa-primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(201, 161, 74, 0.4);
}

.opa-hero__actions .opa-cta-button--secondary {
	background: transparent;
	color: var(--opa-text);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.opa-hero__actions .opa-cta-button--secondary:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.5);
}

.opa-hero__trust {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.opa-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--opa-font-body);
	font-size: 15px;
	font-weight: 500;
	color: var(--opa-text-sec);
}

.opa-hero__trust-icon-wrapper {
	width: 22px;
	height: 22px;
	background-color: #10B981; /* Premium Emerald Green */
	color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
	animation: opaPulseGreen 2.5s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes opaPulseGreen {
	to {
		box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
	}
}

/* Premium Mobile Responsive Layout */
@media (max-width: 768px) {
	.opa-hero {
		display: block;
		min-height: auto;
		background: var(--opa-dark);
	}

	.opa-hero__bg-container {
		position: relative;
		width: 100%;
		height: 40vh;
		min-height: 250px;
	}

	/* Keep overlay lighter on mobile so image pops more, and blend smoothly into the dark container */
	.opa-hero__overlay {
		background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%) !important;
		opacity: 1 !important;
	}

	.opa-hero__container {
		position: relative;
		padding: 32px 20px 50px;
		margin-top: -32px;
		background: var(--opa-dark);
		border-radius: 28px 28px 0 0;
		z-index: 4;
		text-align: center;
		box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
	}

	.opa-hero__content {
		margin: 0 auto;
	}

	.opa-hero__headline {
		font-size: clamp(32px, 8vw, 40px);
		margin-bottom: 20px;
	}

	.opa-hero__badge {
		font-size: 13px;
		padding: 8px 18px;
		margin: 0 auto 24px auto;
		background: rgba(201, 161, 74, 0.08);
		border: 1px solid rgba(201, 161, 74, 0.3);
		border-radius: 50px;
		display: inline-block;
	}

	.opa-hero__description {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.opa-hero__actions {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 36px;
		align-items: center;
	}

	.opa-hero__actions .opa-cta-button {
		width: 100%;
		max-width: 300px;
	}

	.opa-hero__trust {
		flex-direction: column;
		gap: 16px;
		align-items: center;
	}
}
