/* ==========================================================================
   KITT-STYLE LED SLIDER
   Animated Background, Text, Buttons + Running LED Border
   ========================================================================== */

.opt-kit-slider {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	background: linear-gradient(135deg, #0a1428 0%, #0d2147 50%, #0a1428 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ===== BACKGROUND ANIMATION ===== */

.opt-kit-slider__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.opt-kit-slider__bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		linear-gradient(
			45deg,
			rgba(10, 20, 40, 0.4) 0%,
			rgba(13, 33, 71, 0.6) 50%,
			rgba(10, 20, 40, 0.4) 100%
		);
	animation: kit-bg-shift 20s ease-in-out infinite;
	z-index: 1;
}

.opt-kit-slider__bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(
			ellipse at 50% 50%,
			rgba(201, 168, 76, 0.08) 0%,
			transparent 70%
		);
	animation: kit-pulse 4s ease-in-out infinite;
	z-index: 2;
}

@keyframes kit-bg-shift {
	0%, 100% {
		background: 
			linear-gradient(
				45deg,
				rgba(10, 20, 40, 0.4) 0%,
				rgba(13, 33, 71, 0.6) 50%,
				rgba(10, 20, 40, 0.4) 100%
			);
	}
	50% {
		background: 
			linear-gradient(
				-45deg,
				rgba(10, 20, 40, 0.5) 0%,
				rgba(13, 33, 71, 0.7) 50%,
				rgba(10, 20, 40, 0.5) 100%
			);
	}
}

@keyframes kit-pulse {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

/* ===== BG IMAGE (optional) ===== */

.opt-kit-slider__bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	opacity: 0.15;
	z-index: 0;
}

/* ===== CONTENT CONTAINER ===== */

.opt-kit-slider__container {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 900px;
	padding: 4rem;
	margin: 0 auto;
}

/* ===== LED BORDER (Running Light) ===== */

.opt-kit-slider__led-border {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 5;
}

.opt-kit-slider__led-top,
.opt-kit-slider__led-bottom,
.opt-kit-slider__led-left,
.opt-kit-slider__led-right {
	position: absolute;
	background: linear-gradient(90deg, 
		transparent 0%,
		#c9a84c 25%,
		#e8c97a 50%,
		#c9a84c 75%,
		transparent 100%
	);
	box-shadow: 0 0 15px rgba(201, 168, 76, 0.8),
	            0 0 30px rgba(201, 168, 76, 0.4),
	            inset 0 0 10px rgba(232, 201, 122, 0.6);
}

/* Top LED */
.opt-kit-slider__led-top {
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	animation: kit-led-run-right 3s linear infinite;
}

/* Bottom LED */
.opt-kit-slider__led-bottom {
	bottom: 0;
	right: 0;
	width: 100%;
	height: 1px;
	animation: kit-led-run-left 3s linear infinite;
}

/* Left LED */
.opt-kit-slider__led-left {
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	animation: kit-led-run-down 3s linear infinite;
}

/* Right LED */
.opt-kit-slider__led-right {
	bottom: 0;
	right: 0;
	width: 1px;
	height: 100%;
	animation: kit-led-run-up 3s linear infinite;
}

@keyframes kit-led-run-right {
	0% {
		left: -200px;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		left: calc(100% + 200px);
		opacity: 0;
	}
}

@keyframes kit-led-run-left {
	0% {
		right: -200px;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		right: calc(100% + 200px);
		opacity: 0;
	}
}

@keyframes kit-led-run-down {
	0% {
		top: -200px;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		top: calc(100% + 200px);
		opacity: 0;
	}
}

@keyframes kit-led-run-up {
	0% {
		bottom: -200px;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		bottom: calc(100% + 200px);
		opacity: 0;
	}
}

/* ===== TEXT ANIMATIONS ===== */

.opt-kit-slider__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.5rem 1.2rem;
	border: 1px solid rgba(201, 168, 76, 0.6);
	border-radius: 50px;
	font-family: var(--opt-font-sans);
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--opt-gold);
	margin-bottom: 1.5rem;
	animation: kit-badge-glow 2s ease-in-out infinite,
	           kit-fade-in 1s ease-out;
	backdrop-filter: blur(10px);
	background: rgba(13, 31, 13, 0.3);
}

.opt-kit-slider__badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c9a84c;
	box-shadow: 0 0 10px #c9a84c;
	animation: kit-pulse-dot 1.5s ease-in-out infinite;
}

@keyframes kit-badge-glow {
	0%, 100% {
		border-color: rgba(201, 168, 76, 0.3);
		box-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
	}
	50% {
		border-color: rgba(201, 168, 76, 0.8);
		box-shadow: 0 0 20px rgba(201, 168, 76, 0.8),
		            inset 0 0 15px rgba(201, 168, 76, 0.2);
	}
}

@keyframes kit-pulse-dot {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.7;
	}
}

@keyframes kit-fade-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== HEADING ANIMATIONS ===== */

.opt-kit-slider__heading {
	font-family: var(--opt-font-serif);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 300;
	line-height: 1.1;
	color: var(--opt-cream);
	margin-bottom: 1.5rem;
	animation: kit-text-slide-up 1s ease-out 0.2s backwards;
	letter-spacing: 0.02em;
}

.opt-kit-slider__heading em {
	font-style: italic;
	color: var(--opt-gold);
	animation: kit-text-glow 2s ease-in-out infinite;
	text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
	display: inline-block;
}

@keyframes kit-text-slide-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes kit-text-glow {
	0%, 100% {
		color: var(--opt-gold);
		text-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
	}
	50% {
		color: var(--opt-gold-light);
		text-shadow: 0 0 25px rgba(201, 168, 76, 0.8),
		             0 0 40px rgba(201, 168, 76, 0.4);
	}
}

/* ===== SUBTEXT ANIMATIONS ===== */

.opt-kit-slider__subtext {
	font-size: 1.1rem;
	color: rgba(245, 240, 232, 0.75);
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto 2.5rem;
	animation: kit-text-slide-up 1s ease-out 0.4s backwards;
}

/* ===== BUTTON ANIMATIONS ===== */

.opt-kit-slider__ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	animation: kit-text-slide-up 1s ease-out 0.6s backwards;
}

.opt-kit-btn {
	position: relative;
	padding: 1.1rem 2.8rem;
	font-family: var(--opt-font-sans);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 2px solid;
	border-radius: 0;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	overflow: hidden;
	outline: none;
}

/* ===== PRIMARY BUTTON (LED Effect) ===== */

.opt-kit-btn--primary {
	background: linear-gradient(135deg, #c9a84c, #e8c97a);
	color: var(--opt-green-darkest);
	border-color: #c9a84c;
	box-shadow: 
		0 0 0 0 rgba(201, 168, 76, 0.7),
		0 0 20px rgba(201, 168, 76, 0.5);
	animation: kit-btn-primary-glow 2s ease-in-out infinite,
	           kit-text-slide-up 1s ease-out 0.6s backwards;
}

.opt-kit-btn--primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, 
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	animation: kit-shine 3s infinite;
}

