/* --- 1. Basis Design & Farben --- */
:root {
	--bg-color: #050505; /* Rich Black */
	--text-color: #ffffff;
	
	/* NEUE PRIMÄRFARBE: Electric Purple */
	--accent-cyan: #bf00ff; 
	
	/* NEUE SEKUNDÄRFARBE: Neon Türkis (für Kontrast in Verläufen) */
	--accent-purple: #00F0FF; 
}

body {
	background-color: var(--bg-color);
	color: var(--text-color);
	font-family: 'Inter', sans-serif;
	overflow-x: hidden;
}

h1, h2, h3, .nav-link, .btn {
	font-family: 'Inter', sans-serif;
}

/* Entfernt den Standard-Marker (Dreieck) links */
summary {
	list-style: none;
}
summary::-webkit-details-marker {
	display: none;
}

/* --- NEU: Sticky Container für Bar + Nav --- */
.sticky-header-container {
	position: sticky;
	top: 0;
	z-index: 1030; /* Hoch genug, damit es über allem liegt */
	width: 100%;
}

/* --- 2. Utility Bar (Animated) --- */
/* --- UTILITY BAR --- */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.utility-bar {
    display: block;
    background: linear-gradient(270deg, #EEB6FF, #E299FF, #D4B6FF, #EEB6FF);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    
    color: #000000; 
    text-decoration: none; /* WICHTIG: Hier die Unterstreichung entfernt */
    
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.5px;
    text-shadow: none; 
}

/* Optionaler Effekt: Die Leiste selbst leuchtet beim Hover minimal heller, 
   aber der Cursor bleibt normal, da die Leiste selbst kein Link mehr ist. */
.utility-bar:hover {
    filter: brightness(1.025); 
}

/* --- NEU: Styling NUR für den Link --- */
.utility-link {
    color: #000000;
    font-weight: 700;
    margin-left: 5px;
    text-decoration: underline; /* Nur der Link ist unterstrichen */
    transition: opacity 0.2s ease;
}

/* Hover-Effekt nur für den klickbaren Link */
.utility-link:hover {
    color: #000000;
    opacity: 0.6; /* Der Link wird beim Drüberfahren leicht transparent als visuelles Feedback */
    cursor: pointer;
}

/* --- 3. Header / Navigation --- */

/* 1. Die Pfeile (Caret) überall entfernen */
.dropdown-toggle::after {
    display: none !important;
}

/* 2. Dropdown per Hover öffnen (Egal welche Bildschirmgröße) */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Verhindert Lücken, damit man den Fokus nicht verliert */
}

