/* Grundlayout nur für diese Seite */


/* HERO – Bild im Hintergrund + starker Gradient */
.ai-hero {
	position: relative;
	padding: 15rem 0 6rem;
	overflow: hidden;

	/* Grund-Gradient wie in Version 1 */
/* Hero unten weich in den Body-Verlauf auslaufen lassen */
		background:
			/* dunkler Grundverlauf, der nach unten transparent wird */
			linear-gradient(
				to bottom,
				rgba(5, 6, 17, 0.98) 0%,
				rgba(5, 6, 17, 0.93) 55%,
				rgba(5, 6, 17, 0.0) 100%
			),
			/* Teal-Spot oben links wie bisher */
			radial-gradient(circle at 0% 0%, rgba(6,166,158,0.45), transparent 55%),
			/* optional: sehr dezenter Farbschimmer rechts (kannst du auch rauswerfen) */
			radial-gradient(circle at 100% 100%, rgba(196,90,255,0.15), transparent 55%);
		/* kein solides #050611 mehr! */
	}

/* Bild als sehr dezente Ebene dahinter */
/* Bild als Ebene dahinter – prominenter & höher */
.ai-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../img/ai-engineering.jpg");
	background-size: cover;
	/* Bild nach oben schieben, damit es „höher“ wirkt */
	background-position: center -80px;  /* Wert ggf. anpassen (-40px … -140px testen) */
	opacity: 0.6;                       /* nicht zu hell, nicht zu dunkel */
	transform: scaleX(-1) scale(1.05);             /* leicht größer gegen Kanten */
	z-index: 0;
	
}

/* starker Overlay-Gradient, um Text gut lesbar zu machen */
/* Overlay – stärkerer dunkler Spot hinter dem Text links */
.ai-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		/* dunkler Spot links, wo der Text steht */
		radial-gradient(circle at 20% 35%, rgba(0,0,0,0.80), transparent 20%),
		/* leichter Farbverlauf insgesamt */
		radial-gradient(circle at 100% 100%, rgba(196,90,255,0.25), transparent 55%),
		linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
	pointer-events: none;
	z-index: 1;
}

/* Text im Hero insgesamt etwas nach unten schieben – nur Desktop */
@media (min-width: 992px) {
	.ai-hero-content .row {
		margin-top: 2.5rem;  /* ggf. 2rem oder 3rem testen */
	}
}



/* Inhalt immer über allem */
.ai-hero-content {
	position: relative;
	z-index: 2;
}
.eyebrow {
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .8rem;
	color: rgba(255,255,255,0.8);
	margin-bottom: .75rem;
}

.ai-hero-title {
	font-size: clamp(2.2rem, 3.3vw, 3rem);  /* vorher größer */
	line-height: 1.08;
	margin-bottom: .6rem;
}

.ai-hero-title .accent {
	color: #06A69E;
}

.ai-hero-subtitle {
	font-size: 1rem;
	line-height: 1.5;
	max-width: 32rem;
	margin-bottom: 1.2rem;
	color: rgba(255,255,255,0.85);
}

/* Meta Infos */
.ai-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin: 1.5rem 0 2rem;
}

.meta-label {
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: rgba(255,255,255,0.6);
	margin-bottom: .2rem;
}

.meta-value {
	font-size: .95rem;
	font-weight: 600;
}

/* Buttons */

.ai-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

/* Haupt-Button */
.ai-btn-primary {
	padding: .85rem 2rem;
	border-radius: 999px;
	background-color: #06A69E;          /* CI-Grün voll */
	border: 1px solid #06A69E;
	color: #020308;
	font-weight: 600;
	box-shadow: 0 0 25px rgba(6,166,158,0.6);
}

.ai-btn-primary:hover {
	background-color: #08bcb3;
	border-color: #08bcb3;
	color: #020308;
	box-shadow: 0 0 35px rgba(6,166,158,0.9);
}

/* Zweiter, „Ghost“-Button */
.ai-btn-ghost {
	padding: .85rem 2rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.65);
	background: rgba(0,0,0,0.35);
	color: #ffffff;
	font-weight: 500;
}

.ai-btn-ghost:hover {
	background: rgba(255,255,255,0.12);
	border-color: #ffffff;
	color: #ffffff;
}

/* HERO-Karte rechts */
.ai-hero-card {
	position: relative;
	max-width: 420px;
	margin: 2rem auto 0;
}

