.hero {
	position: relative;
	overflow: hidden;
	background: var(--or-blue);
	padding: 82px 5% 122px;
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: -2px;
	left: 0;
	height: 80px;
	background: var(--or-white);
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	content: "";
}

.hero-inner {
	width: min(100%, 720px);
	margin-left: max(0px, calc((100% - var(--or-width)) / 2));
}

.hero-eyebrow {
	display: inline-block;
	margin-bottom: 20px;
	padding: 6px 12px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.18);
	color: var(--or-white);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 720px;
	margin-bottom: 20px;
	color: var(--or-white);
	font-size: clamp(2.1rem, 5vw, 3.25rem);
	font-weight: 800;
	letter-spacing: -1.2px;
	line-height: 1.12;
}

.hero h1 em {
	color: var(--or-blue-light);
	font-style: normal;
}

.hero p {
	max-width: 590px;
	margin-bottom: 36px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.08rem;
	line-height: 1.75;
}

.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn-white,
.btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 7px;
	font-size: 0.95rem;
	font-weight: 700;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-white {
	background: var(--or-white);
	color: var(--or-blue);
}

.btn-white:hover {
	background: var(--or-soft);
	transform: translateY(-1px);
}

.btn-outline {
	border: 2px solid rgba(255, 255, 255, 0.55);
	color: var(--or-white);
}

.btn-outline:hover {
	border-color: var(--or-white);
	transform: translateY(-1px);
}

.vorteile,
.pakete,
.ablauf,
.branchen {
	padding: 76px 0;
}

.vorteile,
.ablauf {
	background: var(--or-white);
}

.pakete,
.branchen {
	background: var(--or-soft);
}

