:root {
	--primary-color: #000;
	--secondary-color: #fff;
	--accent-color: #6366f1;
	--text-gray: #666;
	--light-gray: #f8f9fa;
	--border-color: #e5e7eb;
	--gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: var(--primary-color);
	overflow-x: hidden;
}

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: var(--transition);
}

nav {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem;
}

.logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--primary-color);
	font-weight: 500;
	transition: var(--transition);
}

.nav-links a:hover {
	color: var(--accent-color);
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.menu-toggle span {
	width: 25px;
	height: 3px;
	background: var(--primary-color);
	transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100vw;
}

.hero-placeholder {
  visibility: hidden;       /* unsichtbar, aber nimmt Platz ein */
  user-select: none;        /* kein Markieren */
  margin: 0;                /* kein zusätzlicher Abstand */
  font-size: inherit;       /* gleiche Schriftgröße wie Haupttext */
  line-height: inherit;     /* gleiche Zeilenhöhe */
  font-weight: inherit;     /* gleiche Schriftstärke */
  white-space: nowrap;      /* kein Zeilenumbruch */
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	animation: float 20s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

.hero-content {
	max-width: 800px;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	margin-bottom: 1rem;
	letter-spacing: -0.02em;
	animation: fadeInUp 1s ease-out;
}

.hero p {
	font-size: clamp(1.1rem, 2.5vw, 1.3rem);
	margin-bottom: 2rem;
	opacity: 0.9;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: var(--transition);
	animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Section Styles */
section {
	padding: 5rem 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.section-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--primary-color);
}

/* About Section */
.about {
	background: var(--light-gray);
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-content p {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	margin-bottom: 1.5rem;
	color: var(--text-gray);
}

.ventures {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.mission {
    position: relative;
    z-index: 1;
    background: #ffffff; /* Expliziter Hintergrund */
    margin-top: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
    clear: both; /* Clearfix falls nötig */
}

/* Ventures Grid */
.ventures-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.venture-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	text-align: center;
	position: relative;
	z-index: 3;
	margin-bottom: 1.5rem;
	position: relative;
	overflow: hidden;
}

.venture-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.venture-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
	transition: left 0.5s ease;
}

.venture-card:hover::before {
	left: 100%;
}

.venture-logo {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
}

.venture-card h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.venture-card p {
	color: var(--text-gray);
	margin-bottom: 1.5rem;
}

.learn-more {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.learn-more:hover {
	color: var(--primary-color);
}

/* Mission Section */
.mission {
	background: var(--secondary-color);
	color: black;
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.mission-item {
	text-align: center;
}

.mission-icon {
	width: 80px;
	height: 80px;
	background: var(--accent-color);
	border-radius: 50%;
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
}

.mission-item h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.mission-item p {
	opacity: 0.8;
}

/* Partners Section */
.partners {
	background: var(--light-gray);
}

.partners-slider {
	overflow: hidden;
	margin-top: 3rem;
}

.partners-track {
	display: flex;
	gap: 3rem;
	animation: scroll 20s linear infinite;
}

.partner-logo {
	min-width: 150px;
	height: 80px;
	background: white;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-gray);
	font-weight: 600;
	filter: grayscale(100%);
	transition: var(--transition);
}

.partner-logo:hover {
	filter: grayscale(0%);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

/* Footer */
footer {
	background: var(--primary-color);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr; /* Erste Spalte breiter für Brand */
    gap: 2rem;
    align-items: start;
}

.footer-section nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section nav a {
    display: block;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.footer-section h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-section p {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
	display: block;
	margin-bottom: 2.5rem;
	line-height: 1.5;
}

.footer-section a:hover {
	color: white;
}

.social-links {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem; /* Abstand zwischen den Icons */
    font-size: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.social-links a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 1rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr; /* Alles untereinander */
		text-align: center;
	}

	.footer-section {
		margin-bottom: 2rem;
	}

	.footer-section nav {
		align-items: center;
	}

	.footer-section h3,
	.footer-section p {
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
}


/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	color: white;
	padding: 1rem;
	transform: translateY(100%);
	transition: var(--transition);
	z-index: 1000;
}

.cookie-banner.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.cookie-accept {
	background: var(--accent-color);
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
}

.cookie-accept:hover {
	background: #5048e5;
}

/* Responsive Design */
@media (max-width: 768px) {
	.menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: all 0.3s ease-in-out;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--background-color, #ffffff);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        z-index: 999;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.4s ease-in, opacity 0.4s ease-in, visibility 0.4s;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 15px 20px;
        color: var(--primary-color, #333);
        text-decoration: none;
        font-size: 1.1em;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links li a:hover,
    .nav-links li a:focus {
        background-color: var(--hover-color, #f5f5f5);
        color: var(--accent-color, #007bff);
    }

	.ventures-grid {
		grid-template-columns: 1fr;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.partners-track {
		gap: 1.5rem;
	}

	.partner-logo {
		min-width: 120px;
		height: 60px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 1rem;
	}

	.hero-content {
		padding: 0 1rem;
	}

	section {
		padding: 3rem 0;
	}
}

/* Accessibility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Focus styles */
button:focus,
a:focus {
	outline: 2px solid var(--accent-color);
	outline-offset: 2px;
}


.logo {
	display: flex;
	align-items: center;
	/* vertikal zentrieren */
	justify-content: center;
	/* horizontal zentrieren */
	gap: 8px;
	/* Abstand zwischen Bild und Text */
}

/* Contact & Newsletter Section */
.contact-newsletter {
	background: var(--secondary-color);
	padding: 5rem 0;
}

.contact-section {
	background: white;
	padding: 2.5rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
	margin-bottom: 3rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.newsletter-section {
	background: white;
	border: 1px solid var(--border-color);
	padding: 2.5rem;
	border-radius: 15px;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.newsletter-content {
	margin-bottom: 2rem;
}

.contact-section h2 {
	font-size: clamp(2rem, 5vw, 3rem);
	margin-bottom: 1rem;
	color: var(--primary-color);
	text-align: center;
}

.newsletter-section h2 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
	font-weight: 600;
}

.contact-section p {
	color: var(--text-gray);
	margin-bottom: 2rem;
	text-align: center;
}

.newsletter-section p {
	color: var(--text-gray);
	font-size: 1rem;
	line-height: 1.5;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.newsletter-inputs {
	display: flex;
	gap: 1rem;
	width: 100%;
	max-width: 450px;
	flex-wrap: wrap;
	justify-content: center;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.newsletter-inputs .form-group {
	flex: 1;
	min-width: 180px;
}

.form-group input,
.form-group textarea {
	padding: 1rem;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--transition);
	font-family: inherit;
}

.newsletter-inputs input {
	padding: 0.75rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	font-size: 0.95rem;
	background: var(--light-gray);
	color: var(--primary-color);
	transition: var(--transition);
	width: 100%;
}

.newsletter-inputs input::placeholder {
	color: var(--text-gray);
}

.newsletter-inputs input:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
	background: white;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	background: var(--gradient);
	color: white;
	border: none;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	margin-top: 0.5rem;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.newsletter-btn {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	min-width: 120px;
}

.newsletter-btn:hover {
	background: #333;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.newsletter-note {
	font-size: 0.85rem;
	color: var(--text-gray);
	text-align: center;
	margin-top: 1rem;
	margin-bottom: 0;
}

/* Responsive Design für Contact & Newsletter */
@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
	}

	.newsletter-inputs {
		flex-direction: column;
		align-items: stretch;
	}

	.newsletter-inputs .form-group {
		min-width: unset;
		flex: unset;
	}

	.contact-section {
		padding: 2rem;
	}

	.newsletter-section {
		padding: 2rem;
		margin: 2rem 1rem 0;
	}

	.contact-newsletter {
		padding: 3rem 0;
	}

	.newsletter-icon {
		font-size: 2rem;
	}

	.newsletter-section h2 {
		font-size: 1.5rem;
	}
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
	opacity: 0;
	visibility: hidden;
}

.preloader-logo {
	position: relative;
	font-size: 3rem;
	font-weight: 900;
	color: white;
	letter-spacing: 0.2em;
}

.preloader-logo::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 3px;
	background: white;
	animation: loadingBar 2s ease-in-out infinite;
}

@keyframes loadingBar {

	0%,
	100% {
		width: 0;
		left: 0;
	}

	50% {
		width: 100%;
		left: 0;
	}
}


/* Morphing Background Shapes */
.morphing-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.morphing-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	animation: morph 15s ease-in-out infinite;
}

.morphing-shape:nth-child(1) {
	width: 300px;
	height: 300px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.morphing-shape:nth-child(2) {
	width: 200px;
	height: 200px;
	top: 60%;
	right: 15%;
	animation-delay: 5s;
}

.morphing-shape:nth-child(3) {
	width: 150px;
	height: 150px;
	bottom: 20%;
	left: 60%;
	animation-delay: 10s;
}

@keyframes morph {

	0%,
	100% {
		transform: scale(1) rotate(0deg);
		border-radius: 50%;
	}

	25% {
		transform: scale(1.2) rotate(90deg);
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	}

	50% {
		transform: scale(0.8) rotate(180deg);
		border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
	}

	75% {
		transform: scale(1.1) rotate(270deg);
		border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
	}
}

/* Parallax Scrolling */
.parallax-element {
	transition: transform 0.1s ease-out;
}

/* Mouse Tracking Cursor */
.custom-cursor {
	position: fixed;
	width: 20px;
	height: 20px;
	background: rgba(99, 102, 241, 0.6);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9998;
	transition: all 0.1s ease;
	backdrop-filter: blur(10px);
}

.custom-cursor.hover {
	width: 40px;
	height: 40px;
	background: rgba(99, 102, 241, 0.3);
}

/* Magnetic Effect for Buttons */
.magnetic {
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Floating Elements */
.floating-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.floating-dot {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: float-random 20s linear infinite;
}

@keyframes float-random {
	0% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100vh) rotate(360deg);
		opacity: 0;
	}
}

/* Text Reveal Animation */
.text-reveal {
	overflow: hidden;
	position: relative;
}

.text-reveal .text {
	transform: translateY(100%);
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-reveal.active .text {
	transform: translateY(0);
}

/* Gradient Text Animation */
.gradient-text {
	background: linear-gradient(-45deg, #667eea, #764ba2, #667eea, #764ba2);
	background-size: 400% 400%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

/* Logo Enhancement in Footer */
.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1rem;
}

.footer-logo img {
	width: 30px;
	height: 30px;
	filter: brightness(0) invert(1);
}

/* Scroll Progress Bar */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	z-index: 1001;
	transition: width 0.1s ease;
}

/* Page Transition Overlay */
.page-transition {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	z-index: 10000;
	transform: translateX(-100%);
	transition: transform 0.5s ease;
}

.page-transition.active {
	transform: translateX(0);
}

/* DSGVO Cookie Banner Enhanced */
.cookie-banner {
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, #667eea, transparent);
}

/* Easter Egg - Konami Code */
.easter-egg {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	background: rgba(0, 0, 0, 0.9);
	color: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	z-index: 10001;
	transition: transform 0.3s ease;
}

.easter-egg.active {
	transform: translate(-50%, -50%) scale(1);
}

/* Loading States */
.loading {
	position: relative;
	overflow: hidden;
}

.loading::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}


/* Performance Optimizations */
* {
	will-change: auto;
}

.venture-card,
.mission-item,
.hero-content {
	will-change: transform, opacity;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.morphing-shape,
	.floating-dot {
		animation: none;
	}
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	:root {
		--accent-color: #0066cc;
		--text-gray: #333;
	}
}

/* Print Styles */
@media print {

	.preloader,
	.dark-mode-toggle,
	.custom-cursor,
	.cookie-banner,
	.morphing-bg,
	.floating-elements {
		display: none !important;
	}

	body {
		background: white !important;
		color: black !important;
	}
}

.text-scramble {
  position: absolute;
  top: 0;
  left: 0;
}

/* Loading Screen Enhancements */
.loading-text {
  margin-top: 1rem;
  font-size: 1rem;
  color: #666;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  margin-top: 1rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Stats Counter */
.stats-counter {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  padding-bottom: 120px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Enhanced Venture Cards */
.venture-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Magnetic Buttons */
.cta-button, .learn-more, .submit-btn {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive */
@media (max-width: 768px) {
  .stats-counter {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Deaktiviere aufwendige Effekte auf Mobile */
  .venture-card {
    transform: none !important;
  }
  
  .cta-button, .learn-more, .submit-btn {
    transform: none !important;
  }
}

/* Navigation Active State */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Ventures Page Hero */
.ventures-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.ventures-hero .hero-content {
    z-index: 2;
    position: relative;
}

.ventures-hero .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ventures-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Venture Detail Sections */
.venture-detail {
    padding: 4rem 0;
    position: relative;
}

.venture-detail.alt {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.venture-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.venture-logo-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    flex-shrink: 0;
}

.venture-logo-large .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    position: relative;
}

.venture-logo-large .logo-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.venture-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.venture-content {
    max-width: none;
    line-height: 1.8;
}

.venture-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Genre Showcase */
.genre-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.genre-item {
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}

.genre-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.genre-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Energy Meter */
.energy-meter {
    margin-top: 3rem;
}

.meter-item {
    margin-bottom: 2rem;
}

.meter-bar {
    width: 100%;
    height: 8px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 2s ease;
    border-radius: 4px;
}

.genre-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Impact Metrics */
.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fef7ff 0%, #faf5ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.impact-item i {
    font-size: 2.5rem;
    color: #a855f7;
    margin-bottom: 1rem;
}

.impact-item h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.impact-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Investment Focus */
.investment-focus {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.focus-area {
    padding: 2rem;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.focus-area h4 {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.focus-area p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Ventures CTA */
.ventures-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.ventures-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ventures-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Legal/Info Page Styles */
.breadcrumb-section {
    padding: 2rem 0 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb-separator {
    color: var(--text-secondary);
}

.breadcrumb-current {
    color: var(--text-secondary);
    font-weight: 500;
}

.legal-content {
    padding: 3rem 0;
    min-height: 60vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.last-updated i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.legal-text {
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-section li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.important-note {
    background: linear-gradient(135deg, #fef3cd 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.important-note i {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.important-note p {
    margin: 0;
    color: #92400e;
    font-weight: 500;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.back-button i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .venture-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .venture-info h2 {
        font-size: 2rem;
    }
    
    .ventures-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .ventures-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .stats-grid,
    .impact-metrics {
        grid-template-columns: 1fr;
    }
    
    .genre-showcase,
    .investment-focus {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
}
/* Imprint Page Specific Styles */

/* Imprint Hero Section */
.imprint-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.imprint-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.imprint-hero .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.3), rgba(168, 85, 247, 0.3));
}

/* Floating Legal Icons */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Legal Badge */
.legal-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.legal-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.legal-badge i {
    margin-right: 10px;
    color: #ffd700;
}

/* Imprint Content */
.imprint-content {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.imprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Legal Cards */
.legal-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
	margin-top: 50px;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4);
    border-radius: 20px 20px 0 0;
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.card-icon i {
    color: white;
    font-size: 1.25rem;
}

.card-header h2 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.card-content {
    color: #475569;
    line-height: 1.6;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item .label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-item .value {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

/* Special styling for different card types */
.company-info .card-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.contact-details .card-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.management-info .card-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.regulatory-info .card-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.dispute-resolution .card-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.ip-info .card-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

/* Legal Links */
.legal-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

/* Legal Notice */
.legal-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.legal-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.notice-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.notice-header i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.notice-header h3 {
    color: #92400e;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.notice-content {
    color: #92400e;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.notice-content p {
    margin-bottom: 1rem;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

/* Footer active link styling */
.footer-section nav a.active {
    color: #6366f1;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .imprint-hero {
        min-height: 60vh;
        text-align: center;
    }
    
    .imprint-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legal-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .floating-icon {
        font-size: 2rem;
    }
    
    .legal-notice {
        padding: 1.5rem;
    }
    
    .notice-header {
        flex-direction: column;
        text-align: center;
    }
    
    .notice-header i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .imprint-content {
        padding: 3rem 0;
    }
    
    .legal-card {
        padding: 1rem;
    }
    
    .card-header h2 {
        font-size: 1.25rem;
    }
    
    .floating-elements {
        display: none;
    }
}
/* Additional styles for Privacy Policy page */
        .privacy-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            line-height: 1.6;
        }
        
        .privacy-content h1 {
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .privacy-content h2 {
            color: #333;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            border-bottom: 2px solid #6366f1;
            padding-bottom: 0.5rem;
        }
        
        .privacy-content h3 {
            color: #444;
            margin-top: 2rem;
            margin-bottom: 0.8rem;
            font-size: 1.25rem;
        }
        
        .privacy-content p {
            margin-bottom: 1rem;
            color: #555;
        }
        
        .privacy-content ul, .privacy-content ol {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }
        
        .privacy-content li {
            margin-bottom: 0.5rem;
            color: #555;
        }
        
        .privacy-content strong {
            color: #333;
        }
        
        .privacy-content a {
            color: #6366f1;
            text-decoration: underline;
        }
        
        .privacy-content a:hover {
            color: #4f46e5;
        }
        
        .last-updated {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            border-left: 4px solid #6366f1;
        }
        
        .contact-info {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .table-of-contents {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .table-of-contents ul {
            list-style: none;
            padding-left: 0;
        }
        
        .table-of-contents li {
            margin-bottom: 0.5rem;
        }
        
        .table-of-contents a {
            text-decoration: none;
            color: #6366f1;
        }
        
        .table-of-contents a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .privacy-content {
                padding: 1rem;
            }
            
            .privacy-content h1 {
                font-size: 2rem;
            }
        }
		/* Article-specific styles */
        .article-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            line-height: 1.7;
        }
        
        .article-header {
            margin-bottom: 2rem;
            border-bottom: 1px solid #e5e5e5;
            padding-bottom: 2rem;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            color: #666;
            flex-wrap: wrap;
        }
        
        .article-category {
            background: #6366f1;
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .article-date,
        .article-author,
        .article-read-time {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .article-title {
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-weight: 700;
        }
        
        .article-subtitle {
            font-size: 1.2rem;
            color: #666;
            font-weight: 400;
            line-height: 1.4;
        }
        
        .article-hero {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }
        
        .article-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(1px);
        }
        
        .article-hero i {
            z-index: 2;
            position: relative;
        }
        
        .article-content {
            font-size: 1.1rem;
            color: #333;
        }
        
        .article-content h2 {
            font-size: 1.8rem;
            color: #1a1a1a;
            margin: 2rem 0 1rem 0;
            font-weight: 600;
        }
        
        .article-content h3 {
            font-size: 1.4rem;
            color: #1a1a1a;
            margin: 1.5rem 0 0.75rem 0;
            font-weight: 600;
        }
        
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        
        .article-content blockquote {
            background: #f8f9fa;
            border-left: 4px solid #6366f1;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
            border-radius: 0 8px 8px 0;
        }
        
        .article-content ul, 
        .article-content ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .article-content li {
            margin-bottom: 0.5rem;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
        }
        
        .highlight-box h3 {
            color: white;
            margin-top: 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .stat-card {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #e5e5e5;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #6366f1;
            display: block;
        }
        
        .stat-label {
            color: #666;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 3rem 0 2rem 0;
            padding-top: 2rem;
            border-top: 1px solid #e5e5e5;
        }
        
        .tag {
            background: #f1f5f9;
            color: #475569;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: #6366f1;
            color: white;
        }
        
        .article-footer {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
        }
        
        .article-footer h3 {
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .social-share {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .share-btn {
            background: #6366f1;
            color: white;
            padding: 0.75rem;
            border-radius: 8px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .share-btn:hover {
            background: #4f46e5;
            transform: translateY(-2px);
        }
        
        .related-articles {
            margin-top: 4rem;
        }
        
        .related-articles h3 {
            color: #1a1a1a;
            margin-bottom: 2rem;
            font-size: 1.5rem;
            text-align: center;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .related-card {
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        
        .related-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-2px);
        }
        
        .related-card h4 {
            color: #1a1a1a;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .related-card p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }
        
        .back-to-news {
            margin-bottom: 2rem;
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #6366f1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .back-link:hover {
            color: #4f46e5;
        }
        
        @media (max-width: 768px) {
            .article-container {
                padding: 1rem;
            }
            
            .article-title {
                font-size: 2rem;
            }
            
            .article-hero {
                height: 250px;
                font-size: 2.5rem;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .social-share {
                flex-direction: column;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
         /* Additional styles for News & Insights page */
        .news-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            line-height: 1.6;
        }
        
        .news-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .news-header h1 {
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }
        
        .news-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .news-filters {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        }
        
        .filter-btn {
            background: #fff;
            border: 2px solid #e5e5e5;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: #6366f1;
            color: white;
            border-color: #6366f1;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .news-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .news-card-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .news-card-content {
            padding: 1.5rem;
        }
        
        .news-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #666;
        }
        
        .news-category {
            background: #6366f1;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .news-date {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .news-card h3 {
            color: #1a1a1a;
            margin-bottom: 0.75rem;
            font-size: 1.25rem;
            line-height: 1.4;
        }
        
        .news-excerpt {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        
        .read-more {
            color: #6366f1;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }
        
        .read-more:hover {
            color: #4f46e5;
        }
        
        .featured-article {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .featured-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .featured-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .featured-category {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
        }
        
        .featured-article h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .featured-excerpt {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .featured-read-more {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: background 0.3s ease;
            align-self: flex-start;
        }
        
        .featured-read-more:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .featured-image {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            opacity: 0.3;
        }
        
        .newsletter-signup {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 3rem;
        }
        
        .newsletter-signup h3 {
            color: #1a1a1a;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .newsletter-signup p {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.75rem;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            background: #6366f1;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: #4f46e5;
        }
        
        @media (max-width: 768px) {
            .news-content {
                padding: 1rem;
            }
            
            .news-header h1 {
                font-size: 2rem;
            }
            
            .news-filters {
                justify-content: flex-start;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-article {
                grid-template-columns: 1fr;
            }
            
            .featured-article h2 {
                font-size: 1.5rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }

        .menu-version {
    display: none;
}

@media (max-width: 768px) {
    .menu-version {
        display: block;
        padding: 12px;
        text-align: center;
        font-size: 0.9rem;
        color: #000000;
    }
}
.menu-version,
.footer-version {
    display: none;
}

/* Mobile: Zeige nur im Menü */
@media (max-width: 768px) {
    .menu-version {
        display: block;
        padding: 12px;
        text-align: center;
        font-size: 0.8rem;
        color: #7a7a7a;
    }
}

/* Desktop: Zeige im Footer */
@media (min-width: 769px) {
    .footer-version {
        display: block;
        padding-top: 8px;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
    }
}