/* =========================================================================
   LED Theme 2.0 – Haupt-Stylesheet
   Standalone WordPress-Theme, dunkles Design, CI-Variablen pro Firma
   ========================================================================= */

:root {
	--led-accent: #E63329;
	--led-accent-hover: #FF4438;
	--led-bg: #0E0E0E;
	--led-bg-alt: #1A1A1A;
	--led-bg-card: #1F1F1F;
	--led-text: #F2F2F2;
	--led-text-muted: #8A8A8A;
	--led-border: #2A2A2A;
	--led-radius: 4px;
	--led-radius-lg: 8px;
	--led-shadow: 0 10px 30px rgba(0,0,0,0.4);
	--led-container: 1320px;
	--led-header-h: 192px;
	--led-header-top-h: 136px;
	--led-header-nav-h: 56px;
	--led-header-logo-pad: 24px;
	--led-font: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* === RESET / BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--led-bg);
	color: var(--led-text);
	font-family: var(--led-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	padding-top: var(--led-header-h);
}
h1, h2, h3, h4, h5, h6 { color: var(--led-text); font-weight: 700; line-height: 1.2; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p  { margin: 0 0 1em; }
a  { color: var(--led-accent); text-decoration: none; transition: color .15s; }
a:hover, a:focus { color: var(--led-accent-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; }

.led-container { max-width: var(--led-container); margin: 0 auto; padding: 0 24px; }
.led-skip-link { position: absolute; left: -9999px; }
.led-skip-link:focus { left: 16px; top: 16px; background: var(--led-bg-alt); padding: 12px 18px; z-index: 999; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* === HEADER === */
.led-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	background: var(--led-bg);
	border-bottom: 1px solid var(--led-border);
	z-index: 1000;
	transition: box-shadow .2s ease;
}
.led-header.is-scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.45); }

.led-header__inner {
	display: flex;
	flex-direction: column;
}
.led-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--led-header-top-h);
	padding-top: var(--led-header-logo-pad);
	padding-bottom: var(--led-header-logo-pad);
	border-bottom: 1px solid var(--led-border);
	gap: 24px;
}
.led-header__brand { flex: 0 0 auto; }
.led-header__brand .custom-logo-link { display: inline-block; line-height: 0; }
.led-header__brand img,
.led-header__brand .custom-logo {
	max-height: 88px;
	width: auto;
	height: auto;
	display: block;
}
.led-brand-fallback { color: var(--led-text); font-weight: 800; font-size: 1.4rem; letter-spacing: .02em; }
.led-header__nav {
	display: flex;
	width: 100%;
	height: var(--led-header-nav-h);
}
.led-header__cta { display: flex; align-items: center; gap: 20px; flex: 0 0 auto; }
.led-header__phone {
	color: var(--led-text-muted) !important;
	font-size: .98rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}
.led-header__phone:hover { color: var(--led-accent) !important; }