.navbar {
	background-color: rgba(5, 5, 5, 0.95);
	backdrop-filter: blur(10px);
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* LOGO ANPASSUNG: 3px höher, mehr Abstand rechts */
.navbar-brand {
	transform: translateY(-3px); /* 3px höher */
	margin-right: 1.5rem !important; /* Extra Platz nach rechts */
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(255,255,255,0.8) !important;
	font-weight: 500;
	transition: all 0.3s ease;
	margin-right: 15px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
	color: var(--accent-cyan) !important;
	/* Update Glow auf Purple (RGB: 191, 0, 255) */
	text-shadow: 0 0 10px rgba(191, 0, 255, 0.6);
}

.dropdown-menu {
	background-color: #1a1a1a;
	border: 1px solid #333;
}
.dropdown-item {
	color: #fff;
}
.dropdown-item:hover {
	background-color: #333;
	color: var(--accent-cyan);
}

.navbar-toggler {
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	padding: 0;
	margin-left: 10px;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 30px;
	height: 30px;
}

/* --- 4. Hero Section --- */
.hero-section {
	padding: 80px 0;
	position: relative;
}

.hero-headline {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 15px;
	/* color: var(--accent-cyan); */
	color: #ffffff;
	/* Update Glow auf Purple */
	text-shadow: 0 0 20px rgba(191, 0, 255, 0.4);
}

.hero-slogan {
	/* Lila Farbe, passend zum bestehenden Glow (rgb 191, 0, 255) */
	color: #bf00ff; 
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 15px;
	display: block;
	/* Optional: Ein ganz leichter Glow passend zur Headline */
	text-shadow: 0 0 10px rgba(191, 0, 255, 0.3);
}

.hero-subheadline {
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
}

.hero-text {
	font-size: 1.2rem;
	color: rgba(255,255,255,0.8);
	margin-bottom: 30px;
	font-weight: 300;
	max-width: 90%;
}

.hero-link {
	color: var(--accent-cyan);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid var(--accent-cyan);
	transition: opacity 0.3s;
}
.hero-link:hover {
	opacity: 0.8;
	color: #fff;
	border-color: #fff;
}

.hero-link-header {
    /* Basis: Leicht transparentes Weiß */
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    
    /* Unterstreichung passend zur Textfarbe */
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    
    /* Transition für Farbe und Border */
    transition: all 0.3s ease;
}

.hero-link-header:hover {
    /* Hover: Accent Cyan */
    color: var(--accent-cyan);
    
    /* Die Linie färbt sich ebenfalls Cyan */
    border-color: var(--accent-cyan);
    
    text-decoration: none;
}

.stars {
	color: var(--accent-cyan);
	margin-bottom: 5px;
}
.proven-expert {
	font-size: 0.85rem;
	color: rgba(255,255,255,0.6);
}
.proven-expert a {
	color: rgba(255,255,255,0.8);
	text-decoration: underline;
}

/* --- Buttons --- */
.btn-custom-primary {
	background-color: var(--accent-cyan);
	color: #000;
	font-weight: 700;
	border-radius: 8px; 
	padding: 12px 30px;
	border: 2px solid var(--accent-cyan);
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 0 15px rgba(191, 0, 255, 0.3);
}

.btn-custom-primary:hover {
	transform: translateY(-2px);
	background-color: #fff;
	border-color: #fff;
	color: var(--accent-cyan);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.btn-custom-outline {
	background-color: transparent;
	color: var(--accent-cyan);
	font-weight: 600;
	border-radius: 8px;
	padding: 12px 30px;
	border: 2px solid var(--accent-cyan);
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.btn-custom-outline:hover {
	/* Update Hover Background Glow */
	background-color: rgba(191, 0, 255, 0.15);
	color: #fff;
	border-color: #fff;
	box-shadow: 0 0 15px rgba(191, 0, 255, 0.4);
}

.nav-btn {
	padding: 8px 20px !important;
	font-size: 0.9rem;
	white-space: nowrap; /* Verhindert Umbruch im Button */
}

/* --- Image Styling --- */
.hero-img-container {
	position: relative;
}

.hero-img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.5);
	-webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* --- Mobile/Tablet Optimierung (Alles unter 1200px) --- */
@media (max-width: 1199px) { 
	.hero-headline { font-size: 3rem; }
	.hero-subheadline { font-size: 1.5rem; }
	
	.hero-section { 
		text-align: left !important; 
		padding-top: 40px;
	}
	
	.hero-btns-wrapper {
		display: flex;
		flex-direction: column;
		gap: 15px; 
		width: 100%;
	}
	
	.hero-btns-wrapper .btn {
		margin-left: 0 !important;
		margin-right: 0 !important;
		width: 100%;
		min-height: 54px;
	}

	.hero-img-container { margin-top: 50px; }
	.utility-bar { font-size: 0.8rem; padding: 10px 15px;}

	.navbar-nav {
		margin-top: 16px; 
	}

	/* Container für Buttons im Dropdown */
	.navbar-cta-group {
		margin-top: 15px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.navbar-cta-group .btn {
		width: 100%;
		text-align: center;
	}
}

/* --- Social Proof & Testimonials Styles --- */
.social-proof-section {
	padding: 60px 0 100px 0;
	background-color: var(--bg-color); /* Rich Black */
	overflow: hidden;
}

/* 1. Logo Ticker (Infinite Scroll) */
.logo-ticker-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-bottom: 80px;
	/* Fade-Effekt an den Seiten */
	mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
	-webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
	display: flex;
	width: calc(200px * 16); 
	animation: scrollLogos 40s linear infinite;
}

.logo-item {
	width: 200px;
	padding: 0 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-item img {
	max-width: 100%;
	max-height: 50px;
	opacity: 0.7;
	filter: brightness(0) invert(1); 
	transition: opacity 0.3s;
}

.logo-item img:hover {
	opacity: 1; 
}

@keyframes scrollLogos {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-200px * 8)); } 
}

