/* ==========================================================================
   webbits Design-System
   Monochromes Editorial-System (siehe DESIGN.md) mit drei Bereichsfarben.
   Neutral: schwarz / weiß / ein Grau · runde Pills · flache Karten.
   Die Bereichsfarbe (--wb-accent) ist die EINE Signalfarbe pro Seite.
   ========================================================================== */

:root {
	/* --- Neutrale Basis (immer gleich) --- */
	--wb-ink:          #111111;   /* Text, primäre Pills, Headlines            */
	--wb-on-ink:       #ffffff;   /* Text auf schwarzem Grund                  */
	--wb-canvas:       #ffffff;   /* Seitenhintergrund                         */
	--wb-cloud:        #f5f5f5;   /* Karten-/Bühnenfläche („Studio")           */
	--wb-charcoal:     #39393b;   /* etwas weicheres Dunkel                    */
	--wb-mute:         #707072;   /* Sekundärtext, Bildunterschriften          */
	--wb-stone:        #9e9ea0;   /* niedrigste Textpriorität                  */
	--wb-hairline:     #e2e2e4;   /* 1px-Trenner – dezent, wenig Kontrast       */
	--wb-hairline-sft: #e5e5e5;   /* weicher 1px-Inset (einzige „Erhebung")    */

	/* --- Bereichsfarbe: Default = Dachmarke (neutral-schwarz) --- */
	--wb-accent:        var(--wb-ink);
	--wb-accent-strong: var(--wb-ink);
	--wb-accent-ink:    var(--wb-on-ink);   /* Text auf Akzentfläche           */

	/* --- Radius --- */
	--wb-r-none: 0px;
	--wb-r-sm:   18px;
	--wb-r-md:   24px;
	--wb-r-lg:   30px;
	--wb-r-full: 9999px;

	/* --- Spacing (8px-Basis) --- */
	--wb-s-xxs: 2px;
	--wb-s-xs:  4px;
	--wb-s-sm:  8px;
	--wb-s-md:  12px;
	--wb-s-lg:  18px;
	--wb-s-xl:  24px;
	--wb-s-xxl: 30px;
	--wb-s-section: 48px;

	/* --- Container --- */
	--wb-container: 1440px;

	/* --- Typo --- */
	--wb-font-display: "Inter", "Helvetica Now Display", "Helvetica Neue", Arial, sans-serif;
	--wb-font-body:    "Inter", "Helvetica Now Text", "Helvetica Neue", Arial, sans-serif;
}

/* ==========================================================================
   Bereichs-Themes  (Body-Klasse setzt --wb-accent)
   ========================================================================== */

/* Dachmarke / neutral */
.theme-brand {
	--wb-accent:        var(--wb-ink);
	--wb-accent-strong: #000000;
	--wb-accent-ink:    var(--wb-on-ink);
	--wb-accent-ondark: #ffffff;   /* Akzent auf schwarzer Fläche              */
}

/* Software – Türkis */
.theme-software {
	--wb-accent:        #0FB5AE;
	--wb-accent-strong: #0A857F;
	--wb-accent-ink:    #ffffff;
	--wb-accent-ondark: #2AD4CD;   /* helleres Türkis auf Schwarz              */
}

/* IT-Administration – Anthrazit / Dunkelblau */
.theme-it {
	--wb-accent:        #11151F;
	--wb-accent-strong: #2E4A7A;   /* interaktiv/heller für Hover              */
	--wb-accent-ink:    #ffffff;
	--wb-accent-ondark: #6EA8FF;   /* helles Blau auf Schwarz                  */
}

/* Webdesign – Rot (Logo-Rot) */
.theme-web {
	--wb-accent:        #B82840;
	--wb-accent-strong: #8E1B30;
	--wb-accent-ink:    #ffffff;
	--wb-accent-ondark: #F0506E;   /* helleres Rot auf Schwarz                 */
}

/* ==========================================================================
   Motion – Scroll-Reveal (Fade-up mit Stagger)
   Startzustand nur bei aktivem JS (.wb-js) → flackerfrei, mit Fallback.
   ========================================================================== */
