.am-hero-section {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: var(--am-bg-desktop);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	padding: 2.5rem 1.25rem;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.am-hero-section {
		background-image: var(--am-bg-mobile, var(--am-bg-desktop));
	}
}

.am-hero-overlay {
	position: absolute;
	inset: 0;
}

.am-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	max-width: 800px;
	width: 100%;
}

.am-hero-content.am-align-left {
	text-align: left;
	margin-right: auto;
}

.am-hero-content.am-align-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.am-hero-content.am-align-right {
	text-align: right;
	margin-left: auto;
}

.am-hero-title {
	margin: 0 0 0.9375rem;
	line-height: 1.2;
}

.am-hero-subtitle {
	line-height: 1.5;
	margin: 0 0 1.25rem;
}

.am-hero-buttons {
	display: flex;
	gap: 0.9375rem;
	flex-wrap: wrap;
}

.am-hero-content.am-align-center .am-hero-buttons {
	justify-content: center;
}

.am-hero-content.am-align-right .am-hero-buttons {
	justify-content: flex-end;
}

.am-hero-button {
	display: inline-block;
	padding: 0.875rem 2rem;
	border-radius: 1.875rem;
	border: 1px solid currentColor;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.am-hero-button:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.am-hero-section {
		padding: 1.5625rem 1rem;
	}
}

/* --- AM Hero Split --- */
.am-hero-split {
	display: flex;
	width: 100%;
}

.am-hero-split.am-image-right {
	flex-direction: row-reverse;
}

.am-hero-split-image {
	flex: 1 1 50%;
	background-image: var(--am-bg-desktop);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 320px;
}

@media (max-width: 767px) {
	.am-hero-split-image {
		background-image: var(--am-bg-mobile, var(--am-bg-desktop));
	}
}

.am-hero-split-content {
	flex: 1 1 50%;
	display: flex;
	align-items: center;
}

.am-hero-split-inner {
	padding: 3.75rem;
	max-width: 560px;
}

.am-hero-split-title {
	margin: 0 0 1.125rem;
	line-height: 1.2;
}

.am-hero-split-subtitle {
	line-height: 1.6;
	margin: 0 0 1.5625rem;
}

.am-hero-buttons-left {
	justify-content: flex-start;
}

@media (max-width: 767px) {
	.am-hero-split,
	.am-hero-split.am-image-right {
		flex-direction: column;
	}
	.am-hero-split-inner {
		padding: 2.1875rem 1.5625rem;
	}
}

/* --- AM Hero Stacked --- */
.am-hero-stacked-image {
	width: 100%;
	background-image: var(--am-bg-desktop);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

@media (max-width: 767px) {
	.am-hero-stacked-image {
		background-image: var(--am-bg-mobile, var(--am-bg-desktop));
	}
}

.am-hero-stacked-content {
	text-align: center;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
}

.am-hero-stacked-title {
	margin: 0 0 1.125rem;
	line-height: 1.2;
}

.am-hero-stacked-subtitle {
	line-height: 1.6;
	margin: 0 auto 1.5625rem;
	max-width: 640px;
}

.am-hero-stacked-content .am-hero-buttons {
	justify-content: center;
}

/* --- AM Hero Minimal --- */
.am-hero-minimal {
	position: relative;
	width: 100%;
	display: flex;
	background-image: var(--am-bg-desktop);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	box-sizing: border-box;
}

@media (max-width: 767px) {
	.am-hero-minimal {
		background-image: var(--am-bg-mobile, var(--am-bg-desktop));
	}
}

.am-hero-minimal-gradient {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.am-hero-minimal-content {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 3.125rem;
	box-sizing: border-box;
}

.am-hero-minimal-content.am-pos-bottom-center {
	align-items: center;
	text-align: center;
}

.am-hero-minimal-content.am-pos-bottom-left {
	align-items: flex-start;
	text-align: left;
}

.am-hero-minimal-title {
	margin: 0 0 0.75rem;
	line-height: 1.2;
}

.am-hero-minimal-subtitle {
	line-height: 1.5;
	margin: 0 0 1.25rem;
	max-width: 560px;
}

@media (max-width: 767px) {
	.am-hero-minimal-content {
		padding: 1.5625rem;
	}
}

/* --- AM Banner --- */
.am-banner {
	position: relative;
	width: 100%;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.am-banner-bg {
	position: absolute;
	inset: 0;
	background-image: var(--am-bg-desktop);
	background-size: cover;
	background-position: center;
	filter: brightness(0.45);
}

@media (max-width: 767px) {
	.am-banner-bg {
		background-image: var(--am-bg-mobile, var(--am-bg-desktop));
	}
}

.am-banner-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 1.5rem;
	width: 100%;
}

.am-banner-label {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.am-banner-title {
	font-weight: normal;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	max-width: 47.5rem;
	margin-left: auto;
	margin-right: auto;
}

.am-banner-sub {
	line-height: 1.65;
	margin-bottom: 2.5rem;
	max-width: 32.5rem;
	margin-left: auto;
	margin-right: auto;
}

.am-banner-sub p {
	margin: 0 0 0.75rem;
}

.am-banner-sub p:last-child {
	margin-bottom: 0;
}

.am-banner-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 767px) {
	.am-banner-buttons {
		flex-direction: column;
		align-items: center;
	}
}

.am-btn {
	display: inline-block;
	text-decoration: none;
	transition: all 0.25s;
	cursor: pointer;
	border: 2px solid transparent;
}

.am-btn-primary:hover {
	background: transparent !important;
}

.am-btn-outline:hover {
	background: rgba(255, 255, 255, 0.08);
}

.am-scroll-hint {
	position: absolute;
	bottom: 2.25rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.625rem;
	letter-spacing: 0.125rem;
	text-transform: uppercase;
	z-index: 2;
}

.am-scroll-hint::after {
	content: '';
	width: 1px;
	height: 3rem;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
	animation: am-scroll-line 1.5s ease-in-out infinite;
}

@keyframes am-scroll-line {
	0%   { transform: scaleY(0); transform-origin: top; }
	50%  { transform: scaleY(1); transform-origin: top; }
	51%  { transform: scaleY(1); transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- AM Zitat --- */
.am-quote-section {
	width: 100%;
	text-align: center;
	padding-left: 3rem;
	padding-right: 3rem;
	box-sizing: border-box;
}

.am-quote-inner {
	margin: 0 auto;
}

.am-quote-mark {
	line-height: 1;
	display: block;
	opacity: 0.7;
}

.am-quote-mark svg {
	height: 1em;
	width: auto;
	fill: currentColor;
}

.am-quote-mark svg path {
	fill: currentColor;
}

.am-quote-text {
	line-height: 1.55;
	margin-bottom: 1.5rem;
}

.am-quote-text p {
	margin: 0 0 0.75rem;
}

.am-quote-text p:last-child {
	margin-bottom: 0;
}

.am-quote-author {
	font-size: 0.6875rem;
	letter-spacing: 0.1875rem;
	text-transform: uppercase;
}

.am-quote-divider {
	width: 2.5rem;
	height: 1px;
	margin: 1rem auto 0;
	opacity: 0.6;
}

@media (max-width: 767px) {
	.am-quote-section {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