/* 2. Review Cards */
.reviews-container {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding: 10px 5px 30px 5px;
	scroll-snap-type: x mandatory;
	scrollbar-width: none; 
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
}

.reviews-container::-webkit-scrollbar {
	display: none; 
}

.review-card {
	background-color: #111; 
	border: 1px solid #222;
	border-radius: 16px;
	padding: 25px;
	min-width: 300px; 
	scroll-snap-align: center;
	transition: transform 0.3s ease, border-color 0.3s;
	display: flex;
	flex-direction: column;
}

.review-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-cyan);
}

.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.avatar-circle {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #333, #222);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-right: 15px;
	border: 1px solid #444;
	font-family: 'Inter', sans-serif;
}

.reviewer-info h5 {
	font-size: 1rem;
	margin: 0;
	font-weight: 600;
	color: #fff;
}

.reviewer-info span {
	font-size: 0.75rem;
	color: rgba(255,255,255,0.5);
}

.review-text {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.8);
	margin-bottom: 20px;
	font-style: italic;
	line-height: 1.6;
}

.review-stars {
	color: var(--accent-cyan);
	font-size: 0.9rem;
}

/* --- Desktop Layout Anpassung --- */
@media (min-width: 1200px) {
	.reviews-container {
		flex-wrap: wrap; 
		justify-content: center; 
		overflow-x: visible; 
		padding-bottom: 0;
	}
	
	.review-card {
		width: calc(33.333% - 20px); 
		min-width: unset; 
		margin-bottom: 20px;
	}
}

@media (max-width: 1199px) {
	.reviews-container {
		cursor: grab; 
	}
	.reviews-container:active {
		cursor: grabbing; 
	}
}

/* --- Knowledge Stream Section --- */
.knowledge-section {
	padding: 80px 0;
	background-color: var(--bg-color);
	position: relative;
}

/* Story Bubbles (Runde Bilder mit Neon-Rand) */
.story-bubble-container {
	position: relative;
	width: 280px; 
	height: 280px;
	margin: 0 auto;
}