.ai-card-glow {
	position: absolute;
	inset: -1px;
	background: linear-gradient(135deg, #06A69E, #7A3DF0, #ff8a9c);
	filter: blur(18px);
	opacity: .6;
	z-index: 0;
}

.ai-hero-card-inner {
	position: relative;
	z-index: 1;
	padding: 1.5rem;
	border-radius: 24px;
	background: radial-gradient(circle at top left, rgba(6,166,158,0.25), transparent 55%),
				rgba(5,8,20,0.96);
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(18px);
	box-shadow: 0 28px 70px rgba(0,0,0,0.6);
}

.ai-hero-chip-row {
	display: flex;
	gap: .6rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.chip {
	font-size: .7rem;
	padding: .35rem .7rem;
	border-radius: 999px;
	background: rgba(0,0,0,0.45);
	border: 1px solid rgba(255,255,255,0.12);
}

.ai-hero-card-text {
	font-size: .95rem;
	color: rgba(255,255,255,0.8);
}

/* Scroll Indicator */
.ai-scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	transform: translateX(-50%);
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: rgba(255,255,255,1);
	text-decoration: none;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: .4rem;
}

.ai-scroll-indicator .arrow-down {
	width: 14px;
	height: 14px;
	border-left: 2px solid rgba(255,255,255,0.7);
	border-bottom: 2px solid rgba(255,255,255,0.7);
	transform: rotate(-45deg);
	animation: scrollPulse 1.6s infinite;
}

@keyframes scrollPulse {
	0% { transform: translateY(0) rotate(-45deg); opacity: 0.4; }
	50% { transform: translateY(4px) rotate(-45deg); opacity: 1; }
	100% { transform: translateY(0) rotate(-45deg); opacity: 0.4; }
}

/* Standard-Sektionen */
/* ---------- Sections: alles aus einem Guss ---------- */

/* ---------- Sections: ein durchgehender Flow ---------- */

/* Basiskonfiguration */
.ai-section,
.ai-section-alt,
.ai-section-focus {
	position: relative;
	padding: 4.75rem 0;
	background: transparent;
}

/* Inhalt über dem Overlay */
.ai-section > .container,
.ai-section-alt > .container,
.ai-section-focus > .container {
	position: relative;
	z-index: 1;
}

/* gemeinsame Grundfläche für ALLE Sections */
/* Alle Section-Overlays komplett deaktivieren */
.ai-section::before,
.ai-section-alt::before,
.ai-section-focus::before,
.ai-vision-section::before {
	content: none !important;
	background: none !important;
	opacity: 0 !important;
}

body.ai-page {
	background:
		/* Glow im oberen Content-Bereich (Überblick / Karten) */
		radial-gradient(circle at 50% 26%, rgba(6,166,158,0.30), transparent 60%),
		/* leichtes Abdunkeln in der Mitte (Warum / Zielgruppe) */
		radial-gradient(circle at 50% 55%, rgba(0,0,0,0.55), transparent 70%),
		/* Glow Richtung Vision / Kontakt unten */
		radial-gradient(circle at 50% 88%, rgba(6,166,158,0.26), transparent 60%),
		#050611;
	background-attachment: fixed;
	color: #fff;
	min-height: 100vh;
}



/* „alt“: nur ein Hauch Teal/Violett oben/unten dazu */
.ai-section-alt::before {
	background:
		linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.85)),
		radial-gradient(circle at 15% 0%, rgba(6,166,158,0.14), transparent 60%),
		radial-gradient(circle at 85% 100%, rgba(196,90,255,0.16), transparent 65%);
	opacity: 0.85;
}

/* „focus“: leichter Glow von unten links, sonst wie Basis */
.ai-section-focus::before {
	background:
		linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.9)),
		radial-gradient(circle at 0% 100%, rgba(6,166,158,0.22), transparent 60%);
	opacity: 0.9;
}
/* Fokus-Section (Abschluss unten) – leicht von unten links aufgehellt */
.ai-section-focus::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 0% 100%, rgba(6,166,158,0.22), transparent 60%),
		radial-gradient(circle at 100% 0%, rgba(10,14,35,0.85), transparent 65%);
	opacity: 0.95;
	pointer-events: none;
	z-index: 0;
}


.ai-section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 3rem;
}

.ai-section-header h2 {
	font-size: 2rem;
	margin-bottom: .6rem;
}

.ai-section-header p {
	color: rgba(255,255,255,0.78);
}