/* === BUTTONS === */
.led-btn {
	display: inline-block;
	background: var(--led-accent);
	color: #fff !important;
	padding: 14px 28px;
	font-weight: 600;
	border-radius: var(--led-radius);
	border: 0;
	cursor: pointer;
	text-decoration: none;
	transition: background .15s, transform .15s;
	line-height: 1.2;
	font-family: inherit;
	font-size: 1rem;
}
.led-btn:hover, .led-btn:focus { background: var(--led-accent-hover); color: #fff !important; transform: translateY(-1px); }
.led-btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.led-btn--sm { padding: 10px 18px; font-size: .9rem; }
.led-btn--outline {
	background: transparent;
	border: 2px solid var(--led-accent);
	color: var(--led-accent) !important;
	padding: 12px 26px;
}
.led-btn--outline:hover { background: var(--led-accent); color: #fff !important; }
.led-btn--ghost {
	background: transparent;
	border: 1px solid var(--led-border);
	color: var(--led-text) !important;
}
.led-btn--ghost:hover { border-color: var(--led-accent); color: var(--led-accent) !important; }

/* === SECTIONS === */
.led-section { padding: clamp(60px, 8vh, 100px) 0; }
.led-section--alt { background: var(--led-bg-alt); }
.led-section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.led-section__eyebrow {
	display: inline-block;
	color: var(--led-accent);
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	font-size: .8rem;
	margin-bottom: 1em;
}
.led-section__title { margin-bottom: 0.4em; }

/* === HERO-SLIDER === */
.led-hero-slider { position: relative; overflow: hidden; }
.led-swiper-hero { width: 100%; }
.led-swiper-hero .swiper-slide.led-hero-slide {
	position: relative;
	min-height: clamp(480px, 75vh, 720px);
	background-size: cover;
	background-position: center;
	display: flex !important;
	align-items: center;
}
.led-hero-slide__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.25) 100%);
}
.led-hero-slide__inner { position: relative; z-index: 2; max-width: 760px; padding: 60px 24px; }
.led-hero-slide__eyebrow { display: inline-block; color: var(--led-accent); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; font-size: .85rem; margin-bottom: 1em; }
.led-hero-slide__title { color: #fff; font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 800; margin: 0 0 0.4em; }
.led-hero-slide__subtitle { color: #ddd; font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin: 0 0 2em; max-width: 620px; }

.led-swiper-hero .swiper-pagination { bottom: 30px; }
.led-swiper-hero .swiper-pagination-bullet { background: #fff; opacity: .4; width: 10px; height: 10px; }
.led-swiper-hero .swiper-pagination-bullet-active { background: var(--led-accent); opacity: 1; width: 32px; border-radius: 5px; }
.led-swiper-nav { color: #fff; background: rgba(0,0,0,.4); width: 48px; height: 48px; border-radius: 50%; transition: background .15s; }
.led-swiper-nav:hover { background: var(--led-accent); }
.led-swiper-nav::after { font-size: 18px; }

/* === USP-BAR === */
.led-usp-bar { background: var(--led-bg-alt); border-bottom: 1px solid var(--led-border); padding: 32px 0; }
.led-usp-bar__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.led-usp { display: flex; align-items: center; gap: 16px; }
.led-usp__icon { font-size: 2rem; color: var(--led-accent); flex: 0 0 auto; line-height: 1; }
.led-usp__title { display: block; color: var(--led-text); font-weight: 700; margin-bottom: 4px; }
.led-usp__text { display: block; color: var(--led-text-muted); font-size: .9rem; }

/* === SERVICE-GROUPS === */
.led-service-group { margin-bottom: 60px; }
.led-service-group:last-child { margin-bottom: 0; }
.led-service-group__title {
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	padding-bottom: 12px;
	margin-bottom: 8px;
	border-bottom: 1px solid var(--led-border);
}
.led-service-group__desc { color: var(--led-text-muted); margin-bottom: 28px; max-width: 800px; }

.led-image-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.led-image-card {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--led-radius-lg);
	overflow: hidden;
	display: block;
	transition: transform .25s;
}
.led-image-card:hover { transform: translateY(-4px); }
.led-image-card__media { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s; }
.led-image-card:hover .led-image-card__media { transform: scale(1.06); }
.led-image-card__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.88) 100%);
	display: flex; align-items: flex-end; justify-content: space-between;
	padding: 20px;
	color: #fff;
}
.led-image-card__label { font-weight: 600; font-size: 1.05rem; }
.led-image-card__arrow { color: var(--led-accent); font-weight: 800; transition: transform .15s; }
.led-image-card:hover .led-image-card__arrow { transform: translateX(4px); }

/* === INTRO TEASER === */
.led-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.led-intro__media { background-size: cover; background-position: center; aspect-ratio: 4 / 3; border-radius: var(--led-radius-lg); }
.led-intro__body { color: var(--led-text-muted); margin-bottom: 24px; }
@media (max-width: 860px) { .led-intro__grid { grid-template-columns: 1fr; } }