.story-bubble {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid transparent; 
	/* Neon Ring - Lila bis Türkis Verlauf */
	background: linear-gradient(#050505, #050505) padding-box,
				linear-gradient(45deg, var(--accent-cyan), var(--accent-purple)) border-box;
	/* Update Glow auf Purple */
	box-shadow: 0 0 30px rgba(191, 0, 255, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-bubble:hover {
	transform: scale(1.05);
	/* Stärkerer Purple Glow */
	box-shadow: 0 0 50px rgba(191, 0, 255, 0.5);
}

/* Typografie */
.knowledge-headline {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.knowledge-text {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
	font-weight: 300;
}

.highlight-cyan { color: var(--accent-cyan); font-weight: 600; }
.highlight-purple { color: var(--accent-purple); font-weight: 600; }

/* --- MOBILE SWITCH (Nur sichtbar auf kleinen Screens) --- */
.switch-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.switch-container {
	background-color: #111;
	border: 1px solid #333;
	border-radius: 50px;
	display: inline-flex;
	padding: 5px;
}

.switch-btn {
	background: transparent;
	border: none;
	color: #888;
	padding: 10px 30px;
	border-radius: 40px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.switch-btn.active {
	background-color: var(--accent-cyan);
	color: #fff;
	/* Update Switch Glow */
	box-shadow: 0 0 15px rgba(191, 0, 255, 0.4);
}

/* --- BATTLE CARDS (ETF vs Fonds) --- */
.battle-card {
	background: rgba(20, 20, 20, 0.5); 
	border: 1px solid #222;
	border-radius: 20px;
	padding: 40px;
	transition: all 0.4s ease;
	height: 100%; 
}

.battle-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: #fff;
}

/* Standard Mobile: Karten sind versteckt, außer sie haben .mobile-active */
.battle-card-wrapper {
	display: none; 
	animation: fadeIn 0.5s ease;
}
.battle-card-wrapper.mobile-active {
	display: block;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* --- DESKTOP LOGIC (Ab 992px) --- */
@media (min-width: 992px) {
	.switch-wrapper { display: none !important; }

	.battle-arena {
		display: flex;
		gap: 30px;
		justify-content: center;
	}

	.battle-card-wrapper {
		display: block !important; 
		width: 50%; 
	}

	.battle-arena:hover .battle-card {
		opacity: 0.4;
		filter: grayscale(0.8);
		transform: scale(0.98);
	}

	.battle-arena .battle-card:hover {
		opacity: 1;
		filter: grayscale(0);
		transform: scale(1.02);
		border-color: var(--accent-cyan);
		box-shadow: 0 10px 40px rgba(0,0,0,0.5);
		z-index: 2;
	}
}

/* Mobile Tweaks */
@media (max-width: 991px) {
	.story-bubble-container { width: 240px; height: 240px; margin-bottom: 30px; }
	.knowledge-headline { font-size: 2rem; }
}

/* --- GROWTH CIRCUIT: FINAL RESPONSIVE STYLE --- */

.circuit-section {
	padding: 100px 0 150px 0;
	background-color: var(--bg-color);
	position: relative;
	overflow: hidden;
}

/* 1. Der Strahl - Jetzt: Türkis (Oben) zu Lila (Unten) */
.circuit-beam {
	position: absolute;
	width: 3px;
	
	/* ACHTUNG: Variablen gedreht! 
	   Start (0%): --accent-purple (das ist das Neon Türkis)
	   Ende (85%): --accent-cyan (das ist das Electric Purple) 
	*/
	background: linear-gradient(
		180deg, 
		var(--accent-purple) 0%, 
		var(--accent-cyan) 85%, 
		transparent 100%
	);
	
	/* Glow passend zum Startpunkt (Türkis) oder Mix */
	box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
	z-index: 0;
	border-radius: 2px;
}

.beam-emitter {
	width: 24px;
	height: 24px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	/* Update Emitter Glow */
	box-shadow: 0 0 40px var(--accent-cyan), 0 0 20px #fff;
	z-index: 2;
}

/* 2. Knotenpunkte */
.circuit-node {
	width: 24px !important;
	height: 24px !important;
	min-width: 24px !important;
	min-height: 24px !important;
	border-radius: 50% !important;
	flex-shrink: 0 !important;
	display: block !important;
	box-sizing: border-box !important;
	padding: 0 !important;
	margin: 0 !important;
	background-color: #050505;
	border: none !important;
	box-shadow: 0 0 0 2px #ffffff, 0 0 10px rgba(255,255,255,0.5);
	position: absolute;
	z-index: 2; 
	transition: box-shadow 0.1s linear;
}

/* 3. Connectors */
.circuit-connector {
	position: absolute;
	height: 2px;
	z-index: 1; 
	border-radius: 2px;
	background: linear-gradient(90deg, #ffffff, transparent);
	transition: background 0.1s linear;
}

/* 4. Bild & Content */
.circuit-img-container {
	width: 100%; max-width: 300px; aspect-ratio: 1/1; position: relative;
	border-radius: 24px; padding: 4px; 
	background: linear-gradient(135deg, #1a1a1a, #000);
	border: 1px solid #333;
	box-shadow: 0 20px 50px rgba(0,0,0,0.6);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	margin: 0 auto; z-index: 10;
}

.circuit-img-container:hover { 
	transform: scale(1.08); 
	border-color: #fff; 
	/* Update Image Glow */
	box-shadow: 0 0 40px rgba(191, 0, 255, 0.3); 
}

.circuit-img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; filter: saturate(0.8) contrast(1.1); transition: filter 0.3s; }
.circuit-img-container:hover .circuit-img { filter: saturate(1.1) contrast(1.1); }
.circuit-content-box { padding: 20px; position: relative; z-index: 5; }
.circuit-headline { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 15px; }
.circuit-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; font-weight: 300; }
.level-badge { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: inline-block; margin-bottom: 10px; padding: 5px 10px; border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; }

/* --- DESKTOP LAYOUT (Ab 992px) --- */
@media (min-width: 992px) {
	.circuit-beam { left: 50%; top: 220px; bottom: 0; transform: translateX(-50%); }
	.beam-emitter { top: 220px; left: 50%; transform: translateX(-50%); } 
	.row-step { min-height: 400px; display: flex; align-items: center; margin-bottom: 40px; position: relative; }
	
	.circuit-node { left: 50%; top: 50%; transform: translate(-50%, -50%); }
	.con-desktop-left { right: 50%; top: 50%; width: 120px; margin-right: 0; }
	.con-desktop-right { left: 50%; top: 50%; width: 120px; margin-left: 0; }
}

/* --- MOBILE LAYOUT (Bis 991px) --- */
@media (max-width: 991px) {
	.circuit-beam { 
		left: 30px; 
		top: 140px; bottom: 0; width: 3px; transform: none; 
	}
	
	.beam-emitter { 
		left: 31.5px; 
		top: 140px; transform: translate(-50%, -50%); 
	}

	.row-step { 
		padding-left: 75px; 
		margin-bottom: 60px; position: relative; display: flex; flex-direction: column; 
	}

	.circuit-node { 
		left: 31.5px; 
		top: 150px; transform: translate(-50%, -50%); 
	}
	
	.circuit-connector { 
		left: 31.5px; 
		top: 150px; width: 35px; transform: translateY(-50%); 
	}

	.circuit-img-container { margin: 0 0 30px 10px; width: 100%; max-width: 280px; align-self: flex-start; }
}

/* =========================================
   FAQ & CONTACT SECTION (Production Ready)
   ========================================= */

.faq-contact-section {
	padding: 100px 0;
	background-color: var(--bg-color);
	position: relative;
}

/* --- 1. FAQ Accordion --- */
.faq-wrapper {
	max-width: 800px;
	margin: 0 auto 100px auto;
	position: relative;
	padding: 20px 0; /* Wichtig: Platz für Schatten oben/unten */
	z-index: 1;
}

.accordion-item {
	background-color: #111;
	/* Inaktiver Zustand: Dunkler 2px Rahmen */
	border: 2px solid #222; 
	border-radius: 12px;
	margin-bottom: 15px;
	
	position: relative;
	overflow: visible !important; /* Zwingend für den Überhang-Effekt */
	transition: all 0.2s ease;
	z-index: 1;
}

.accordion-item.active {
	background-color: #161616;
	
	/* TRICK: Echten Border ausblenden... */
	border-color: transparent; 
	
	/* ...und Border per Box-Shadow simulieren */
	/* Update: Purple Border + Glow */
	box-shadow: 0 0 0 2px var(--accent-cyan), 
				0 10px 40px rgba(0,0,0,0.9), 
				0 0 30px rgba(191, 0, 255, 0.4);
	
	/* Element extrem anheben */
	z-index: 1000; 
	
	transform: translateY(-2px); 
}

/* Header */
.accordion-header {
	padding: 18px 23px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
	border-radius: 10px; 
}

.accordion-item.active .accordion-header {
	border-radius: 10px 10px 0 0;
}

.accordion-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.accordion-icon {
	color: var(--accent-cyan);
	transition: transform 0.3s ease;
	font-size: 1.2rem;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}

/* Body */
.accordion-body {
	max-height: 0;
	overflow: hidden; 
	transition: max-height 0.3s ease;
	border-radius: 0 0 10px 10px;
}

.accordion-content {
	padding: 0 25px 25px 25px;
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
	font-weight: 300;
}

/* --- 2. Contact Cards --- */
.contact-grid {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid #222;
    border-radius: 20px;
    padding: 40px 20px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-decoration: none !important;
}

/* Standard Hover (Cyan - gilt für Email) */
.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1); /* Leichter Cyan Glow */
}

/* WhatsApp Specific (Green) */
.card-whatsapp {
    border-color: #222; /* Start Border */
}
.card-whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

/* Video Call Specific (Purple) */
.card-video {
    border-color: #222; /* Start Border */
}
.card-video:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.2); /* Purple Glow */
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.contact-text {
	font-size: 0.95rem;
	color: rgba(255,255,255,0.6);
	margin-bottom: 0;
}

.contact-link-text {
	color: var(--accent-cyan);
	font-weight: 600;
	margin-top: 15px;
	display: block;
}

@media (max-width: 768px) {
	.contact-card {
		width: 100%;
		max-width: 100%;
	}
}

/* =========================================
   3. NEWSLETTER, PARTNER & FOOTER (Purple Theme Fix)
   ========================================= */

/* --- Newsletter Section (The Black Card) --- */
.newsletter-section {
	padding: 0 0 100px 0;
	background-color: var(--bg-color);
	position: relative;
}

.newsletter-card {
	background: linear-gradient(145deg, #0f0f0f, #050505);
	border: 1px solid #222;
	border-radius: 30px;
	padding: 60px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Dekorativer Hintergrund-Glow (Angepasst auf Purple) */
.newsletter-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	/* FIX: Cyan (0, 240, 255) -> Purple (191, 0, 255) */
	background: radial-gradient(circle, rgba(191, 0, 255, 0.05) 0%, transparent 60%);
	z-index: 0;
	pointer-events: none;
}

.newsletter-content {
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}

.newsletter-headline {
	font-size: 2.5rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.newsletter-sub {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.6);
	margin-bottom: 40px;
	font-weight: 300;
	line-height: 1.6;
}

/* Input Group Styling */
.newsletter-input-wrapper {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap; 
}

.newsletter-input {
	background-color: #1a1a1a;
	border: 1px solid #333;
	color: #fff;
	padding: 15px 25px;
	border-radius: 50px;
	font-size: 1rem;
	width: 100%;
	max-width: 350px; 
	transition: all 0.3s ease;
	outline: none;
}

.newsletter-input:focus {
	border-color: var(--accent-cyan); /* Nimmt Purple Variable */
	/* FIX: Focus Glow auf Purple */
	box-shadow: 0 0 15px rgba(191, 0, 255, 0.3);
	background-color: #222;
}

.newsletter-btn {
	background: #fff;
	color: #000;
	border: none;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-btn:hover {
	transform: translateY(-2px);
	/* Button wird Lila beim Hover (durch Variable) */
	background-color: var(--accent-cyan);
	color: #fff; /* Text weiß für besseren Kontrast auf Lila */
	box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.newsletter-disclaimer {
	margin-top: 25px;
	font-size: 0.75rem;
	color: rgba(255,255,255,0.3);
}

.newsletter-disclaimer a {
	color: rgba(255,255,255,0.5);
	text-decoration: underline;
}

.newsletter-disclaimer a:hover {
	color: #fff;
}

/* --- Partner Section (Responsive Fix) --- */
.partner-section {
	padding: 80px 0 100px 0;
	background-color: #000;
	/* border-top: 1px solid #111; */
	overflow: hidden; 
}

.partner-headline {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 50px;
	text-transform: uppercase;
	letter-spacing: 3px;
	opacity: 0.8;
	padding: 0 15px; 
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); 
	gap: 15px; /* Mobile Gap Fix */
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 10px; 
}

@media (min-width: 768px) {
	.partner-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 60px; /* Desktop Gap */
		padding: 0;
	}
}

.partner-logo-box {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease;
	overflow: hidden; 
}

.partner-logo {
	max-width: 100%; 
	max-height: 50px; 
	width: auto;
	height: auto;
	opacity: 0.5; 
	filter: grayscale(100%);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.partner-logo-box:hover .partner-logo {
	opacity: 1;
	/* Neutraler weißer Glow (Passt zu allem) */
	filter: grayscale(0%) drop-shadow(0 0 15px rgba(255,255,255,0.4));
	transform: scale(1.05);
}

@media (min-width: 768px) {
	.partner-logo { max-height: 60px; } 
}

/* --- Footer Section (Final) --- */
.footer-section {
	padding: 80px 0 40px 0;
	/* border-top: 1px solid #111; */
	font-size: 0.9rem;
	color: #fff;
}

.footer-col-headline {
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.5;
}

.footer-link-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link-list li {
	margin-bottom: 12px;
}

.footer-link {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, padding-left 0.2s ease;
	display: inline-block;
}

.footer-link:hover {
	/* Variable --accent-cyan ist jetzt Purple */
	color: var(--accent-cyan);
	padding-left: 5px; 
	text-decoration: none;
}

.footer-brand-text {
	color: rgba(255,255,255,0.5);
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-legal-block {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #1a1a1a;
}

.legal-text {
	font-size: 0.75rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
}

.legal-text a { color: #888; text-decoration: underline; }
.legal-text a:hover { color: #fff; }

.ihk-badge {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	background: #111;
	padding: 10px 20px;
	border-radius: 8px;
	border: 1px solid #222;
	transition: border-color 0.3s;
}

.ihk-badge:hover {
	border-color: #444;
}

.ihk-text {
	font-size: 0.75rem;
	color: #888;
	line-height: 1.2;
	text-align: left;
}
.ihk-text b { color: #fff; }

@media (max-width: 991px) {
	.footer-col-headline { margin-top: 30px; }
	.ihk-wrapper-mobile { 
		justify-content: center !important; 
		margin-top: 30px; 
		width: 100%;
	}
}

/* Modal Styling für Dark Mode */
.modal-content {
	background-color: #0a0a0a;
	border: 1px solid #333;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}
.modal-header {
	border-bottom: 1px solid #222;
	padding: 30px 30px 15px 30px;
}
.modal-body {
	padding: 30px;
}
.modal-title {
	color: #fff;
	font-weight: 700;
	font-size: 1.5rem;
}
.modal-subline {
	color: rgba(255,255,255,0.6);
	font-size: 0.95rem;
	margin-top: 5px;
	display: block;
}
.btn-close-white {
	filter: invert(1) grayscale(100%) brightness(200%);
}

/* Formular Felder Styling */
.form-label {
	color: rgba(255,255,255,0.8);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 8px;
}
.form-control, .form-select {
	background-color: #161616;
	border: 1px solid #333;
	color: #fff;
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 0.95rem;
	transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus {
	background-color: #222;
	border-color: #bf00ff; /* Lila Focus */
	color: #fff;
	box-shadow: 0 0 0 4px rgba(191, 0, 255, 0.1);
}
.form-select {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Modal Button & Microcopy */
.modal-btn-primary {
	width: 100%;
	background: linear-gradient(90deg, #bf00ff, #8a00e6); /* Lila Verlauf */
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: 50px;
	font-weight: 700;
	margin-top: 10px;
	transition: all 0.3s ease;
}
.modal-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(191, 0, 255, 0.3);
	color: #fff;
}
.modal-micro-copy {
	font-size: 0.75rem;
	color: rgba(255,255,255,0.4);
	text-align: center;
	margin-top: 15px;
	line-height: 1.4;
}

/* Placeholder heller machen */
.form-control::placeholder,
.form-select::placeholder {
    color: rgba(255, 255, 255, 0.5); /* Ein helleres, halbtransparentes Weiß */
    opacity: 1; /* Wichtig: Firefox setzt die Opacity bei Placeholdern standardmäßig runter */
}

/* Optional: Wenn der Placeholder beim Fokus etwas dezenter werden soll */
.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.final-cta-section {
	padding: 100px 0;
}