/**
 * E-Welt Energie – Gesamtes CSS (Design System, Header/Footer, Seiten)
 * Primary: #37A9E1 | Schrift: Space Grotesk | Icons: Material Symbols Outlined
 */

/* ========== Design System ========== */
:root {
	--ewelt-primary: #37A9E1;
	--ewelt-primary-dark: #2d8ab8;
	--ewelt-bg-light: #e8f4fc;
	--ewelt-bg-tint: #d4ebf7;
	--ewelt-bg-dark: #111c21;
	--ewelt-text-main: #0e161b;
	--ewelt-text-muted: #507e95;
	--ewelt-border-light: #b8d9ed;
	--ewelt-border-dark: #2d3a43;
	--ewelt-font: 'Space Grotesk', sans-serif;
	--ewelt-container: 1200px;
	--ewelt-container-wide: 1280px;
	--ewelt-header-height: 80px; /* Höhe des Headers – Inhalt beginnt darunter */
	--ewelt-topbar-height: 40px; /* Höhe der Topbar (Telefon/E-Mail) – steht über dem Header */
}

body {
	font-family: var(--ewelt-font);
	color: var(--ewelt-text-main);
	background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 30%, #e8f4fc 100%);
	min-height: 100vh;
}

/* Material Symbols – Icons laden nur, wenn Font per Link geladen wird (functions.php) */
.material-symbols-outlined {
	font-family: 'Material Symbols Outlined', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.ewelt-container {
	max-width: var(--ewelt-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.ewelt-container-wide {
	max-width: var(--ewelt-container-wide);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.ewelt-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: var(--ewelt-primary);
	color: #fff;
	font-weight: 700;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
}

.ewelt-btn-primary:hover {
	background: var(--ewelt-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.ewelt-text-primary { color: var(--ewelt-primary); }
.ewelt-bg-primary { background-color: var(--ewelt-primary); }
.ewelt-bg-light { background-color: var(--ewelt-bg-light); }

/* ========== Header (modern) & Footer ========== */
.elementor-location-header {
	position: relative;
	z-index: 9999 !important;
	overflow: visible !important;
}
.elementor-location-header .elementor-section,
.elementor-location-header .elementor-container {
	max-width: none !important;
	width: 100% !important;
}

/* Wrapper: Topbar + Header gemeinsam fixiert, Topbar oben */
.ewelt-header-wrap {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999 !important;
}
.ewelt-header-wrap .ewelt-header {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
}

/* Moderner Header – Glas-Effekt, Schatten, klare Typografie */
.ewelt-header {
	--ewelt-header-min-height: var(--ewelt-header-height, 80px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	min-width: 100%;
	min-height: var(--ewelt-header-min-height);
	z-index: 9999 !important;
	background: rgba(17, 28, 33, 0.92) !important;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	padding: 0.75rem 1.5rem;
	box-sizing: border-box;
	isolate: isolate;
	overflow: visible;
	display: flex;
	align-items: center;
	transition: background 0.3s, box-shadow 0.3s;
}
body .ewelt-header {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	left: 0;
	right: 0;
}
.ewelt-header-inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	position: relative;
	z-index: 1;
}
.ewelt-header-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #fff;
	flex-shrink: 0;
	transition: opacity 0.2s;
}
.ewelt-header-logo:hover { opacity: 0.9; }
.ewelt-header-logo-img,
.ewelt-header .ewelt-header-logo .ewelt-header-logo-img {
	display: block !important;
	height: 42px !important;
	max-height: 42px !important;
	width: auto !important;
	min-width: 0;
	max-width: 200px !important;
	object-fit: contain !important;
	vertical-align: middle;
}
.ewelt-header .ewelt-header-logo-img { color: #fff; fill: #fff; }

/* Schließen-Button im mobilen Menü (nur auf Mobile sichtbar) */
.ewelt-header-close {
	display: none;
	cursor: pointer;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
	padding: 0.75rem 0;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.12);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color 0.2s, opacity 0.2s;
}
.ewelt-header-close:hover { color: #37A9E1; }
.ewelt-header-close .material-symbols-outlined { font-size: 1.5rem; }

/* Hamburger – nur auf Mobile sichtbar (Label für Checkbox) */
.ewelt-header-checkbox { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.ewelt-header-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border-radius: 8px;
	transition: background 0.2s;
}
.ewelt-header-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.ewelt-header-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	border-radius: 1px;
	transition: transform 0.3s, opacity 0.3s;
}
/* Hamburger → X wenn Menü offen (Checkbox) */
.ewelt-header-checkbox:checked + .ewelt-header-toggle .ewelt-header-toggle-bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.ewelt-header-checkbox:checked + .ewelt-header-toggle .ewelt-header-toggle-bar:nth-child(2) {
	opacity: 0;
}
.ewelt-header-checkbox:checked + .ewelt-header-toggle .ewelt-header-toggle-bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Navigation – Desktop */
.ewelt-header-nav {
	display: flex;
	align-items: center;
}
.ewelt-header-nav-inner {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.ewelt-nav-link {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 0.5rem 0.875rem;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s;
}
.ewelt-nav-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}
.ewelt-nav-link.ewelt-nav-active {
	color: #37A9E1;
	background: rgba(55, 169, 225, 0.15);
}
.ewelt-nav-link.ewelt-nav-cta-link {
	display: none; /* auf Desktop den CTA-Button nutzen */
}
.ewelt-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #37A9E1 0%, #0ea5e9 100%);
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 600;
	padding: 0.625rem 1.5rem;
	border-radius: 10px;
	text-decoration: none;
	box-shadow: 0 2px 12px rgba(55, 169, 225, 0.35);
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.ewelt-header-cta:hover {
	background: linear-gradient(135deg, #2d8ab8 0%, #0284c7 100%);
	box-shadow: 0 4px 16px rgba(55, 169, 225, 0.45);
	transform: translateY(-1px);
	color: #fff;
}

/* Mobile */
@media (max-width: 1024px) {
	.ewelt-header-toggle { display: flex; }
	.ewelt-header-cta { display: none; }
	.ewelt-header-close { display: flex; }
	.ewelt-header-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: min(320px, 100vw);
		height: 100vh;
		background: rgba(17, 28, 33, 0.98);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		padding: calc(var(--ewelt-topbar-height) + var(--ewelt-header-height, 80px) + 1rem) 1.5rem 2rem;
		box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
		transform: translateX(100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}
	.ewelt-header-checkbox:checked ~ .ewelt-header-nav { transform: translateX(0); }
	.ewelt-header-nav-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 0.25rem;
	}
	.ewelt-nav-link {
		padding: 0.75rem 1rem;
		font-size: 1rem;
		border-radius: 10px;
	}
	.ewelt-nav-link.ewelt-nav-cta-link {
		display: inline-flex;
		justify-content: center;
		margin-top: 1rem;
		background: linear-gradient(135deg, #37A9E1 0%, #0ea5e9 100%);
		color: #fff;
	}
}
@media (max-width: 480px) {
	.ewelt-header-inner { gap: 1rem; }
	.ewelt-header-logo-img { height: 36px !important; max-height: 36px !important; }
}

/* ========== Footer (modern) ========== */
.ewelt-footer {
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 4rem 1.5rem 2rem;
	color: rgba(255, 255, 255, 0.88);
	position: relative;
}
.ewelt-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(55, 169, 225, 0.3), transparent);
	opacity: 0.6;
}
.ewelt-footer-inner { max-width: 1280px; margin: 0 auto; }
.ewelt-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.ewelt-footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 3rem; align-items: start; }
}
.ewelt-footer-brand-col { max-width: 320px; }
.ewelt-footer-brand {
	display: inline-block;
	margin-bottom: 1rem;
	text-decoration: none;
	transition: opacity 0.2s;
}
.ewelt-footer-brand:hover { opacity: 0.9; }
.ewelt-footer-logo {
	display: block;
	height: 42px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
	vertical-align: middle;
}
.ewelt-footer-tagline {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}
.ewelt-footer-heading {
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 1rem;
}
.ewelt-footer-links { list-style: none; padding: 0; margin: 0; }
.ewelt-footer-links li { margin-bottom: 0.625rem; }
.ewelt-footer-links a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color 0.2s;
}
.ewelt-footer-links a:hover { color: #37A9E1; }
.ewelt-footer-contact { list-style: none; padding: 0; margin: 0; }
.ewelt-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
}
.ewelt-footer-contact .material-symbols-outlined {
	font-size: 1.25rem;
	color: #37A9E1;
	flex-shrink: 0;
	margin-top: 0.1rem;
}
.ewelt-footer-contact a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	transition: color 0.2s;
}
.ewelt-footer-contact a:hover { color: #37A9E1; }
.ewelt-footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.ewelt-footer-copy {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}
.ewelt-footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}
.ewelt-footer-legal a {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.2s;
}
.ewelt-footer-legal a:hover { color: #37A9E1; }

/* ========== Page Sections ========== */
.ewelt-topbar {
	background: #0f172a;
	color: #fff;
	padding: 0.5rem 1.5rem;
	font-size: 0.75rem;
}
.ewelt-topbar-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.ewelt-topbar-left,
.ewelt-topbar-right { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem 0.5rem; }
.ewelt-topbar a { color: #fff; text-decoration: none; }
.ewelt-topbar a:hover { color: #37A9E1; }
.ewelt-topbar .material-symbols-outlined { font-size: 1rem; vertical-align: middle; flex-shrink: 0; }
.ewelt-topbar-item-spaced { margin-left: 0.5rem; }
.ewelt-topbar-divider { margin: 0 0.5rem; width: 1px; height: 0.75rem; background: rgba(255,255,255,0.2); display: inline-block; vertical-align: middle; flex-shrink: 0; }
/* Topbar mobil: gestapelt, kompakter */
@media (max-width: 768px) {
	.ewelt-topbar { padding: 0.5rem 1rem; font-size: 0.6875rem; }
	.ewelt-topbar-inner { flex-direction: column; align-items: center; text-align: center; gap: 0.35rem; }
	.ewelt-topbar-left,
	.ewelt-topbar-right { justify-content: center; }
	.ewelt-topbar-item-spaced { margin-left: 0.35rem; }
	.ewelt-topbar-divider { margin: 0 0.35rem; }
}
@media (max-width: 480px) {
	.ewelt-topbar { padding: 0.4rem 0.75rem; font-size: 0.625rem; }
	.ewelt-topbar .material-symbols-outlined { font-size: 0.875rem; }
	.ewelt-topbar-left span:nth-child(2) { display: none; }
	.ewelt-topbar-left .ewelt-topbar-item-spaced { margin-left: 0; }
}

.ewelt-hero {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 3rem 1.5rem 5rem;
	background: linear-gradient(135deg, #bae6fd 0%, #e0f2fe 40%, #f0f9ff 70%);
}
.ewelt-hero::before {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 60%; height: 100%;
	background: linear-gradient(to left, rgba(55,169,225,0.25), rgba(55,169,225,0.05));
	pointer-events: none;
}
.ewelt-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.ewelt-hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .ewelt-hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.ewelt-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	background: rgba(55,169,225,0.2);
	border: 1px solid rgba(55,169,225,0.4);
	color: #1e5f7a;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}
.ewelt-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.05; color: #0f172a; margin: 0 0 1rem; }
.ewelt-hero h1 .gradient { background: linear-gradient(to right, #37A9E1, #2563eb); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ewelt-hero-desc { font-size: 1.125rem; color: #64748b; max-width: 540px; line-height: 1.6; margin-bottom: 1.5rem; }
.ewelt-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.ewelt-hero-btns .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; background: #37A9E1; color: #fff; font-weight: 700; border-radius: 0.75rem; text-decoration: none; transition: all 0.2s; }
.ewelt-hero-btns .btn-primary:hover { background: #2d8ab8; transform: scale(1.02); }
.ewelt-hero-btns .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; border: 2px solid rgba(55,169,225,0.5); color: #1e5f7a; font-weight: 700; border-radius: 0.75rem; text-decoration: none; background: rgba(255,255,255,0.7); transition: all 0.2s; }
.ewelt-hero-btns .btn-secondary:hover { border-color: #37A9E1; color: #37A9E1; background: rgba(255,255,255,0.9); }
.ewelt-hero-social { display: flex; align-items: center; gap: 1rem; padding-top: 2rem; border-top: 1px solid rgba(55,169,225,0.2); }
.ewelt-hero-avatars { display: flex; margin-right: 0.5rem; }
.ewelt-hero-avatars span { width: 3rem; height: 3rem; border-radius: 50%; border: 2px solid #fff; background: #cbd5e1 center/cover; margin-left: -0.75rem; }
.ewelt-hero-avatars span:first-child { margin-left: 0; }
.ewelt-hero-avatars-num { margin-left: 0.5rem; background: var(--ewelt-primary) !important; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: 0.25rem; }
.ewelt-hero-stars { color: #facc15; }
.ewelt-hero-stars .material-symbols-outlined.filled { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.ewelt-hero-social-label { margin: 0; font-size: 0.875rem; font-weight: 500; color: #64748b; }
.ewelt-hero-image-wrap { position: relative; min-height: 400px; }
.ewelt-hero-image-wrap .ewelt-hero-image { height: 100%; min-height: 500px; }
.ewelt-hero-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 33%; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); pointer-events: none; }
.ewelt-hero-image { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.ewelt-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ewelt-hero-image-caption { position: absolute; bottom: 2rem; left: 2rem; color: #fff; }
.ewelt-hero-image-caption p { margin: 0; font-weight: 700; font-size: 1.125rem; }
.ewelt-hero-image-caption small { opacity: 0.9; font-size: 0.875rem; }
.ewelt-hero-card { position: absolute; bottom: -1.5rem; left: -1.5rem; background: #f0f9ff; padding: 1.25rem; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08); border: 1px solid rgba(55,169,225,0.2); max-width: 200px; }
.ewelt-hero-card .material-symbols-outlined { color: #16a34a; }
.ewelt-hero-card .label { font-size: 0.75rem; color: #64748b; font-weight: 700; text-transform: uppercase; }
.ewelt-hero-card .value { font-size: 1.125rem; font-weight: 700; color: #0f172a; }
.ewelt-hero-card-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.ewelt-hero-card-icon-wrap { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: #dcfce7; display: flex; align-items: center; justify-content: center; }
.ewelt-hero-card-bar { width: 100%; height: 6px; background: #f1f5f9; border-radius: 9999px; overflow: hidden; }
.ewelt-hero-card-bar-fill { width: 85%; height: 100%; background: #22c55e; border-radius: 9999px; }

.ewelt-partners { background: linear-gradient(180deg, #7dd3fc 0%, #bae6fd 50%); padding: 3rem 1.5rem; border-top: 1px solid rgba(55,169,225,0.2); border-bottom: 1px solid rgba(55,169,225,0.2); }
.ewelt-partners-inner { max-width: 1280px; margin: 0 auto; }
.ewelt-partners-title { text-align: center; font-size: 0.875rem; font-weight: 700; color: #0c4a6e; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; }
.ewelt-partners-list { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem 3rem; }
.ewelt-partner-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	min-width: 100px;
	padding: 0.5rem 1rem;
	background: rgba(255,255,255,0.6);
	border-radius: 10px;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	text-decoration: none;
}
.ewelt-partner-logo:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); background: #fff; }
.ewelt-partner-logo img {
	height: 28px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	filter: grayscale(0.2);
	transition: filter 0.2s;
}
.ewelt-partner-logo:hover img { filter: grayscale(0); }

.ewelt-solutions { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 100%); }
.ewelt-solutions-inner { max-width: 1280px; margin: 0 auto; }
.ewelt-solutions-header { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
.ewelt-solutions-header .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ewelt-solutions-header h2 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 700; color: #0f172a; margin: 0 0 1rem; }
.ewelt-solutions-header p { font-size: 1.125rem; color: #0c4a6e; margin: 0; }
.ewelt-solutions-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ewelt-solutions-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.ewelt-solution-card {
	display: block;
	position: relative;
	height: 480px;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	text-decoration: none;
	transition: box-shadow 0.3s;
}
.ewelt-solution-card:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.ewelt-solution-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ewelt-solution-card:hover img { transform: scale(1.1); }
.ewelt-solution-card-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.4); transition: background 0.3s; z-index: 1; }
.ewelt-solution-card:hover .ewelt-solution-card-overlay { background: rgba(15,23,42,0.2); }
.ewelt-solution-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(15,23,42,0.9), rgba(15,23,42,0.5)); z-index: 2; }
.ewelt-solution-card-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: #37A9E1; color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: all 0.3s; }
.ewelt-solution-card:hover .ewelt-solution-card-icon { background: #e0f2fe; color: #37A9E1; }
.ewelt-solution-card h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0 0 0.5rem; }
.ewelt-solution-card p { font-size: 0.875rem; color: #e2e8f0; margin: 0 0 1rem; opacity: 0; transform: translateY(1rem); transition: all 0.3s; }
.ewelt-solution-card:hover p { opacity: 1; transform: translateY(0); }
.ewelt-solution-card-link { color: #fff; font-weight: 700; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 0.25rem; }
.ewelt-solution-card-link .material-symbols-outlined { transition: transform 0.2s; }
.ewelt-solution-card:hover .ewelt-solution-card-link .material-symbols-outlined { transform: translateX(0.5rem); }

/* Warum E-Welt */
.ewelt-why { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e8f4fc 0%, #f0f9ff 100%); }
.ewelt-why-inner { max-width: 1280px; margin: 0 auto; }
.ewelt-why-header { text-align: center; max-width: 36rem; margin: 0 auto 3rem; }
.ewelt-why-header .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ewelt-why-header h2 { font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 700; color: #0f172a; margin: 0; }
.ewelt-why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ewelt-why-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.ewelt-why-four .ewelt-why-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .ewelt-why-four .ewelt-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ewelt-why-four .ewelt-why-grid { grid-template-columns: repeat(4, 1fr); } }
.ewelt-why-card {
	padding: 2rem;
	border-radius: 1rem;
	background: rgba(255,255,255,0.85);
	border: 1px solid rgba(55,169,225,0.2);
	box-shadow: 0 4px 15px rgba(55,169,225,0.08);
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ewelt-why-card:hover { border-color: rgba(55,169,225,0.4); box-shadow: 0 8px 24px rgba(55,169,225,0.12); transform: translateY(-2px); }
.ewelt-why-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 1rem;
	background: rgba(55,169,225,0.12);
	color: #37A9E1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: background 0.2s, color 0.2s;
}
.ewelt-why-card:hover .ewelt-why-icon { background: #37A9E1; color: #fff; }
.ewelt-why-card h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 0.5rem; }
.ewelt-why-card p { font-size: 0.9375rem; color: #64748b; line-height: 1.6; margin: 0; }

.ewelt-stats { background: linear-gradient(135deg, #0ea5e9 0%, #37A9E1 50%, #0284c7 100%); color: #fff; padding: 4rem 1.5rem; box-shadow: 0 4px 20px rgba(55,169,225,0.3); }
.ewelt-stats-inner { max-width: 1280px; margin: 0 auto; }
.ewelt-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .ewelt-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }
.ewelt-stats-grid > div { border-right: 1px solid rgba(255,255,255,0.2); }
.ewelt-stats-grid > div:last-child { border-right: 0; }
.ewelt-stats-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.5rem; }
.ewelt-stats-label { font-size: 1rem; opacity: 0.9; }

.ewelt-projects { padding: 4rem 1.5rem; background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 100%); overflow: hidden; }
.ewelt-projects-inner { max-width: 1280px; margin: 0 auto; }
.ewelt-projects-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 2rem; }
.ewelt-projects-header .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ewelt-projects-header h2 { font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 700; color: #0f172a; margin: 0 0 0.25rem; }
.ewelt-projects-header p { font-size: 1rem; color: #64748b; margin: 0; }
.ewelt-projects-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; font-weight: 600; color: #37A9E1; text-decoration: none; white-space: nowrap; transition: color 0.2s, gap 0.2s; }
.ewelt-projects-link:hover { color: #2d8ab8; gap: 0.75rem; }
.ewelt-projects-link .material-symbols-outlined { font-size: 1.25rem; }
.ewelt-projects-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ewelt-projects-grid { grid-template-columns: repeat(3, 1fr); } }
.ewelt-project-card { background: rgba(240,249,255,0.95); border-radius: 1.5rem; overflow: hidden; box-shadow: 0 4px 15px rgba(55,169,225,0.15); border: 1px solid rgba(55,169,225,0.2); transition: box-shadow 0.3s, border-color 0.3s; }
.ewelt-project-card:hover { box-shadow: 0 20px 40px -10px rgba(55,169,225,0.25); border-color: rgba(55,169,225,0.35); }
.ewelt-project-card-image { height: 240px; background: linear-gradient(135deg, #bae6fd, #e0f2fe); position: relative; overflow: hidden; }
.ewelt-project-card-image img { width: 100%; height: 100%; object-fit: cover; }
.ewelt-project-card-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(255,255,255,0.9); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; color: #1e293b; }
.ewelt-project-card-body { padding: 1.5rem; }
.ewelt-project-card-tags { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.ewelt-project-card-tags span { font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: 0.25rem; text-transform: uppercase; }
.ewelt-project-card-tag-primary { background: #eff6ff; color: var(--ewelt-primary); }
.ewelt-project-card-tag-warning { background: #fef9c3; color: #854d0e; }
.ewelt-project-card-tag-success { background: #dcfce7; color: #166534; }
.ewelt-project-card-image-placeholder { background: #cbd5e1; display: flex; align-items: center; justify-content: center; position: relative; }
.ewelt-project-card-image-placeholder .material-symbols-outlined { font-size: 4rem; color: #94a3b8; }
.ewelt-project-card h4 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 0.5rem; }
.ewelt-project-card p { font-size: 0.875rem; color: #64748b; margin: 0 0 1rem; }
.ewelt-project-card a { color: #37A9E1; font-weight: 700; font-size: 0.875rem; text-decoration: none; }
.ewelt-project-card a:hover { text-decoration: underline; }

/* Referenzen – Platzhalter „In Kürze Projekte“ */
.ewelt-referenzen-placeholder { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e8f4fc 0%, #f0f9ff 100%); }
.ewelt-referenzen-placeholder-inner { max-width: 720px; margin: 0 auto; }
.ewelt-referenzen-placeholder-content { text-align: center; padding: 3rem 2rem; background: rgba(255,255,255,0.9); border-radius: 1.5rem; border: 1px solid rgba(55,169,225,0.2); box-shadow: 0 4px 24px rgba(55,169,225,0.08); }
.ewelt-referenzen-placeholder-icon { font-size: 4rem; color: #37A9E1; display: block; margin-bottom: 1rem; }
.ewelt-referenzen-placeholder-content .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ewelt-referenzen-placeholder-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #0e161b; margin: 0 0 1rem; line-height: 1.3; }
.ewelt-referenzen-placeholder-content p { font-size: 1.125rem; color: #507e95; line-height: 1.6; margin: 0 0 1.5rem; }
.ewelt-referenzen-placeholder-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.ewelt-referenzen-placeholder-btns .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; background: #37A9E1; color: #fff; font-weight: 700; border-radius: 0.75rem; text-decoration: none; }
.ewelt-referenzen-placeholder-btns .btn-primary:hover { background: #2d8ab8; }
.ewelt-referenzen-placeholder-btns .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; border: 2px solid rgba(55,169,225,0.5); color: #0e161b; font-weight: 700; border-radius: 0.75rem; text-decoration: none; background: rgba(255,255,255,0.9); }
.ewelt-referenzen-placeholder-btns .btn-secondary:hover { border-color: #37A9E1; color: #37A9E1; background: #fff; }

.ewelt-cta-block { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 100%); }
.ewelt-cta-inner { max-width: 1100px; margin: 0 auto; background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0c4a6e 100%); border-radius: 2rem; padding: 3rem 2rem; position: relative; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(15,23,42,0.4); }
.ewelt-cta-inner::before { content: ''; position: absolute; top: 0; right: 0; width: 24rem; height: 24rem; background: rgba(55,169,225,0.3); border-radius: 50%; filter: blur(48px); transform: translate(50%, -50%); }
.ewelt-cta-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 768px) { .ewelt-cta-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
/* Linke Spalte: Überschrift + Text + Buttons + Hinweis – gut lesbar auf dunklem Hintergrund */
.ewelt-cta-text h2,
.ewelt-cta-block .ewelt-cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff !important; margin: 0 0 1rem; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.ewelt-cta-text p,
.ewelt-cta-block .ewelt-cta-inner .ewelt-cta-text p { font-size: 1.125rem; color: #e2e8f0 !important; margin: 0 0 1.5rem; line-height: 1.6; }
.ewelt-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.ewelt-cta-btns .btn-primary { display: inline-flex; padding: 0.875rem 1.5rem; background: #37A9E1; color: #fff; font-weight: 700; border-radius: 0.75rem; text-decoration: none; }
.ewelt-cta-btns .btn-secondary { display: inline-flex; padding: 0.875rem 1.5rem; border: 2px solid rgba(255,255,255,0.5); color: #fff; font-weight: 700; border-radius: 0.75rem; text-decoration: none; background: transparent; }
.ewelt-cta-btns .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.ewelt-cta-note { font-size: 0.875rem; color: #cbd5e1 !important; }
.ewelt-cta-note-check { color: #7dd3fc; }
.ewelt-cta-testimonial-status { margin-top: 1rem; font-size: 0.875rem; color: #94a3b8; }
.ewelt-cta-testimonial-online { color: #22c55e; }
.ewelt-cta-testimonial-online-dot { display: inline-block; width: 0.5rem; height: 0.5rem; background: #22c55e; border-radius: 50%; vertical-align: middle; margin-right: 0.25rem; }
.ewelt-cta-testimonial { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); padding: 2rem; border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.1); }
.ewelt-cta-testimonial-avatar { width: 4rem; height: 4rem; border-radius: 50%; border: 2px solid #37A9E1; background: #374151 center/cover; margin-bottom: 1rem; }
.ewelt-cta-testimonial p { font-weight: 700; color: #fff; margin: 0 0 0.25rem; }
.ewelt-cta-testimonial span { font-size: 0.875rem; color: #94a3b8; }
.ewelt-cta-testimonial blockquote { font-size: 0.9375rem; color: #cbd5e1; font-style: italic; margin: 1rem 0 0; padding: 0; }

/* Über uns – Intro & Standort */
.ewelt-ueber-uns-intro { padding: 4rem 1.5rem; background: #fff; border-top: 1px solid rgba(55,169,225,0.1); }
.ewelt-ueber-uns-intro-inner { max-width: 720px; margin: 0 auto; }
.ewelt-ueber-uns-intro .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ewelt-ueber-uns-intro h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: #0e161b; margin: 0 0 1rem; }
.ewelt-ueber-uns-intro-lead { font-size: 1.125rem; color: #0e161b; line-height: 1.6; margin: 0 0 1rem; font-weight: 500; }
.ewelt-ueber-uns-intro p { font-size: 1rem; color: #507e95; line-height: 1.7; margin: 0; }
.ewelt-ueber-uns-contact { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e8f4fc 0%, #f0f9ff 100%); }
.ewelt-ueber-uns-contact-inner { max-width: 960px; margin: 0 auto; }
.ewelt-ueber-uns-contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .ewelt-ueber-uns-contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.ewelt-ueber-uns-contact .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ewelt-ueber-uns-contact h2 { font-size: clamp(1.5rem, 2.5vw, 1.875rem); font-weight: 800; color: #0e161b; margin: 0 0 0.75rem; }
.ewelt-ueber-uns-contact p { font-size: 1rem; color: #507e95; line-height: 1.6; margin: 0; }
.ewelt-ueber-uns-contact a { color: #37A9E1; font-weight: 600; text-decoration: none; }
.ewelt-ueber-uns-contact a:hover { text-decoration: underline; }
.ewelt-ueber-uns-contact-cta { background: rgba(255,255,255,0.9); padding: 2rem; border-radius: 1rem; border: 1px solid rgba(55,169,225,0.2); }
.ewelt-ueber-uns-contact-cta p { margin-bottom: 1rem; color: #0e161b; }
.ewelt-ueber-uns-contact-cta .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; background: #37A9E1; color: #fff; font-weight: 700; border-radius: 0.75rem; text-decoration: none; }
.ewelt-ueber-uns-contact-cta .btn-primary:hover { background: #2d8ab8; }

.ewelt-subhero { padding: 3rem 1.5rem 5rem; background: linear-gradient(180deg, #e0f2fe 0%, #e8f4fc 100%); }
.ewelt-subhero-inner { max-width: 1200px; margin: 0 auto; }
.ewelt-subhero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .ewelt-subhero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.ewelt-subhero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 9999px; background: rgba(55,169,225,0.1); color: #37A9E1; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 1rem; }
.ewelt-subhero h1 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 800; line-height: 1.1; color: #0e161b; margin: 0 0 1rem; }
.ewelt-subhero h1 .primary { color: #37A9E1; }
.ewelt-subhero-desc { font-size: 1.125rem; color: #507e95; max-width: 540px; line-height: 1.6; margin-bottom: 1.5rem; }
.ewelt-subhero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.ewelt-subhero-btns .btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; background: #37A9E1; color: #fff; font-weight: 700; border-radius: 0.75rem; text-decoration: none; transition: all 0.2s; }
.ewelt-subhero-btns .btn-primary:hover { background: #2d8ab8; transform: scale(1.02); }
.ewelt-subhero-btns .btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.5rem; border: 2px solid rgba(55,169,225,0.5); color: #0e161b; font-weight: 700; border-radius: 0.75rem; text-decoration: none; background: rgba(255,255,255,0.8); transition: all 0.2s; }
.ewelt-subhero-btns .btn-secondary:hover { border-color: #37A9E1; color: #37A9E1; background: #fff; }
.ewelt-subhero-image { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); aspect-ratio: 1; }
.ewelt-subhero-image img { width: 100%; height: 100%; object-fit: cover; }

.ewelt-vorteile { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e8f4fc 0%, #f0f9ff 100%); }
.ewelt-vorteile-inner { max-width: 1200px; margin: 0 auto; }
.ewelt-vorteile-header { text-align: center; margin-bottom: 3rem; }
.ewelt-vorteile-header .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ewelt-vorteile-header h2 { font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 800; color: #0e161b; margin: 0; }
.ewelt-vorteile-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .ewelt-vorteile-grid { grid-template-columns: repeat(3, 1fr); } }
.ewelt-vorteile-card { padding: 2rem; border-radius: 1rem; background: #e8f4fc; border: 1px solid rgba(55,169,225,0.25); transition: border-color 0.2s; }
.ewelt-vorteile-card:hover { border-color: #37A9E1; }
.ewelt-vorteile-card-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: rgba(55,169,225,0.1); color: #37A9E1; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.2s; }
.ewelt-vorteile-card:hover .ewelt-vorteile-card-icon { background: #37A9E1; color: #fff; }
.ewelt-vorteile-card h4 { font-size: 1.25rem; font-weight: 700; color: #0e161b; margin: 0 0 0.75rem; }
.ewelt-vorteile-card p { font-size: 1rem; color: #507e95; line-height: 1.6; margin: 0; }

.ewelt-funktion { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e8f4fc 0%, #f0f9ff 100%); }
.ewelt-funktion-inner { max-width: 1200px; margin: 0 auto; }
.ewelt-funktion-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .ewelt-funktion-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.ewelt-funktion-steps { display: grid; gap: 1.5rem; }
.ewelt-funktion-step { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.5rem; border-radius: 1rem; background: #f0f9ff; box-shadow: 0 1px 3px rgba(55,169,225,0.08); border: 1px solid rgba(55,169,225,0.15); }
.ewelt-funktion-step-num { width: 3rem; height: 3rem; border-radius: 50%; background: #37A9E1; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ewelt-funktion-step h5 { font-size: 1.125rem; font-weight: 700; color: #0e161b; margin: 0 0 0.25rem; }
.ewelt-funktion-step p { font-size: 1rem; color: #507e95; margin: 0; }
.ewelt-funktion-text .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; margin-bottom: 0.5rem; }
.ewelt-funktion-text h2 { font-size: clamp(1.875rem, 3vw, 3rem); font-weight: 800; color: #0e161b; margin: 0 0 1rem; line-height: 1.2; }
.ewelt-funktion-text p { font-size: 1.125rem; color: #507e95; line-height: 1.6; margin-bottom: 1.5rem; }
.ewelt-funktion-info { padding: 1.5rem; border-radius: 1rem; background: rgba(55,169,225,0.05); border: 1px solid rgba(55,169,225,0.2); display: flex; align-items: flex-start; gap: 1rem; color: #37A9E1; font-weight: 700; font-style: italic; }
.ewelt-funktion-info .material-symbols-outlined { flex-shrink: 0; }

.ewelt-angebot { padding: 4rem 1.5rem; }
.ewelt-angebot-inner { max-width: 1000px; margin: 0 auto; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); display: flex; flex-direction: column; }
@media (min-width: 768px) { .ewelt-angebot-inner { flex-direction: row; } }
.ewelt-angebot-left { background: #37A9E1; color: #fff; padding: 2.5rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.ewelt-angebot-left h3 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; margin: 0 0 1rem; }
.ewelt-angebot-left p { font-size: 1.125rem; opacity: 0.9; line-height: 1.6; margin-bottom: 1.5rem; }
.ewelt-angebot-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.ewelt-angebot-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.ewelt-angebot-list .material-symbols-outlined { background: rgba(255,255,255,0.2); padding: 0.25rem; border-radius: 50%; font-size: 1rem; }
.ewelt-angebot-hotline { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.2); }
.ewelt-angebot-hotline p { margin: 0 0 0.25rem; font-weight: 700; }
.ewelt-angebot-hotline .num { font-size: 1.875rem; font-weight: 800; }
.ewelt-angebot-right { background: #f0f9ff; padding: 2.5rem; flex: 1; border: 1px solid rgba(55,169,225,0.15); }
.ewelt-angebot-form label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: #0e161b; }
.ewelt-angebot-form input, .ewelt-angebot-form select { width: 100%; padding: 0.75rem 1rem; border: 1px solid #d1dfe6; border-radius: 0.5rem; font-size: 1rem; margin-bottom: 1rem; }
.ewelt-angebot-form input:focus, .ewelt-angebot-form select:focus { outline: none; border-color: #37A9E1; box-shadow: 0 0 0 2px rgba(55,169,225,0.2); }
.ewelt-angebot-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ewelt-angebot-form button[type="submit"] { width: 100%; padding: 0.875rem 1.5rem; background: #37A9E1; color: #fff; font-weight: 800; font-size: 1rem; border: none; border-radius: 0.75rem; cursor: pointer; transition: background 0.2s, transform 0.05s; }
.ewelt-angebot-form button[type="submit"]:hover { background: #2d8ab8; transform: scale(1.01); }
.ewelt-angebot-form .note { font-size: 0.75rem; color: #507e95; text-align: center; margin-top: 0.75rem; }
.ewelt-angebot-form .note a { color: #37A9E1; text-decoration: underline; }

.ewelt-kontakt-hero { background: #37A9E1; color: #fff; padding: 4rem 1.5rem 6rem; text-align: center; }
.ewelt-kontakt-hero h1 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 800; margin: 0 0 1rem; }
.ewelt-kontakt-hero p { font-size: 1.25rem; max-width: 42rem; margin: 0 auto; opacity: 0.95; line-height: 1.6; }

.ewelt-kontakt-content { padding: 0 1.5rem 4rem; margin-top: -4rem; position: relative; z-index: 2; }
.ewelt-kontakt-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .ewelt-kontakt-inner { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; } }
.ewelt-kontakt-data { background: #f0f9ff; border-radius: 1rem; padding: 2rem; box-shadow: 0 10px 15px -3px rgba(55,169,225,0.1); border: 1px solid rgba(55,169,225,0.2); }
.ewelt-kontakt-data h3 { font-size: 1.5rem; font-weight: 700; margin: 0 0 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.ewelt-kontakt-data h3 .material-symbols-outlined { background: rgba(55,169,225,0.1); padding: 0.5rem; border-radius: 0.5rem; color: #37A9E1; }
.ewelt-kontakt-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.ewelt-kontakt-item-icon { width: 3rem; height: 3rem; border-radius: 50%; background: #f0f9ff; color: #37A9E1; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ewelt-kontakt-item h4 { font-size: 1rem; font-weight: 700; margin: 0 0 0.25rem; color: #0e161b; }
.ewelt-kontakt-item p, .ewelt-kontakt-item a { font-size: 1rem; color: #507e95; margin: 0; text-decoration: none; }
.ewelt-kontakt-item a:hover { color: #37A9E1; }
.ewelt-kontakt-map { border-radius: 1rem; overflow: hidden; height: 300px; background: #e2e8f0; }
.ewelt-kontakt-form-box { background: #f0f9ff; border-radius: 1rem; padding: 2rem; box-shadow: 0 25px 50px -12px rgba(55,169,225,0.12); border: 1px solid rgba(55,169,225,0.2); }
.ewelt-kontakt-form-box h3 { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.5rem; color: #0e161b; }
.ewelt-kontakt-form-box > p { font-size: 0.875rem; color: #507e95; margin-bottom: 1.5rem; }
.ewelt-kontakt-form label { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: #0e161b; }
.ewelt-kontakt-form input, .ewelt-kontakt-form select, .ewelt-kontakt-form textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(55,169,225,0.3); border-radius: 0.75rem; font-size: 1rem; margin-bottom: 1rem; background: #e8f4fc; }
.ewelt-kontakt-form input:focus, .ewelt-kontakt-form select:focus, .ewelt-kontakt-form textarea:focus { outline: none; border-color: #37A9E1; box-shadow: 0 0 0 2px rgba(55,169,225,0.2); }
.ewelt-kontakt-form textarea { min-height: 120px; resize: none; }
.ewelt-kontakt-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ewelt-kontakt-form button[type="submit"] { width: 100%; padding: 0.875rem 1.5rem; background: #37A9E1; color: #fff; font-weight: 700; font-size: 1rem; border: none; border-radius: 0.75rem; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; transition: background 0.2s, transform 0.05s; }
.ewelt-kontakt-form button[type="submit"]:hover { background: #2d8ab8; transform: scale(1.01); }

.ewelt-karriere { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e0f2fe 0%, #e8f4fc 100%); border-top: 1px solid rgba(55,169,225,0.2); }
.ewelt-karriere-inner { max-width: 1200px; margin: 0 auto; }
.ewelt-karriere-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: 2rem; }
.ewelt-karriere-header .sub { font-size: 0.875rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.ewelt-karriere-header h2 { font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 800; color: #0e161b; margin: 0 0 0.5rem; }
.ewelt-karriere-header p { font-size: 1.125rem; color: #507e95; max-width: 36rem; margin: 0; }
.ewelt-karriere-header a { color: #37A9E1; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.ewelt-karriere-header a:hover { text-decoration: underline; }
.ewelt-karriere-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ewelt-karriere-grid { grid-template-columns: repeat(3, 1fr); } }
.ewelt-karriere-card { display: block; padding: 2rem; border-radius: 1rem; background: #e8f4fc; border: 1px solid rgba(55,169,225,0.25); text-decoration: none; color: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.ewelt-karriere-card:hover { border-color: #37A9E1; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.ewelt-karriere-card-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.ewelt-karriere-card-tag { font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 9999px; background: #e0f2fe; border: 1px solid rgba(55,169,225,0.3); color: #0e161b; }
.ewelt-karriere-card-loc { font-size: 0.875rem; color: #507e95; }
.ewelt-karriere-card h4 { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.5rem; color: #0e161b; transition: color 0.2s; }
.ewelt-karriere-card:hover h4 { color: #37A9E1; }
.ewelt-karriere-card p { font-size: 0.875rem; color: #507e95; margin: 0 0 1rem; line-height: 1.5; }
.ewelt-karriere-card-link { font-size: 0.875rem; font-weight: 700; color: #37A9E1; display: inline-flex; align-items: center; gap: 0.25rem; }

.ewelt-impressum { padding: 3rem 1.5rem 4rem; max-width: 800px; margin: 0 auto; }
.ewelt-impressum-back { display: inline-flex; align-items: center; gap: 0.5rem; color: #37A9E1; font-weight: 700; text-decoration: none; margin-bottom: 1.5rem; }
.ewelt-impressum-back:hover { text-decoration: underline; }
.ewelt-impressum h1 { font-size: clamp(2.25rem, 4vw, 3.75rem); font-weight: 800; color: #0e161b; margin: 0 0 2rem; }
.ewelt-impressum-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .ewelt-impressum-cards { grid-template-columns: 1fr 1fr; } }
.ewelt-impressum-card { background: #f0f9ff; padding: 2rem; border-radius: 1rem; border: 1px solid rgba(55,169,225,0.2); box-shadow: 0 1px 3px rgba(55,169,225,0.06); }
.ewelt-impressum-card h2 { font-size: 0.75rem; font-weight: 700; color: #37A9E1; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 1rem; }
.ewelt-impressum-card h3 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; margin: 1rem 0 0.5rem; color: #0e161b; }
.ewelt-impressum-card p { font-size: 0.9375rem; color: #507e95; line-height: 1.6; margin: 0 0 0.5rem; }
.ewelt-impressum-section { margin-bottom: 2rem; }
.ewelt-impressum-section h2 { font-size: 1.25rem; font-weight: 700; margin: 0 0 1rem; display: flex; align-items: center; gap: 0.75rem; color: #0e161b; }
.ewelt-impressum-section h2 .material-symbols-outlined { background: rgba(55,169,225,0.1); padding: 0.5rem; border-radius: 0.5rem; color: #37A9E1; }
.ewelt-impressum-section h3 { font-size: 1.125rem; font-weight: 700; margin: 1rem 0 0.5rem; color: #0e161b; }
.ewelt-impressum-section p { font-size: 0.875rem; color: #507e95; line-height: 1.6; margin: 0 0 0.5rem; text-align: justify; }
.ewelt-impressum-box { background: rgba(55,169,225,0.05); border: 1px solid rgba(55,169,225,0.2); padding: 1.5rem; border-radius: 0.75rem; margin-top: 2rem; }
.ewelt-impressum-box h2 { font-size: 1.125rem; font-weight: 700; color: #37A9E1; margin: 0 0 0.75rem; }

.ewelt-effizienz { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e8f4fc 0%, #f0f9ff 100%); }
.ewelt-effizienz-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .ewelt-effizienz-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.ewelt-effizienz h3 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: #0e161b; margin: 0 0 1rem; }
.ewelt-effizienz p { font-size: 1.125rem; color: #507e95; line-height: 1.6; margin-bottom: 1.5rem; }
.ewelt-effizienz-bar { margin-bottom: 1.5rem; }
.ewelt-effizienz-bar-head { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-weight: 700; font-size: 1rem; }
.ewelt-effizienz-bar-head .val { color: #37A9E1; }
.ewelt-effizienz-bar-track { width: 100%; height: 0.75rem; background: #e8eff3; border-radius: 9999px; overflow: hidden; }
.ewelt-effizienz-bar-fill { height: 100%; background: #37A9E1; border-radius: 9999px; }
.ewelt-effizienz-image { border-radius: 1rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); aspect-ratio: 1; }
.ewelt-effizienz-image img { width: 100%; height: 100%; object-fit: cover; }

.ewelt-komponenten { padding: 4rem 1.5rem; background: linear-gradient(180deg, #e8f4fc 0%, #f0f9ff 100%); }
.ewelt-komponenten-inner { max-width: 1200px; margin: 0 auto; }
.ewelt-komponenten-header { margin-bottom: 2rem; }
.ewelt-komponenten-header h3 { font-size: 1.875rem; font-weight: 800; color: #0e161b; margin: 0 0 0.5rem; }
.ewelt-komponenten-header p { font-size: 1rem; color: #507e95; margin: 0; }
.ewelt-komponenten-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .ewelt-komponenten-grid { grid-template-columns: repeat(3, 1fr); } }
.ewelt-komponenten-card { background: #f0f9ff; border-radius: 0.75rem; border: 1px solid rgba(55,169,225,0.25); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s; }
.ewelt-komponenten-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.ewelt-komponenten-card-image { height: 224px; background: #e8eff3; overflow: hidden; }
.ewelt-komponenten-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ewelt-komponenten-card:hover .ewelt-komponenten-card-image img { transform: scale(1.05); }
.ewelt-komponenten-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ewelt-komponenten-card h4 { font-size: 1.125rem; font-weight: 700; color: #0e161b; margin: 0 0 0.5rem; }
.ewelt-komponenten-card p { font-size: 0.875rem; color: #507e95; line-height: 1.5; margin: 0 0 1rem; flex: 1; }
.ewelt-komponenten-card a { font-size: 0.875rem; font-weight: 700; color: #37A9E1; display: inline-flex; align-items: center; gap: 0.25rem; text-decoration: none; }
.ewelt-komponenten-card a:hover { text-decoration: underline; }
.ewelt-komponenten-card a .material-symbols-outlined { font-size: 1rem; transition: transform 0.2s; }
.ewelt-komponenten-card a:hover .material-symbols-outlined { transform: translateX(0.25rem); }

.ewelt-testimonials { padding: 4rem 1.5rem; }
.ewelt-testimonials-inner { max-width: 1200px; margin: 0 auto; background: rgba(55,169,225,0.05); border-radius: 1.5rem; padding: 3rem 2rem; position: relative; overflow: hidden; }
.ewelt-testimonials-inner::before { content: ''; position: absolute; top: 0; right: 0; padding: 2.5rem; opacity: 0.1; font-size: 7.5rem; }
.ewelt-testimonials h3 { font-size: 1.875rem; font-weight: 800; color: #0e161b; margin: 0 0 2rem; }
.ewelt-testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; z-index: 1; }
@media (min-width: 768px) { .ewelt-testimonials-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.ewelt-testimonial blockquote { font-size: 1.125rem; font-style: italic; color: #374151; line-height: 1.6; margin: 0 0 1rem; }
.ewelt-testimonial-author { display: flex; align-items: center; gap: 1rem; }
.ewelt-testimonial-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: #e2e8f0 center/cover; flex-shrink: 0; }
.ewelt-testimonial-author p { font-weight: 700; color: #0e161b; margin: 0 0 0.25rem; }
.ewelt-testimonial-author span { font-size: 0.75rem; color: #507e95; }

/* ========== Override: E-Welt-Styles durchsetzen (Elementor/Theme) ========== */
body .ewelt-topbar,
body .ewelt-hero,
body .ewelt-partners,
body .ewelt-solutions,
body .ewelt-why,
body .ewelt-stats,
body .ewelt-projects,
body .ewelt-cta-block { box-sizing: border-box; }
section.ewelt-topbar .ewelt-topbar-inner,
section.ewelt-hero .ewelt-hero-inner,
section.ewelt-partners .ewelt-partners-inner,
section.ewelt-solutions .ewelt-solutions-inner,
section.ewelt-why .ewelt-why-inner,
section.ewelt-stats .ewelt-stats-inner,
section.ewelt-projects .ewelt-projects-inner,
section.ewelt-cta-block .ewelt-cta-inner { max-width: 1280px; margin-left: auto; margin-right: auto; }
section.ewelt-cta-block .ewelt-cta-note { color: #cbd5e1 !important; }
section.ewelt-partners .ewelt-partners-list { display: flex !important; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem 3rem; }
section.ewelt-partners .ewelt-partner-logo img { height: 28px; width: auto; max-width: 140px; object-fit: contain; }
section.ewelt-why .ewelt-why-grid { display: grid !important; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
	section.ewelt-why .ewelt-why-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 2rem; }
}
section.ewelt-why.ewelt-why-four .ewelt-why-grid { grid-template-columns: 1fr !important; }
@media (min-width: 768px) {
	section.ewelt-why.ewelt-why-four .ewelt-why-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (min-width: 1024px) {
	section.ewelt-why.ewelt-why-four .ewelt-why-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
section.ewelt-cta-block .ewelt-cta-grid { display: grid !important; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) {
	section.ewelt-cta-block .ewelt-cta-grid { grid-template-columns: 1fr 1fr !important; gap: 3rem; }
}

/* ========== Astra-Anpassungen ========== */
.ast-site-header-wrap .ewelt-header,
.site-header .ewelt-header { width: 100%; max-width: none; }