.opt-kit-btn--primary:hover {
	background: linear-gradient(135deg, #e8c97a, #c9a84c);
	transform: scale(1.08) translateY(-3px);
	box-shadow: 
		0 8px 30px rgba(201, 168, 76, 0.8),
		0 0 40px rgba(201, 168, 76, 0.6),
		inset 0 0 20px rgba(255, 255, 255, 0.2);
	color: var(--opt-green-darkest);
}

.opt-kit-btn--primary:active {
	transform: scale(0.98) translateY(0);
	box-shadow: 
		0 2px 10px rgba(201, 168, 76, 0.6),
		0 0 20px rgba(201, 168, 76, 0.4);
}

@keyframes kit-btn-primary-glow {
	0%, 100% {
		box-shadow: 
			0 0 10px rgba(201, 168, 76, 0.5),
			0 0 20px rgba(201, 168, 76, 0.3);
	}
	50% {
		box-shadow: 
			0 0 20px rgba(201, 168, 76, 0.8),
			0 0 40px rgba(201, 168, 76, 0.5),
			0 0 60px rgba(201, 168, 76, 0.3);
	}
}

@keyframes kit-shine {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

/* ===== OUTLINE BUTTON ===== */

.opt-kit-btn--outline {
	background: transparent;
	color: var(--opt-cream);
	border-color: rgba(201, 168, 76, 0.6);
	box-shadow: inset 0 0 15px rgba(201, 168, 76, 0.1);
	animation: kit-btn-outline-glow 2s ease-in-out infinite,
	           kit-text-slide-up 1s ease-out 0.6s backwards;
	position: relative;
}

.opt-kit-btn--outline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
	animation: kit-outline-sweep 2s ease-in-out infinite;
}

.opt-kit-btn--outline:hover {
	border-color: var(--opt-gold);
	color: var(--opt-gold-light);
	background: rgba(201, 168, 76, 0.05);
	box-shadow: 
		inset 0 0 20px rgba(201, 168, 76, 0.2),
		0 0 20px rgba(201, 168, 76, 0.4);
	transform: scale(1.05);
}

@keyframes kit-btn-outline-glow {
	0%, 100% {
		border-color: rgba(201, 168, 76, 0.3);
		box-shadow: inset 0 0 10px rgba(201, 168, 76, 0.05);
	}
	50% {
		border-color: rgba(201, 168, 76, 0.8);
		box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.2),
		            0 0 15px rgba(201, 168, 76, 0.3);
	}
}

@keyframes kit-outline-sweep {
	0% {
		left: -100%;
		width: 100%;
	}
	50% {
		left: 100%;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 100%;
	}
}

/* ===== CTA NOTE ===== */

.opt-kit-slider__note {
	margin-top: 1rem;
	font-size: 0.75rem;
	color: rgba(201, 168, 76, 0.7);
	letter-spacing: 0.08em;
	animation: kit-text-slide-up 1s ease-out 0.8s backwards;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
	.opt-kit-slider {
		min-height: 80vh;
		padding-top: 3rem;
	}

	.opt-kit-slider__container {
		padding: 2rem;
	}

	.opt-kit-slider__heading {
		font-size: clamp(1.8rem, 5vw, 3rem);
	}

	.opt-kit-slider__ctas {
		flex-direction: column;
		gap: 1rem;
	}

	.opt-kit-btn {
		width: 100%;
		justify-content: center;
	}

	.opt-kit-slider__led-top,
	.opt-kit-slider__led-bottom,
	.opt-kit-slider__led-left,
	.opt-kit-slider__led-right {
		display: none;
	}
}

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
	.opt-kit-slider__badge,
	.opt-kit-slider__heading,
	.opt-kit-slider__subtext,
	.opt-kit-slider__ctas,
	.opt-kit-btn {
		animation: none !important;
	}

	.opt-kit-btn--primary:hover,
	.opt-kit-btn--outline:hover {
		transform: none;
	}
}

/* ==========================================================================
   HERO - TWO COLUMN LAYOUT: Text LEFT | Portrait RIGHT
   ========================================================================== */

/* Replace old centered container with 2-column inner */
.opt-kit-slider__inner {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 5rem 4vw 4rem;
	gap: 4rem;
	min-height: 100vh;
	box-sizing: border-box;
}

/* ===== LEFT: TEXT CONTENT ===== */

.opt-kit-slider__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

/* Override centered styles for the 2-col layout */
.opt-kit-slider__content .opt-kit-slider__badge {
	animation: kit-badge-glow 2s ease-in-out infinite,
	           kit-slide-in-left 0.8s ease-out;
}

.opt-kit-slider__content .opt-kit-slider__heading {
	text-align: left;
	animation: kit-slide-in-left 0.9s ease-out 0.1s both;
}

.opt-kit-slider__content .opt-kit-slider__subtext {
	text-align: left;
	animation: kit-slide-in-left 1s ease-out 0.2s both;
}

.opt-kit-slider__content .opt-kit-slider__ctas {
	justify-content: flex-start;
	animation: kit-slide-in-left 1.1s ease-out 0.3s both;
}

.opt-kit-slider__content .opt-kit-slider__note {
	animation: kit-slide-in-left 1.2s ease-out 0.4s both;
}

@keyframes kit-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ===== RIGHT: PORTRAIT IMAGE ===== */

.opt-kit-slider__portrait {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	position: relative;

	/* Lazy-load slide-in from right — triggered by IntersectionObserver */
	opacity: 0;
	transform: translateX(80px);
	transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
	            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.opt-kit-slider__portrait.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.opt-kit-slider__portrait-img {
	width: 100%;
	max-width: 680px;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
	display: block;
	/* 3D Look: Schatten links + unten für Tiefe */
	filter:
		drop-shadow(-8px 12px 20px rgba(0, 0, 0, 0.7))
		drop-shadow(-2px 4px 8px rgba(0, 0, 0, 0.5))
		drop-shadow(4px -2px 15px rgba(201, 168, 76, 0.12));
	/* Leichte Perspektive */
	transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
	transition: transform 0.5s ease, filter 0.5s ease;
}

.opt-kit-slider__portrait:hover .opt-kit-slider__portrait-img {
	transform: perspective(1000px) rotateY(-1deg) rotateX(0deg) scale(1.02);
	filter:
		drop-shadow(-12px 18px 30px rgba(0, 0, 0, 0.75))
		drop-shadow(-3px 6px 12px rgba(0, 0, 0, 0.55))
		drop-shadow(6px -3px 20px rgba(201, 168, 76, 0.2));
}

/* Gold light effect under portrait */
.opt-kit-slider__portrait::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 120px;
	background: radial-gradient(
		ellipse at center bottom,
		rgba(201, 168, 76, 0.25) 0%,
		transparent 70%
	);
	pointer-events: none;
	z-index: -1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
	.opt-kit-slider__inner {
		grid-template-columns: 55% 45%;
		gap: 2rem;
		padding: 4rem 3vw 3rem;
	}

	.opt-kit-slider__portrait-img {
		max-width: 380px;
	}
}

@media (max-width: 768px) {
	.opt-kit-slider__inner {
		grid-template-columns: 1fr;
		padding: 3rem 6vw;
		min-height: auto;
		gap: 2rem;
	}

	.opt-kit-slider__content {
		align-items: center;
		text-align: center;
		order: 1;
	}

	.opt-kit-slider__content .opt-kit-slider__heading,
	.opt-kit-slider__content .opt-kit-slider__subtext {
		text-align: center;
	}

	.opt-kit-slider__content .opt-kit-slider__ctas {
		justify-content: center;
	}

	.opt-kit-slider__portrait {
		order: 2;
		opacity: 1;
		transform: none;
		justify-content: center;
	}

	.opt-kit-slider__portrait-img {
		max-width: 280px;
	}
}