.wb-js .wb-section :is(h1, h2, .wb-statement, .wb-lead, .wb-muted, .wb-area-badge, .wb-eyebrow, .wb-feature, .wb-step, .wb-area-tile, .wb-prod, .wb-ref, .wb-chips, .wb-media),
.wb-js .wb-section > .wb-container > p,
.wb-js .wb-section .wb-row .wb-btn {
	opacity: 0; transform: translateY(20px);
	transition: opacity .6s cubic-bezier(.2,.6,.2,1), transform .6s cubic-bezier(.2,.6,.2,1);
	will-change: opacity, transform;
}
.wb-js .wb-section .is-in { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.wb-js .wb-section :is(h1,h2,.wb-statement,.wb-lead,.wb-muted,.wb-area-badge,.wb-eyebrow,.wb-feature,.wb-step,.wb-area-tile,.wb-prod,.wb-ref,.wb-chips,.wb-media),
	.wb-js .wb-section > .wb-container > p,
	.wb-js .wb-section .wb-row .wb-btn { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Hero-Backdrop (animiertes Pixelraster + Glow, Anspielung aufs Logo)
   ========================================================================== */
.wb-hero { position: relative; overflow: hidden; }
.wb-hero > * { position: relative; z-index: 2; }
.wb-hero::before {
	content: ""; position: absolute; inset: -12%; z-index: 0;
	background-image: radial-gradient(circle, var(--wb-accent) 1.2px, transparent 1.4px);
	background-size: 26px 26px; opacity: .16;
	-webkit-mask-image: radial-gradient(120% 92% at 80% 6%, #000 0%, transparent 62%);
	        mask-image: radial-gradient(120% 92% at 80% 6%, #000 0%, transparent 62%);
	animation: wb-drift 26s linear infinite;
}
.wb-hero::after {
	content: ""; position: absolute; z-index: 0; top: -30%; right: -8%;
	width: 55%; height: 130%;
	background: radial-gradient(closest-side, color-mix(in srgb, var(--wb-accent) 26%, transparent), transparent);
	filter: blur(26px); opacity: .5; pointer-events: none;
}
@keyframes wb-drift { from { background-position: 0 0; } to { background-position: 260px -180px; } }
@media (prefers-reduced-motion: reduce) { .wb-hero::before { animation: none; } }

/* ==========================================================================
   Marquee (Lauftext)
   ========================================================================== */
.wb-marquee { overflow: hidden; border-block: 1px solid var(--wb-hairline); padding: 18px 0; }
.wb-marquee__track { display: flex; width: max-content; animation: wb-marq 32s linear infinite; }
.wb-marquee:hover .wb-marquee__track { animation-play-state: paused; }
.wb-marquee__track > span {
	display: inline-flex; align-items: center; gap: 44px; padding-right: 44px;
	font-family: var(--wb-font-display); font-weight: 700;
	font-size: clamp(18px, 2.4vw, 28px); text-transform: uppercase;
	letter-spacing: -.01em; color: var(--wb-ink); white-space: nowrap;
}
.wb-marquee__track > span::after { content: "✳"; color: var(--wb-mute); font-size: .7em; }
@keyframes wb-marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .wb-marquee__track { animation: none; } }

/* ==========================================================================
   Grundlagen
   ========================================================================== */

body {
	font-family: var(--wb-font-body);
	color: var(--wb-ink);
	background: var(--wb-canvas);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .wb-display {
	font-family: var(--wb-font-display);
	color: var(--wb-ink);
	font-weight: 500;
	letter-spacing: 0;
	margin: 0;
}

/* Editorial-Campaign-Lockup (Hero) */
.wb-display {
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.9;
	font-size: clamp(48px, 8vw, 96px);
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(32px, 4vw, 48px); line-height: 1.1; }
h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.2; }
h3 { font-size: 24px; line-height: 1.2; }
h4 { font-size: 16px; line-height: 1.75; }

a { color: var(--wb-ink); }

.wb-container {
	max-width: var(--wb-container);
	margin-inline: auto;
	padding-inline: clamp(20px, 5vw, 80px);
}

.wb-section { padding-block: var(--wb-s-section); }

.wb-muted { color: var(--wb-mute); }
.wb-accent-text { color: var(--wb-accent); }

/* ==========================================================================
   Buttons / Pills  – einzige Button-Formen: Pill + Icon-Kreis
   ========================================================================== */

.wb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--wb-s-sm);
	height: 48px;
	padding: 0 32px;
	border-radius: var(--wb-r-full);
	font-family: var(--wb-font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .12s ease, opacity .12s ease, background-color .12s ease, color .12s ease;
}
.wb-btn:active { transform: scale(.97); opacity: .9; }

/* Primär: schwarz (die eine kräftige Aktion pro Fold) */
.wb-btn--primary { background: var(--wb-ink); color: var(--wb-on-ink); }

/* Akzent: in Bereichsfarbe – für den bereichs-typischen Haupt-CTA */
.wb-btn--accent { background: var(--wb-accent); color: var(--wb-accent-ink); }
.wb-btn--accent:hover { background: var(--wb-accent-strong); }

/* Sekundär: weiche Fläche */
.wb-btn--secondary { background: var(--wb-cloud); color: var(--wb-ink); }

/* Outline auf Bild */
.wb-btn--on-image { background: var(--wb-canvas); color: var(--wb-ink); }

/* Ghost mit Bereichsfarbe */
.wb-btn--ghost { background: transparent; color: var(--wb-accent); border-color: var(--wb-hairline); }
.wb-btn--ghost:hover { border-color: var(--wb-accent); }

.wb-btn--sm { height: 40px; padding: 0 20px; font-size: 14px; }

/* Icon-Kreis */
.wb-icon-btn {
	width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: var(--wb-r-full);
	background: var(--wb-cloud); color: var(--wb-ink);
	border: 0; cursor: pointer;
}

/* ==========================================================================
   Chips / Filter
   ========================================================================== */

.wb-chip {
	display: inline-flex; align-items: center;
	height: 40px; padding: 0 16px;
	border-radius: var(--wb-r-full);
	border: 1px solid var(--wb-hairline);
	background: var(--wb-canvas); color: var(--wb-ink);
	font-size: 14px; font-weight: 500;
	cursor: pointer;
}
.wb-chip.is-active { background: var(--wb-accent); color: var(--wb-accent-ink); border-color: var(--wb-accent); }

/* ==========================================================================
   Karten
   ========================================================================== */

.wb-card {
	background: var(--wb-canvas);
	border-radius: var(--wb-r-none);
	padding: 0;
}
.wb-card__media {
	background: var(--wb-cloud);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.wb-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Feature-/Leistungs-Karte (mit dünnem Rahmen, Nummer/Icon in Bereichsfarbe) */
.wb-feature {
	background: var(--wb-canvas);
	border: 1px solid var(--wb-hairline);
	border-radius: var(--wb-r-md);
	padding: var(--wb-s-xl);
	transition: border-color .15s ease, transform .15s ease;
}
.wb-feature:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.wb-feature--link { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.wb-feature__more { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--wb-accent); }
.wb-bg-ink .wb-feature { background: #1b1b1d; border-color: #2a2a2c; }
.wb-bg-ink .wb-feature h3 { color: #fff; }
.wb-bg-ink .wb-feature p { color: var(--wb-stone); }
.wb-feature__num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: var(--wb-r-full);
	background: var(--wb-accent); color: var(--wb-accent-ink);
	font-weight: 700; margin-bottom: var(--wb-s-md);
}
.wb-feature__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 54px; height: 54px; border-radius: var(--wb-r-md);
	background: color-mix(in srgb, var(--wb-accent) 12%, transparent);
	color: var(--wb-accent); font-size: 23px; margin-bottom: 16px;
}
.wb-bg-ink .wb-feature__icon { background: rgba(255,255,255,.07); }
.wb-feature h3 { margin-bottom: var(--wb-s-sm); }
.wb-feature p { color: var(--wb-mute); margin: 0; }

/* ==========================================================================
   Bereichs-Kachel (Dachmarke-Startseite) – Verteil-Element
   ========================================================================== */

.wb-area-tile {
	position: relative;
	display: flex; flex-direction: column; justify-content: flex-start;
	min-height: 340px;
	padding: var(--wb-s-xl);
	background: var(--wb-cloud);
	border-radius: var(--wb-r-md);
	overflow: hidden;
	text-decoration: none; color: var(--wb-ink);
	border: 1px solid var(--wb-hairline);
	transition: border-color .15s ease, transform .15s ease;
}
.wb-area-tile { --wb-accent: var(--wb-area, var(--wb-ink)); } /* Kinder erben Bereichsfarbe */
.wb-area-tile:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
/* farbiger Marker oben */
.wb-area-tile::before {
	content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
	background: var(--wb-area, var(--wb-ink));
}
.wb-area-tile[data-area="software"], .wb-area-tile.sw  { --wb-area: #0FB5AE; }
.wb-area-tile[data-area="it"],       .wb-area-tile.it  { --wb-area: #11151F; }
.wb-area-tile[data-area="web"],      .wb-area-tile.web { --wb-area: #B82840; }
.wb-area-tile__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--wb-area, var(--wb-mute)); }
.wb-area-tile h3 { font-size: 28px; margin: var(--wb-s-xs) 0 var(--wb-s-sm); }
.wb-area-tile p  { color: var(--wb-mute); margin: 0 0 var(--wb-s-md); }
.wb-area-tile .wb-checks { margin-bottom: var(--wb-s-md); }
.wb-area-tile .wb-btn { margin-top: auto; align-self: flex-start; }

/* ==========================================================================
   Prozess-Schritte (Ablauf)
   ========================================================================== */
.wb-steps { display: flex; flex-wrap: wrap; gap: 24px; }
.wb-step { flex: 1 1 200px; position: relative; }
.wb-step__n {
	width: 44px; height: 44px; border-radius: var(--wb-r-full);
	background: var(--wb-accent); color: var(--wb-accent-ink);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 17px; margin-bottom: 14px;
}
.wb-step h4 { font-size: 17px; margin: 0 0 6px; }
.wb-step p  { color: var(--wb-mute); font-size: 14px; line-height: 1.55; margin: 0; }

/* ==========================================================================
   Produkt-/Referenzkarten
   ========================================================================== */
.wb-prod {
	display: flex; flex-direction: column;
	border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-md);
	padding: var(--wb-s-xl); background: var(--wb-canvas);
	text-decoration: none; color: inherit;
	transition: border-color .15s, transform .15s;
}
.wb-prod:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.wb-prod__badge { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--wb-accent); }
.wb-prod h3 { font-size: 22px; margin: 8px 0 8px; }
.wb-prod p { color: var(--wb-mute); font-size: 15px; line-height: 1.55; margin: 0 0 16px; flex: 1; }
.wb-prod__arrow { color: var(--wb-accent); font-weight: 600; }

.wb-ref {
	border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-md);
	padding: var(--wb-s-lg) var(--wb-s-xl); background: var(--wb-canvas);
}
.wb-ref h4 { font-size: 17px; margin: 0 0 4px; }
.wb-ref span { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--wb-accent); }