/* === NEWS-CARDS === */
.led-news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.led-news-card { background: var(--led-bg-alt); border: 1px solid var(--led-border); border-radius: var(--led-radius-lg); overflow: hidden; transition: border-color .15s; }
.led-news-card:hover { border-color: var(--led-accent); }
.led-news-card__media { aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.led-news-card__body { padding: 24px; }
.led-news-card__cat { color: var(--led-accent); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.led-news-card__title { font-size: 1.2rem; margin: 8px 0; }
.led-news-card__text { color: var(--led-text-muted); }

/* === LOCATION === */
.led-location__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; }
.led-location__addr, .led-location__contact { margin: 16px 0; }
.led-location__map { aspect-ratio: 4 / 3; border-radius: var(--led-radius-lg); overflow: hidden; border: 1px solid var(--led-border); }
.led-location__map iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg); }
@media (max-width: 860px) { .led-location__grid { grid-template-columns: 1fr; } }

/* === CAREER BANNER === */
.led-career-banner { padding: clamp(60px, 9vh, 110px) 0; background: var(--led-bg-alt); background-size: cover; background-position: center; text-align: center; }
.led-career-banner__inner { max-width: 720px; margin: 0 auto; }
.led-career-banner__title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 16px; }
.led-career-banner__title::before { content: ''; display: block; width: 60px; height: 4px; background: var(--led-accent); margin: 0 auto 24px; }
.led-career-banner__text { color: #ddd; margin-bottom: 28px; font-size: 1.1rem; }

/* === EMERGENCY BAR === */
.led-emergency-bar { background: var(--led-accent); color: #fff; padding: 24px 0; text-align: center; }
.led-emergency-bar__phone { color: #fff !important; font-size: 1.6rem; font-weight: 800; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.led-emergency-bar__text { margin: 0; }

/* === PAGE HEADER === */
.led-page-header {
	background-color: var(--led-bg-alt);
	background-image: var(--led-hero-pattern, none);
	background-repeat: repeat;
	background-position: center;
	background-size: 240px 240px;
	padding: clamp(60px, 10vh, 120px) 0;
	border-bottom: 1px solid var(--led-border);
	position: relative;
	overflow: hidden;
}
.led-page-header::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, color-mix(in srgb, var(--led-accent) 20%, transparent), transparent 60%); pointer-events: none; }
.led-page-header > .led-container { position: relative; z-index: 1; }

/* Hero mit Foto-Hintergrund: Pattern aus, Bild als Background, dunkler Overlay-Layer für Lesbarkeit */
.led-page-header--with-image {
	background-image: none; /* Overwrite per inline-style mit dem konkreten Bild-URL */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.led-page-header--with-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%);
	pointer-events: none;
	z-index: 0;
}
.led-page-header--with-image::before {
	/* Radial-Akzent abdunkeln, damit der Bildkontrast Vorrang hat */
	opacity: 0.5;
	z-index: 0;
}
.led-page-header__eyebrow { display: inline-block; color: var(--led-accent); font-weight: 700; letter-spacing: .15em; text-transform: uppercase; font-size: .85rem; margin-bottom: 1em; }
.led-page-header__title { margin-bottom: .4em; }
.led-page-header__subtitle { color: var(--led-text-muted); font-size: 1.15rem; max-width: 760px; }
.led-page-header--emergency { background: var(--led-bg); }

/* === CONTENT-PAGES === */
.led-content > h2, .led-content > h3 { margin-top: 1.5em; }
.led-content > p { color: var(--led-text); }
.led-content > ul, .led-content > ol { margin: 0 0 1em; }
.led-content > ul li, .led-content > ol li { color: var(--led-text); margin-bottom: .4em; }
.led-content blockquote { border-left: 3px solid var(--led-accent); padding-left: 20px; color: var(--led-text-muted); font-style: italic; margin: 24px 0; }
.led-content img { border-radius: var(--led-radius); }

.led-two-col { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 860px) { .led-two-col { grid-template-columns: 1fr; } }
.led-sidecard { background: var(--led-bg-alt); border: 1px solid var(--led-border); border-radius: var(--led-radius-lg); padding: 32px; position: sticky; top: calc(var(--led-header-h) + 24px); }
.led-sidecard h3 { font-size: 1.15rem; }

