* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #16172C;
	--secondary-color: #2e3ecb;
	--accent-color: #667eea;
	--accent-color-2: #764ba2;
	--text-color: #333;
	--text-muted: #666;
	--border-color: #e0e0e0;
	--success-color: #4CAF50;
	--error-color: #e74c3c;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
}

/* ============= HEADER ============= */
.site-header {
	background-color: var(--primary-color);
	padding: 20px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo {
	height: 60px;
	width: auto;
}

.header-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: white;
}

/* ============= CONTAINER ============= */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.container-narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* ============= EYEBROW (Kleine obere Zeile) ============= */
.eyebrow {
	display: inline-block;
	background-color: rgba(46, 62, 203, 0.1);
	color: var(--secondary-color);
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

/* ============= TYPOGRAPHIE ============= */
h1 {
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 24px;
	color: #1a1a1a;
	font-weight: 700;
}

.hero h1 {
	text-align: left;
}

h2 {
	font-size: 1.8rem;
	line-height: 1.3;
	margin-bottom: 20px;
	color: #1a1a1a;
	font-weight: 700;
}

h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
	color: #1a1a1a;
	font-weight: 600;
}

h4 {
	font-size: 1.3rem;
	line-height: 1.5;
	margin-bottom: 30px;
	color: #444;
	font-weight: 400;
}

p {
	margin-bottom: 16px;
}

/* ============= HERO SECTION ============= */
.hero {
	padding: 30px 0 20px 0;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-top: 30px;
}

.hero-video {
	background: #000;
	border-radius: 12px;
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
}

.hero-video-placeholder {
	text-align: center;
	padding: 20px;
}

.hero-video-placeholder .play-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border: 3px solid white;
}

.hero-video-placeholder .play-icon::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 20px solid white;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	margin-left: 6px;
}

.hero-video-placeholder .video-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.hero-video-placeholder .video-script {
	font-size: 0.85rem;
	opacity: 0.7;
	max-width: 300px;
	margin: 0 auto;
	line-height: 1.5;
}

.hero-cta-block {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ============= CTA BUTTON ============= */
.cta-button {
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
	color: white;
	border: none;
	padding: 18px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	font-family: inherit;
	width: 100%;
	max-width: 480px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.cta-button:active {
	transform: translateY(0);
}

.cta-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.cta-secondary {
	background: white;
	color: var(--secondary-color);
	border: 2px solid var(--secondary-color);
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}

.cta-secondary:hover {
	background: var(--secondary-color);
	color: white;
}

/* ============= SECTIONS ============= */
.section {
	padding: 50px 0;
	border-top: 1px solid var(--border-color);
}

.section:first-of-type {
	border-top: none;
}

.section-title {
	font-size: 1.8rem;
	margin-bottom: 30px;
	color: #1a1a1a;
}

.bullet-list {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 16px;
}

.bullet-list li {
	background: #f8f9fc;
	padding: 18px 22px;
	border-left: 4px solid var(--secondary-color);
	border-radius: 6px;
	font-size: 1.05rem;
	line-height: 1.55;
}

.bullet-list.checks li {
	background: #f4faf5;
	border-left-color: var(--success-color);
	padding-left: 50px;
	position: relative;
}

.bullet-list.checks li::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--success-color) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6 11.5L2.5 8l1.4-1.4L6 8.7l5.6-5.6L13 4.5z'/></svg>") center/14px no-repeat;
}

.transition-box {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
	border-left: 4px solid var(--accent-color);
	padding: 22px 26px;
	border-radius: 6px;
	font-size: 1.1rem;
	font-style: italic;
	color: #1a1a1a;
	margin-top: 30px;
}

/* ============= WAITLIST / RESERVATION BOX ============= */
.waitlist-box {
	background: var(--primary-color);
	color: white;
	padding: 40px;
	border-radius: 12px;
	text-align: center;
	margin-top: 30px;
}

.waitlist-box h2 {
	color: white;
	margin-bottom: 16px;
}

.waitlist-box p {
	font-size: 1.05rem;
	max-width: 600px;
	margin: 0 auto 24px auto;
	opacity: 0.9;
}

.reservation-amount {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 18px;
	border-radius: 20px;
	font-weight: 700;
	color: white;
	margin-bottom: 14px;
	font-size: 1.1rem;
}

.reservation-note {
	font-size: 0.9rem;
	opacity: 0.7;
	margin-top: 16px;
}

.waitlist-box .cta-button {
	max-width: 480px;
	margin: 0 auto;
}

/* ============= FOOTER ============= */
.site-footer {
	background-color: #f8f9fc;
	padding: 30px 0;
	margin-top: 60px;
	border-top: 1px solid var(--border-color);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-content a {
	color: var(--secondary-color);
	text-decoration: none;
	margin: 0 10px;
}

.footer-content a:hover {
	text-decoration: underline;
}

/* ============= ASSESSMENT OVERLAY ============= */
.assessment-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(22, 23, 44, 0.85);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	padding: 20px;
	overflow-y: auto;
}

.assessment-overlay.active {
	display: flex;
}