/* Chip-Reihe (Zielgruppen etc.) – schlichte Outline-Pills schwarz/weiß */
.wb-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.wb-chips span {
	background: transparent; border: 1px solid var(--wb-ink); color: var(--wb-ink);
	border-radius: var(--wb-r-full); padding: 10px 18px; font-size: 15px; font-weight: 500;
	transition: border-color .12s, color .12s;
}
.wb-chips span:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
/* Auf dunklen/farbigen Flächen: weiße Outline */
.wb-bg-ink .wb-chips span, .wb-bg-accent .wb-chips span { border-color: rgba(255,255,255,.4); color: #ffffff; }
.wb-bg-ink .wb-chips span:hover, .wb-bg-accent .wb-chips span:hover { border-color: #ffffff; color: #ffffff; }

/* ==========================================================================
   Info-Popup (Modal) für Hero-Pills
   ========================================================================== */
.wb-hero .wb-chips span { cursor: pointer; }
.wb-hero .wb-chips span::after { content: "+"; margin-left: 9px; opacity: .55; font-weight: 400; }
.wb-hero .wb-chips span:hover::after { opacity: 1; }

.wb-modal[hidden] { display: none; }
.wb-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.wb-modal__backdrop { position: absolute; inset: 0; background: rgba(17,17,17,.55); backdrop-filter: blur(2px); }
.wb-modal__card {
	position: relative; background: var(--wb-canvas); border-radius: var(--wb-r-lg);
	max-width: 460px; width: 100%; padding: 34px;
	box-shadow: 0 24px 60px rgba(0,0,0,.28); animation: wb-pop .18s ease;
}
@keyframes wb-pop { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.wb-modal__close {
	position: absolute; top: 14px; right: 14px; width: 38px; height: 38px;
	border: 0; border-radius: var(--wb-r-full); background: var(--wb-cloud);
	font-size: 22px; line-height: 1; cursor: pointer; color: var(--wb-ink);
}
.wb-modal__close:hover { background: var(--wb-hairline); }
.wb-modal__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--wb-accent); }
.wb-modal__eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--wb-accent); }
.wb-modal__title { font-size: 24px; margin: 14px 0 10px; }
.wb-modal__text { color: var(--wb-mute); line-height: 1.6; margin: 0 0 22px; }
.wb-modal__cta { display: inline-flex; }

/* ==========================================================================
   Slider / Karussell
   ========================================================================== */
.wb-slider { position: relative; }
.wb-slider__viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.wb-slider__viewport::-webkit-scrollbar { display: none; }
.wb-slider__track { display: flex; gap: 20px; padding-bottom: 4px; }
.wb-slide { scroll-snap-align: start; flex: 0 0 auto; width: min(420px, 80%); }
@media (max-width: 599px) { .wb-slide { width: 86%; } }

.wb-slider__nav { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.wb-slider__btn {
	width: 46px; height: 46px; border-radius: var(--wb-r-full);
	border: 1px solid var(--wb-hairline); background: var(--wb-canvas);
	color: var(--wb-ink); font-size: 20px; line-height: 1; cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: border-color .12s, color .12s, background .12s;
}
.wb-slider__btn:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
.wb-slider__btn[disabled] { opacity: .35; cursor: default; }
.wb-slider__dots { display: flex; gap: 8px; margin-left: auto; }
.wb-slider__dots button {
	width: 8px; height: 8px; padding: 0; border: 0; border-radius: var(--wb-r-full);
	background: var(--wb-hairline); cursor: pointer; transition: background .12s, width .12s;
}
.wb-slider__dots button.is-active { background: var(--wb-accent); width: 22px; }
.wb-bg-ink .wb-slider__btn, .wb-bg-accent .wb-slider__btn { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }

/* Browser-Mockup / Screenshot-Karte */
.wb-shot { display: block; border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-md); overflow: hidden; background: var(--wb-canvas); text-decoration: none; transition: border-color .15s, transform .15s; }
.wb-shot:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.wb-shot__bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--wb-cloud); border-bottom: 1px solid var(--wb-hairline); }
.wb-shot__bar i { width: 10px; height: 10px; border-radius: var(--wb-r-full); background: var(--wb-hairline); display: inline-block; }
.wb-shot__bar em { margin-left: 10px; font-style: normal; font-size: 12px; color: var(--wb-mute); }
.wb-shot__img { position: relative; aspect-ratio: 16/10; background-size: cover; background-position: top center; display: flex; align-items: flex-end; padding: 20px; }
.wb-shot__img--ph { background: linear-gradient(135deg, color-mix(in srgb, var(--wb-accent) 16%, #fff), color-mix(in srgb, var(--wb-accent) 40%, #fff)); }
.wb-shot__label { font-family: var(--wb-font-display); font-weight: 700; font-size: 22px; color: var(--wb-ink); }
.wb-slide__meta { padding: 16px 4px 0; }
.wb-slide__meta h4 { font-size: 18px; margin: 0 0 4px; }
.wb-slide__meta p { font-size: 14px; color: var(--wb-mute); margin: 0; }
.wb-slide__tag { font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--wb-accent); }

/* ==========================================================================
   Preistabellen
   ========================================================================== */
.wb-price-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.wb-price-card {
	flex: 1 1 240px; display: flex; flex-direction: column;
	border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-md);
	padding: var(--wb-s-xl); background: var(--wb-canvas);
	transition: border-color .15s, transform .15s;
}
.wb-price-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.wb-price-card.is-featured { border-color: var(--wb-accent); box-shadow: inset 0 0 0 1px var(--wb-accent); }
.wb-price-badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: var(--wb-accent); border-radius: var(--wb-r-full); padding: 4px 12px; margin-bottom: 10px; align-self: flex-start; }
.wb-price-card__name { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--wb-accent); }
.wb-price-card__price { font-family: var(--wb-font-display); font-weight: 800; font-size: 40px; line-height: 1; margin: 12px 0 16px; display: flex; align-items: baseline; gap: 8px; }
.wb-price-card__price small { font-family: var(--wb-font-body); font-size: 13px; font-weight: 500; color: var(--wb-mute); }
.wb-price-card__desc { color: var(--wb-mute); font-size: 14px; line-height: 1.55; margin: 6px 0 16px; }
.wb-price-card .wb-checks { margin-bottom: 18px; }
.wb-price-card .wb-btn { margin-top: auto; }
.wb-freqs { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 18px; }
.wb-freq { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--wb-hairline); padding-bottom: 8px; }
.wb-freq span { font-size: 14px; color: var(--wb-mute); }
.wb-freq b { font-family: var(--wb-font-display); font-size: 21px; }
.wb-pricenote h3 { font-size: 18px; margin: 0 0 10px; }
.wb-pricenote p, .wb-pricenote li { color: var(--wb-charcoal); font-size: 14px; line-height: 1.6; }
.wb-pricenote p strong { color: var(--wb-ink); }