.section-label {
	margin-bottom: 10px;
	color: var(--or-blue);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.section-title {
	margin-bottom: 42px;
	color: var(--or-ink);
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.6px;
	line-height: 1.25;
}

.slider-wrap {
	position: relative;
	overflow: hidden;
}

.slider-track {
	display: flex;
	gap: 16px;
	transition: transform 0.35s ease;
}

.vorteil {
	flex: 0 0 calc(25% - 12px);
	padding: 24px 20px;
	border: 1.5px solid var(--or-line);
	border-radius: var(--or-radius);
	background: var(--or-white);
}

.vorteil-icon,
.branche-icon {
	display: flex;
	width: 42px;
	height: 42px;
	margin-bottom: 15px;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	background: var(--or-blue-soft);
	font-size: 1.15rem;
}

.vorteil h3,
.branche h3 {
	margin-bottom: 7px;
	font-size: 0.95rem;
	font-weight: 800;
}

.vorteil p,
.branche p {
	margin-bottom: 0;
	color: #5a6475;
	font-size: 0.84rem;
	line-height: 1.6;
}

.slider-dots,
.slider-btns {
	display: none;
}

.pakete-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.paket {
	position: relative;
	display: flex;
	padding: 32px 28px;
	flex-direction: column;
	border: 2px solid var(--or-line);
	border-radius: 12px;
	background: var(--or-white);
}

.paket.featured {
	border-color: var(--or-blue);
	box-shadow: 0 10px 36px rgba(45, 125, 210, 0.15);
}

.badge {
	position: absolute;
	top: -14px;
	left: 50%;
	padding: 5px 15px;
	transform: translateX(-50%);
	border-radius: 20px;
	background: var(--or-blue);
	color: var(--or-white);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
}

.paket-name {
	margin-bottom: 8px;
	color: var(--or-muted);
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.paket-preis {
	margin-bottom: 3px;
	color: var(--or-ink);
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: -1px;
}

.paket-preis span {
	color: var(--or-muted);
	font-size: 1rem;
	font-weight: 500;
}

.paket-lieferzeit {
	margin-bottom: 20px;
	color: var(--or-blue);
	font-size: 0.82rem;
	font-weight: 700;
}

.paket-divider {
	height: 1px;
	margin-bottom: 20px;
	background: var(--or-line);
}

.paket ul {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.paket li {
	display: flex;
	padding: 5px 0;
	align-items: flex-start;
	gap: 8px;
	color: var(--or-text);
	font-size: 0.88rem;
}

.paket li::before {
	margin-top: 1px;
	flex: 0 0 auto;
	color: var(--or-blue);
	content: "✓";
	font-weight: 800;
}

.btn-paket {
	display: inline-flex;
	width: 100%;
	margin-top: auto;
	padding: 13px;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	font-size: 0.9rem;
	font-weight: 800;
	text-align: center;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-paket-primary {
	background: var(--or-blue);
	color: var(--or-white);
}

.btn-paket-primary:hover {
	background: var(--or-blue-dark);
}

.btn-paket-secondary {
	border: 2px solid var(--or-line);
	background: var(--or-soft);
	color: var(--or-blue);
}

.btn-paket-secondary:hover {
	border-color: var(--or-blue);
}

.wartung {
	display: flex;
	padding: 58px max(5%, calc((100% - var(--or-width)) / 2));
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	background: var(--or-ink);
}

.wartung-text h2 {
	margin-bottom: 7px;
	color: var(--or-white);
	font-size: 1.35rem;
}

.wartung-text p {
	max-width: 580px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.94rem;
}

.wartung-preis {
	flex: 0 0 auto;
	text-align: right;
}

.wartung-preis .preis {
	color: var(--or-blue-light);
	font-size: 2rem;
	font-weight: 800;
}

.wartung-preis .sub {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
}

.ablauf-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.ablauf-steps::before {
	position: absolute;
	top: 24px;
	right: calc(12.5% + 8px);
	left: calc(12.5% + 8px);
	z-index: 0;
	height: 2px;
	background: var(--or-line);
	content: "";
}

.step {
	position: relative;
	z-index: 1;
	padding: 0 14px;
	text-align: center;
}

.step-num {
	display: flex;
	width: 48px;
	height: 48px;
	margin: 0 auto 16px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--or-blue);
	color: var(--or-white);
	font-size: 1rem;
	font-weight: 800;
}

.step h3 {
	margin-bottom: 7px;
	font-size: 0.95rem;
}

.step p {
	margin-bottom: 0;
	color: var(--or-muted);
	font-size: 0.83rem;
	line-height: 1.55;
}

.branchen-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.branche {
	padding: 28px;
	border: 1.5px solid var(--or-line);
	border-radius: 12px;
	background: var(--or-white);
}

.cta {
	padding: 82px 5%;
	background: var(--or-blue);
	text-align: center;
}

.cta h2 {
	margin-bottom: 14px;
	color: var(--or-white);
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	font-weight: 800;
	letter-spacing: -0.5px;
}

.cta p {
	max-width: 560px;
	margin: 0 auto 34px;
	color: rgba(255, 255, 255, 0.87);
	font-size: 1rem;
}

.cta-button {
	padding: 16px 36px;
}

@media (max-width: 960px) {
	.pakete-grid,
	.branchen-grid {
		grid-template-columns: 1fr;
	}

	.pakete-grid {
		max-width: 660px;
		margin-inline: auto;
		gap: 28px;
	}

	.ablauf-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 20px;
	}

	.ablauf-steps::before {
		display: none;
	}

	.vorteil {
		flex-basis: calc(50% - 8px);
	}
}

@media (max-width: 820px) {
	.vorteil {
		flex: 0 0 100%;
	}

	.slider-dots {
		display: flex;
		margin-top: 22px;
		justify-content: center;
		gap: 7px;
	}

	.dot {
		width: 10px;
		height: 10px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #d1d9e6;
		cursor: pointer;
	}

	.dot.active {
		background: var(--or-blue);
	}

	.slider-btns {
		display: flex;
		margin-top: 16px;
		justify-content: center;
		gap: 8px;
	}

	.slider-btn {
		display: flex;
		width: 38px;
		height: 38px;
		padding: 0;
		align-items: center;
		justify-content: center;
		border: 1.5px solid var(--or-line);
		border-radius: 50%;
		background: var(--or-white);
		color: var(--or-blue);
		cursor: pointer;
	}
}

@media (max-width: 680px) {
	.hero {
		padding: 62px 20px 102px;
	}

	.hero-inner {
		margin-left: 0;
	}

	.hero-eyebrow {
		font-size: 0.67rem;
		letter-spacing: 0.9px;
	}

	.hero h1 {
		font-size: clamp(2rem, 10vw, 2.65rem);
	}

	.hero p {
		font-size: 1rem;
	}

	.hero-btns {
		flex-direction: column;
	}

	.btn-white,
	.btn-outline {
		width: 100%;
	}

	.vorteile,
	.pakete,
	.ablauf,
	.branchen {
		padding: 60px 0;
	}

	.section-title {
		margin-bottom: 32px;
	}

	.wartung {
		padding: 46px 20px;
		flex-direction: column;
		align-items: flex-start;
	}

	.wartung-preis {
		text-align: left;
	}

	.ablauf-steps {
		grid-template-columns: 1fr;
	}

	.step {
		padding-inline: 0;
	}
}