.assessment-card {
	background: white;
	border-radius: 12px;
	max-width: 720px;
	width: 100%;
	max-height: calc(100vh - 40px);
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.assessment-header {
	padding: 20px 30px;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.progress-track {
	flex: 1;
	height: 8px;
	background: var(--border-color);
	border-radius: 4px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
	width: 0%;
	transition: width 0.3s ease;
}

.progress-text {
	font-size: 0.9rem;
	color: var(--text-muted);
	font-weight: 600;
	white-space: nowrap;
}

.assessment-close {
	background: none;
	border: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: var(--text-muted);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.assessment-close:hover {
	background: #f0f0f0;
}

.assessment-body {
	padding: 30px;
	overflow-y: auto;
	flex: 1;
}

.assessment-step {
	display: none;
}

.assessment-step.active {
	display: block;
}

.question-label {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 24px;
	line-height: 1.3;
}

.question-helper {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin-bottom: 20px;
	margin-top: -16px;
}

/* Option Card (Single + Multi) */
.option-card {
	display: block;
	padding: 16px 20px;
	border: 2px solid var(--border-color);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.2s;
	margin-bottom: 10px;
	user-select: none;
	font-size: 1rem;
	background: white;
}

.option-card:hover {
	border-color: var(--accent-color);
	background: #f8f9fc;
}

.option-card input {
	margin-right: 12px;
	transform: scale(1.2);
	vertical-align: middle;
}

.option-card.selected {
	border-color: var(--secondary-color);
	background: rgba(46, 62, 203, 0.05);
	font-weight: 600;
}

/* Text input area */
.text-area-input {
	width: 100%;
	min-height: 140px;
	padding: 14px 18px;
	font-size: 1rem;
	border: 2px solid var(--border-color);
	border-radius: 10px;
	font-family: inherit;
	resize: vertical;
	transition: border-color 0.2s;
}

.text-area-input:focus {
	outline: none;
	border-color: var(--secondary-color);
}

.email-input {
	width: 100%;
	padding: 16px 20px;
	font-size: 1.05rem;
	border: 2px solid var(--border-color);
	border-radius: 10px;
	font-family: inherit;
	transition: border-color 0.2s;
}

.email-input:focus {
	outline: none;
	border-color: var(--secondary-color);
}

.email-input.invalid {
	border-color: var(--error-color);
}

.error-message {
	display: none;
	color: var(--error-color);
	font-size: 0.9rem;
	margin-top: 8px;
}

.error-message.visible {
	display: block;
}

/* Final step - Email */
.final-step .question-label {
	margin-bottom: 12px;
}

.final-step .step-intro {
	font-size: 1rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	line-height: 1.5;
}

.consent-text {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-top: 16px;
	line-height: 1.5;
}

.consent-text a {
	color: var(--secondary-color);
}

/* Assessment Footer */
.assessment-footer {
	padding: 20px 30px;
	border-top: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	gap: 12px;
	background: #fafafa;
}

.btn-back {
	background: white;
	border: 2px solid var(--border-color);
	color: var(--text-muted);
	padding: 12px 24px;
	font-size: 1rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.2s;
	font-family: inherit;
}

.btn-back:hover {
	border-color: var(--text-muted);
	color: var(--text-color);
}

.btn-back:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.btn-next {
	background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-2) 100%);
	color: white;
	border: none;
	padding: 12px 32px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
	font-family: inherit;
	margin-left: auto;
}

.btn-next:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(102, 126, 234, 0.5);
}

.btn-next:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

/* ============= DANKE PAGE ============= */
.thank-you-card {
	background: white;
	padding: 50px 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	text-align: center;
	margin-top: 40px;
}

.thank-you-card .check-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--success-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.thank-you-card .check-circle svg {
	width: 40px;
	height: 40px;
}

.thank-you-card h1 {
	text-align: center;
	margin-bottom: 16px;
	font-size: 2rem;
}

.thank-you-card p {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 500px;
	margin: 0 auto 16px auto;
	line-height: 1.6;
}

/* ============= MOBILE ============= */
@media (max-width: 768px) {
	.logo {
		height: 50px;
	}
	.header-text {
		font-size: 1.1rem;
	}
	.container {
		padding: 30px 15px;
	}
	h1 {
		font-size: 1.7rem;
	}
	h2 {
		font-size: 1.4rem;
	}
	h4 {
		font-size: 1.05rem;
	}
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.cta-button {
		font-size: 1rem;
		padding: 16px 24px;
	}
	.assessment-card {
		max-height: calc(100vh - 20px);
	}
	.assessment-header {
		padding: 16px 20px;
	}
	.assessment-body {
		padding: 24px 20px;
	}
	.assessment-footer {
		padding: 16px 20px;
	}
	.question-label {
		font-size: 1.15rem;
	}
	.waitlist-box {
		padding: 30px 22px;
	}
	.section {
		padding: 40px 0;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 1.4rem;
	}
	.eyebrow {
		font-size: 0.75rem;
	}
	.btn-next, .btn-back {
		padding: 12px 18px;
		font-size: 0.95rem;
	}
}