/* ==========================================================================
   FAQ / Disclosure
   ========================================================================== */

.wb-faq__row {
	border-bottom: 1px solid var(--wb-hairline);
	padding: var(--wb-s-xl) 0;
}
.wb-faq__q { font-weight: 500; font-size: 16px; display: flex; justify-content: space-between; gap: var(--wb-s-md); cursor: pointer; }
.wb-faq__a { color: var(--wb-mute); margin-top: var(--wb-s-md); }

/* ==========================================================================
   Navigation / aktiver Bereich
   ========================================================================== */

/* aktiver Menüpunkt bekommt Unterstrich in Bereichsfarbe */
.wb-nav a.is-active { box-shadow: inset 0 -2px 0 var(--wb-accent); }

/* Header / Footer Grundflächen */
.wb-header { background: var(--wb-canvas); border-bottom: 1px solid var(--wb-hairline-sft); }
.wb-footer { background: var(--wb-canvas); border-top: 1px solid var(--wb-hairline); color: var(--wb-mute); }

/* ==========================================================================
   Globaler Header (Elementor Theme Builder)
   ========================================================================== */
.wb-site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--wb-hairline-sft);
}
.wb-header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; min-height: 140px; padding-block: 8px;
}
.wb-brand { display: flex; align-items: center; gap: 0; text-decoration: none; }
.wb-site-header .wb-brand__logo { height: 120px !important; width: auto !important; max-height: 120px; }
/* Bereichsspezifisches Logo: Standard = Wortmarke „brand", Bereiche überschreiben.
   Tagline steckt jetzt im Logo-Bild – separater Text-Tag entfällt. */
.wb-site-header .wb-brand__logo { display: none; }
.wb-site-header .logo-brand { display: block; }
body.theme-software .wb-site-header .logo-brand { display: none; }
body.theme-software .wb-site-header .logo-software { display: block; }
body.theme-web .wb-site-header .logo-brand { display: none; }
body.theme-web .wb-site-header .logo-web { display: block; }
body.theme-it .wb-site-header .logo-brand { display: none; }
body.theme-it .wb-site-header .logo-it { display: block; }
.wb-brand__tag { display: none; }
.wb-tag { display: none; }

