.hero-header {
	position: relative;
	overflow: hidden;
	padding-top: calc(var(--hero-header-offset, 5.5rem) + clamp(3rem, 2rem + 4vw, 6rem));
	padding-bottom: clamp(4rem, 2.5rem + 5vw, 7.5rem);
}

.hero-header__bg {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	top: 0;
	bottom: 0;
	z-index: 0;
	background-color: #050505;
	background-image: var(--hero-header-bg-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-header__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(88, 28, 135, 0.45) 100%),
		radial-gradient(ellipse 80% 60% at 50% 100%, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
	pointer-events: none;
}

.hero-header__container {
	position: relative;
	z-index: 1;
	max-width: 90rem;
	margin: 0 auto;
	padding: clamp(4rem, 8.23vw, 9.875rem) 0;
}

.hero-header__content {
	max-width: 980px;
	margin: 0 auto;
	text-align: center;
}

.hero-header__title {
	color: #fff;
	font-weight: 700;
	line-height: 94%;
	letter-spacing: -0.01em;
	text-align: center;
	color: #fcfcfc;
	margin: 0 0 clamp(1.5rem, 2.75vw, 3rem);
	font-size: clamp(4rem, 8.333vw, 10rem);
}

.hero-header__description {
	font-size: clamp(1rem, 1.042vw, 1.25rem);
	line-height: 140%;
	text-align: center;
	color: #fcfcfc;
	max-width: 697px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
}

.hero-header__description p {
	margin: 0;
	color: #fcfcfc;
}

.hero-header__description p:not(:last-child) {
	margin-bottom: 0.75rem;
}

.hero-header__actions {
	display: flex;
	justify-content: center;
}

.hero-header__btn {
	min-width: 12.5rem;
}

/* Hero starts at the top of main — header stays absolute over it */
.wrapper--hero-header {
	position: relative;
}

.wrapper--hero-header .page-main {
	padding-top: 0 !important;
}

.wrapper--hero-header > .header,
.wrapper--hero-header > .header.header--hero-header {
	position: absolute !important;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100;
	background: transparent !important;
	border-bottom-color: transparent !important;
	box-shadow: none !important;
}

.wrapper--hero-header > .header.scrolled,
.wrapper--hero-header > .header.header--hero-header.scrolled {
	background: var(--gray-1) !important;
	border-bottom-color: var(--primary-1) !important;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.07) !important;
}

.wrapper--hero-header > .header:not(.scrolled) .menu__link,
.wrapper--hero-header > .header.header--hero-header:not(.scrolled) .menu__link {
	color: #fff;
}

.wrapper--hero-header > .header:not(.scrolled) .menu__arrow,
.wrapper--hero-header > .header.header--hero-header:not(.scrolled) .menu__arrow {
	color: rgba(255, 255, 255, 0.85);
}

.wrapper--hero-header > .header.scrolled .menu__link,
.wrapper--hero-header > .header.header--hero-header.scrolled .menu__link {
	color: var(--primary-16);
}

/* Hero header: shorter bar — align mega dropdown below it */
@media (min-width: 62em) {
	.wrapper--hero-header > .header.header--hero-header .menu__mega {
		top: 5.5rem;
	}
}

.wrapper--hero-header .page-main.page--layout > .breadcrumbs__container:first-child,
.wrapper--hero-header .page-main.service-single--child > .breadcrumbs__container:first-child {
	display: none;
}

@media (max-width: 61.99875em) {
	.wrapper--hero-header {
		--hero-header-offset: 4.5rem;
	}

	.hero-header {
		padding-top: calc(var(--hero-header-offset, 4.5rem) + 2.5rem);
	}
}