@media (max-width: 480px) {
	.opt-kit-slider__portrait-img {
		max-width: 220px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.opt-kit-slider__portrait {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==========================================================================
   SLIDER v2 — Folie 1 Stats, Folie 2 KI-Agenten, Folie 3 Prämien
   Video-Button, Light-Mode
   ========================================================================== */

/* ── Slides Container ───────────────────────────────────────────── */
.opt-kit-slider__slides { position: relative; width: 100%; overflow: hidden; }
.opt-kit-slider__slide {
	display: none;
	width: 100%;
}
.opt-kit-slider__slide.is-active {
	display: block;
	animation: slideIn .55s cubic-bezier(.22,1,.36,1);
}
@keyframes slideIn {
	from { opacity: 0; transform: translateX(30px); }
	to   { opacity: 1; transform: translateX(0); }
}

/* ── Stats Cards (Folie 1) ──────────────────────────────────────── */
.opt-kit-slider__stats {
	display: flex;
	gap: .75rem;
	margin-top: 1.25rem;
	flex-wrap: wrap;
}
.opt-kit-slider__stat {
	display: flex;
	flex-direction: column;
	background: rgba(201,168,76,.08);
	border: 1px solid rgba(201,168,76,.25);
	border-radius: 8px;
	padding: .55rem .85rem;
	min-width: 80px;
	text-align: center;
}
.opt-kit-slider__stat-num {
	font-size: 1.3rem;
	font-weight: 700;
	color: #c9a84c;
	line-height: 1;
}
.opt-kit-slider__stat-label {
	font-size: .68rem;
	color: rgba(245,240,232,.55);
	margin-top: 3px;
}
[data-theme="light"] .opt-kit-slider__stat {
	background: rgba(156,125,46,.07);
	border-color: rgba(156,125,46,.3);
}
[data-theme="light"] .opt-kit-slider__stat-label { color: rgba(22,32,58,.6); }

/* ── Video Button ───────────────────────────────────────────────── */
.opt-kit-slider__video-btn {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	background: none;
	border: none;
	color: rgba(245,240,232,.7);
	cursor: pointer;
	font-size: .85rem;
	font-family: inherit;
	padding: .35rem 0;
	margin-top: .35rem;
	transition: color .2s;
}
.opt-kit-slider__video-btn:hover { color: #c9a84c; }
.opt-kit-slider__play-ring {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid rgba(201,168,76,.5);
	background: rgba(201,168,76,.08);
	color: #c9a84c;
	flex-shrink: 0;
	transition: all .2s;
	animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
	0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.4); }
	50%      { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
}
.opt-kit-slider__video-btn:hover .opt-kit-slider__play-ring {
	background: rgba(201,168,76,.2);
	border-color: #c9a84c;
}
[data-theme="light"] .opt-kit-slider__video-btn { color: rgba(22,32,58,.65); }
[data-theme="light"] .opt-kit-slider__video-btn:hover { color: #9c7d2e; }
[data-theme="light"] .opt-kit-slider__play-ring { border-color: rgba(156,125,46,.5); }

/* ── Navigation Dots + Arrows ───────────────────────────────────── */
/* ── Bottom Navigation Bar (Arrows + Dots zusammen mittig unten) ── */
.opt-kit-slider__bottom-bar {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: .85rem;
	z-index: 20;
}
.opt-kit-slider__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.opt-kit-slider__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(201,168,76,.25);
	cursor: pointer;
	transition: all .25s;
	flex-shrink: 0;
}
.opt-kit-slider__dot.is-active {
	width: 24px;
	border-radius: 4px;
	background: #c9a84c;
}
.opt-kit-slider__arrow {
	width: 38px; height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(201,168,76,.3);
	background: rgba(201,168,76,.08);
	color: #c9a84c;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: static;
	transform: none;
	transition: all .2s;
	flex-shrink: 0;
}
.opt-kit-slider__arrow:hover { background: rgba(201,168,76,.2); border-color: rgba(201,168,76,.6); }

/* ── Light Mode Slider ──────────────────────────────────────────── */
[data-theme="light"] .opt-kit-slider {
	background: linear-gradient(160deg, #f7f4ee, #efe9dd);
}
[data-theme="light"] .opt-kit-slider__heading { color: #16203a; }
[data-theme="light"] .opt-kit-slider__heading em { color: #9c7d2e; }
[data-theme="light"] .opt-kit-slider__subtext { color: rgba(22,32,58,.7); }
[data-theme="light"] .opt-kit-slider__badge {
	background: rgba(156,125,46,.1);
	border-color: rgba(156,125,46,.3);
	color: #9c7d2e;
}
[data-theme="light"] .opt-kit-slider__note { color: rgba(22,32,58,.5); }
[data-theme="light"] .opt-kit-slider__dot { background: rgba(156,125,46,.25); }
[data-theme="light"] .opt-kit-slider__dot.is-active { background: #9c7d2e; }
[data-theme="light"] .opt-kit-slider__arrow { border-color: rgba(156,125,46,.3); color: #9c7d2e; }

/* ── KI-Agenten Visual (Folie 2) ────────────────────────────────── */
.opt-kit-slider__ki-visual {
	position: relative;
	width: 320px;
	height: 320px;
	margin: 0 auto;
}
.ki-orb {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 90px; height: 90px;
	background: rgba(201,168,76,.08);
	border: 1px solid rgba(201,168,76,.4);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	z-index: 5;
}
.ki-orb span {
	font-size: .65rem;
	color: #c9a84c;
	font-weight: 600;
	letter-spacing: .1em;
}
.ki-satellite {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: rgba(201,168,76,.06);
	border: 1px solid rgba(201,168,76,.3);
	border-radius: 10px;
	padding: .5rem .7rem;
	font-size: 1.2rem;
}
.ki-satellite span {
	font-size: .6rem;
	color: rgba(245,240,232,.6);
	white-space: nowrap;
}
.ki-satellite--1 { top: 20px; left: 50%; transform: translateX(-50%); }
.ki-satellite--2 { top: 50%; right: 20px; transform: translateY(-50%); }
.ki-satellite--3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.ki-satellite--4 { top: 50%; left: 20px; transform: translateY(-50%); }

.ki-pulse {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	border: 1px solid rgba(201,168,76,.15);
	animation: ki-expand 3s ease-in-out infinite;
}
.ki-pulse--1 { width: 120px; height: 120px; animation-delay: 0s; }
.ki-pulse--2 { width: 180px; height: 180px; animation-delay: 1s; }
.ki-pulse--3 { width: 240px; height: 240px; animation-delay: 2s; }
@keyframes ki-expand {
	0%   { opacity: .6; transform: translate(-50%,-50%) scale(.9); }
	100% { opacity: 0; transform: translate(-50%,-50%) scale(1); }
}
.ki-float { animation: ki-float-y 4s ease-in-out infinite; }
@keyframes ki-float-y {
	0%,100% { transform: translateY(0); }
	50%     { transform: translateY(-12px); }
}

/* ── Prämien Visual (Folie 3) ───────────────────────────────────── */
.opt-kit-slider__praemien-visual {
	position: relative;
	width: 280px; height: 280px;
	margin: 0 auto;
}
.praemien-center {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	z-index: 5;
}
.praemien-coin {
	font-size: 3.5rem;
	text-align: center;
	animation: coin-bounce 1.8s ease-in-out infinite;
}
@keyframes coin-bounce {
	0%,100% { transform: translateY(0) scale(1); }
	50%     { transform: translateY(-12px) scale(1.1); }
}
.praemien-rings { position: absolute; top: 50%; left: 50%; }
.praemien-ring {
	position: absolute;
	border-radius: 50%;
	border: 1.5px solid rgba(201,168,76,.2);
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	animation: praemien-pulse 3s ease-in-out infinite;
}
.praemien-ring--1 { width: 80px; height: 80px; }
.praemien-ring--2 { width: 130px; height: 130px; animation-delay: .75s; }
.praemien-ring--3 { width: 180px; height: 180px; animation-delay: 1.5s; }
@keyframes praemien-pulse {
	0%,100% { opacity: .5; transform: translate(-50%,-50%) scale(.95); }
	50%     { opacity: .15; transform: translate(-50%,-50%) scale(1); }
}
.praemien-badge {
	position: absolute;
	background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.08));
	border: 1px solid rgba(201,168,76,.4);
	border-radius: 20px;
	padding: .4rem .85rem;
	color: #c9a84c;
	font-size: .78rem;
	font-weight: 700;
	white-space: nowrap;
}
.praemien-badge--1 { top: 15px; left: 60%; animation: badge-float 3.2s ease-in-out infinite; }
.praemien-badge--2 { bottom: 30px; left: 10%; animation: badge-float 2.8s ease-in-out infinite .5s; }
.praemien-badge--3 { top: 45%; right: 5%; animation: badge-float 3.5s ease-in-out infinite 1s; }
@keyframes badge-float {
	0%,100% { transform: translateY(0); }
	50%     { transform: translateY(-8px); }
}
.praemien-spin { animation: none; }

/* ── Video Popup Overlay ────────────────────────────────────────── */
.msd-video-overlay {
	position: fixed;
	inset: 0;
	background: rgba(5,10,25,.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease, visibility .3s;
}
.msd-video-overlay.is-open {
	opacity: 1;
	visibility: visible;
}
.msd-video-modal {
	position: relative;
	width: min(90vw, 900px);
	background: #0a1428;
	border-radius: 12px;
	border: 1px solid rgba(201,168,76,.25);
	overflow: hidden;
}
.msd-video__close {
	position: absolute;
	top: 12px; right: 12px;
	width: 36px; height: 36px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 50%;
	color: rgba(245,240,232,.8);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: all .2s;
}
.msd-video__close:hover { background: rgba(255,255,255,.18); color: #fff; }
.msd-video__ratio {
	position: relative;
	padding-bottom: 56.25%;
}
.msd-video__ratio video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.msd-video__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.03);
}
.msd-video__placeholder p {
	color: rgba(245,240,232,.5);
	text-align: center;
	font-size: .88rem;
	max-width: 340px;
	padding: 1rem;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.opt-kit-slider__ki-visual,
	.opt-kit-slider__praemien-visual { width: 220px; height: 220px; }
	.opt-kit-slider__arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.ki-float, .praemien-coin, .praemien-ring, .praemien-badge,
	.opt-kit-slider__slide, .opt-kit-slider__play-ring { animation: none; }
}

/* ==========================================================================
   CINEMATISCHE ANIMATIONEN — Folie 2 (KI) + Folie 3 (Prämien)
   ========================================================================== */

/* ── FOLIE 2: KI-Agenten Scene ──────────────────────────────────── */
.ki-scene {
	position: relative;
	width: 340px; height: 360px;
	margin: 0 auto;
	flex-shrink: 0;
}

/* Partikel-Hintergrund */
.ki-bg-grid { position: absolute; inset: 0; overflow: hidden; }
.ki-particle {
	position: absolute;
	width: 3px; height: 3px;
	background: rgba(201,168,76,.3);
	border-radius: 50%;
	animation: ki-twinkle 3s ease-in-out infinite;
}
.ki-p1 { top:8%; left:15%; animation-delay:0s; }
.ki-p2 { top:20%; right:10%; animation-delay:.7s; }
.ki-p3 { top:65%; left:8%; animation-delay:1.2s; }
.ki-p4 { top:75%; right:18%; animation-delay:.4s; }
.ki-p5 { top:40%; left:3%; animation-delay:1.8s; }
.ki-p6 { top:30%; right:4%; animation-delay:2.2s; }
@keyframes ki-twinkle {
	0%,100% { opacity:.2; transform:scale(1); }
	50%      { opacity:.9; transform:scale(1.8); }
}

/* SVG Verbindungslinien */
.ki-connections {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	pointer-events: none;
}
.ki-conn {
	stroke: rgba(201,168,76,.2);
	stroke-width: 1;
	stroke-dasharray: 6 4;
	animation: ki-dash 3s linear infinite;
}
.ki-conn--1 { animation-delay: 0s; }
.ki-conn--2 { animation-delay: .75s; }
.ki-conn--3 { animation-delay: 1.5s; }
.ki-conn--4 { animation-delay: 2.25s; }
@keyframes ki-dash { to { stroke-dashoffset: -20; } }

/* Daten-Pakete */
.ki-packet { animation: ki-travel 2.5s ease-in-out infinite; }
.ki-packet--1 { animation-name: ki-travel-v1; animation-delay:0s; }
.ki-packet--2 { animation-name: ki-travel-h2; animation-delay:.6s; }
.ki-packet--3 { animation-name: ki-travel-v3; animation-delay:1.2s; }
.ki-packet--4 { animation-name: ki-travel-h4; animation-delay:1.8s; }
@keyframes ki-travel-v1 { 0%,100%{cy:170;opacity:0} 10%{opacity:1} 45%{cy:42;opacity:1} 55%{opacity:0} }
@keyframes ki-travel-h2 { 0%,100%{cx:170;opacity:0} 10%{opacity:1} 45%{cx:298;opacity:1} 55%{opacity:0} }
@keyframes ki-travel-v3 { 0%,100%{cy:170;opacity:0} 10%{opacity:1} 45%{cy:298;opacity:1} 55%{opacity:0} }
@keyframes ki-travel-h4 { 0%,100%{cx:170;opacity:0} 10%{opacity:1} 45%{cx:42;opacity:1} 55%{opacity:0} }

/* KI-Kern */
.ki-core-wrap {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
}
.ki-core-halo {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	border: 1px solid rgba(201,168,76,.2);
	animation: ki-halo-pulse 2.4s ease-in-out infinite;
}
.ki-core-halo--1 { width:80px;  height:80px;  animation-delay:0s; }
.ki-core-halo--2 { width:110px; height:110px; animation-delay:.8s; }
.ki-core-halo--3 { width:140px; height:140px; animation-delay:1.6s; }
@keyframes ki-halo-pulse {
	0%,100% { opacity:.5; transform:translate(-50%,-50%) scale(.95); }
	50%      { opacity:.15; transform:translate(-50%,-50%) scale(1); }
}
.ki-core-body {
	width: 72px; height: 72px;
	background: linear-gradient(145deg, rgba(201,168,76,.12), rgba(201,168,76,.04));
	border: 1.5px solid rgba(201,168,76,.6);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
	z-index: 2;
	animation: ki-core-glow 3s ease-in-out infinite;
	box-shadow: 0 0 20px rgba(201,168,76,.15), inset 0 0 15px rgba(201,168,76,.05);
}
@keyframes ki-core-glow {
	0%,100% { box-shadow: 0 0 20px rgba(201,168,76,.15), inset 0 0 15px rgba(201,168,76,.05); }
	50%      { box-shadow: 0 0 35px rgba(201,168,76,.35), inset 0 0 20px rgba(201,168,76,.1); }
}
.ki-core-label {
	font-size: .58rem;
	color: #c9a84c;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

/* Agenten-Nodes */
.ki-node {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	z-index: 5;
}
.ki-node--top    { top: 12px;  left: 50%; transform: translateX(-50%); }
.ki-node--right  { right: 10px; top: 50%;  transform: translateY(-50%); }
.ki-node--bottom { bottom: 52px; left: 50%; transform: translateX(-50%); }
.ki-node--left   { left: 10px; top: 50%;  transform: translateY(-50%); }

.ki-node-icon {
	width: 50px; height: 50px;
	background: rgba(201,168,76,.08);
	border: 1px solid rgba(201,168,76,.35);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c9a84c;
	transition: all .3s;
	animation: ki-node-bob 4s ease-in-out infinite;
}
.ki-node--right .ki-node-icon { animation-delay: 1s; }
.ki-node--bottom .ki-node-icon { animation-delay: 2s; }
.ki-node--left .ki-node-icon { animation-delay: 3s; }
@keyframes ki-node-bob {
	0%,100% { transform: translateY(0);  box-shadow: 0 4px 12px rgba(201,168,76,.1); }
	50%      { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(201,168,76,.2); }
}
.ki-node-label {
	font-size: .62rem;
	color: rgba(245,240,232,.7);
	font-weight: 600;
	white-space: nowrap;
}
.ki-node-status {
	font-size: .55rem;
	color: #22c55e;
	font-weight: 600;
	letter-spacing: .05em;
}

/* Stats Strip */
.ki-stats-strip {
	position: absolute;
	bottom: 0;
	left: 50%; transform: translateX(-50%);
	display: flex;
	gap: .5rem;
	background: rgba(201,168,76,.06);
	border: 1px solid rgba(201,168,76,.2);
	border-radius: 8px;
	padding: .45rem .85rem;
	white-space: nowrap;
}
.ki-stat-mini { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.ki-stat-val { font-size: .85rem; font-weight: 700; color: #c9a84c; line-height: 1; }
.ki-stat-key { font-size: .55rem; color: rgba(245,240,232,.45); letter-spacing: .06em; }


/* ── FOLIE 3: Prämien Scene ─────────────────────────────────────── */
.prae-scene {
	position: relative;
	width: 340px; height: 360px;
	margin: 0 auto;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

/* Fallende Münzen */
.prae-coins-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.prae-coin-fall {
	position: absolute;
	top: -20px;
	font-size: 1rem;
	opacity: .35;
	animation: prae-fall 5s ease-in infinite;
}
.prae-cf1 { left:12%;  animation-delay:0s;    animation-duration:5.5s; }
.prae-cf2 { left:28%;  animation-delay:1.1s;  animation-duration:4.8s; }
.prae-cf3 { left:48%;  animation-delay:0.5s;  animation-duration:6s;   }
.prae-cf4 { left:65%;  animation-delay:2s;    animation-duration:5.2s; }
.prae-cf5 { left:80%;  animation-delay:1.5s;  animation-duration:4.5s; }
.prae-cf6 { left:38%;  animation-delay:3s;    animation-duration:5.8s; }
@keyframes prae-fall {
	0%   { top:-20px; opacity:0; transform:rotate(0deg) scale(.8); }
	15%  { opacity:.5; }
	80%  { opacity:.3; }
	100% { top:110%; opacity:0; transform:rotate(180deg) scale(1.2); }
}

/* Empfehlungs-Kette */
.prae-chain {
	display: flex;
	align-items: center;
	gap: .5rem;
	background: rgba(201,168,76,.06);
	border: 1px solid rgba(201,168,76,.2);
	border-radius: 12px;
	padding: .65rem 1rem;
	position: relative;
	z-index: 5;
}
.prae-person {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
.prae-avatar {
	width: 44px; height: 44px;
	background: rgba(201,168,76,.12);
	border: 1.5px solid rgba(201,168,76,.5);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: #c9a84c;
	animation: prae-person-glow 3s ease-in-out infinite;
}
.prae-avatar--friend { border-color: rgba(201,168,76,.25); animation-delay: 1.5s; }
@keyframes prae-person-glow {
	0%,100% { box-shadow: 0 0 0 rgba(201,168,76,0); }
	50%      { box-shadow: 0 0 12px rgba(201,168,76,.3); }
}
.prae-person span { font-size: .65rem; color: rgba(245,240,232,.65); font-weight: 600; }
.prae-arrow-anim {
	opacity: .8;
	animation: prae-arrow-pulse 2s ease-in-out infinite;
}
@keyframes prae-arrow-pulse {
	0%,100% { opacity:.4; transform:scaleX(.9); }
	50%      { opacity:.9; transform:scaleX(1); }
}
.prae-reward-icon {
	display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.prae-trophy-wrap {
	width: 44px; height: 44px;
	background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.06));
	border: 1.5px solid rgba(201,168,76,.6);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: #c9a84c;
	animation: prae-trophy-shine 2.5s ease-in-out infinite;
}
@keyframes prae-trophy-shine {
	0%,100% { box-shadow: 0 0 8px rgba(201,168,76,.2); }
	50%      { box-shadow: 0 0 22px rgba(201,168,76,.55); }
}
.prae-reward-val { font-size: .65rem; color: #c9a84c; font-weight: 700; }

/* Zentrales Highlight */
.prae-highlight {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
}
.prae-glow-ring {
	position: absolute;
	width: 110px; height: 110px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
	animation: prae-glow 2.8s ease-in-out infinite;
}
@keyframes prae-glow {
	0%,100% { transform:scale(.9); opacity:.6; }
	50%      { transform:scale(1.1); opacity:1; }
}
.prae-amount-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(201,168,76,.08);
	border: 1.5px solid rgba(201,168,76,.45);
	border-radius: 16px;
	padding: .75rem 1.5rem;
}
.prae-plus { font-size: 1rem; color: #22c55e; font-weight: 700; line-height: 1; }
.prae-amount {
	font-size: 2rem; font-weight: 700;
	color: #c9a84c;
	line-height: 1;
	animation: prae-amount-count 1.2s ease-out forwards;
}
@keyframes prae-amount-count {
	0%   { opacity:0; transform:scale(.7); }
	100% { opacity:1; transform:scale(1); }
}
.prae-per { font-size: .65rem; color: rgba(245,240,232,.45); margin-top: 3px; white-space: nowrap; }

/* Achievement Badges */
.prae-badge-row {
	display: flex;
	gap: .4rem;
	flex-wrap: wrap;
	justify-content: center;
	z-index: 5;
	position: relative;
}
.prae-badge-tag {
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(34,197,94,.07);
	border: 1px solid rgba(34,197,94,.25);
	border-radius: 20px;
	padding: .3rem .7rem;
	font-size: .65rem;
	color: rgba(245,240,232,.75);
	font-weight: 500;
	white-space: nowrap;
	animation: prae-badge-in .5s ease-out backwards;
}
.prae-bt1 { animation-delay: .2s; }
.prae-bt2 { animation-delay: .4s; }
.prae-bt3 { animation-delay: .6s; }
@keyframes prae-badge-in {
	from { opacity:0; transform:translateY(8px); }
	to   { opacity:1; transform:translateY(0); }
}

/* Light Mode Folie 2 + 3 */
[data-theme="light"] .ki-core-body {
	background: linear-gradient(145deg, rgba(156,125,46,.12), rgba(156,125,46,.04));
	border-color: rgba(156,125,46,.6);
}
[data-theme="light"] .ki-node-icon { background: rgba(156,125,46,.08); border-color: rgba(156,125,46,.35); color: #9c7d2e; }
[data-theme="light"] .ki-node-label { color: rgba(22,32,58,.7); }
[data-theme="light"] .ki-stats-strip { background: rgba(156,125,46,.06); border-color: rgba(156,125,46,.2); }
[data-theme="light"] .ki-stat-val { color: #9c7d2e; }
[data-theme="light"] .ki-stat-key { color: rgba(22,32,58,.45); }
[data-theme="light"] .prae-chain { background: rgba(156,125,46,.06); border-color: rgba(156,125,46,.2); }
[data-theme="light"] .prae-avatar { background: rgba(156,125,46,.12); border-color: rgba(156,125,46,.5); color: #9c7d2e; }
[data-theme="light"] .prae-person span { color: rgba(22,32,58,.65); }
[data-theme="light"] .prae-amount { color: #9c7d2e; }
[data-theme="light"] .prae-per { color: rgba(22,32,58,.45); }
[data-theme="light"] .prae-amount-wrap { background: rgba(156,125,46,.08); border-color: rgba(156,125,46,.45); }
[data-theme="light"] .prae-badge-tag { color: rgba(22,32,58,.75); }
[data-theme="light"] .ki-conn { stroke: rgba(156,125,46,.2); }

/* Responsive */
@media (max-width: 900px) {
	.ki-scene, .prae-scene { width: 280px; height: 300px; transform: scale(.88); transform-origin: center; }
	.ki-node--top    { top: 5px; }
	.ki-node--bottom { bottom: 40px; }
}
@media (max-width: 600px) {
	.ki-scene, .prae-scene { display: none; } /* Auf klein-Mobil nur Text sichtbar */
}
@media (prefers-reduced-motion: reduce) {
	.ki-particle, .ki-conn, .ki-packet, .ki-core-halo, .ki-core-body,
	.ki-node-icon, .prae-coin-fall, .prae-avatar, .prae-glow-ring,
	.prae-trophy-wrap, .prae-arrow-anim, .prae-badge-tag, .prae-amount { animation: none; }
}

/* ── Prämien Portrait (Folie 3) ─────────────────────────────────── */
.prae-portrait-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.prae-portrait-img {
	filter:
		drop-shadow(-8px 12px 20px rgba(0,0,0,.7))
		drop-shadow(4px -2px 15px rgba(201,168,76,.12));
	transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}
.prae-glow-accent {
	position: absolute;
	bottom: 0; left: 50%;
	transform: translateX(-50%);
	width: 60%; height: 120px;
	background: radial-gradient(ellipse at center bottom, rgba(201,168,76,.25) 0%, transparent 70%);
	pointer-events: none;
}
.prae-overlay-badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(10,20,40,.85);
	border: 1px solid rgba(201,168,76,.45);
	border-radius: 20px;
	padding: .4rem .9rem;
	color: rgba(245,240,232,.9);
	font-size: .72rem;
	font-weight: 600;
	white-space: nowrap;
	backdrop-filter: blur(8px);
	box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.prae-ob1 { top: 20%; right: -10px; animation: prae-badge-in .6s ease-out .2s backwards, badge-float 3.2s ease-in-out infinite .8s; }
.prae-ob2 { top: 48%; right: -15px; animation: prae-badge-in .6s ease-out .5s backwards, badge-float 2.8s ease-in-out infinite .5s; }
.prae-ob3 { bottom: 18%; right: -8px; animation: prae-badge-in .6s ease-out .8s backwards, badge-float 3.5s ease-in-out infinite 1s; }
@keyframes prae-badge-in { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }
@keyframes badge-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

[data-theme="light"] .prae-overlay-badge {
	background: rgba(247,244,238,.92);
	border-color: rgba(156,125,46,.45);
	color: #16203a;
}

/* ==========================================================================
   SLIDER v3 — Seiten-Arrows, Hex-Layout, Netzwerk-Animation
   ========================================================================== */

/* ── Arrows: absolute links/rechts an der Section ─────────────── */
.opt-kit-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px; height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(201,168,76,.3);
	background: rgba(5,10,25,.6);
	color: #c9a84c;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	z-index: 20;
	transition: all .2s;
	backdrop-filter: blur(8px);
}
.opt-kit-slider__arrow:hover:not(:disabled) {
	background: rgba(201,168,76,.15);
	border-color: #c9a84c;
}
.opt-kit-slider__arrow--prev { left: 1.25rem; }
.opt-kit-slider__arrow--next { right: 1.25rem; }

/* Dots nav: absolute bottom center, kein bottom-bar mehr */
.opt-kit-slider__nav {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 20;
}

/* ── KI Hex-Scene ─────────────────────────────────────────────── */
/* Hexagonale Positionen der 6 Knoten (Radius ~130px um Zentrum) */
.ki-scene--hex { width: 360px; height: 360px; }
.ki-scene--hex .ki-connections { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Zentriere die ki-scene vertikal */
.opt-kit-slider__visual--ki {
	align-items: center !important;
}
/* Hexagonale Node-Positionen (Zentrum: 180, 180; Radius: 134px) */
.ki-node--n  { top: 10px;  left: 50%;  transform: translateX(-50%); }
.ki-node--ne { top: 80px;  right: 18px; }
.ki-node--se { bottom: 80px; right: 18px; }
.ki-node--s  { bottom: 10px; left: 50%; transform: translateX(-50%); }
.ki-node--sw { bottom: 80px; left: 18px; }
.ki-node--nw { top: 80px;  left: 18px; }

/* Packet Animations für 6 Linien */
.ki-packet--5 { animation-name: ki-travel-h4; animation-delay: 2.4s; }
.ki-packet--6 { animation-name: ki-travel-v1; animation-delay: 3s; }

/* ── Netzwerk-Animation (Slide 3) ─────────────────────────────── */
.net-scene {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.net-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
/* Animierte Verbindungslinien */
.net-line {
	stroke: rgba(201,168,76,.25);
	stroke-width: 1.5;
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	animation: net-draw 1.2s ease-out forwards;
}
.net-l1 { animation-delay: .2s; }
.net-l2 { animation-delay: .4s; }
.net-l3 { animation-delay: .6s; }
.net-l4 { animation-delay: .8s; }
.net-l5 { animation-delay: 1.2s; stroke: rgba(201,168,76,.15); }
.net-l6 { animation-delay: 1.4s; stroke: rgba(201,168,76,.15); }
.net-l7 { animation-delay: 1.6s; stroke: rgba(201,168,76,.15); }
.net-l8 { animation-delay: 1.8s; stroke: rgba(201,168,76,.15); }
.net-l9 { animation-delay: 2s; stroke: rgba(201,168,76,.15); }
.net-l10 { animation-delay: 2.2s; stroke: rgba(201,168,76,.15); }
@keyframes net-draw {
	to { stroke-dashoffset: 0; }
}
.net-label { opacity: 0; animation: net-label-in .4s ease-out forwards; }
.net-label--1 { animation-delay: 1.5s; }
.net-label--2 { animation-delay: 1.7s; }
.net-label--3 { animation-delay: 1.9s; }
.net-label--4 { animation-delay: 2.1s; }
@keyframes net-label-in { from {opacity:0;transform:scale(.5)} to {opacity:1;transform:scale(1)} }

/* Reset: wenn Slide neu aktiv wird (Animation neu starten) */
.opt-kit-slider__slide:not(.is-active) .net-line { animation: none; stroke-dashoffset: 200; }
.opt-kit-slider__slide:not(.is-active) .net-label { opacity: 0; animation: none; }

/* Zentraler Knoten */
.net-center {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
}
.net-center-ring {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 90px; height: 90px;
	border-radius: 50%;
	border: 1.5px solid rgba(201,168,76,.3);
	animation: net-pulse 2s ease-in-out infinite;
}
@keyframes net-pulse { 0%,100%{transform:translate(-50%,-50%) scale(.95);opacity:.6} 50%{transform:translate(-50%,-50%) scale(1.05);opacity:.2} }
.net-center-body {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: linear-gradient(145deg,rgba(201,168,76,.14),rgba(201,168,76,.05));
	border: 1.5px solid rgba(201,168,76,.6);
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	gap: 4px;
	color: #c9a84c;
	box-shadow: 0 0 25px rgba(201,168,76,.2);
}
.net-center-label { font-size: .58rem; color: #c9a84c; font-weight: 700; letter-spacing: .08em; }

/* Referral & Kunden Knoten */
.net-node {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	z-index: 5;
}
.net-node--ref { animation: net-node-appear .5s ease-out backwards; }
.net-ref1 { top: 14%; left: 13%; animation-delay: .5s; }
.net-ref2 { top: 14%; right: 13%; animation-delay: .7s; }
.net-ref3 { bottom: 18%; left: 18%; animation-delay: .9s; }
.net-ref4 { bottom: 18%; right: 18%; animation-delay: 1.1s; }
.net-node--cust { animation: net-node-appear .4s ease-out backwards; }
.net-c1 { top: 2%; left: 0; animation-delay: 1.5s; }
.net-c2 { top: 28%; left: 0; animation-delay: 1.7s; }
.net-c3 { top: 2%; right: 0; animation-delay: 1.9s; }
.net-c4 { top: 28%; right: 0; animation-delay: 2.1s; }
.net-c5 { bottom: 2%; left: 5%; animation-delay: 2.3s; }
.net-c6 { bottom: 2%; right: 5%; animation-delay: 2.5s; }
@keyframes net-node-appear { from{opacity:0;transform:scale(.4)} to{opacity:1;transform:scale(1)} }

.net-avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(201,168,76,.1);
	border: 1.5px solid rgba(201,168,76,.45);
	display: flex; align-items: center; justify-content: center;
	color: #c9a84c;
}
.net-avatar--new {
	width: 34px; height: 34px;
	background: rgba(34,197,94,.08);
	border-color: rgba(34,197,94,.35);
	color: #22c55e;
}
.net-node--ref span:not(.net-badge-small) { font-size: .62rem; color: rgba(245,240,232,.65); font-weight: 600; }
.net-badge-small {
	font-size: .55rem;
	color: #22c55e;
	background: rgba(34,197,94,.08);
	border: 1px solid rgba(34,197,94,.2);
	border-radius: 10px;
	padding: 1px 6px;
	font-weight: 600;
}
.net-new-label { font-size: .58rem; color: rgba(245,240,232,.5); }

/* Light Mode */
[data-theme="light"] .net-avatar { background: rgba(156,125,46,.1); border-color: rgba(156,125,46,.45); color: #9c7d2e; }
[data-theme="light"] .net-avatar--new { background: rgba(34,197,94,.06); }
[data-theme="light"] .net-node--ref span { color: rgba(22,32,58,.65); }
[data-theme="light"] .net-new-label { color: rgba(22,32,58,.5); }
[data-theme="light"] .opt-kit-slider__arrow { background: rgba(247,244,238,.85); }

/* Responsive */
@media (max-width: 900px) {
	.opt-kit-slider__arrow--prev { left: .5rem; }
	.opt-kit-slider__arrow--next { right: .5rem; }
	.ki-scene--hex { width: 280px; height: 280px; transform: scale(.82); transform-origin: center; }
}
@media (max-width: 600px) {
	.ki-scene--hex, .net-scene { display: none; }
	.opt-kit-slider__arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.net-line { animation: none; stroke-dashoffset: 0; }
	.net-label { opacity: 1; animation: none; }
	.net-node--ref, .net-node--cust { animation: none; opacity: 1; }
	.net-center-ring { animation: none; }
}

/* ==========================================================================
   FIX: Schatten-Entfernung Folie 2+3 + KWK Produkt-Animation
   ========================================================================== */

/* Portrait ::after nur für Folie 1 (Portrait), nicht für KI/KWK */
.opt-kit-slider__visual--ki::after,
.opt-kit-slider__visual--praemien::after {
	display: none !important;
	content: none !important;
}
/* Auch den Glow unter ki-scene und net-scene entfernen */
.ki-scene::after, .kwk-scene::after, .net-scene::after { display: none; }

/* ── KWK Produkt-Animation ─────────────────────────────────────── */
.kwk-scene {
	position: relative;
	width: 340px; height: 340px;
	margin: 0 auto;
	flex-shrink: 0;
}
.kwk-lines {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	pointer-events: none;
}
.kwk-line {
	stroke: rgba(201,168,76,.22);
	stroke-width: 1.5;
	stroke-dasharray: 180;
	stroke-dashoffset: 180;
	animation: kwk-draw 1.2s ease-out forwards;
}
.kwk-ln1 { animation-delay: .3s; }
.kwk-ln2 { animation-delay: .5s; }
.kwk-ln3 { animation-delay: .7s; }
.kwk-ln4 { animation-delay: .9s; }
.kwk-ln5 { animation-delay: 1.4s; stroke: rgba(34,197,94,.25); }
.kwk-ln6 { animation-delay: 1.6s; stroke: rgba(34,197,94,.25); }
.kwk-ln7 { animation-delay: 1.8s; stroke: rgba(34,197,94,.25); }
.kwk-ln8 { animation-delay: 2.0s; stroke: rgba(34,197,94,.25); }
@keyframes kwk-draw { to { stroke-dashoffset: 0; } }

.kwk-label { opacity: 0; animation: kwk-label-show .4s ease-out forwards; }
.kwk-lb1 { animation-delay: 1.0s; }
.kwk-lb2 { animation-delay: 1.2s; }
.kwk-lb3 { animation-delay: 1.4s; }
.kwk-lb4 { animation-delay: 1.6s; }
@keyframes kwk-label-show { from{opacity:0;transform:scale(.6)} to{opacity:1;transform:scale(1)} }

/* Wachsende Ringe */
.kwk-grow-ring {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	border-radius: 50%;
	border: 1.5px solid rgba(201,168,76,.2);
	animation: kwk-ring-pulse 3s ease-in-out infinite;
	pointer-events: none;
}
.kwk-gr1 { width: 100px; height: 100px; animation-delay: 0s; }
.kwk-gr2 { width: 170px; height: 170px; animation-delay: .8s; border-color: rgba(201,168,76,.12); }
.kwk-gr3 { width: 240px; height: 240px; animation-delay: 1.6s; border-color: rgba(201,168,76,.06); }
@keyframes kwk-ring-pulse {
	0%   { opacity:0; transform:translate(-50%,-50%) scale(.85); }
	25%  { opacity:1; }
	75%  { opacity:.35; }
	100% { opacity:0; transform:translate(-50%,-50%) scale(1.02); }
}

/* Zentrum */
.kwk-center {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
}
.kwk-center-ring {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%,-50%);
	width: 90px; height: 90px;
	border-radius: 50%;
	border: 1.5px solid rgba(201,168,76,.35);
	animation: kwk-ring-pulse 2.5s ease-in-out infinite;
}
.kwk-center-body {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: linear-gradient(145deg,rgba(201,168,76,.14),rgba(201,168,76,.05));
	border: 1.5px solid rgba(201,168,76,.65);
	display: flex; flex-direction: column;
	align-items: center; justify-content: center;
	gap: 4px; color: #c9a84c;
	box-shadow: 0 0 25px rgba(201,168,76,.25);
	animation: kwk-glow-pulse 2.5s ease-in-out infinite;
}
@keyframes kwk-glow-pulse {
	0%,100% { box-shadow: 0 0 15px rgba(201,168,76,.2); }
	50%      { box-shadow: 0 0 30px rgba(201,168,76,.45); }
}
.kwk-center-label { font-size: .58rem; color: #c9a84c; font-weight: 700; letter-spacing: .08em; }

/* Knoten */
.kwk-node {
	position: absolute;
	display: flex; flex-direction: column;
	align-items: center; gap: 3px;
	z-index: 5;
}
.kwk-node--n  { top: 8px;  left: 50%; transform: translateX(-50%); animation: kwk-node-appear .4s ease-out .6s backwards; }
.kwk-node--e  { right: 8px; top: 50%; transform: translateY(-50%); animation: kwk-node-appear .4s ease-out .8s backwards; }
.kwk-node--s  { bottom: 8px; left: 50%; transform: translateX(-50%); animation: kwk-node-appear .4s ease-out 1.0s backwards; }
.kwk-node--w  { left: 8px; top: 50%; transform: translateY(-50%); animation: kwk-node-appear .4s ease-out 1.2s backwards; }
.kwk-node--nw2 { top: 2%;  left: 18%; animation: kwk-node-appear .4s ease-out 1.8s backwards; }
.kwk-node--ne2 { top: 2%;  right: 18%; animation: kwk-node-appear .4s ease-out 2.0s backwards; }
.kwk-node--en1 { top: 25%; right: 2%; animation: kwk-node-appear .4s ease-out 2.2s backwards; }
.kwk-node--en2 { bottom: 25%; right: 2%; animation: kwk-node-appear .4s ease-out 2.4s backwards; }
@keyframes kwk-node-appear {
	from { opacity:0; transform:scale(.4); }
	to   { opacity:1; transform:scale(1); }
}

.kwk-avatar {
	width: 46px; height: 46px;
	border-radius: 50%;
	background: rgba(201,168,76,.1);
	border: 1.5px solid rgba(201,168,76,.45);
	display: flex; align-items: center; justify-content: center;
	color: #c9a84c;
	animation: kwk-node-bob 4s ease-in-out infinite;
}
.kwk-avatar--new {
	width: 36px; height: 36px;
	background: rgba(34,197,94,.08);
	border-color: rgba(34,197,94,.35);
	color: #22c55e;
	animation-delay: 1s;
}
@keyframes kwk-node-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.kwk-node-label { font-size: .62rem; color: rgba(245,240,232,.65); font-weight: 600; }
.kwk-new-badge {
	font-size: .55rem;
	color: #22c55e;
	background: rgba(34,197,94,.08);
	border: 1px solid rgba(34,197,94,.2);
	border-radius: 10px;
	padding: 1px 5px;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	animation: kwk-badge-in .4s ease-out forwards;
}
.kwk-node--n .kwk-new-badge { animation-delay: 1.0s; }
.kwk-node--e .kwk-new-badge { animation-delay: 1.2s; }
.kwk-node--s .kwk-new-badge { animation-delay: 1.4s; }
.kwk-node--w .kwk-new-badge { animation-delay: 1.6s; }
@keyframes kwk-badge-in { from{opacity:0;transform:translateY(4px)} to{opacity:1;transform:translateY(0)} }
.kwk-new-cust { font-size: .58rem; color: rgba(245,240,232,.5); }

/* Reset bei inaktiven Slides */
.opt-kit-slider__slide:not(.is-active) .kwk-line { animation: none; stroke-dashoffset: 180; }
.opt-kit-slider__slide:not(.is-active) .kwk-label { opacity: 0; animation: none; }
.opt-kit-slider__slide:not(.is-active) .kwk-node { opacity: 0; animation: none; }
.opt-kit-slider__slide:not(.is-active) .kwk-new-badge { opacity: 0; animation: none; }

/* Light Mode */
[data-theme="light"] .kwk-avatar { background: rgba(156,125,46,.1); border-color: rgba(156,125,46,.45); color: #9c7d2e; }
[data-theme="light"] .kwk-center-body { background: linear-gradient(145deg,rgba(156,125,46,.12),rgba(156,125,46,.04)); border-color: rgba(156,125,46,.65); }
[data-theme="light"] .kwk-node-label { color: rgba(22,32,58,.65); }
[data-theme="light"] .kwk-center-label { color: #9c7d2e; }

/* Responsive */
@media (max-width: 900px) { .kwk-scene { width: 260px; height: 260px; } }
@media (max-width: 600px) { .kwk-scene { display: none; } }
@media (prefers-reduced-motion: reduce) {
	.kwk-line { animation: none; stroke-dashoffset: 0; }
	.kwk-label { opacity: 1; animation: none; }
	.kwk-node, .kwk-new-badge, .kwk-grow-ring, .kwk-center-body { animation: none; opacity: 1; }
}

/* ==========================================================================
   FIX: Folie 3 Animation zentriert (wie Folie 2)
   ========================================================================== */
.opt-kit-slider__visual--praemien {
	align-items: center !important;
	justify-content: center !important;
}
/* kwk-scene vertikal zentrieren */
.opt-kit-slider__visual--praemien .kwk-scene {
	margin: 0 auto;
}

/* Ghost-Button (3. CTA) */
.opt-kit-btn--ghost {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .65rem 1.4rem;
	border: 1px solid rgba(201,168,76,.3);
	background: transparent;
	color: rgba(245,240,232,.7);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-decoration: none;
	transition: all .2s ease;
	cursor: pointer;
	border-radius: 2px;
}
.opt-kit-btn--ghost:hover {
	border-color: rgba(201,168,76,.6);
	color: #c9a84c;
	background: rgba(201,168,76,.06);
}
[data-theme="light"] .opt-kit-btn--ghost {
	border-color: rgba(156,125,46,.3);
	color: rgba(22,32,58,.7);
}
[data-theme="light"] .opt-kit-btn--ghost:hover {
	border-color: rgba(156,125,46,.6);
	color: #9c7d2e;
	background: rgba(156,125,46,.06);
}