.wb-nav { display: flex; align-items: center; gap: 26px; }
.wb-nav a { position: relative; padding: 6px 0; font-weight: 500; font-size: 15px; color: var(--wb-ink); text-decoration: none; white-space: nowrap; transition: color .12s, box-shadow .12s; }
.wb-nav a.wb-btn { padding: 0 20px; color: var(--wb-on-ink); }
/* Hover: jeweilige Bereichsfarbe „vorschauen" */
.wb-nav a.nav-software:hover { color: #0FB5AE; box-shadow: inset 0 -2px 0 #0FB5AE; }
.wb-nav a.nav-it:hover       { color: #1E2A4A; box-shadow: inset 0 -2px 0 #1E2A4A; }
.wb-nav a.nav-web:hover      { color: #B82840; box-shadow: inset 0 -2px 0 #B82840; }
.wb-nav a.nav-toolbox:hover  { color: #0FB5AE; box-shadow: inset 0 -2px 0 #0FB5AE; }
.wb-nav a.nav-ueber:hover    { color: var(--wb-ink); box-shadow: inset 0 -2px 0 var(--wb-ink); }
.wb-nav a.wb-btn:hover       { box-shadow: none; color: var(--wb-on-ink); }
/* Aktiver Bereich: Unterstrich in Bereichsfarbe */
body.theme-software .wb-nav a.nav-software,
body.theme-it       .wb-nav a.nav-it,
body.theme-web      .wb-nav a.nav-web { box-shadow: inset 0 -2px 0 var(--wb-accent); }

/* Dropdown-Menüs */
.wb-nav__item { position: relative; display: inline-flex; align-items: center; }
.wb-has-sub > a { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: var(--wb-r-full); transition: color .12s, background-color .14s; }
.wb-has-sub > a::after {
	content: ""; width: 6px; height: 6px; margin-top: -3px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg); opacity: .55; transition: transform .15s;
}
.wb-has-sub:hover > a::after { transform: rotate(45deg) translate(1px, 1px); opacity: .9; }
.wb-sub {
	position: absolute; top: calc(100% + 12px); left: -12px; min-width: 244px;
	/* Panel in Bereichsfarbe (pro Bereich unten überschrieben) */
	background: #1E2A4A;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 12px; padding: 8px;
	display: flex; flex-direction: column; gap: 2px;
	box-shadow: 0 22px 50px rgba(17,17,17,.24), 0 4px 14px rgba(17,17,17,.12);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
	z-index: 200;
}
/* Bereichsfarbe je Menüpunkt (Nachbar-Kombinator: .wb-sub folgt dem <a>) */
a.nav-software ~ .wb-sub { background: #0FB5AE; }
a.nav-web      ~ .wb-sub { background: #B82840; }
a.nav-it       ~ .wb-sub { background: #1E2A4A; }
/* unsichtbare Hover-Brücke überspannt den Abstand zum Menüpunkt */
.wb-sub::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.wb-has-sub:hover .wb-sub, .wb-has-sub:focus-within .wb-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.wb-sub a { padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: #ffffff; box-shadow: none !important; }
.wb-sub a:hover { background: rgba(255,255,255,.16); color: #ffffff; }

/* Hauptmenüpunkt beim Hover/geöffnet in Bereichsfarbe füllen */
.wb-has-sub:hover > a.nav-software, .wb-has-sub:focus-within > a.nav-software { background: #0FB5AE; color: #ffffff; box-shadow: none; }
.wb-has-sub:hover > a.nav-web,      .wb-has-sub:focus-within > a.nav-web      { background: #B82840; color: #ffffff; box-shadow: none; }
.wb-has-sub:hover > a.nav-it,       .wb-has-sub:focus-within > a.nav-it       { background: #1E2A4A; color: #ffffff; box-shadow: none; }

/* Übrige Menüpunkte (ohne Untermenü, kein Button): beim Hover schwarz füllen */
.wb-nav__item:not(.wb-has-sub) > a:not(.wb-btn) { padding: 6px 14px; border-radius: var(--wb-r-full); transition: color .12s, background-color .14s; }
.wb-nav__item:not(.wb-has-sub) > a:not(.wb-btn):hover,
.wb-nav__item:not(.wb-has-sub) > a:not(.wb-btn):focus-visible { background: var(--wb-ink); color: #ffffff; box-shadow: none; }

/* Mobile-Navigation (CSS-only Toggle) */
.wb-nav-toggle { display: none; }
.wb-burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-full); background: var(--wb-canvas); cursor: pointer; }
.wb-burger span, .wb-burger span::before, .wb-burger span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--wb-ink); position: relative; }
.wb-burger span::before { position: absolute; top: -6px; }
.wb-burger span::after  { position: absolute; top: 6px; }
@media (max-width: 900px) {
	.wb-burger { display: inline-flex; }
	/* kompakter Header auf Mobil: kleineres Logo, Tagline aus */
	.wb-header-inner { min-height: 72px; }
	.wb-brand { flex-direction: row; align-items: center; gap: 0; }
	.wb-site-header .wb-brand__logo { height: 54px !important; max-height: 54px; }
	.wb-brand__tag { display: none; }
	.wb-nav {
		position: fixed; inset: 84px 0 auto 0; flex-direction: column; align-items: flex-start;
		background: var(--wb-canvas); padding: 20px 24px; gap: 16px;
		border-bottom: 1px solid var(--wb-hairline);
		transform: translateY(-130%); transition: transform .22s ease;
		box-shadow: 0 12px 24px rgba(0,0,0,.06);
	}
	.wb-nav-toggle:checked ~ .wb-nav { transform: translateY(0); }
	.wb-nav a { font-size: 17px; }
	.wb-nav { max-height: calc(100vh - 84px); overflow-y: auto; }
	.wb-nav__item { display: block; width: 100%; }
	.wb-has-sub > a::after { display: none; }
	.wb-sub,
	a.nav-software ~ .wb-sub, a.nav-web ~ .wb-sub, a.nav-it ~ .wb-sub {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 0; padding: 2px 0 6px; min-width: 0;
		border-left: 2px solid var(--wb-hairline); border-radius: 0;
		margin: 8px 0 4px 2px; background: transparent;
	}
	.wb-sub::before { display: none; }
	.wb-sub a { font-size: 15px; padding: 8px 12px; color: var(--wb-ink); }
	.wb-sub a:hover { background: transparent; color: var(--wb-accent); }
	/* Menüpunkte im Burger nicht als Pille füllen */
	.wb-has-sub > a,
	.wb-nav__item:not(.wb-has-sub) > a:not(.wb-btn) { padding: 6px 0; border-radius: 0; }
	.wb-has-sub:hover > a.nav-software, .wb-has-sub:focus-within > a.nav-software,
	.wb-has-sub:hover > a.nav-web, .wb-has-sub:focus-within > a.nav-web,
	.wb-has-sub:hover > a.nav-it, .wb-has-sub:focus-within > a.nav-it,
	.wb-nav__item:not(.wb-has-sub) > a:not(.wb-btn):hover,
	.wb-nav__item:not(.wb-has-sub) > a:not(.wb-btn):focus-visible { background: transparent; color: var(--wb-ink); }
}

/* ==========================================================================
   Globaler Footer (Elementor Theme Builder)
   ========================================================================== */
.wb-site-footer { background: var(--wb-canvas); border-top: 1px solid var(--wb-hairline); padding-block: 48px; }
.wb-footer-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.wb-footer-brand { flex: 1 1 280px; max-width: 340px; }
.wb-site-footer .wb-footer-brand img { height: 40px !important; width: auto !important; max-height: 40px; margin-bottom: 14px; }
.wb-footer-brand p { color: var(--wb-mute); font-size: 14px; line-height: 1.6; margin: 0; }
.wb-footer-col { flex: 1 1 150px; }
.wb-footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--wb-ink); margin: 0 0 12px; }
.wb-footer-col a { display: block; color: var(--wb-mute); text-decoration: none; font-size: 14px; padding: 4px 0; }
.wb-footer-col a:hover { color: var(--wb-ink); }
.wb-footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--wb-hairline); margin-top: 32px; padding-top: 16px; font-size: 12px; color: var(--wb-mute); }
.wb-footer-bottom a { color: var(--wb-mute); text-decoration: none; }
.wb-footer-bottom a:hover { color: var(--wb-ink); }

/* ==========================================================================
   Rechtstexte (Impressum / Datenschutz)
   ========================================================================== */
.wb-legal { max-width: 820px; }
.wb-legal h2 { font-size: clamp(21px, 2.4vw, 28px); margin: 40px 0 12px; letter-spacing: -.01em; }
.wb-legal h3 { font-size: 18px; margin: 26px 0 8px; }
.wb-legal p, .wb-legal li { color: var(--wb-charcoal); line-height: 1.7; margin: 0 0 12px; }
.wb-legal ul { padding-left: 20px; margin: 0 0 16px; }
.wb-legal a { color: var(--wb-accent); }
.wb-legal strong { color: var(--wb-ink); }
.wb-legal .wb-legal__meta { color: var(--wb-mute); font-size: 14px; }

/* ==========================================================================
   Kontakt & Formular
   ========================================================================== */
.wb-contact-cards { display: flex; flex-wrap: wrap; gap: 20px; }
.wb-contact-card {
	flex: 1 1 240px; display: flex; gap: 16px; align-items: flex-start;
	border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-md); padding: var(--wb-s-xl);
}
.wb-contact-card i { color: var(--wb-accent); font-size: 22px; width: 26px; text-align: center; margin-top: 2px; }
.wb-contact-card b { display: block; font-size: 15px; margin-bottom: 4px; }
.wb-contact-card a, .wb-contact-card span { color: var(--wb-mute); text-decoration: none; }
.wb-contact-card a:hover { color: var(--wb-accent); }

.wb-formwrap { max-width: 760px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 24px); }
/* Kontaktformular-Abschnitt (letzter Container NUR im Seiteninhalt) boxed –
   nicht Header/Footer (eigene .elementor-Wrapper) treffen! */
.page-id-14 .elementor-14 > .e-con:last-child {
	max-width: 820px; margin-inline: auto;
	padding-inline: clamp(20px, 5vw, 24px); padding-block: var(--wb-s-section);
}
/* Elementor-Formular an das Design anpassen */
.wb-formwrap .elementor-field-group > label { font-weight: 500; font-size: 14px; margin-bottom: 6px; }
.wb-formwrap .elementor-field:not(.elementor-field-type-submit) {
	border: 1px solid var(--wb-hairline) !important; border-radius: 14px !important;
	padding: 12px 16px !important; background: var(--wb-canvas) !important;
	min-height: 48px; font-family: var(--wb-font-body) !important; font-size: 16px !important;
}
.wb-formwrap textarea.elementor-field { min-height: 130px !important; }
.wb-formwrap .elementor-field:focus { border-color: var(--wb-accent) !important; box-shadow: 0 0 0 3px color-mix(in srgb, var(--wb-accent) 16%, transparent) !important; outline: none !important; }
.wb-formwrap .elementor-button {
	border-radius: var(--wb-r-full) !important; background: var(--wb-ink) !important; color: #fff !important;
	padding: 0 32px !important; height: 48px !important; font-weight: 500 !important;
}
.wb-formwrap .elementor-button:hover { background: var(--wb-accent) !important; }

/* ==========================================================================
   Contact Form 7
   ========================================================================== */
.wb-cf7 .wb-cf7-row { display: flex; flex-wrap: wrap; gap: 18px; }
.wb-cf7 .wb-cf7-row > p { flex: 1 1 240px; margin: 0; }
.wb-cf7 p { margin: 0 0 16px; }
.wb-cf7 label { display: block; font-weight: 500; font-size: 14px; color: var(--wb-ink); }
.wb-cf7 .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-list-item-label) {
	width: 100%; margin-top: 6px; border: 1px solid var(--wb-hairline); border-radius: 14px;
	padding: 12px 16px; background: var(--wb-canvas); font-family: var(--wb-font-body);
	font-size: 16px; min-height: 48px; color: var(--wb-ink);
}
.wb-cf7 textarea.wpcf7-form-control { min-height: 140px; resize: vertical; }
.wb-cf7 .wpcf7-form-control:focus { border-color: var(--wb-accent); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--wb-accent) 16%, transparent); }
.wb-cf7 .wpcf7-submit {
	appearance: none; border: 0; cursor: pointer;
	height: 50px; padding: 0 34px; border-radius: var(--wb-r-full);
	background: var(--wb-ink); color: #fff; font-weight: 500; font-size: 16px;
	transition: background .12s, transform .12s;
}
.wb-cf7 .wpcf7-submit:hover { background: var(--wb-accent); }
.wb-cf7 .wpcf7-submit:active { transform: scale(.98); }
.wb-cf7 .wpcf7-spinner { margin: 0 0 0 12px; }
.wb-cf7 .wpcf7-not-valid-tip { color: #d30005; font-size: 13px; margin-top: 4px; }
.wpcf7-response-output { border-radius: 12px !important; margin: 16px 0 0 !important; padding: 12px 16px !important; }
/* reCAPTCHA-Badge dezent */
.grecaptcha-badge { z-index: 90; }

/* ==========================================================================
   Blog – Einzelbeitrag & Archiv
   ========================================================================== */
/* Lesbare Beitrags-Typografie */
.elementor-widget-theme-post-content { max-width: 760px; margin-inline: auto; }
.elementor-widget-theme-post-content p,
.elementor-widget-theme-post-content li { font-size: 18px; line-height: 1.75; color: var(--wb-charcoal); }
.elementor-widget-theme-post-content h2 { font-size: clamp(24px,3vw,32px); margin: 40px 0 12px; letter-spacing: -.01em; }
.elementor-widget-theme-post-content h3 { font-size: 22px; margin: 30px 0 10px; }
.elementor-widget-theme-post-content ul, .elementor-widget-theme-post-content ol { padding-left: 22px; margin: 0 0 18px; }
.elementor-widget-theme-post-content img { border-radius: var(--wb-r-md); }
.elementor-widget-theme-post-content blockquote {
	border-left: 3px solid var(--wb-accent); padding: 6px 0 6px 20px; margin: 24px 0;
	font-size: 20px; color: var(--wb-ink);
}
.elementor-widget-theme-post-content a { color: var(--wb-accent); }
/* Featured Image im Einzelbeitrag */
.single .elementor-widget-theme-post-featured-image img { border-radius: var(--wb-r-lg); max-width: 760px; margin-inline: auto; display: block; width: 100%; margin-bottom: 32px; }
/* Elementor-Platzhalterbild ausblenden (Beiträge ohne Beitragsbild) */
.elementor-widget-theme-post-featured-image img[src*="/elementor/assets/images/placeholder"] { display: none; }

/* Blog-Meta (Datum) */
.wb-post-meta { color: var(--wb-stone); font-size: 14px; margin-top: 10px; }

/* Archiv-Karten an Design angleichen */
.elementor-posts .elementor-post {
	border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-md); overflow: hidden;
	background: var(--wb-canvas); transition: border-color .15s, transform .15s;
}
.elementor-posts .elementor-post:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.elementor-posts .elementor-post__thumbnail { border-radius: 0; }
.elementor-posts .elementor-post__text { padding: 22px; }
.elementor-posts .elementor-post__title a { color: var(--wb-ink); font-family: var(--wb-font-display); }
.elementor-posts .elementor-post__title a:hover { color: var(--wb-accent); }
.elementor-posts .elementor-post__read-more { color: var(--wb-accent); font-weight: 600; text-decoration: none; }
.elementor-posts .elementor-post__meta-data { color: var(--wb-stone); font-size: 13px; }