/* Feature Cards */
.ai-feature-grid {
	margin-top: 1rem;
}

.ai-feature-card {
	height: 100%;
	border-radius: 18px;
	padding: 1.8rem 1.5rem;
	background: rgba(4,6,18,0.95);
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 18px 40px rgba(0,0,0,0.6);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.ai-feature-card h3 {
	margin-top: 1.1rem;
	font-size: 1.1rem;
}

.ai-feature-card p {
	margin-top: .35rem;
	font-size: .95rem;
	color: rgba(255,255,255,0.78);
}

.ai-feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.8);
	border-color: rgba(6,166,158,0.7);
	background: radial-gradient(circle at top, rgba(6,166,158,0.25), rgba(4,6,18,0.98));
}

.icon-pill {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at top left, #06A69E, #4325a6);
	box-shadow: 0 0 18px rgba(6,166,158,0.8);
}

/* Listen */
.ai-list {
	list-style: none;
	padding-left: 0;
	margin: 1rem 0 0;
}

.ai-list li {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	margin-bottom: .5rem;
	font-size: .95rem;
}

.ai-list i {
	margin-top: .15rem;
	color: #06A69E;
}

.bullet-list li {
	align-items: flex-start;
}

.bullet-list li::before {
	content: "•";
	color: #06A69E;
	font-weight: bold;
	margin-right: .6rem;
}

/* Formular / Kontakt */
.ai-section-focus .ai-section-header p,
.ai-form-hint {
	color: rgba(0,0,0,0.78);
}

.ai-form {
	max-width: 480px;
}

.ai-input {
	background: rgba(0,0,0,0.35);
	border-radius: 12px;
	border: 1px solid rgba(255,255,255,0.28);
	color: #fff;
}

.ai-input:focus {
	border-color: #06A69E;
	box-shadow: 0 0 0 2px rgba(6,166,158,0.35);
}

/* Info-Karte */
.ai-info-card {
	border-radius: 18px;
	padding: 1.8rem 1.5rem;
	background: rgba(4,6,18,0.97);
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* Responsive */
@media (max-width: 991.98px) {
	.ai-hero {
		padding-top: 5rem;
	}
	.ai-hero-meta {
		gap: 1rem;
	}
}

@media (max-width: 575.98px) {
	.ai-hero-title {
		font-size: 2.2rem;
	}
	.ai-hero-meta {
		flex-direction: column;
		align-items: flex-start;
	}
	.ai-cta-row {
		flex-direction: column;
		align-items: stretch;
	}
	.ai-scroll-indicator {
		display: none;
	}
}


/* -------- AI Navbar (zwischen Hero und Content) -------- */

.ai-nav {
	position: sticky;
	top: 0;
	z-index: 20;

	margin-top: 0;               /* kein Hochziehen mehr */
	padding: .8rem 0;
	background:
		radial-gradient(circle at top, rgba(6,166,158,0.18), transparent 55%),
		rgba(5,8,20,0.98);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	box-shadow: 0 18px 40px rgba(0,0,0,0.85);
	backdrop-filter: blur(18px);
}

.ai-nav .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Brand / Logos */
.ai-brand-left .logo-image {
	height: 36px;
	width: auto;
}

.secondary-logo {
	height: 28px;
	width: auto;
	margin-right: 1rem;
	opacity: 0.85;
	filter: invert(1) brightness(1.2) contrast(1.1);
}

.ai-nav-tag {
	margin-left: .75rem;
	padding: .2rem .7rem;
	border-radius: 999px;
	font-size: .7rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	border: 1px solid rgba(255,255,255,0.22);
	color: rgba(255,255,255,0.85);
	background: rgba(0,0,0,0.4);
}

/* Links */
.ai-nav-links .nav-link {
	font-size: .9rem;
	padding: .4rem .9rem;
	color: rgba(255,255,255,0.85);
	position: relative;
	text-decoration: none;
}

.ai-nav-links .nav-link::after {
	content: "";
	position: absolute;
	left: 0.7rem;
	right: 0.7rem;
	bottom: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, #06A69E, #7A3DF0);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .22s ease-out;
	opacity: 0.9;
}

.ai-nav-links .nav-link:hover,
.ai-nav-links .nav-link:focus {
	color: #ffffff;
}

.ai-nav-links .nav-link:hover::after,
.ai-nav-links .nav-link:focus::after {
	transform: scaleX(1);
}

/* Dropdown-Toggler (kleiner Chevron-Button) */
.ai-nav .custom-dropdown-toggle {
	border: none;
	background: transparent;
	color: rgba(255,255,255,0.6);
	padding: .15rem .2rem;
	font-size: .7rem;
}

.ai-nav .custom-dropdown-toggle:hover {
	color: #ffffff;
}

/* Dropdown-Menü dunkler + „glassig“ */
.ai-nav .dropdown-menu {
	background: rgba(5,8,20,0.98);
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: 0 22px 45px rgba(0,0,0,0.9);
	padding: .4rem 0;
}

.ai-nav .dropdown-item {
	font-size: .9rem;
	padding: .45rem 1rem;
	color: rgba(255,255,255,0.85);
}

.ai-nav .dropdown-item:hover {
	background: rgba(6,166,158,0.12);
	color: #ffffff;
}

/* CTA rechts */
.ai-nav-cta {
	padding: .55rem 1.4rem;
	border-radius: 999px;
	font-size: .9rem;
	font-weight: 600;
	box-shadow: 0 0 18px rgba(6,166,158,0.6);
	white-space: nowrap;
	color: grey;
}

/* Burger Icon */
.ai-nav-toggler {
	border: 1px solid rgba(255,255,255,0.35);
	border-radius: 999px;
	padding: .2rem .6rem;
}

.ai-nav-toggler span i {
	color: #ffffff;
}

/* Layout im Collapse */
.ai-nav-right {
	margin-left: 1rem;
}

/* Responsive Anpassungen */
@media (max-width: 991.98px) {
	.ai-nav {
		margin-top: 0;
	}

	.ai-nav .container {
		flex-wrap: wrap;
	}

	.ai-nav-links {
		margin-top: .8rem;
	}

	.ai-nav-right {
		margin-top: .8rem;
		justify-content: flex-start;
	}

	.secondary-logo {
		display: none !important;
	}
}

/* ---------- Warum wir das machen ---------- */

.ai-reason-grid {
	margin-top: 1rem;
}

.ai-reason-card {
	height: 100%;
	padding: 1.6rem 1.4rem;
	border-radius: 18px;
	background: radial-gradient(circle at top, rgba(6,166,158,0.18), rgba(5,8,20,0.98));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 18px 45px rgba(0,0,0,0.75);
	position: relative;
	overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ai-reason-card::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at top, rgba(6,166,158,0.35), transparent 60%);
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
}

