/* ==========================================================================
   JS Energietechnik – Design-Tokens
   ========================================================================== */
:root {
	/* Farben */
	--jse-night: #10161F;
	--jse-night-2: #1B2A38;
	--jse-night-3: #24374A;
	--jse-gold: #9fc31a;
	--jse-gold-dark: #9fc31a;
	--jse-green: #9fc31a;
	--jse-green-dark: #9fc31a;
	--jse-blue: #9fc31a;
	--jse-blue-dark: #9fc31a;
	--jse-fog: #F7F8F6;
	--jse-white: #FFFFFF;
	--jse-slate: #5B6675;
	--jse-slate-light: #8A94A3;
	--jse-line: #E4E7EA;

	/* Typografie */
	--jse-font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
	--jse-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--jse-font-mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;

	/* Radien & Schatten */
	--jse-radius-sm: 10px;
	--jse-radius-md: 16px;
	--jse-radius-lg: 24px;
	--jse-shadow-card: 0 1px 2px rgba(16,22,31,.05), 0 10px 30px -12px rgba(16,22,31,.16);
	--jse-shadow-lift: 0 20px 45px -18px rgba(16,22,31,.35);

	--jse-container: 1200px;
}

/* Ergänzungen 1.1: echte Projektbilder, lesbare Navigation und Team-Bereich. */
section[id], article[id] { scroll-margin-top: 110px; }
.jse-about { padding: 90px 0; background: var(--jse-night); }
.jse-about-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 72px; }
.jse-about h2 { color: white; }
.jse-about p { color: #d2dae1; max-width: 580px; }
.jse-about .jse-eyebrow { color: var(--jse-gold); }
.jse-about-media { height: 470px; border-radius: 24px; overflow: hidden; }
.jse-about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.jse-about .jse-btn { margin-top: 14px; }
@media (max-width: 860px) {
    .jse-about { padding: 60px 0; }
    .jse-about-grid { grid-template-columns: 1fr; gap: 32px; }
    .jse-about-media { height: 360px; }
}

/* ==========================================================================
   Reset & Basis
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body {
	margin: 0;
	font-family: var(--jse-font-body);
	color: var(--jse-slate);
	background: var(--jse-fog);
	-webkit-font-smoothing: antialiased;
	line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
svg { display: block; }

h1, h2, h3, h4 {
	font-family: var(--jse-font-display);
	color: var(--jse-night);
	margin: 0 0 .5em;
	line-height: 1.14;
	letter-spacing: -0.01em;
}
h2 { font-size: clamp(1.9rem, 1.5rem + 1.8vw, 2.75rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

.jse-container {
	max-width: var(--jse-container);
	margin-inline: auto;
	padding-inline: 24px;
}

.jse-sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.jse-skip-link {
	position: absolute; left: -999px; top: 0; background: var(--jse-night); color: #fff;
	padding: 12px 18px; z-index: 999; border-radius: 0 0 8px 0;
}
.jse-skip-link:focus { left: 0; }

:focus-visible {
	outline: 2px solid var(--jse-gold);
	outline-offset: 3px;
}

.jse-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--jse-font-mono); font-size: .78rem; letter-spacing: .06em;
	text-transform: uppercase; color: var(--jse-slate); margin-bottom: 14px;
}
.jse-eyebrow-light { color: rgba(247,248,246,.7); }
.jse-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--jse-gold); box-shadow: 0 0 0 4px rgba(159,195,26,.2); }

.jse-text-accent { color: var(--jse-gold); }
.jse-text-blue { color: var(--jse-blue); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.jse-btn {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--jse-font-display); font-weight: 600; font-size: .95rem;
	padding: 14px 24px; border-radius: 999px; border: 0;
	transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
	white-space: nowrap;
}
.jse-btn svg { transition: transform .18s ease; }
.jse-btn:hover svg { transform: translateX(3px); }
.jse-btn:hover { transform: translateY(-2px); }

.jse-btn-gold { background: var(--jse-gold); color: var(--jse-night); box-shadow: 0 10px 24px -10px rgba(159,195,26,.55); }
.jse-btn-gold:hover { background: var(--jse-gold-dark); }

.jse-btn-blue { background: var(--jse-blue); color: #fff; box-shadow: 0 10px 24px -10px rgba(159,195,26,.5); }
.jse-btn-blue:hover { background: var(--jse-blue-dark); }

.jse-btn-sm { padding: 10px 18px; font-size: .85rem; }
.jse-btn-block { display: flex; justify-content: center; width: 100%; margin-top: 18px; }

.jse-link-arrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-family: var(--jse-font-display); font-weight: 600; font-size: .9rem;
	color: var(--jse-gold-dark);
}
.jse-link-arrow svg { transition: transform .18s ease; }
.jse-link-arrow:hover svg { transform: translateX(3px); }
.jse-accent-gold { color: var(--jse-gold-dark); }
.jse-accent-green { color: var(--jse-green-dark); }
.jse-accent-blue { color: var(--jse-blue-dark); }

/* ==========================================================================
   Wow-Effekte: Tilt, Scroll-Reveal, Parallax
   ========================================================================== */
.jse-tilt { transition: transform .15s ease-out, box-shadow .15s ease-out; will-change: transform; }

.jse-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.jse-reveal.is-visible { opacity: 1; transform: none; }

.jse-hero-media img, .jse-hero-media video { transform: scale(1.12); will-change: transform; }

@media (prefers-reduced-motion: reduce) {
	.jse-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
	.jse-hero-media img, .jse-hero-media video { transform: none !important; }
	.jse-tilt { transition: none !important; }
}

/* ==========================================================================
   Magnetische Buttons
   ========================================================================== */
.jse-btn { transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease; }

/* ==========================================================================
   Text-Einzug der Hero-Überschrift
   ========================================================================== */
.jse-word-in {
	display: inline-block; opacity: 0; transform: translateY(18px);
	animation: jse-word-in .6s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes jse-word-in {
	to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Tageszeit-gesteuerte Hero-Stimmung
   ========================================================================== */
.jse-mood-morning .jse-hero-scrim {
	background:
		linear-gradient(180deg, rgba(58,38,16,.45) 0%, rgba(89,58,20,.18) 35%, rgba(16,22,31,.55) 78%, var(--jse-night) 100%),
		linear-gradient(90deg, rgba(16,22,31,.9) 0%, rgba(60,40,16,.4) 48%, rgba(16,22,31,.08) 75%);
}
.jse-mood-evening .jse-hero-scrim {
	background:
		linear-gradient(180deg, rgba(89,42,16,.5) 0%, rgba(89,42,16,.22) 35%, rgba(16,22,31,.58) 78%, var(--jse-night) 100%),
		linear-gradient(90deg, rgba(16,22,31,.92) 0%, rgba(89,42,16,.42) 48%, rgba(16,22,31,.08) 75%);
}
.jse-mood-night .jse-hero-scrim {
	background:
		linear-gradient(180deg, rgba(10,16,30,.65) 0%, rgba(16,22,40,.35) 35%, rgba(16,22,31,.62) 78%, var(--jse-night) 100%),
		linear-gradient(90deg, rgba(10,14,24,.94) 0%, rgba(20,28,46,.48) 48%, rgba(16,22,31,.1) 75%);
}

@media (prefers-reduced-motion: reduce) {
	.jse-word-in { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.jse-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(16,22,31,.72);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom: 1px solid rgba(255,255,255,.08);
	box-shadow: 0 1px 0 rgba(159,195,26,.06), 0 12px 30px -18px rgba(0,0,0,.5);
	transition: background-color .25s ease, box-shadow .25s ease;
}
.jse-header.is-scrolled {
	background: rgba(16,22,31,.92);
	box-shadow: 0 1px 0 rgba(159,195,26,.1), 0 16px 36px -18px rgba(0,0,0,.6);
}

.jse-header-inner {
	display: flex; align-items: center; justify-content: space-between;
	height: 84px;
}
.jse-logo { display: flex; align-items: center; gap: 12px; color: #fff; transition: opacity .2s ease; flex-shrink: 0; }
.jse-logo:hover { opacity: .85; }
.jse-logo-mark { height: 48px; width: auto; display: block; transition: transform .25s ease; }
.jse-logo:hover .jse-logo-mark { transform: scale(1.04); }
.jse-logo-text { font-family: var(--jse-font-display); font-size: 1.1rem; letter-spacing: -.01em; white-space: nowrap; }
.jse-logo-text strong { color: var(--jse-gold); }

.jse-nav { flex: 1 1 auto; min-width: 0; overflow-x: auto; scrollbar-width: none; margin: 0 20px; }
.jse-nav::-webkit-scrollbar { display: none; }
.jse-nav-list { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; width: max-content; margin-inline: auto; }
.jse-nav-list a {
	color: rgba(247,248,246,.82); font-size: .88rem; font-weight: 500;
	position: relative; padding: 6px 0; white-space: nowrap;
}
.jse-nav-list a::after {
	content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
	background: var(--jse-gold); transition: right .22s ease;
}
.jse-nav-list a:hover { color: #fff; }
.jse-nav-list a:hover::after { right: 0; }

.jse-header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.jse-nav-toggle {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 40px; height: 40px; background: transparent; border: 1px solid rgba(255,255,255,.18);
	border-radius: 10px;
}
.jse-nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; margin-inline: auto; transition: transform .2s ease, opacity .2s ease; }
.jse-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.jse-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.jse-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.jse-mobile-nav {
	display: none; flex-direction: column; gap: 4px; padding: 10px 24px 24px;
	background: rgba(16,22,31,.98);
}
.jse-mobile-nav.is-open { display: flex; }
.jse-mobile-nav-list { display: flex; flex-direction: column; }
.jse-mobile-nav-list a { display: block; padding: 12px 4px; color: rgba(247,248,246,.85); border-bottom: 1px solid rgba(255,255,255,.06); }

/* ==========================================================================
   Hero
   ========================================================================== */
.jse-hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.jse-hero-media { position: absolute; inset: 0; z-index: 0; }
.jse-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.jse-hero-media video {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.jse-hero-scrim {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(16,22,31,.55) 0%, rgba(16,22,31,.25) 35%, rgba(16,22,31,.55) 78%, var(--jse-night) 100%),
		linear-gradient(90deg, rgba(16,22,31,.92) 0%, rgba(16,22,31,.45) 48%, rgba(16,22,31,.08) 75%);
}
.jse-hero-inner { position: relative; z-index: 1; padding-block: 120px 90px; max-width: 720px; }
.jse-hero-inner { width: 100%; min-width: 0; }
.jse-hero-title { overflow-wrap: anywhere; }
.jse-word-in { max-width: 100%; }
.jse-hero .jse-eyebrow { color: #e2e8ee; flex-wrap: wrap; }
.jse-mobile-nav { max-height: calc(100dvh - 84px); overflow-y: auto; }
.admin-bar .jse-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .jse-header { top: 46px; }
    .admin-bar .jse-mobile-nav { max-height: calc(100dvh - 130px); }
}

.jse-hero-weather {
	display: inline-flex; align-items: center; gap: 8px; font-size: .82rem;
	color: #fff; margin: 0 0 20px; font-family: var(--jse-font-mono);
	background: rgba(16,22,31,.55); border: 1px solid rgba(255,255,255,.16);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	padding: 8px 16px; border-radius: 999px;
}
.jse-hero-weather svg { color: var(--jse-gold); flex-shrink: 0; }

.jse-hero-title { font-size: clamp(2.5rem, 1.9rem + 3vw, 4.1rem); margin-bottom: .4em; color: #fff; }
.jse-hero-lead { font-size: 1.08rem; color: rgba(247,248,246,.82); max-width: 46ch; margin-bottom: 32px; }

.jse-hero-steps { display: flex; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.jse-hero-steps li { display: flex; align-items: center; gap: 10px; }
.jse-hero-steps svg { color: var(--jse-gold); flex-shrink: 0; }
.jse-hero-steps strong { display: block; font-family: var(--jse-font-display); font-size: .92rem; color: #fff; }
.jse-hero-steps span { display: block; font-size: .78rem; color: rgba(247,248,246,.6); }

.jse-hero-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.jse-hero-phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-family: var(--jse-font-display); }
.jse-hero-phone svg { color: var(--jse-gold); }

.jse-hero-scroll {
	position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
	width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
	display: flex; align-items: center; justify-content: center; color: #fff; z-index: 1;
	animation: jse-bounce 2.4s ease-in-out infinite;
}
@keyframes jse-bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,6px); } }

/* ==========================================================================
   Kennzahlen (Wrapper - Inhalt kommt aus dem Plugin)
   ========================================================================== */
.jse-kennzahlen-section { background: #fff; padding: 56px 0; border-bottom: 1px solid var(--jse-line); }

/* ==========================================================================
   Services
   ========================================================================== */
.jse-services { background: var(--jse-fog); padding: 90px 0 20px; margin-top: -1px; }
.jse-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.jse-service-card {
	background: #fff; border-radius: var(--jse-radius-md); overflow: hidden;
	box-shadow: var(--jse-shadow-card); transition: transform .25s ease, box-shadow .25s ease;
	display: flex; flex-direction: column;
}
.jse-service-card:hover { transform: translateY(-6px); box-shadow: var(--jse-shadow-lift); }

.jse-service-media { position: relative; aspect-ratio: 4/3; }
.jse-service-media img { width: 100%; height: 100%; object-fit: cover; }
.jse-service-icon {
	position: absolute; left: 16px; bottom: -20px; width: 44px; height: 44px;
	border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center;
	box-shadow: var(--jse-shadow-card);
}
.jse-service-body { padding: 32px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.jse-service-body h3 { font-size: 1.08rem; }
.jse-service-body p { font-size: .9rem; flex: 1; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.jse-trust { background: #fff; border-top: 1px solid var(--jse-line); border-bottom: 1px solid var(--jse-line); padding: 56px 0; margin-top: 60px; }
.jse-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.jse-trust-item { text-align: left; }
.jse-trust-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 12px; background: rgba(159,195,26,.12); color: var(--jse-gold-dark);
	margin-bottom: 14px;
}
.jse-trust-item h4 { font-size: .98rem; margin-bottom: 6px; }
.jse-trust-item p { font-size: .85rem; margin: 0; }

/* ==========================================================================
   Rundum-Service (Alles aus einer Hand / Bestandsanlagen)
   ========================================================================== */
.jse-rundum { background: #fff; padding: 90px 0 100px; }
.jse-rundum-head { max-width: 640px; margin-bottom: 46px; }
.jse-rundum-lead { font-size: 1.02rem; color: var(--jse-slate); }

.jse-rundum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.jse-rundum-card {
	background: var(--jse-fog); border-radius: var(--jse-radius-md); overflow: hidden;
	box-shadow: var(--jse-shadow-card); transition: transform .25s ease, box-shadow .25s ease;
}
.jse-rundum-card:hover { transform: translateY(-6px); box-shadow: var(--jse-shadow-lift); }
.jse-rundum-media { aspect-ratio: 4/3; }
.jse-rundum-media img { width: 100%; height: 100%; object-fit: cover; }
.jse-rundum-body { padding: 26px 22px 28px; }
.jse-rundum-body h3 { font-size: 1.08rem; }
.jse-rundum-body p { font-size: .9rem; }

/* ==========================================================================
   Energy system (signature section)
   ========================================================================== */
.jse-system { background: var(--jse-night); background-image: radial-gradient(circle at 15% 20%, rgba(159,195,26,.12), transparent 45%), radial-gradient(circle at 85% 80%, rgba(159,195,26,.1), transparent 45%); color: #fff; padding: 110px 0; }
.jse-system-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.jse-system-text h2 { color: #fff; }
.jse-lead-light { color: rgba(247,248,246,.72); max-width: 46ch; margin-bottom: 28px; }

.jse-checklist { display: flex; flex-direction: column; gap: 14px; }
.jse-checklist li { display: flex; align-items: center; gap: 12px; font-family: var(--jse-font-display); font-size: .98rem; color: rgba(247,248,246,.92); }
.jse-checklist li::before {
	content: ''; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
	background: rgba(159,195,26,.18); border: 1px solid var(--jse-green);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='%234CAF7D' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center; background-size: 11px;
}

.jse-system-diagram { display: flex; justify-content: center; }
.jse-flow-svg { width: 100%; max-width: 460px; overflow: visible; }

.jse-flow-lines path { stroke: rgba(255,255,255,.14); stroke-dasharray: 3 8; animation: jse-flow-dash 1.1s linear infinite; }
@keyframes jse-flow-dash { to { stroke-dashoffset: -22; } }

.jse-node circle { fill: var(--jse-night-2); stroke: rgba(255,255,255,.14); stroke-width: 1.4; }
.jse-node svg { color: rgba(247,248,246,.85); }
.jse-node text {
	fill: rgba(247,248,246,.68); font-family: var(--jse-font-mono); font-size: 11px;
	text-anchor: middle; letter-spacing: .01em;
}
.jse-node-sub { font-size: 9.5px; fill: rgba(247,248,246,.45) !important; }
.jse-node-hub circle:not(.jse-hub-halo) { fill: var(--jse-gold); stroke: none; }
.jse-node-hub svg { color: var(--jse-night); }
.jse-node-hub text { fill: #fff; font-weight: 500; }

.jse-hub-halo {
	fill: none; stroke: var(--jse-gold); stroke-width: 1.4; opacity: .5;
	transform-origin: center; transform-box: fill-box;
	animation: jse-halo-pulse 2.4s ease-out infinite;
}
.jse-hub-halo-2 { animation-delay: 1.2s; }
@keyframes jse-halo-pulse {
	0%   { transform: scale(1); opacity: .55; }
	100% { transform: scale(1.9); opacity: 0; }
}

.jse-dot { filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 12px currentColor); }
.jse-dot-gold { fill: var(--jse-gold); color: var(--jse-gold); }
.jse-dot-green { fill: var(--jse-green); color: var(--jse-green); }
.jse-dot-blue { fill: var(--jse-blue); color: var(--jse-blue); }

/* ==========================================================================
   Klima split
   ========================================================================== */
.jse-klima { display: grid; grid-template-columns: 0.85fr 1.15fr; background: #EAF2FA; }
.jse-klima-media { position: relative; min-height: 460px; }
.jse-klima-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jse-klima-content { display: flex; align-items: center; padding: 60px 0; }
.jse-klima-inner { max-width: 480px; padding-inline: 40px; }
.jse-klima-inner h2 { color: var(--jse-night); }

.jse-check-list-blue { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.jse-check-list-blue li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--jse-night); font-weight: 500; }
.jse-check-list-blue li::before {
	content: ''; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
	background: rgba(159,195,26,.14);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7' stroke='%233E8FD0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* ==========================================================================
   Projects carousel
   ========================================================================== */
/* ==========================================================================
   Prozess ("So läuft's ab")
   ========================================================================== */
.jse-prozess { background: var(--jse-fog); padding: 100px 0; }
.jse-prozess-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }

.jse-prozess-list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
	position: relative;
}
.jse-prozess-list::before {
	content: ''; position: absolute; top: 22px; left: 8%; right: 8%; height: 1px;
	background: var(--jse-line);
}
.jse-prozess-step { position: relative; padding: 0 14px; text-align: left; }
.jse-prozess-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%; background: var(--jse-night);
	color: var(--jse-gold); font-family: var(--jse-font-display); font-weight: 600; font-size: .9rem;
	position: relative; z-index: 1; margin-bottom: 18px;
}
.jse-prozess-body h3 { font-size: .98rem; margin-bottom: 8px; }
.jse-prozess-body p { font-size: .82rem; margin: 0; color: var(--jse-slate); }

@media (max-width: 900px) {
	.jse-prozess-list { grid-template-columns: 1fr 1fr; row-gap: 36px; }
	.jse-prozess-list::before { display: none; }
}

@media (max-width: 560px) {
	.jse-prozess-list { grid-template-columns: 1fr; }
	.jse-prozess-step { display: flex; gap: 16px; align-items: flex-start; }
	.jse-prozess-num { flex-shrink: 0; margin-bottom: 0; }
}

/* ==========================================================================
   Projects / Reviews (automatisch laufendes Band – siehe Plugin)
   ========================================================================== */
.jse-projects { padding: 100px 0 0; background: var(--jse-fog); }
.jse-projects-head { text-align: center; margin-bottom: 44px; }
.jse-projects-head h2 { margin: 0 0 14px; }

.jse-reviews { padding: 90px 0 0; background: var(--jse-fog); }
.jse-rating-badge {
	display: inline-flex; align-items: center; gap: 6px; font-family: var(--jse-font-display);
	font-size: .92rem; color: var(--jse-night);
}
.jse-stars-inline { color: var(--jse-gold); letter-spacing: 2px; font-size: .82rem; }
.jse-muted-inline { color: var(--jse-slate-light); font-family: var(--jse-font-body); font-size: .85rem; }

.jse-projects .jse-marquee,
.jse-reviews .jse-marquee { padding: 6px 0 100px; }

/* ==========================================================================
   Contact CTA
   ========================================================================== */
.jse-contact-cta { background: var(--jse-night-2); padding: 80px 0; }
.jse-contact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.jse-contact-cta h2 { color: #fff; margin: 0; font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem); }

.jse-contact-options { display: flex; gap: 14px; flex-wrap: wrap; }
.jse-contact-option {
	display: flex; align-items: center; gap: 12px; padding: 14px 20px;
	background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 999px;
	color: #fff; transition: background-color .2s ease, transform .2s ease;
}
.jse-contact-option:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.jse-contact-option strong { display: block; font-family: var(--jse-font-display); font-size: .88rem; }
.jse-contact-option span span { font-size: .8rem; color: rgba(247,248,246,.65); }
.jse-contact-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--jse-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.jse-contact-icon-green { background: var(--jse-green); }
.jse-contact-icon-dark { background: var(--jse-night); }
.jse-contact-option-gold { background: var(--jse-gold); color: var(--jse-night); border-color: transparent; }
.jse-contact-option-gold:hover { background: var(--jse-gold-dark); }
.jse-contact-option-gold span span { color: rgba(16,22,31,.65); }

/* ==========================================================================
   Kundenkarte
   ========================================================================== */
.jse-kundenkarte-section {
	background: var(--jse-night);
	background-image: radial-gradient(circle at 20% 15%, rgba(159,195,26,.1), transparent 45%), radial-gradient(circle at 80% 85%, rgba(159,195,26,.1), transparent 45%);
	color: #fff; padding: 100px 0 110px; text-align: center;
}
.jse-kundenkarte-section h2 { color: #fff; max-width: 640px; margin-inline: auto; }
.jse-kundenkarte-lead { max-width: 560px; margin: 0 auto 44px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.jse-footer { background: var(--jse-night); color: rgba(247,248,246,.75); padding-top: 70px; }
.jse-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.jse-logo-light { color: #fff; margin-bottom: 14px; }
.jse-logo-light .jse-logo-mark { height: 38px; }
.jse-footer-brand p { font-size: .9rem; color: rgba(247,248,246,.55); }

.jse-footer-col h4 { color: #fff; font-size: .92rem; margin-bottom: 16px; }
.jse-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.jse-footer-col a { font-size: .88rem; color: rgba(247,248,246,.65); transition: color .2s ease; }
.jse-footer-col a:hover { color: var(--jse-gold); }

.jse-footer address { font-style: normal; font-size: .88rem; line-height: 1.8; margin-bottom: 16px; }
.jse-footer-social { display: flex; gap: 10px; margin-bottom: 18px; }
.jse-footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; }
.jse-footer-rating { display: flex; align-items: center; gap: 8px; font-family: var(--jse-font-display); font-size: .88rem; color: #fff; flex-wrap: wrap; }
.jse-stars { color: var(--jse-gold); letter-spacing: 2px; font-size: .8rem; }
.jse-muted { color: rgba(247,248,246,.5); font-family: var(--jse-font-body); font-size: .8rem; width: 100%; }

.jse-footer-bottom {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
	border-top: 1px solid rgba(255,255,255,.08); padding: 22px 24px; font-size: .82rem;
}
.jse-footer-legal-list, .jse-footer-legal { display: flex; gap: 20px; }
.jse-footer-legal a { color: rgba(247,248,246,.6); }
.jse-footer-legal a:hover { color: var(--jse-gold); }

/* ==========================================================================
   Datenschutz-Banner
   ========================================================================== */
.jse-consent-banner {
	position: fixed; left: 16px; right: 16px; bottom: -140px; z-index: 200;
	max-width: 640px; margin-inline: auto;
	background: var(--jse-night); color: rgba(247,248,246,.85);
	border-radius: var(--jse-radius-md); padding: 20px 22px;
	box-shadow: 0 20px 50px -12px rgba(16,22,31,.5);
	transition: bottom .35s ease;
}
.jse-consent-banner.is-visible { bottom: 20px; }
.jse-consent-inner p { margin: 0 0 14px; font-size: .85rem; line-height: 1.55; }
.jse-consent-inner a { color: var(--jse-gold); text-decoration: underline; }
.jse-consent-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.jse-consent-btn {
	border: 0; border-radius: 999px; padding: 10px 18px; font-family: var(--jse-font-display, inherit);
	font-weight: 600; font-size: .82rem; cursor: pointer;
}
.jse-consent-btn-solid { background: var(--jse-gold); color: var(--jse-night); }
.jse-consent-btn-ghost { background: transparent; color: rgba(247,248,246,.8); border: 1px solid rgba(255,255,255,.25); }

/* ==========================================================================
   Standort-Landingpages
   ========================================================================== */
.jse-standort-hero { background: var(--jse-night); color: #fff; padding: 130px 0 80px; text-align: center; }
.jse-standort-hero h1 { color: #fff; font-size: clamp(2.1rem, 1.7rem + 2vw, 3rem); max-width: 780px; margin-inline: auto; }
.jse-standort-lead { color: rgba(247,248,246,.75); max-width: 560px; margin: 0 auto 30px; }

.jse-lokale-projekte { background: var(--jse-fog); padding: 90px 0; }

/* ==========================================================================
   Einfache Seiten (page.php / index.php Fallback)
   ========================================================================== */
.jse-simple-page { padding: 90px 0; }
.jse-simple-article { max-width: 760px; margin-inline: auto; }
.jse-simple-content :is(h2,h3) { margin-top: 1.4em; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
	.jse-services-grid { grid-template-columns: repeat(2, 1fr); }
	.jse-rundum-grid { grid-template-columns: repeat(2, 1fr); }
	.jse-trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
	.jse-project-card { flex: 0 0 calc(50% - 11px); }
	.jse-system-grid { grid-template-columns: 1fr; gap: 50px; }
	.jse-system-diagram { order: -1; }
	.jse-klima { grid-template-columns: 1fr; }
	.jse-klima-media { min-height: 340px; }
	.jse-klima-inner { padding: 48px 40px 0; max-width: 620px; }
}

@media (max-width: 1300px) {
	.jse-nav, .jse-header-actions .jse-btn { display: none; }
	.jse-nav-toggle { display: flex; }
}

@media (max-width: 860px) {
	.jse-hero-inner { padding-block: 90px 70px; }
	.jse-hero-steps { gap: 20px 26px; }
	.jse-contact-cta-inner { flex-direction: column; align-items: flex-start; }
	.jse-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	.jse-services-grid { grid-template-columns: 1fr; }
	.jse-rundum-grid { grid-template-columns: 1fr; }
	.jse-trust-grid { grid-template-columns: 1fr; }
	.jse-project-card { flex: 0 0 100%; }
	.jse-carousel-dots { display: flex; }
	.jse-projects-head { flex-direction: column; align-items: flex-start; gap: 16px; }
	.jse-klima-inner { padding-inline: 24px; }
	.jse-footer-top { grid-template-columns: 1fr; padding-bottom: 30px; }
	.jse-footer-bottom { flex-direction: column; align-items: flex-start; }
	.jse-contact-options { flex-direction: column; align-items: stretch; }
	.jse-hero-title { font-size: clamp(2.1rem, 1.7rem + 4vw, 3rem); }
}

/* 1.2: ruhige Typografie, klare Hierarchie und konsistente Bedienelemente. */
:root { --jse-shadow-card: 0 2px 4px rgba(16,22,31,.025), 0 16px 40px -24px rgba(16,22,31,.22); }
:is(a, button, input, select, textarea):focus-visible { outline: 3px solid #9fc31a; outline-offset: 4px; }
:is(.jse-header, .jse-hero, .jse-about, .jse-contact-cta, .jse-footer) :is(a, button):focus-visible { outline-color: #9fc31a; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.jse-btn { min-height: 48px; line-height: 1.35; text-align: center; }
.jse-section-heading { max-width: 650px; margin-bottom: 42px; }
.jse-section-heading h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); letter-spacing: -.035em; line-height: 1.15; }
.jse-section-heading > p:last-child { max-width: 54ch; font-size: 1.05rem; line-height: 1.75; }
.jse-hero-inner { max-width: var(--jse-container); }
.jse-hero-title { max-width: 820px; line-height: 1.08; letter-spacing: -.04em; }
.jse-hero-lead { max-width: 50ch; line-height: 1.75; color: #e3e8ec; }
.jse-hero-steps span { color: #c4cdd5; }
.jse-service-card, .jse-rundum-card { border: 1px solid #e4e7ea; }
.jse-service-body { padding: 34px 24px 26px; }
.jse-service-body h3, .jse-rundum-body h3 { font-size: 1.16rem; line-height: 1.35; }
.jse-service-body p, .jse-rundum-body p { line-height: 1.75; }
.jse-service-body .jse-link-arrow { align-self: flex-start; min-height: 44px; margin-top: 8px; }
.jse-prozess-body p { font-size: .93rem; line-height: 1.7; }
.jse-prozess-body h3 { font-size: 1.05rem; }
.jse-about p { line-height: 1.8; }
.jse-contact-cta { padding-block: clamp(64px, 7vw, 100px); border-top: 1px solid rgba(255,255,255,.08); }
.jse-contact-heading { max-width: 510px; }
.jse-contact-heading .jse-eyebrow { color: var(--jse-gold); }
.jse-contact-heading > p:last-child { max-width: 47ch; margin: 22px 0 0; color: #cbd5df; line-height: 1.75; }
.jse-contact-options { display: grid; grid-template-columns: 1fr; width: min(100%, 400px); gap: 12px; }
.jse-contact-option { min-height: 84px; padding: 20px 24px; border-radius: 14px; gap: 16px; }
.jse-contact-option strong { font-size: 1rem; margin-bottom: 3px; }
.jse-contact-icon { width: 42px; height: 42px; }
.jse-contact-option-gold .jse-contact-icon { color: white; }
.jse-footer-brand p, .jse-footer-col a, .jse-footer-legal a { color: #b8c3ce; }
.jse-footer-legal-list, .jse-footer-legal { flex-wrap: wrap; }
.jse-simple-page { padding-block: 136px 88px; }
.jse-simple-article > h1 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.035em; margin-bottom: 32px; }
@media (max-width: 860px) {
 .jse-hero-inner { padding-top: 130px; }
 .jse-contact-options { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .jse-contact-option-gold { grid-column: 1 / -1; }
 .jse-section-heading { margin-bottom: 30px; }
}
@media (max-width: 640px) {
 .jse-hero { min-height: 0; }
 .jse-hero-inner { padding-block: 128px 64px; }
 .jse-hero-title { font-size: clamp(2rem, 8.7vw, 3rem); }
 .jse-hero-lead { font-size: 1rem; }
 .jse-hero-steps { gap: 20px; }
 .jse-hero-steps li { flex-basis: calc(50% - 10px); }
 .jse-hero-cta { align-items: stretch; gap: 18px; }
 .jse-hero-cta > .jse-btn { width: 100%; justify-content: center; }
 .jse-hero-phone { min-height: 44px; }
 .jse-hero-scroll { display: none; }
 .jse-services, .jse-rundum, .jse-prozess { padding-block: 60px; }
 .jse-services { padding-bottom: 12px; }
 .jse-contact-options { grid-template-columns: 1fr; }
 .jse-simple-page { padding-block: 116px 60px; }
}

/* 1.4 – ursprüngliche Bildsprache, zurückhaltend verfeinert. */
.jse-hero { min-height: 88svh; align-items: center; }
.jse-hero-inner { padding-block: 150px 96px; }
.jse-hero-title { max-width: 780px; font-size: clamp(2.5rem, 4.5vw, 4.15rem); line-height: 1.12; letter-spacing: -.035em; }
.jse-hero-lead { max-width: 49ch; text-shadow: 0 1px 8px rgba(0,0,0,.18); }
.jse-hero .jse-hero-scrim { background: linear-gradient(90deg, rgba(12,22,32,.88) 0%, rgba(12,22,32,.66) 43%, rgba(12,22,32,.16) 100%), linear-gradient(0deg, #10161f 0%, transparent 30%); }
.jse-hero .jse-eyebrow { letter-spacing: .09em; }
.jse-hero-steps { border-top: 1px solid rgba(255,255,255,.2); padding-top: 24px; max-width: 590px; }
.jse-hero-cta .jse-btn { min-height: 52px; box-shadow: 0 8px 25px -12px rgba(159,195,26,.6); }
.jse-services .jse-section-heading h2 { font-size: clamp(2rem, 3vw, 2.75rem); }
.jse-service-card { border-radius: 16px; }
.jse-service-media { overflow: visible; }
.jse-service-image { position: absolute; inset: 0; overflow: hidden; }
.jse-service-icon { z-index: 1; }
.jse-service-media img { transition: transform .45s ease; }
@media (hover: hover) and (pointer: fine) {
 .jse-service-card:hover .jse-service-media img { transform: scale(1.025); }
}
@media (max-width: 860px) {
 .jse-hero { min-height: 0; }
 .jse-hero-inner { padding-block: 132px 80px; }
}
@media (max-width: 640px) {
 .jse-hero-inner { padding-block: 124px 60px; }
 .jse-hero-title { font-size: clamp(2rem, 8.2vw, 3rem); overflow-wrap: anywhere; }
 .jse-hero .jse-hero-scrim { background: linear-gradient(90deg, rgba(12,22,32,.84), rgba(12,22,32,.55)), linear-gradient(0deg, #10161f, transparent 50%); }
 .jse-hero-steps { gap: 20px; padding-top: 22px; margin-bottom: 28px; }
}
@media (prefers-reduced-motion: reduce) {
 .jse-service-media img { transition: none; }
 .jse-service-card:hover .jse-service-media img { transform: none; }
}

/* 1.5 – Bildstarke Folgesektionen; der freigegebene Einstieg bleibt erhalten. */
.jse-services { padding-block: 100px 28px; }
.jse-service-card { position: relative; }
.jse-service-card::after { content: ''; position: absolute; inset: auto 24px 0; height: 3px; background: var(--jse-gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.jse-service-card:hover::after, .jse-service-card:focus-within::after { transform: scaleX(1); }
.jse-trust { margin-top: 48px; padding-block: 42px; }
.jse-trust-icon { border-radius: 12px; }
.jse-rundum { padding-block: 100px; background: #f0f3f3; }
.jse-rundum-head { max-width: 800px; }
.jse-rundum-head h2 { font-size: clamp(2rem, 3.3vw, 3.25rem); line-height: 1.15; letter-spacing: -.035em; }
.jse-rundum-grid { gap: 28px; }
.jse-rundum-card { border: 0; border-radius: 20px; overflow: hidden; }
.jse-rundum-media { aspect-ratio: 1.2; }
.jse-rundum-body { padding: 28px; }
.jse-rundum-body .jse-link-arrow { min-height: 44px; }
.jse-system { padding-block: 120px; position: relative; border-block: 1px solid #30404a; }
.jse-system-text h2 { font-size: clamp(2.1rem, 3.5vw, 3.5rem); line-height: 1.13; letter-spacing: -.035em; }
.jse-system-diagram { padding: 32px; border: 1px solid rgba(255,255,255,.12); border-radius: 32px; background: radial-gradient(circle, rgba(159,195,26,.07), transparent 70%); }
.jse-klima { margin: 64px auto; max-width: 1200px; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 70px -44px #253e54; }
.jse-klima-media { min-height: 550px; }
.jse-klima-inner h2 { font-size: clamp(2rem, 3vw, 2.8rem); letter-spacing: -.035em; line-height: 1.15; }
.jse-klima-content { padding-block: 48px; }
.jse-projects { background: #13212b; padding-top: 100px; }
.jse-projects .jse-projects-head { text-align: left; max-width: 760px; margin-bottom: 48px; }
.jse-projects .jse-eyebrow { color: #bdcdd7; }
.jse-projects-head h2 { font-size: clamp(2.1rem, 3.8vw, 3.6rem); line-height: 1.12; letter-spacing: -.04em; }
.jse-projects .jse-projects-head h2 { color: #fff; }
.jse-section-description { color: #bfced8; max-width: 50ch; line-height: 1.75; margin-top: 20px; }
.jse-projects .jse-marquee { padding-bottom: 90px; }
.jse-projects .jse-marquee .jse-project-card { flex-basis: 380px; border-radius: 20px; box-shadow: 0 20px 32px -24px #000; }
.jse-projects .jse-project-media { aspect-ratio: 1.35; }
.jse-projects .jse-project-body { padding: 24px 28px 28px; }
.jse-projects .jse-project-body h3 { font-size: 1.22rem; }
.jse-projects .jse-project-zoom { opacity: 1; transform: none; background: #13212b; width: 40px; height: 40px; }
.jse-marquee:focus-within .jse-marquee-track { animation-play-state: paused; }
.jse-reviews { background: #faf8f3; padding-top: 100px; }
.jse-reviews .jse-projects-head { max-width: 760px; margin-inline: auto; }
.jse-reviews .jse-text-accent { color: #9fc31a; }
.jse-reviews .jse-marquee .jse-review-card { flex-basis: 360px; padding: 32px; border: 1px solid #e9e2d5; border-radius: 20px; box-shadow: 0 18px 36px -30px #5c4930; }
.jse-reviews .jse-review-text { font-size: 1rem; line-height: 1.8; }
.jse-reviews .jse-review-author { padding-top: 18px; border-top: 1px solid #ece8df; }
.jse-prozess { background: #fff; }
.jse-prozess > .jse-container { display: grid; grid-template-columns: .75fr 1.4fr; gap: 64px; align-items: start; }
.jse-prozess-head { text-align: left; margin: 0; }
.jse-prozess-head h2 { font-size: clamp(2.2rem, 3.5vw, 3.3rem); letter-spacing: -.04em; line-height: 1.14; }
.jse-prozess-head > p:last-child { margin-top: 24px; line-height: 1.8; }
.jse-prozess-head .jse-text-accent { color: #9fc31a; }
.jse-prozess-list { grid-template-columns: 1fr 1fr; gap: 20px; }
.jse-prozess-list::before { display: none; }
.jse-prozess-step { display: block; padding: 26px; border: 1px solid #e4e7ea; border-radius: 16px; background: #f8f9f7; }
.jse-prozess-num { font-size: 2.15rem; letter-spacing: -.06em; background: transparent; color: #9fc31a; width: auto; height: auto; margin-bottom: 18px; }
.jse-prozess-body h3 { font-size: 1.05rem; }
.jse-prozess-body p { font-size: .88rem; line-height: 1.75; }
.jse-about { padding-block: 100px; }
.jse-about-media { position: relative; height: 540px; border-radius: 24px; }
.jse-about-media::after { content: ''; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(9,19,27,.9)); pointer-events: none; }
.jse-craft-caption { position: absolute; left: 30px; bottom: 30px; z-index: 1; color: white; }
.jse-craft-caption span { font-size: .65rem; letter-spacing: .18em; color: #9fc31a; }
.jse-craft-caption strong { display: block; margin-top: 12px; font: 500 2rem/1.12 var(--jse-font-display); letter-spacing: -.035em; }
.jse-about h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); line-height: 1.12; letter-spacing: -.035em; }
.jse-contact-cta { position: relative; overflow: hidden; background: #1c303d; }
.jse-contact-cta-inner { position: relative; isolation: isolate; }
.jse-contact-orbit { position: absolute; z-index: -1; right: 25%; top: -64px; width: 330px; height: 330px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; font: 240px/1 var(--jse-font-display); color: rgba(255,255,255,.035); pointer-events: none; }
.jse-contact-heading h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); line-height: 1.12; letter-spacing: -.035em; }
.jse-contact-option { background: #263d4c; border-color: #3e5260; }
.jse-contact-option-gold { background: var(--jse-gold); border-color: transparent; }
@media (max-width: 1000px) {
 .jse-prozess > .jse-container { grid-template-columns: 1fr; gap: 32px; }
 .jse-prozess-head { max-width: 620px; }
 .jse-klima { margin: 40px 24px; }
 .jse-klima-media { min-height: 400px; }
}
@media (max-width: 640px) {
 .jse-services, .jse-rundum, .jse-system, .jse-about { padding-top: 64px; }
 .jse-rundum, .jse-system, .jse-about { padding-bottom: 64px; }
 .jse-system-diagram { padding: 16px; border-radius: 20px; }
 .jse-rundum-media { aspect-ratio: 4/3; }
 .jse-klima { margin: 32px 16px; border-radius: 20px; }
 .jse-klima-media { min-height: 340px; }
 .jse-klima-inner { padding: 0 24px; }
 .jse-projects, .jse-reviews { padding-top: 64px; }
 .jse-projects .jse-marquee .jse-project-card, .jse-reviews .jse-marquee .jse-review-card { flex-basis: min(320px, 84vw); }
 .jse-projects .jse-project-body, .jse-reviews .jse-marquee .jse-review-card { padding: 24px; }
 .jse-prozess-list { grid-template-columns: 1fr; gap: 14px; }
 .jse-prozess-step { display: flex; gap: 20px; padding: 22px; }
 .jse-prozess-num { margin: 0; min-width: 38px; }
 .jse-about-media { height: 440px; }
 .jse-contact-orbit { right: -130px; top: -40px; }
}

/* 1.6 – vollständiges Original-Logo auf einer ruhigen, hellen Markenfläche. */
.jse-header-inner { height: 120px; }
.jse-logo-original { display: inline-flex; flex-shrink: 0; align-items: center; justify-content: center; background: #fff; padding: 9px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,.65); box-shadow: 0 8px 26px rgba(0,0,0,.16); transition: box-shadow .2s ease; }
.jse-logo-original .jse-logo-mark { display: block; width: 128px; height: auto; aspect-ratio: 2390 / 1580; object-fit: contain; transform: none; }
.jse-logo-original:hover { opacity: 1; box-shadow: 0 8px 30px rgba(159,195,26,.18); }
.jse-logo-original:hover .jse-logo-mark { transform: none; }
.jse-footer-brand .jse-logo-original { padding: 15px 18px; margin-bottom: 24px; }
.jse-footer-brand .jse-logo-original .jse-logo-mark { width: 176px; height: auto; }
section[id], article[id] { scroll-margin-top: 148px; }
.jse-mobile-nav { max-height: calc(100dvh - 120px); }
.admin-bar .jse-mobile-nav { max-height: calc(100dvh - 152px); }
@media (max-width: 782px) {
 .jse-header-inner { height: 98px; }
 .jse-header .jse-logo-original { padding: 7px 10px; border-radius: 8px; }
 .jse-header .jse-logo-original .jse-logo-mark { width: 108px; }
 .jse-mobile-nav { max-height: calc(100dvh - 98px); }
 .admin-bar .jse-mobile-nav { max-height: calc(100dvh - 144px); }
 section[id], article[id] { scroll-margin-top: 120px; }
 .admin-bar section[id], .admin-bar article[id] { scroll-margin-top: 166px; }
}
@media (min-width: 783px) {
 .admin-bar section[id], .admin-bar article[id] { scroll-margin-top: 180px; }
}

/* 1.6.1 – weiße Originalvariante direkt auf dunklem Hintergrund. */
.jse-logo-original { background: transparent; border: 0; box-shadow: none; border-radius: 0; }
.jse-logo-original:hover { box-shadow: none; }
.jse-logo-original .jse-logo-mark { width: 144px; aspect-ratio: 2392 / 1583; }
.jse-footer-brand .jse-logo-original { padding: 0; }
.jse-footer-brand .jse-logo-original .jse-logo-mark { width: 200px; }
@media (max-width: 782px) {
 .jse-header .jse-logo-original .jse-logo-mark { width: 116px; }
}

/* 1.6.2 – präsentere Marke und besser lesbarer Kopfbereich. */
.jse-header-inner { height: 144px; }
.jse-header .jse-logo-original .jse-logo-mark { width: 176px; }
.jse-nav-list { gap: 24px; }
.jse-nav-list a { font-size: 1rem; }
.jse-header-actions .jse-btn { font-size: 1rem; min-height: 50px; padding: 13px 20px; }
.jse-mobile-nav-list a { font-size: 1.1rem; padding-block: 15px; }
.jse-mobile-nav > .jse-btn { font-size: 1rem; }
.jse-footer-brand .jse-logo-original .jse-logo-mark { width: 220px; max-width: 100%; }
section[id], article[id] { scroll-margin-top: 168px; }
.admin-bar section[id], .admin-bar article[id] { scroll-margin-top: 200px; }
.jse-mobile-nav { max-height: calc(100dvh - 144px); }
.admin-bar .jse-mobile-nav { max-height: calc(100dvh - 176px); }
@media (max-width: 1400px) {
 .jse-nav, .jse-header-actions .jse-btn { display: none; }
 .jse-nav-toggle { display: flex; }
}
@media (max-width: 782px) {
 .jse-header-inner { height: 116px; }
 .jse-header .jse-logo-original .jse-logo-mark { width: 140px; }
 .jse-mobile-nav { max-height: calc(100dvh - 116px); }
 .admin-bar .jse-mobile-nav { max-height: calc(100dvh - 162px); }
 section[id], article[id] { scroll-margin-top: 140px; }
 .admin-bar section[id], .admin-bar article[id] { scroll-margin-top: 186px; }
}

/* 1.7.1 – kompakter Einstieg direkt unter der Navigation. */
.jse-hero { align-items: flex-start; min-height: 0; }
.jse-hero-inner { padding-block: 48px 64px; }
@media (max-width: 860px) {
 .jse-hero-inner { padding-block: 40px 56px; }
}
@media (max-width: 640px) {
 .jse-hero-inner { padding-block: 32px 48px; }
}
/* 1.8 – kompakte Karten und direkt bedienbare Referenz-/Bewertungsbänder. */
.jse-projects .jse-drag-carousel, .jse-reviews .jse-drag-carousel { overflow-x: auto; overflow-y: hidden; mask-image: none; -webkit-mask-image: none; cursor: grab; padding: 8px 24px 32px; scrollbar-width: thin; scrollbar-color: #9fc31a transparent; margin: 0 auto; max-width: 1200px; touch-action: pan-x pan-y; }
.jse-drag-carousel .jse-marquee-track { animation: none; transform: none; width: max-content; align-items: flex-start; padding-bottom: 8px; }
.jse-drag-carousel.is-dragging { cursor: grabbing; user-select: none; }
.jse-drag-carousel.is-dragging * { cursor: grabbing; }
.jse-drag-carousel img { -webkit-user-drag: none; }
.jse-reviews .jse-drag-carousel .jse-review-card { flex: 0 0 340px; min-height: 0; padding: 28px; }
.jse-reviews .jse-drag-carousel .jse-review-text { flex: none; font-size: .96rem; line-height: 1.75; margin-bottom: 16px; }
.jse-review-excerpt:not(.is-expanded) { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.jse-review-toggle { align-self: flex-start; background: transparent; color: #9fc31a; border: 0; border-bottom: 1px solid #9fc31a; padding: 8px 0; margin: 0 0 18px; min-height: 44px; font: inherit; font-weight: 600; cursor: pointer; }
.jse-review-toggle[hidden] { display: none; }
.jse-reviews .jse-review-author { margin-top: 4px; }
.jse-carousel-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.jse-carousel-controls > span { font-size: .85rem; color: #596777; }
.jse-projects .jse-carousel-controls > span { color: #c6d3dc; }
.jse-carousel-controls > div { display: flex; gap: 8px; }
.jse-carousel-controls button { border: 1px solid #c6cdd3; border-radius: 999px; background: #fff; color: #192b36; min-width: 44px; min-height: 44px; padding: 8px 16px; font: inherit; cursor: pointer; }
.jse-carousel-controls button:disabled { opacity: .35; cursor: default; }
.jse-carousel-controls button:focus-visible, .jse-review-toggle:focus-visible, .jse-drag-carousel:focus-visible { outline: 3px solid #9fc31a; outline-offset: 3px; }
.jse-reviews, .jse-projects { padding-bottom: 64px; }
@media(max-width: 640px) {
 .jse-carousel-controls { flex-wrap: wrap; }
 .jse-carousel-controls > span { flex-basis: 100%; }
 .jse-reviews .jse-drag-carousel .jse-review-card { flex-basis: min(330px, 82vw); padding: 24px; }
 .jse-projects .jse-drag-carousel .jse-project-card { flex-basis: min(350px, 82vw); }
}

/* 1.8.1 – einheitliche Kartenhöhe innerhalb jeder Reihe. */
.jse-drag-carousel .jse-marquee-track { align-items: stretch; }
.jse-drag-carousel .jse-project-card { display: flex; flex-direction: column; }
.jse-drag-carousel .jse-project-media { flex-shrink: 0; }
.jse-drag-carousel .jse-project-body { flex: 1; }
.jse-drag-carousel .jse-project-specs li { overflow-wrap: anywhere; min-width: 0; }
.jse-reviews .jse-drag-carousel .jse-review-author { margin-top: auto; }

/* 1.8.2 – reale Kartenbreiten statt überbreiter Inhaltsfläche. */
.jse-projects .jse-drag-carousel .jse-project-card { width: 380px; min-width: 0; flex: 0 0 auto; }
.jse-reviews .jse-drag-carousel .jse-review-card { width: 340px; min-width: 0; flex: 0 0 auto; }
.jse-drag-carousel .jse-project-body, .jse-drag-carousel .jse-review-text { overflow-wrap: anywhere; min-width: 0; }
@media (max-width: 640px) {
 .jse-projects .jse-drag-carousel .jse-project-card { width: min(350px, 82vw); flex-basis: auto; }
 .jse-reviews .jse-drag-carousel .jse-review-card { width: min(330px, 82vw); flex-basis: auto; }
}

/* 1.9.1 – kompakter Rhythmus zwischen den Inhaltsbereichen. */
.jse-services { padding-block: 60px 24px; }
.jse-trust { margin-top: 24px; padding-block: 32px; }
.jse-rundum { padding-block: 60px 48px; }
.jse-rundum-head { margin-bottom: 30px; }
.jse-system { padding-block: 56px; }
.jse-klima { margin-block: 40px; }
.jse-projects, .jse-reviews { padding-top: 60px; padding-bottom: 32px; }
.jse-projects .jse-projects-head, .jse-reviews .jse-projects-head { margin-bottom: 28px; }
.jse-prozess, .jse-about { padding-block: 60px; }
.jse-contact-cta { padding-block: 56px; }
.jse-kundenkarte-section { padding-block: 56px; }
.jse-kundenkarte-lead { margin-bottom: 28px; }
.jse-footer { padding-top: 48px; }
@media (max-width: 640px) {
 .jse-services { padding-block: 40px 16px; }
 .jse-trust { margin-top: 16px; padding-block: 28px; }
 .jse-rundum, .jse-system, .jse-prozess, .jse-about, .jse-contact-cta, .jse-kundenkarte-section { padding-block: 40px; }
 .jse-klima { margin-block: 28px; }
 .jse-projects, .jse-reviews { padding-top: 40px; padding-bottom: 24px; }
 .jse-footer { padding-top: 36px; }
}

/* 1.9.5 – lesbare Beschriftungen im Energieschema. */
.jse-system-diagram { padding: 24px 16px; }
.jse-system-diagram .jse-flow-svg { max-width: 700px; }
.jse-system-diagram .jse-node text { font-family: var(--jse-font-body); font-size: 22px; font-weight: 600; letter-spacing: 0; fill: #f1f5f7; }
.jse-system-diagram .jse-node .jse-node-sub { font-size: 18px; fill: #c4d1da !important; }
.jse-system-diagram .jse-flow-lines path { stroke: rgba(255,255,255,.28); }
.jse-diagram-hint { display: none; }
@media(max-width: 640px) {
 .jse-system-diagram { display: block; overflow-x: auto; scrollbar-width: thin; }
 .jse-system-diagram .jse-flow-svg { min-width: 560px; }
 .jse-diagram-hint { display: block; margin: 0 0 16px; color: #c4d1da; font-size: .85rem; }
}

/* Einheitliche Markenakzente, dunkle Schrift auf grünen Flächen. */
.jse-btn-blue, .jse-contact-icon, .jse-contact-icon-green { color: #10161f; }
.jse-project-specs svg { color: var(--jse-art-color, #9fc31a); }
/* 1.9.8 – responsives Energieschema mit lesbaren Komponentenkarten. */
.jse-energy-panel { min-width: 0; padding: 28px; border: 1px solid #34434a; border-radius: 24px; background: linear-gradient(145deg, #1b2b32, #142126); }
.jse-energy-heading { display: grid; gap: 8px; margin-bottom: 26px; }
.jse-energy-heading > span { color: #9fc31a; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; }
.jse-energy-heading > strong { color: #fff; font-size: 1.25rem; line-height: 1.4; }
.jse-energy-stage { display: flex; gap: 12px; font-size: .75rem; color: #9fc31a; margin: 0 0 12px; }
.jse-energy-stage span { color: #cbd6da; }
.jse-energy-sources { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.jse-energy-card { min-width: 0; padding: 16px 10px; border: 1px solid #394950; border-radius: 12px; background: #213239; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.jse-energy-icon { display: block; width: 26px; height: 26px; color: #9fc31a; margin-bottom: 6px; }
.jse-energy-card strong { color: #f4f7f8; font-size: .88rem; line-height: 1.35; overflow-wrap: anywhere; }
.jse-energy-card small { color: #b6c7ce; font-size: .72rem; line-height: 1.5; }
.jse-energy-connector { height: 28px; display: flex; justify-content: center; }
.jse-energy-connector span { width: 1px; background: #9fc31a; }
.jse-energy-center { display: flex; align-items: center; gap: 16px; padding: 20px; border: 1px solid #9fc31a; border-radius: 14px; background: #9fc31a; color: #162329; }
.jse-energy-center > svg { flex-shrink: 0; }
.jse-energy-center strong { display: block; font-size: 1.1rem; line-height: 1.4; }
.jse-energy-center span { display: block; font-size: .78rem; margin-top: 4px; line-height: 1.45; }
.jse-energy-inverter { color: #cbd6da; text-align: center; font-size: .75rem; line-height: 1.6; margin: 12px 0 0; }
.jse-energy-uses { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.jse-energy-uses .jse-energy-card { display: grid; grid-template-columns: 30px 1fr; column-gap: 12px; align-items: center; padding: 16px; }
.jse-energy-uses .jse-energy-icon { grid-row: 1 / 3; margin: 0; }
.jse-energy-app { display: flex; gap: 12px; align-items: center; margin-top: 20px; padding-top: 18px; border-top: 1px solid #394950; color: #cbd6da; font-size: .75rem; line-height: 1.6; }
.jse-energy-app svg { color: #9fc31a; flex-shrink: 0; }
.jse-energy-app strong { display: block; color: #fff; font-size: .85rem; }
.jse-energy-note { color: #b6c7ce; font-size: .65rem; line-height: 1.5; margin: 16px 0 0; }
@media(max-width: 640px) {
 .jse-energy-panel { padding: 20px 16px; border-radius: 18px; }
 .jse-energy-sources { grid-template-columns: 1fr; }
 .jse-energy-sources .jse-energy-card { display: grid; grid-template-columns: 30px 1fr; column-gap: 12px; }
 .jse-energy-sources .jse-energy-icon { grid-row: 1 / 3; margin: 0; }
 .jse-energy-card strong { font-size: .95rem; }
 .jse-energy-card small { font-size: .8rem; }
 .jse-energy-center { padding: 16px 12px; gap: 10px; }
 .jse-energy-center strong { font-size: 1rem; }
 .jse-energy-uses { grid-template-columns: 1fr; }
 .jse-energy-note { font-size: .72rem; }
}
/* 1.10 – animiertes Energieschema mit klar getrennten Beschriftungen. */
.jse-live-energy { min-width: 0; border: 1px solid #34434a; border-radius: 26px; padding: 24px 14px 16px; background: radial-gradient(ellipse at center, #162329 0%, #162329 65%, #132027 100%); }
.jse-live-heading { display: grid; gap: 7px; padding: 0 12px 16px; }
.jse-live-heading span { color: #9fc31a; font-size: .68rem; text-transform: uppercase; letter-spacing: .13em; }
.jse-live-heading strong { color: #f5f7f6; font-size: 1.1rem; line-height: 1.4; }
.jse-live-canvas { width: 100%; min-width: 0; }
.jse-live-svg { display: block; width: 100%; max-width: 100%; min-width: 0; height: auto; }
.jse-live-line { fill: none; stroke: #9fc31a; stroke-width: 1.6; stroke-opacity: .65; }
.jse-live-particle { fill: #9fc31a; filter: drop-shadow(0 0 5px #9fc31a); }
.jse-live-node rect { fill: #203139; stroke: #465a61; stroke-width: 1.2; }
.jse-live-node svg { color: #9fc31a; }
.jse-live-node text { fill: #f2f6f4; font: 600 20px var(--jse-font-body); text-anchor: middle; }
.jse-live-hub rect { fill: #9fc31a; stroke: #9fc31a; stroke-width: 2; }
.jse-live-hub text { fill: #162329; font-size: 20px; }
.jse-live-hub svg { color: #162329; }
.jse-live-caption { color: #bac8ce; text-align: center; font-size: .68rem; margin: 10px 0 0; line-height: 1.6; }
.jse-live-mobile-hint { display: none; }
@media(max-width: 640px) {
 .jse-live-energy { padding: 20px 10px 16px; border-radius: 20px; }
 .jse-live-svg { min-width: 0; }
 .jse-live-heading { padding: 0 6px 12px; }
 .jse-live-heading strong { font-size: .95rem; }
}
@media(prefers-reduced-motion: reduce) {
 .jse-live-particle { display: none; }
}

/* Ruhige, gerichtete Darstellung der Überschusseinspeisung. */
.jse-live-line.jse-live-export { stroke: #e88181; stroke-width: 2; stroke-opacity: 1; }

/* 1.10.3 – oberen Bildbereich erhalten, ohne Zoom-Beschnitt. */
.jse-hero-media img, .jse-hero-media video {
 object-position: center top;
 transform: none;
 will-change: auto;
}

.jse-live-line:not(.jse-live-export) { stroke-opacity: 1; }
.jse-live-particle.jse-live-export-particle { fill: #e88181; filter: drop-shadow(0 0 5px #e88181); }

/* Bedienelemente ohne zusätzlichen Anleitungstext. */
.jse-carousel-controls { justify-content: flex-end; }

.jse-region { padding-block: 56px; background: var(--jse-fog); }
.jse-region h2 { max-width: 850px; }
.jse-region p { max-width: 850px; line-height: 1.8; }
.jse-region-links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 24px; }
.jse-region-links a { text-decoration: underline; text-underline-offset: 4px; padding-block: 8px; }
@media(max-width:640px) { .jse-region { padding-block:40px; } }

/* Erneut aufrufbare Cookie-Auswahl. */
#jse-consent-settings { padding: 0; border: 0; background: none; color: #b8c3ce; font: inherit; cursor: pointer; text-align: left; }
#jse-consent-settings:hover { color: #9fc31a; }
.jse-consent-banner[hidden], .jse-consent-close[hidden] { display: none; }
.jse-consent-banner { max-height: calc(100dvh - 32px); overflow-y: auto; }
.jse-consent-title { color: white; font-size: 1.1rem; margin: 0 40px 14px 0; }
.jse-consent-close { position: absolute; right: 12px; top: 10px; width: 40px; height: 40px; border: 0; background: transparent; color: white; font-size: 1.5rem; cursor: pointer; }

/* Leistungsseiten im bestehenden Erscheinungsbild. */
.jse-landing-hero { background: var(--jse-night); padding-block: 52px; }
.jse-landing-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.jse-landing-back { display: inline-block; color: #c7d2d9; margin-bottom: 28px; padding-block: 8px; }
.jse-landing-hero .jse-eyebrow { color: #9fc31a; flex-wrap: wrap; }
.jse-landing-hero h1 { color: white; font-size: clamp(2rem, 3.3vw, 3.2rem); line-height: 1.13; letter-spacing: -.035em; }
.jse-landing-lead { color: #c7d2d9; line-height: 1.8; margin-block: 24px; }
.jse-landing-photo { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; }
.jse-landing-content { max-width: 900px; padding-block: 48px; }
.jse-landing-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-top: 36px; }
.jse-landing-content h3 { margin-top: 26px; font-size: 1.15rem; }
.jse-landing-content p { line-height: 1.85; }
@media(max-width: 860px) { .jse-landing-grid { grid-template-columns: 1fr; gap: 28px; } .jse-landing-photo { height: 300px; } .jse-landing-hero { padding-block: 36px; } }

/* Referenzfotos unabhängig vom Hoch-/Querformat in einem festen Bildbereich. */
.jse-projects .jse-project-card .jse-project-media { overflow: hidden; min-height: 0; height: auto; aspect-ratio: 4 / 3; flex: none; }
.jse-projects .jse-project-card .jse-project-media img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: 100%; object-fit: cover; }
@media (max-width: 640px) {
 .jse-projects .jse-drag-carousel { width: 100%; max-width: 100%; box-sizing: border-box; padding-inline: 16px; }
 .jse-projects .jse-drag-carousel .jse-project-card { width: min(340px, calc(100vw - 48px)); max-width: calc(100vw - 48px); min-width: 0; flex: 0 0 auto; }
 .jse-projects .jse-project-card .jse-project-body { padding: 20px 18px 24px; }
 .jse-projects .jse-project-body h3 { font-size: 1.05rem; line-height: 1.4; overflow-wrap: anywhere; }
 .jse-projects .jse-project-specs li { font-size: .78rem; line-height: 1.6; white-space: normal; overflow-wrap: anywhere; }
 .jse-projects .jse-project-badge { max-width: calc(100% - 24px); box-sizing: border-box; white-space: normal; }
}