/* === SUBSIDIARIES (Holding) === */
.led-subsidiaries { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.led-subsidiary { background: var(--led-bg-alt); border: 1px solid var(--led-border); border-radius: var(--led-radius-lg); padding: 32px; }

/* === CONTACT FORM === */
.led-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
@media (max-width: 860px) { .led-contact-grid { grid-template-columns: 1fr; } }
.led-form { display: grid; gap: 16px; }
.led-form__field { display: flex; flex-direction: column; gap: 6px; }
.led-form__field label { font-size: .9rem; color: var(--led-text-muted); }
.led-form__field input, .led-form__field textarea, .led-form__field select {
	width: 100%;
	background: var(--led-bg);
	border: 1px solid var(--led-border);
	color: var(--led-text);
	padding: 12px 14px;
	border-radius: var(--led-radius);
	font: inherit;
	transition: border-color .15s;
}
.led-form__field input:focus, .led-form__field textarea:focus, .led-form__field select:focus { outline: 0; border-color: var(--led-accent); }
.led-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .led-form__row { grid-template-columns: 1fr; } }
.led-form__consent { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--led-text-muted); }
.led-form__consent input { width: auto; margin-top: 4px; }
.led-form__submit { justify-self: start; }
.led-form__notice { padding: 14px 16px; border-radius: var(--led-radius); margin-bottom: 10px; }
.led-form__notice--ok { background: rgba(45,190,96,.12); color: #5BE08C; border: 1px solid #2DBE60; }
.led-form__notice--err { background: rgba(230,51,41,.12); color: #FF6E66; border: 1px solid #E63329; }

/* === FOOTER === */
.led-footer { background: var(--led-bg-alt); border-top: 1px solid var(--led-border); color: var(--led-text-muted); }
.led-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0 40px; }
@media (max-width: 860px) { .led-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .led-footer__grid { grid-template-columns: 1fr; } }
.led-footer__title { color: var(--led-text); font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1em; }
.led-footer__menu { list-style: none; padding: 0; margin: 0; }
.led-footer__menu li { margin-bottom: 8px; }
.led-footer__menu a { color: var(--led-text-muted); }
.led-footer__menu a:hover { color: var(--led-accent); }
.led-footer a { color: var(--led-text-muted); }
.led-footer a:hover { color: var(--led-accent); }
.led-footer__bottom { border-top: 1px solid var(--led-border); padding: 18px 0; font-size: .85rem; }
.led-footer__bottom .led-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* === COOKIE-HINWEIS === */
.led-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; max-width: 480px; background: var(--led-bg-alt); border: 1px solid var(--led-border); border-radius: var(--led-radius-lg); padding: 18px 20px; z-index: 9999; box-shadow: var(--led-shadow); display: none; }
.led-cookie.is-visible { display: block; }
.led-cookie__text { font-size: .9rem; margin: 0 0 12px; color: var(--led-text-muted); }
.led-cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* === A11Y === */
:focus-visible { outline: 2px solid var(--led-accent); outline-offset: 3px; }

/* =========================================================================
   FOOTER mit prominentem Logo (2.0.3)
   ========================================================================= */
.led-footer__top {
	background: var(--led-bg);
	border-bottom: 1px solid var(--led-border);
	padding: 50px 0;
}
.led-footer__top-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}
.led-footer__logo {
	display: flex;
	align-items: center;
}
.led-footer__logo img {
	max-height: 110px;
	width: auto;
	height: auto;
	display: block;
}
.led-brand-fallback--lg {
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: -.02em;
}
.led-footer__top-cta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.led-footer__claim {
	margin: 0 12px 0 0;
	color: var(--led-text);
	font-weight: 600;
	font-size: 1.05rem;
}
@media (max-width: 760px) {
	.led-footer__top-inner { grid-template-columns: 1fr; text-align: center; }
	.led-footer__top-cta { justify-content: center; }
	.led-footer__claim { width: 100%; margin-bottom: 8px; }
	.led-footer__logo { justify-content: center; }
	.led-footer__logo img { max-height: 80px; }
	.led-header__brand img,
	.led-header__brand .custom-logo { max-height: 60px; }
}