.ai-reason-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 60px rgba(0,0,0,0.9);
	border-color: rgba(6,166,158,0.8);
}

.ai-reason-card:hover::before {
	opacity: 1;
}

.ai-reason-label {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	font-weight: 600;
	background: radial-gradient(circle at top left, #06A69E, #4325a6);
	box-shadow: 0 0 18px rgba(6,166,158,0.9);
	margin-bottom: .9rem;
}

.ai-reason-card h3 {
	font-size: 1.05rem;
	margin-bottom: .4rem;
}

.ai-reason-card p {
	font-size: .95rem;
	color: rgba(255,255,255,0.82);
}

.ai-reason-summary {
	margin-top: 2.2rem;
	font-size: .98rem;
	color: rgba(255,255,255,0.88);
}

/* ---------- Für wen ist es geeignet ---------- */

.ai-target-row {
	align-items: stretch;
}

.ai-target-card {
	border-radius: 20px;
	padding: 1.9rem 1.7rem;
	background: radial-gradient(circle at top left, rgba(6,166,158,0.22), rgba(5,8,20,0.98));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 20px 55px rgba(0,0,0,0.85);
}

.ai-target-intro {
	font-size: .95rem;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: rgba(255,255,255,0.75);
	margin-bottom: .8rem;
}

.ai-checklist li {
	margin-bottom: .5rem;
}

.ai-checklist i {
	color: #06A69E;
}

.ai-target-tags {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: 1.4rem;
}

.ai-tag {
	padding: .3rem .8rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.18);
	font-size: .75rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.85);
	background: rgba(0,0,0,0.35);
}

/* ---------- Unsere Vision ---------- */

.ai-vision-section {
	position: relative;
	overflow: hidden;
}

.ai-vision-section::before {
	content: "";
	position: absolute;
	inset: -40%;
	background:
		radial-gradient(circle at 10% 0%, rgba(6,166,158,0.32), transparent 60%),
		radial-gradient(circle at 90% 100%, rgba(196,90,255,0.25), transparent 60%);
	opacity: 0.4;
	pointer-events: none;
}

