.op-orca-hero {
	width: 100%;
	background: linear-gradient(180deg, #07141c 0%, #0d2430 100%);
	color: #ffffff;
}

.op-orca-hero__container {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

.op-orca-hero__inner {
	display: flex;
	align-items: stretch;
	min-height: 520px;
}

.op-orca-hero__content,
.op-orca-hero__media {
	width: 50%;
}

/* ---------------------------------
   Left content
--------------------------------- */

.op-orca-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 48px 56px 0;
}

.op-orca-hero__eyebrow {
	margin-bottom: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.op-orca-hero__title {
	margin: 0 0 18px;
	font-size: clamp(2rem, 3.4vw, 3.5rem);
	line-height: 1.08;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.op-orca-hero__intro {
	margin: 0 0 14px;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.op-orca-hero__support {
	margin: 0 0 28px;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.76);
}

.op-orca-hero__cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
}

.op-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.98rem;
	line-height: 1;
	transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.op-btn:hover,
.op-btn:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.op-btn--primary {
	background: linear-gradient(135deg, #1ec8ff 0%, #1b8cff 100%);
	color: #ffffff;
	border: 1px solid transparent;
}

.op-btn--secondary {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #ffffff;
}

.op-orca-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.op-orca-hero__action-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.op-orca-hero__icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.op-orca-hero__icon-link:hover,
.op-orca-hero__icon-link:focus {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
	text-decoration: none;
}

/* ---------------------------------
   Right media
--------------------------------- */

.op-orca-hero__media {
	display: flex;
	align-items: stretch;
	padding: 32px 0;
}

.op-orca-hero__image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 456px;
	overflow: hidden;
	border-radius: 24px;
	background: #0b1d27;
}

.op-orca-hero__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 10, 16, 0.08) 0%, rgba(3, 10, 16, 0.22) 100%);
	pointer-events: none;
}

.op-orca-hero__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.op-orca-hero__mobile-overlay {
	display: none;
}

/* ---------------------------------
   Mobile
--------------------------------- */

@media (max-width: 900px) {
	.op-orca-hero__container {
		padding: 0;
	}

	.op-orca-hero__inner {
		flex-direction: column-reverse;
		min-height: auto;
	}

	.op-orca-hero__content,
	.op-orca-hero__media {
		width: 100%;
	}

	.op-orca-hero__media {
		padding: 0;
	}

	.op-orca-hero__image {
		min-height: 220px;
		border-radius: 0;
	}

	.op-orca-hero__mobile-overlay {
		display: block;
		position: absolute;
		left: 20px;
		right: 20px;
		bottom: 20px;
		z-index: 2;
	}

	.op-orca-hero__mobile-title {
		margin: 0;
		font-size: clamp(1.8rem, 8vw, 2.5rem);
		line-height: 1.08;
		font-weight: 700;
		color: #ffffff;
		text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
	}

	.op-orca-hero__content {
		padding: 28px 20px 32px;
		background: linear-gradient(180deg, #0d2430 0%, #07141c 100%);
	}

	.op-orca-hero__eyebrow {
		margin-bottom: 10px;
	}

	.op-orca-hero__title {
		display: none;
	}

	.op-orca-hero__intro {
		margin-bottom: 14px;
	}

	.op-orca-hero__support {
		margin-bottom: 22px;
	}

	.op-orca-hero__cta-group {
		margin-bottom: 20px;
	}

	.op-orca-hero__action-group {
		gap: 10px;
	}

	.op-orca-hero__icon-link {
		width: 44px;
		height: 44px;
	}
}

.align_center {
    text-align: center;
}