/* =========================================================================
   HELL-MODUS (Body-Klasse .led-mode-light)
   Header und Footer bleiben dunkel, Content-Hintergrund wird hell.
   ========================================================================= */
body.led-mode-light {
	--led-bg: #FFFFFF;
	--led-bg-alt: #F4F6F8;
	--led-bg-card: #FFFFFF;
	--led-text: #1A1A1A;
	--led-text-muted: #5A6470;
	--led-border: #E2E5E9;
	background: var(--led-bg);
	color: var(--led-text);
}

/* Header und Footer behalten dunklen Hintergrund (Logo bleibt lesbar) */
body.led-mode-light .led-header {
	background: #0E0E0E;
	border-bottom-color: #2A2A2A;
}
body.led-mode-light .led-header .led-menu > li > a,
body.led-mode-light .led-header .led-brand-fallback,
body.led-mode-light .led-header .led-mobile-toggle__bar {
	color: #F2F2F2;
}
body.led-mode-light .led-header .led-mobile-toggle__bar { background: #F2F2F2; }
body.led-mode-light .led-header__phone { color: #B8B8B8 !important; }

body.led-mode-light .led-footer {
	background: #0E0E0E;
	color: #B8B8B8;
}
body.led-mode-light .led-footer__top { background: #0E0E0E; border-bottom-color: #2A2A2A; }
body.led-mode-light .led-footer__title { color: #F2F2F2; }
body.led-mode-light .led-footer__menu a,
body.led-mode-light .led-footer a { color: #B8B8B8; }
body.led-mode-light .led-footer__bottom { border-top-color: #2A2A2A; }
body.led-mode-light .led-footer__claim { color: #F2F2F2; }

/* Mega-Menü-Panel im Hell-Modus bleibt auch dunkel (mit Header konsistent) */
body.led-mode-light .led-mega-panel,
body.led-mode-light .led-menu > li > .sub-menu {
	background: #1A1A1A;
	border-color: #2A2A2A;
}
body.led-mode-light .led-mega-column__title { color: var(--led-accent); border-bottom-color: #2A2A2A; }
body.led-mode-light .led-mega-column__items li a,
body.led-mode-light .sub-menu li a { color: #F2F2F2; }
body.led-mode-light .sub-menu li a:hover { background: #0E0E0E; }

/* USP-Bar im Hell-Modus subtil */
body.led-mode-light .led-usp-bar { background: #F4F6F8; border-bottom-color: #E2E5E9; }
body.led-mode-light .led-usp__title { color: #1A1A1A; }
body.led-mode-light .led-usp__text { color: #5A6470; }

/* Cards heller */
body.led-mode-light .led-news-card,
body.led-mode-light .led-testi-card,
body.led-mode-light .led-sidecard,
body.led-mode-light .led-subsidiary,
body.led-mode-light .led-partner-logo {
	background: #FFFFFF;
	border-color: #E2E5E9;
	color: #1A1A1A;
}
body.led-mode-light .led-image-card__overlay {
	background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
}

/* Page-Header heller */
body.led-mode-light .led-page-header { background: #F4F6F8; border-bottom-color: #E2E5E9; }

/* Section-Backgrounds */
body.led-mode-light .led-section--alt { background: #F4F6F8; }

/* Career-Banner bleibt dunkel als visueller Anker */
body.led-mode-light .led-career-banner { background: #0E0E0E; }
body.led-mode-light .led-career-banner__title { color: #FFFFFF; }
body.led-mode-light .led-career-banner__text { color: #B8B8B8; }

/* Why-Us-Banner bleibt dunkel im Hell-Modus */
body.led-mode-light .led-whyus { background-color: #0E0E0E; }

/* Form-Felder hell */
body.led-mode-light .led-form__field input,
body.led-mode-light .led-form__field textarea,
body.led-mode-light .led-form__field select {
	background: #FFFFFF;
	color: #1A1A1A;
	border-color: #D5DBE0;
}

/* Cookie-Hinweis hell */
body.led-mode-light .led-cookie { background: #FFFFFF; border-color: #E2E5E9; color: #1A1A1A; }
body.led-mode-light .led-cookie__text { color: #5A6470; }

/* Intro-Bilder Schatten dezent */
body.led-mode-light .led-intro__media { box-shadow: 0 10px 30px rgba(0,0,0,.08); }

/* =========================================================================
   LED 2.0.4 – Inline-SVG-Icons, Breadcrumbs, Menü-Icons
   ========================================================================= */

/* Icon-Basis (currentColor erbt) */
.led-icon { display: inline-block; vertical-align: -.125em; line-height: 1; }
.led-icon--inline { margin-right: 6px; }

/* USP-Bar mit SVG-Icons */
.led-usp__icon .led-icon { color: var(--led-accent); width: 28px; height: 28px; }
.led-usp { align-items: flex-start; }
.led-usp__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--led-border); flex: 0 0 auto; }
body.led-mode-light .led-usp__icon { background: rgba(0,0,0,.03); border-color: #E2E5E9; }

/* Header Phone-Icon */
.led-header__phone .led-icon { color: var(--led-accent); }

/* Footer Kontakt-Icons */
.led-footer__contact .led-icon { color: var(--led-accent); margin-right: 6px; }

/* Menü-Icons (Top-Level) */
.led-menu__icon { margin-right: 8px; color: var(--led-text-muted); transition: color .15s; }
.led-menu > li:hover > a .led-menu__icon,
.led-menu > li.current-menu-item > a .led-menu__icon { color: var(--led-accent); }

/* =========================================================================
   LED Breadcrumbs
   ========================================================================= */
.led-breadcrumbs { background: var(--led-bg-alt); border-bottom: 1px solid var(--led-border); padding: 12px 0; font-size: .88rem; }
.led-breadcrumbs__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.led-breadcrumbs__item { display: inline-flex; align-items: center; gap: 6px; color: var(--led-text-muted); }
.led-breadcrumbs__item a { color: var(--led-text-muted); text-decoration: none; transition: color .15s; }
.led-breadcrumbs__item a:hover { color: var(--led-accent); }
.led-breadcrumbs__item.is-current span { color: var(--led-text); font-weight: 500; }
.led-breadcrumbs__sep { color: var(--led-text-muted); opacity: .5; display: inline-flex; }

body.led-mode-light .led-breadcrumbs { background: #F4F6F8; border-bottom-color: #E2E5E9; }
body.led-mode-light .led-breadcrumbs__item { color: #5A6470; }
body.led-mode-light .led-breadcrumbs__item a { color: #5A6470; }
body.led-mode-light .led-breadcrumbs__item a:hover { color: var(--led-accent); }
body.led-mode-light .led-breadcrumbs__item.is-current span { color: #1A1A1A; }

/* ============================================================
   2.0.5: Content-Komponenten (Karten, Grid, Timeline, Listen)
   verwendet von den Plugin-Content-Daten (data/elektro.php etc.)
   ============================================================ */

/* Grid für Karten-Layouts */
.led-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}
@media (max-width: 540px) {
	.led-grid { grid-template-columns: 1fr; }
}

/* Karten */
.led-card {
	background: var(--led-bg-alt);
	border: 1px solid var(--led-border);
	border-radius: 12px;
	padding: 28px 26px;
	display: flex;
	flex-direction: column;
	transition: border-color .15s, transform .15s, box-shadow .15s;
	position: relative;
}
.led-card:hover {
	border-color: var(--led-accent);
	transform: translateY(-2px);
	box-shadow: 0 10px 28px -10px rgba(0,0,0,.35);
}

.led-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: rgba(255,255,255,.05);
	border: 1px solid var(--led-border);
	color: var(--led-accent);
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 18px;
}
.led-card__icon .led-icon,
.led-card__icon svg {
	width: 24px;
	height: 24px;
	color: var(--led-accent);
	fill: currentColor;
}

.led-card__title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--led-text);
	line-height: 1.3;
}
.led-card__text {
	color: var(--led-text-muted);
	font-size: .95rem;
	line-height: 1.6;
	margin: 0 0 18px;
	flex: 1;
}
.led-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--led-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: .92rem;
	margin-top: auto;
	transition: gap .15s;
}
.led-card__link:hover { gap: 10px; text-decoration: none; }
.led-card__link::after {
	content: "→";
	display: inline-block;
	transition: transform .15s;
}
.led-card__link:hover::after { transform: translateX(3px); }

/* Kategorie-Tag in Referenz-Karten */
.led-card__cat {
	display: inline-block;
	background: rgba(255,255,255,.06);
	color: var(--led-accent);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 14px;
	margin-bottom: 14px;
	border: 1px solid var(--led-border);
}

/* Timeline (Über-uns-Seite) */
.led-timeline {
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
	padding-left: 0;
	margin: 24px 0 40px;
}
.led-timeline__item {
	position: relative;
	padding: 24px 0 24px 96px;
	border-left: 2px solid var(--led-border);
	margin-left: 80px;
}
.led-timeline__item:first-child { padding-top: 0; }
.led-timeline__item:last-child { padding-bottom: 0; }
.led-timeline__item::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 28px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--led-accent);
	border: 2px solid var(--led-bg);
}
.led-timeline__item:first-child::before { top: 4px; }
.led-timeline__year {
	position: absolute;
	left: -100px;
	top: 24px;
	width: 80px;
	text-align: right;
	color: var(--led-accent);
	font-weight: 700;
	font-size: .9rem;
	letter-spacing: .02em;
}
.led-timeline__item:first-child .led-timeline__year { top: 0; }
.led-timeline__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--led-text);
}
.led-timeline__text {
	color: var(--led-text-muted);
	margin: 0;
	line-height: 1.6;
}
@media (max-width: 720px) {
	.led-timeline__item {
		padding: 16px 0 16px 28px;
		margin-left: 0;
	}
	.led-timeline__year {
		position: static;
		text-align: left;
		width: auto;
		display: block;
		margin-bottom: 6px;
	}
}

/* Aufzählungslisten */
.led-list {
	list-style: none;
	margin: 16px 0 24px;
	padding: 0;
}
.led-list li {
	position: relative;
	padding: 10px 0 10px 32px;
	border-bottom: 1px solid var(--led-border);
	color: var(--led-text);
	line-height: 1.6;
}
.led-list li:last-child { border-bottom: none; }
.led-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	width: 16px;
	height: 2px;
	background: var(--led-accent);
}
.led-list li strong { color: var(--led-text); font-weight: 700; margin-right: 6px; }

/* Light-Mode-Varianten */
body.led-mode-light .led-card {
	background: #FFFFFF;
	border-color: #E2E5E9;
	box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
body.led-mode-light .led-card:hover {
	border-color: var(--led-accent);
	box-shadow: 0 10px 28px -10px rgba(0,0,0,.12);
}
body.led-mode-light .led-card__icon {
	background: rgba(0,0,0,.03);
	border-color: #E2E5E9;
}
body.led-mode-light .led-card__title { color: #1A1A1A; }
body.led-mode-light .led-card__text { color: #5A6470; }
body.led-mode-light .led-card__cat {
	background: rgba(0,0,0,.04);
	border-color: #E2E5E9;
}
body.led-mode-light .led-timeline__item { border-left-color: #E2E5E9; }
body.led-mode-light .led-timeline__item::before { border-color: #FFFFFF; }
body.led-mode-light .led-timeline__title { color: #1A1A1A; }
body.led-mode-light .led-timeline__text { color: #5A6470; }
body.led-mode-light .led-list li { color: #1A1A1A; border-bottom-color: #E2E5E9; }