.ai-vision-inner {
	position: relative;
	z-index: 1;
}

.ai-vision-highlight {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .8rem 2.2rem;
	margin-top: 1.4rem;
	font-size: .9rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.9);
}

.ai-vision-highlight span {
	white-space: nowrap;
}

.ai-vision-bar {
	margin: 1.8rem auto 0;
	width: 180px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #06A69E, #7A3DF0);
	box-shadow: 0 0 22px rgba(6,166,158,0.8);
}

/* Responsive Tweaks */

@media (max-width: 991.98px) {
	.ai-section-header.text-start {
		text-align: center !important;
	}
	.ai-target-card {
		margin-top: 0.5rem;
	}
	.ai-vision-highlight {
		gap: .6rem 1.4rem;
		font-size: .8rem;
	}
}

/* ---------- Timeline: Warum wir das machen ---------- */

.ai-timeline {
	position: relative;
	max-width: 780px;
	margin: 1.8rem auto 0;
	padding-left: 1.5rem;
}

/* vertikale Linie */
.ai-timeline::before {
	content: "";
	position: absolute;
	left: 12px;
	top: 0.3rem;
	bottom: 0.3rem;
	width: 2px;
	border-radius: 999px;
	background: linear-gradient(180deg, #06A69E, #7A3DF0);
	opacity: 0.45;
}

/* einzelner Step */
.ai-timeline-item {
	position: relative;
	padding-left: 3.5rem;
	margin-bottom: 2.2rem;

	opacity: 0;
	transform: translateY(32px);
	transition: opacity .5s ease-out, transform .5s ease-out;
}

/* wird vom JS gesetzt */
.ai-timeline-item.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Marker-Punkt mit Zahl */
.ai-timeline-marker {
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: radial-gradient(circle at top left, #06A69E, #4325a6);
	box-shadow: 0 0 18px rgba(6,166,158,0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .8rem;
	font-weight: 600;
	color: #fff;
	z-index: 1;
}

/* Card rechts von der Linie */
.ai-timeline-card {
	border-radius: 18px;
	padding: 1.4rem 1.5rem;
	background: radial-gradient(circle at top, rgba(6,166,158,0.18), rgba(5,8,20,0.98));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 18px 45px rgba(0,0,0,0.8);
	position: relative;
	overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ai-timeline-card::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at top, rgba(6,166,158,0.35), transparent 60%);
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: none;
}

.ai-timeline-card h3 {
	font-size: 1.05rem;
	margin-bottom: .4rem;
}

.ai-timeline-card p {
	font-size: .95rem;
	color: rgba(255,255,255,0.82);
}

.ai-timeline-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 60px rgba(0,0,0,0.9);
	border-color: rgba(6,166,158,0.8);
}

.ai-timeline-card:hover::before {
	opacity: 1;
}

/* Summary darunter kannst du gerne weiterverwenden */
.ai-reason-summary {
	margin-top: 2.4rem;
	font-size: .98rem;
	color: rgba(255,255,255,0.88);
}

/* Mobile: Linie nach links, alles enger */
@media (max-width: 575.98px) {
	.ai-timeline {
		padding-left: 1.1rem;
	}
	.ai-timeline::before {
		left: 10px;
	}
	.ai-timeline-item {
		padding-left: 3rem;
	}
}


/* ============================================
   Eigenständiger Footer / Kontakt-Bereich
   ============================================ */

.ai-footer {
	position: relative;
	padding: 4.5rem 0 3rem;
	margin-top: 4rem;                  /* etwas Abstand zur Vision-Section */
	overflow: hidden;
}

/* Footer-Hintergrund – eigener Look, etwas dunkler und ruhiger */
.ai-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;

	background:
		/* Teal-Glow mittig/unten */
		radial-gradient(circle at 40% 120%, rgba(6,166,158,0.32), transparent 70%),
		/* dezenter Violett-Schimmer rechts oben – knüpft an Vision an */
		radial-gradient(circle at 95% -10%, rgba(122,61,240,0.25), transparent 70%),
		/* dunkler Grundverlauf nach unten */
		linear-gradient(to bottom, #040611 10%, #020308 100%);
}

/* Inhaltsebene */
.ai-footer-inner {
	position: relative;
	z-index: 1;
}

/* Parallax-Wrapper */
.ai-parallax {
	will-change: transform;
	transition: transform 0.1s linear; /* minimal smoothing, kannst du auch weglassen */
}

/* Typo & Copy links */

.ai-footer-eyebrow {
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .75rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: .6rem;
}

.ai-footer-title {
	font-size: 2rem;
	margin-bottom: .8rem;
	color: #ffffff;
}

.ai-footer-text {
	max-width: 36rem;
	color: rgba(255,255,255,0.82);
	font-size: .96rem;
	line-height: 1.6;
}

/* ============================
   Kontaktbereich – ruhiger Abschluss
   ============================ */

#kontakt {
	position: relative;
	padding: 3.5rem 0 3rem;
	background: transparent; /* Basis */
}