/* ==========================================================================
   Native Elementor-Widgets ans Design angleichen (für editierbare Seiten)
   ========================================================================== */
/* Buttons */
.elementor-widget-button .elementor-button {
	border-radius: var(--wb-r-full) !important; font-family: var(--wb-font-body);
	font-weight: 500; font-size: 16px; padding: 15px 30px; line-height: 1;
	transition: background .12s, color .12s, border-color .12s, transform .12s;
}
.elementor-widget-button .elementor-button:active { transform: scale(.97); }
.wb-b-primary .elementor-button { background: var(--wb-ink); color: #fff; }
.wb-b-primary .elementor-button:hover { background: var(--wb-accent); color: #fff; }
.wb-b-accent .elementor-button { background: var(--wb-accent); color: #fff; }
.wb-b-accent .elementor-button:hover { background: var(--wb-accent-strong); color: #fff; }
.wb-b-white .elementor-button { background: #fff; color: var(--wb-ink); }
.wb-b-white .elementor-button:hover { background: var(--wb-cloud); }
.wb-b-ghost .elementor-button { background: transparent; border: 1px solid var(--wb-hairline); color: var(--wb-ink); }
.wb-b-ghost .elementor-button:hover { border-color: var(--wb-accent); color: var(--wb-accent); }
.wb-on-dark.wb-b-ghost .elementor-button { border-color: rgba(255,255,255,.4); color: #fff; }
.wb-on-dark.wb-b-ghost .elementor-button:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Überschriften/Text auf dunkler Fläche */
.wb-on-dark .elementor-heading-title { color: #fff !important; }
.wb-on-dark.elementor-widget-text-editor, .wb-on-dark .elementor-widget-container { color: var(--wb-stone); }

/* Eyebrow-Heading */
.wb-eyebrow-h .elementor-heading-title { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--wb-accent); }
.wb-on-dark.wb-eyebrow-h .elementor-heading-title { color: rgba(255,255,255,.7) !important; }
/* Bereichs-Badge als Heading (Eyebrow mit Linie davor) */
.wb-badge-h .elementor-heading-title { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--wb-accent); }
.wb-badge-h .elementor-heading-title::before { content: ""; width: 26px; height: 2px; background: var(--wb-accent); }
/* native Lead-/Fließtext in dunklen/farbigen Sektionen */
.wb-bg-ink .elementor-widget-text-editor, .wb-bg-accent .elementor-widget-text-editor { color: var(--wb-stone); }
.wb-bg-accent .elementor-widget-text-editor { color: rgba(255,255,255,.85); }
.wb-bg-ink .elementor-heading-title, .wb-bg-accent .elementor-heading-title { color: #fff; }

/* Kontakt-Info als Icon-Box (Icon links) */
.wb-cicard { border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-md); padding: var(--wb-s-xl); }
.wb-cicard .elementor-icon-box-wrapper { display: flex; align-items: flex-start; gap: 14px; text-align: left; }
.wb-cicard .elementor-icon-box-icon { margin: 0 !important; flex: 0 0 auto; }
.wb-cicard .elementor-icon-box-icon .elementor-icon { color: var(--wb-accent); font-size: 22px; width: 26px; height: auto; background: none; }
.wb-cicard .elementor-icon-box-icon .elementor-icon svg { fill: var(--wb-accent); width: 22px; height: 22px; }
.wb-cicard .elementor-icon-box-title { font-size: 15px; margin: 0 0 4px; font-weight: 600; }
.wb-cicard .elementor-icon-box-description { color: var(--wb-mute); font-size: 14px; line-height: 1.5; margin: 0; }
.wb-cicard:hover .elementor-icon-box-description { color: var(--wb-accent); }

/* Icon-Box als Design-Karte (wie .wb-feature) */
.wb-icard { border: 1px solid var(--wb-hairline); border-radius: var(--wb-r-md); padding: var(--wb-s-xl); background: var(--wb-canvas); transition: box-shadow .15s, transform .15s; }
.wb-icard:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.wb-icard .elementor-icon-box-wrapper { text-align: left; }
.wb-icard .elementor-icon-box-icon { margin-bottom: 16px; }
.wb-icard .elementor-icon-box-icon .elementor-icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: var(--wb-r-md); background: color-mix(in srgb, var(--wb-accent) 12%, transparent); color: var(--wb-accent); font-size: 23px; }
.wb-icard .elementor-icon-box-icon .elementor-icon svg { width: 23px; height: 23px; fill: var(--wb-accent); }
.wb-icard .elementor-icon-box-title { font-size: 22px; margin: 0 0 8px; font-family: var(--wb-font-display); font-weight: 500; }
.wb-icard .elementor-icon-box-description { color: var(--wb-mute); font-size: 15px; line-height: 1.6; margin: 0; }

/* Rechtstexte als native Widgets (Impressum/Datenschutz) */
.wb-lh2, .wb-lh3, .wb-lt { max-width: 820px; width: 100%; margin-inline: auto; }
.wb-lh2 .elementor-heading-title { font-size: clamp(21px, 2.4vw, 28px); margin: 40px 0 12px; letter-spacing: -.01em; font-weight: 700; line-height: 1.2; }
.wb-lh2:first-child .elementor-heading-title, .elementor-element:first-child > .wb-lh2 .elementor-heading-title { margin-top: 0; }
.wb-lh3 .elementor-heading-title { font-size: 18px; margin: 26px 0 8px; font-weight: 700; }
.wb-lt .elementor-widget-container { color: var(--wb-charcoal); line-height: 1.7; }
.wb-lt p { margin: 0 0 12px; }
.wb-lt ul { padding-left: 20px; margin: 0 0 16px; }
.wb-lt li { color: var(--wb-charcoal); line-height: 1.7; margin: 0 0 6px; }
.wb-lt a { color: var(--wb-accent); text-decoration: underline; }
.wb-lmeta .elementor-widget-container { color: var(--wb-mute); font-size: 14px; margin-top: 32px; }

/* ==========================================================================
   Utilities
   ========================================================================== */

/* --- Homepage-Helfer / Farbklassen --- */
.wb-c-sw  { color: #0FB5AE; }
.wb-c-it  { color: #11151F; }
.wb-c-web { color: #B82840; }
/* Auf schwarzer Fläche: hellere Varianten (Navy wäre sonst unsichtbar) */
.wb-bg-ink .wb-c-sw  { color: #2AD4CD; }
.wb-bg-ink .wb-c-it  { color: #6EA8FF; }
.wb-bg-ink .wb-c-web { color: #F0506E; }
.wb-bg-cloud { background: var(--wb-cloud); }

/* Schwarze Fläche – Akzent wechselt auf helle Variante */
.wb-bg-ink {
	background: var(--wb-ink); color: var(--wb-on-ink);
	--wb-accent: var(--wb-accent-ondark, #ffffff);
}
.wb-bg-ink h1, .wb-bg-ink h2, .wb-bg-ink h3 { color: var(--wb-on-ink); }
.wb-bg-ink p, .wb-bg-ink .wb-muted, .wb-bg-ink .wb-lead { color: var(--wb-stone); }

/* Bereichsfarbe als Vollfläche (Signatur-Band) */
.wb-bg-accent {
	background: var(--wb-accent); color: #ffffff;
}
.wb-bg-accent h1, .wb-bg-accent h2, .wb-bg-accent h3 { color: #ffffff; }
.wb-bg-accent p, .wb-bg-accent .wb-muted, .wb-bg-accent .wb-lead { color: rgba(255,255,255,.85); }
.wb-bg-accent .wb-eyebrow, .wb-bg-accent .wb-area-badge { color: #ffffff; }
.wb-bg-accent .wb-area-badge::before { background: #ffffff; }
.wb-bg-accent .wb-step__n { background: #ffffff; color: var(--wb-accent); }
.wb-bg-accent .wb-step p { color: rgba(255,255,255,.85); }
.wb-bg-accent .wb-checks li { color: rgba(255,255,255,.92); }
.wb-bg-accent .wb-checks li::before { background: #ffffff; }
.wb-bg-accent .wb-area-tile__eyebrow { color: #ffffff; }

/* IT-Akzentbutton auf hellen Flächen: die IT-Akzentfarbe (#11151F) ist fast
   schwarz und würde beim Hover unpassend zum Blau aufhellen. Stattdessen das
   IT-Dunkelblau als Signalfarbe zeigen, das beim Hover nachdunkelt – konsistent
   zu Türkis (Software) und Rot (Web). Dunkle Flächen (.wb-bg-ink) überschreiben
   das weiter unten. */
.theme-it .wb-btn--accent { background: var(--wb-accent-strong); color: #ffffff; }
.theme-it .wb-btn--accent:hover { background: color-mix(in srgb, var(--wb-accent-strong) 78%, #000); color: #ffffff; }

/* Outline-Buttons auf dunklen/farbigen Flächen */
.wb-bg-ink .wb-btn--ghost, .wb-bg-accent .wb-btn--ghost { border-color: rgba(255,255,255,.45); color: #ffffff; }
.wb-bg-ink .wb-btn--ghost:hover, .wb-bg-accent .wb-btn--ghost:hover { border-color: #ffffff; background: rgba(255,255,255,.08); }
.wb-bg-accent .wb-btn--accent { background: #ffffff; color: var(--wb-accent); }
/* Akzent-CTA auf schwarzer Fläche: helle Bereichsfarbe mit dunklem Text (lesbar),
   beim Hover dunklere Bereichsfarbe mit weißem Text. Behebt u. a. das IT-Blau. */
.wb-bg-ink .wb-btn--accent { background: var(--wb-accent-ondark); color: var(--wb-ink); }
.wb-bg-ink .wb-btn--accent:hover { background: var(--wb-accent-strong); color: #ffffff; }
.wb-tagline {
	display: inline-block; font-size: 12px; font-weight: 600;
	letter-spacing: .08em; text-transform: uppercase; color: var(--wb-mute);
	background: var(--wb-cloud); border: 1px solid var(--wb-hairline);
	border-radius: var(--wb-r-full); padding: 8px 14px;
}
.wb-bg-ink .wb-tagline { background: transparent; border-color: rgba(255,255,255,.28); color: var(--wb-stone); }
/* Hero-Lockup: enge Zeilen */
.wb-hero-lockup { line-height: .9; }

/* Hero-Wortrotator: Wörter gestapelt, nacheinander einblenden, alle drei
   einige Sekunden halten, dann gemeinsam ausblenden und Schleife. */
.wb-rotator .wb-rot { display: block; }                /* Fallback ohne JS: gestapelt, sichtbar */
.wb-js .wb-rotator .wb-rot { opacity: 0; will-change: opacity, transform; }
.wb-js .wb-rotator .wb-rot:nth-child(1) { animation: wb-in1 7s infinite; }
.wb-js .wb-rotator .wb-rot:nth-child(2) { animation: wb-in2 7s infinite; }
.wb-js .wb-rotator .wb-rot:nth-child(3) { animation: wb-in3 7s infinite; }
/* Einblenden gestaffelt (0 / ~0,6 / ~1,2 s), alle halten bis ~6,3 s, dann ausblenden */
@keyframes wb-in1 { 0%{opacity:0;transform:translateY(20px)} 4%,90%{opacity:1;transform:none} 99%,100%{opacity:0} }
@keyframes wb-in2 { 0%,8%{opacity:0;transform:translateY(20px)} 12%,90%{opacity:1;transform:none} 99%,100%{opacity:0} }
@keyframes wb-in3 { 0%,16%{opacity:0;transform:translateY(20px)} 20%,90%{opacity:1;transform:none} 99%,100%{opacity:0} }
@media (prefers-reduced-motion: reduce) {
	.wb-js .wb-rotator .wb-rot { opacity: 1; animation: none; transform: none; }
}
/* Icon-Liste im Bereichsmarker-Stil (Punkt in Bereichsfarbe) */
.wb-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--wb-s-sm); }
.wb-checks li { display: flex; gap: var(--wb-s-sm); align-items: flex-start; font-size: 14px; }
.wb-checks li::before { content: ""; flex: 0 0 16px; width: 16px; height: 16px; margin-top: 2px; border-radius: var(--wb-r-full); background: var(--wb-accent); }

/* ==========================================================================
   Editorial-Split (Dachmarke-Bereichssektionen)
   ========================================================================== */
.wb-split { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 64px); align-items: center; }
.wb-split__text  { flex: 1 1 430px; min-width: 0; }
.wb-split__media { flex: 1 1 380px; min-width: 0; }
.wb-split--rev .wb-split__media { order: -1; }
@media (max-width: 860px) { .wb-split--rev .wb-split__media { order: 0; } }

.wb-split__text h2 {
	font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08;
	margin: 14px 0 16px; letter-spacing: -0.015em;
}
.wb-split__text .wb-lead {
	color: var(--wb-mute); font-size: clamp(16px, 1.5vw, 18px);
	line-height: 1.6; margin: 0 0 22px; max-width: 54ch;
}

.wb-area-badge {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 12px; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: var(--wb-accent);
}
.wb-area-badge::before { content: ""; width: 26px; height: 2px; background: var(--wb-accent); }

/* Media-Panel mit großer Ziffer (in Bereichsfarbe getönt) */
.wb-media {
	position: relative; overflow: hidden;
	border-radius: var(--wb-r-lg);
	min-height: 340px;
	display: flex; align-items: flex-end; padding: var(--wb-s-xl);
	background: var(--wb-accent); color: #ffffff;
}
.wb-bignum {
	position: absolute; top: -0.18em; right: 0.04em;
	font-family: var(--wb-font-display); font-weight: 800;
	font-size: clamp(140px, 22vw, 280px); line-height: 1;
	color: #ffffff; opacity: .22; pointer-events: none;
}
.wb-media__tags { position: relative; display: flex; flex-wrap: wrap; gap: 8px; }
.wb-media__tags span {
	background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff;
	border-radius: var(--wb-r-full); padding: 7px 14px;
	font-size: 13px; font-weight: 500;
}

/* Icon-Panel (Bild-Ersatz in Bereichsfarbe getönt) */
.wb-media-icon {
	position: relative; overflow: hidden;
	border-radius: var(--wb-r-lg); min-height: 300px;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 18px; text-align: center; padding: 32px;
	background: color-mix(in srgb, var(--wb-accent) 10%, var(--wb-canvas));
	border: 1px solid color-mix(in srgb, var(--wb-accent) 20%, var(--wb-hairline));
}
.wb-media-icon i { font-size: clamp(58px, 10vw, 108px); color: var(--wb-accent); }
.wb-media-icon span { font-weight: 600; font-size: 18px; color: var(--wb-ink); }
.wb-media-icon::after {
	content: ""; position: absolute; inset: auto -20% -40% auto; width: 60%; height: 80%;
	background: radial-gradient(closest-side, color-mix(in srgb, var(--wb-accent) 20%, transparent), transparent);
	filter: blur(20px); opacity: .5; pointer-events: none;
}

/* großes Positionierungs-Statement */
.wb-statement {
	font-family: var(--wb-font-display); font-weight: 700;
	font-size: clamp(26px, 4vw, 46px); line-height: 1.12;
	letter-spacing: -0.015em; max-width: 20ch;
}
.wb-statement .hl { color: var(--wb-accent); }

/* Flex-Reihen (robust gegen Elementor-Defaults) */
.wb-row { display: flex; flex-wrap: wrap; gap: 20px !important; }
.wb-row--tight { gap: 12px !important; }
.wb-col-2 { flex: 1 1 380px; }
.wb-col-3 { flex: 1 1 300px; }
.wb-col-4 { flex: 1 1 210px; }

.wb-grid { display: grid; gap: var(--wb-s-xl); }
.wb-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wb-grid--4 { grid-template-columns: repeat(4, 1fr); }
.wb-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--wb-accent); }
.wb-hairline { border: 0; border-top: 1px solid var(--wb-hairline); margin: var(--wb-s-section) 0; }

@media (max-width: 1023px) {
	.wb-grid--3, .wb-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 599px) {
	.wb-grid--3, .wb-grid--4 { grid-template-columns: 1fr; }
	.wb-section { padding-block: var(--wb-s-xl); }
}