/* dunkler, flacher Hintergrund ohne Farbschimmer */
#kontakt::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: #050611; /* fast schwarz, aber noch minimal Struktur */
	/* weicher Übergang nach oben */
	box-shadow: 0 -40px 80px rgba(0,0,0,0.85);
}

/* Header im Kontaktbereich etwas kompakter und linksbündig */
#kontakt .ai-section-header {
	text-align: left;
	margin-bottom: 2rem;
}

#kontakt .ai-section-header p {
	max-width: 38rem;
}

/* Kontaktkarte rechts */

.ai-footer-contact {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	padding: 1.6rem 1.6rem;
	border-radius: 20px;

	background: rgba(4,7,18,0.95);
	border: 1px solid rgba(255,255,255,0.12);
	box-shadow: 0 26px 60px rgba(0,0,0,0.9);
}

/* Glow hinter der Karte */
.ai-footer-contact::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	background: linear-gradient(135deg,
		rgba(6,166,158,0.7),
		rgba(122,61,240,0.65)
	);
	filter: blur(20px);
	opacity: .55;
	z-index: -1;
}

/* Avatar */
.ai-footer-avatar img {
	width: 80px;
	height: 80px;
	border-radius: 999px;
	object-fit: cover;
	border: 2px solid rgba(255,255,255,0.5);
	box-shadow: 0 0 18px rgba(0,0,0,0.85);
}

/* Kontakttexte */
.ai-footer-contact-body {
	font-size: .95rem;
	color: rgba(255,255,255,0.85);
}

.ai-footer-label {
	text-transform: uppercase;
	letter-spacing: .16em;
	font-size: .7rem;
	color: rgba(255,255,255,0.7);
	margin-bottom: .2rem;
}

.ai-footer-org {
	font-weight: 600;
	margin-bottom: .3rem;
}

.ai-footer-person,
.ai-footer-contact-data {
	margin-bottom: .4rem;
}

.ai-footer-contact-data a {
	color: #06A69E;
	text-decoration: none;
}

.ai-footer-contact-data a:hover {
	text-decoration: underline;
}

/* Kleine Meta-Zeile ganz unten */

.ai-footer-meta {
	margin-top: 2.8rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	justify-content: space-between;
	font-size: .8rem;
	color: rgba(255,255,255,0.55);
}

/* Responsive Anpassungen */

@media (max-width: 991.98px) {
	.ai-footer {
		padding-top: 3.5rem;
	}
}

@media (max-width: 767.98px) {
	.ai-footer-contact {
		flex-direction: column;
		align-items: flex-start;
	}

	.ai-footer-meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.ai-footer-title {
		font-size: 1.6rem;
	}
}

/* ============================
   Haupt-Footer (global)
   ============================ */

.ai-main-footer {
	background: #000;
	color: rgba(255,255,255,0.8);
	font-size: 0.85rem;
	padding: 1.2rem 0;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.ai-main-footer-copy {
	white-space: nowrap;
}

/* Links */
.ai-main-footer-links a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	margin: 0 0.15rem;
}

.ai-main-footer-links a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.ai-main-footer-sep {
	color: rgba(255,255,255,0.4);
}

/* Mobile: alles untereinander */
@media (max-width: 575.98px) {
	.ai-main-footer {
		text-align: center;
	}

	.ai-main-footer-copy {
		white-space: normal;
	}
}


.ai-form-state {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.ai-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
}

.ai-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: rgba(77, 220, 210, 0.9);
  animation: aiLoading 1.3s ease-in-out infinite;
}

@keyframes aiLoading {
  0%   { width: 10%; transform: translateX(-10%); }
  50%  { width: 75%; transform: translateX(10%); }
  100% { width: 10%; transform: translateX(110%); }
}

.ai-form-hint {
  margin: 10px 0 0;
  opacity: 0.85;
  font-size: 0.95rem;
}