/* ==========================================================================
   Vorwagner Kreislaufwirtschaft — Global Stylesheet
   Version: 2.0.0

   Farben, Typografie, Layout kommen aus custom-properties.php (Settings Panel).
   Hier nur Font-Stacks, Resets und Component-Styles.
   ========================================================================== */

/* ---------- Fonts (CD AAW088.00 Vorwagner)
   Headlines: Libre Franklin (≈ Franklin Gothic Book CD-konform)
   Body:      Source Serif 4 (≈ Palatino Linotype CD-konform)
   (Kein Mono — CD erlaubt nur Franklin + Palatino.)
   Geladen in header.php via Google Fonts CDN.
---------- */

/* ---------- Font Stacks (CD AAW088.00) ----------
   Überschriften: Franklin Gothic Book → Libre Franklin (Google, offizieller Open-Source-Nachbau)
   Fließtext:     Palatino Linotype → echter System-Font (Win/Mac vorinstalliert) + Fallbacks
---------- */
:root {
    --vw-font-heading: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
    --vw-font-body:    'Palatino Linotype', 'Book Antiqua', Palatino, 'URW Palladio L', 'P052', Georgia, serif;
    --vw-font-sans:    'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
    --vw-font-special: 'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif;
    --vw-font-mono:    'Libre Franklin', -apple-system, BlinkMacSystemFont, sans-serif; /* CD: kein Mono — auf Franklin gemappt */
    --vw-radius-lg: 20px;
    --vw-radius-pill: 50px;
    /* Swiper Card Heights (card image + padding + section padding) */
    --vw-swiper-h: 140px;        /* Desktop: 88px image + 16px card padding + 32px section padding */
    --vw-swiper-h-mobile: 152px; /* Mobile: 60px image + 12px + 32px + ~48px compact header */
    /* Urgency/Topbar bars: gesetzt per JS, Fallback 0 */
    --vw-urgency-h: 0px;
    --vw-topbar-h: 0px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--vw-font-body);
    font-size: var(--vw-body);
    font-weight: var(--vw-body-weight);
    line-height: var(--vw-body-lh);
    color: var(--vw-text);
    background: var(--vw-bg-alt);
    margin: 0 !important;
    padding: 0 !important;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
}
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Scroll lock when mobile nav is open */
body.vw-nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--vw-font-heading);
    color: var(--vw-text);
}
h1 { font-size: var(--vw-h1); font-weight: var(--vw-h1-weight); line-height: var(--vw-h1-lh); }
h2 { font-size: var(--vw-h2); font-weight: var(--vw-h2-weight); line-height: var(--vw-h2-lh); }
h3 { font-size: var(--vw-h3); font-weight: var(--vw-h3-weight); line-height: var(--vw-h3-lh); }
h4 { font-size: var(--vw-h4); font-weight: var(--vw-h4-weight); line-height: var(--vw-h4-lh); }
h5 { font-size: var(--vw-h5); font-weight: var(--vw-h5-weight); line-height: var(--vw-h5-lh); }
h6 { font-size: var(--vw-h6); font-weight: var(--vw-h6-weight); line-height: var(--vw-h6-lh); }

/* ---------- Layout ---------- */
.vw-container {
    max-width: var(--vw-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Layout Wrappers (from section-renderer.php) */
.vw-section-wrap {
    /* Base wrapper — transparent, no visual impact */
}
.vw-layout--full {
    /* Full-width: Hero, CTA — edge-to-edge, no max-width constraint */
    width: 100%;
}
.vw-layout--container {
    /* Container sections — templates handle .vw-container internally */
}

.vw-section {
    padding: var(--vw-section-py) 0;
}
.vw-section--dark {
    background: var(--vw-bg-dark);
    color: var(--vw-text-light);
}
.vw-section--dark h2,
.vw-section--dark h3 { color: var(--vw-text-light); }
/* .vw-section--accent entfernt – nie verwendet */

/* ---------- Buttons ---------- */
.vw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: var(--vw-cta-padding-v) var(--vw-cta-padding-h);
    border-radius: var(--vw-radius-pill);
    font-family: var(--vw-font-heading);
    font-weight: var(--vw-btn-weight);
    font-size: var(--vw-btn-size);
    letter-spacing: var(--vw-btn-spacing);
    text-transform: var(--vw-btn-transform);
    line-height: 1;
    transition: opacity 0.2s;
    cursor: pointer;
}
.vw-btn:hover { opacity: 0.85; }
.vw-btn--yellow { background: var(--vw-cta); color: var(--vw-bg-dark); }
.vw-btn--dark { background: var(--vw-text); color: var(--vw-text-light); }
/* .vw-btn--outline-white entfernt – nie verwendet */

/* Pill Tags */
.vw-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--vw-radius-pill);
    font-family: var(--vw-font-special);
    font-size: var(--vw-badge-size);
    font-weight: 500;
    line-height: var(--vw-badge-lh);
}
.vw-pill--yellow { background: var(--vw-cta); color: var(--vw-bg-dark); }
.vw-pill--glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--vw-text);
    border: 1px solid rgba(255,255,255,0.3);
}

/* Subline */
.vw-subline {
    color: var(--vw-text);
    margin-top: 8px;
    font-size: var(--vw-body);
}

/* ---------- Page Wrapper ---------- */
.vw-page {
    padding: var(--vw-section-py) 0;
}
.vw-page__content {
    max-width: 800px;
    line-height: 1.7;
}
.vw-page__content p { margin-bottom: 16px; }
.vw-page__content h2,
.vw-page__content h3 { margin-top: 32px; margin-bottom: 12px; }

/* ========================================================================
   TOPBAR (Urgency / Aktionen / CRO)
   ======================================================================== */
.vw-topbar {
    background: var(--vw-topbar-bg);
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: var(--vw-font-body);
    position: relative;
    width: 100%;
}
.vw-topbar__inner {
    padding: 10px 2vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 42px;
}
.vw-topbar__inner a {
    color: inherit;
    text-decoration: underline;
}

/* l7-aktionen Plugin: Reset styles inside topbar */
.vw-topbar .l7b {
    position: static !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    z-index: auto !important;
    font-size: inherit !important;
    color: inherit !important;
}
.vw-topbar .l7b-in {
    padding: 0 !important;
}
/* Topbar: Plugin-Elemente font-weight auf normal setzen (außer .l7-clr Highlight) */
.vw-topbar .l7n,
.vw-topbar .l7n-name,
.vw-topbar .l7n-time,
.vw-topbar .l7b-name,
.vw-topbar .l7b-time {
    font-weight: 400 !important;
}

/* ========================================================================
   HEADER / NAVIGATION
   ======================================================================== */
.vw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ── Nav Inner ── */
.vw-header__inner {
    width: 100%;
    padding: 0 2vw;
    display: flex;
    align-items: center;
    gap: 32px;
    height: var(--vw-nav-h);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s, backdrop-filter 0.3s;
}

/* ── Logo ── */
.vw-header__logo { flex-shrink: 0; }
.vw-header__logo img,
.vw-header__logo svg { height: 36px; width: auto; }

/* ── Gemeinsame Nav-Styles (Haupt + Rechts) ── */
.vw-header__nav,
.vw-header__nav-right { display: flex; align-items: center; }

.vw-header__nav ul,
.vw-header__nav-right ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.vw-header__nav li { position: relative; }

.vw-header__nav a,
.vw-header__nav-right a {
    font-family: var(--vw-font-body);
    font-size: var(--vw-nav-font-size);
    font-weight: var(--vw-nav-font-weight);
    line-height: 1;
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.2s;
    white-space: nowrap;
}
.vw-header__nav a:hover,
.vw-header__nav-right a:hover {
    background: var(--vw-bg-alt);
}

/* Active item */
.vw-nav__item--active > a {
    background: var(--vw-bg-alt);
}

/* ── Panel-Trigger Chevron (Items mit Kindern → öffnet Panel auf Hover) ── */
.vw-nav__item--has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    margin-bottom: 2px;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.vw-nav__item--has-dropdown:hover > a::after {
    opacity: 1;
}

/* ── Header Right ── */
.vw-header__right { display: flex; align-items: center; gap: 16px; margin-left: auto; }

/* ── Öffnungszeiten Nav-Icon (l7-business-hours Plugin) ── */
.vw-header__nav-right a:has(.l7-business-hours-nav-icon) {
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
}
.l7-business-hours-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.l7-business-hours-nav-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--vw-text);
}
.l7-business-hours-nav-icon::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(255, 0, 0);
    position: absolute;
    bottom: -1px;
    right: -6px;
}
.l7-business-hours-nav-icon.open::before {
    background: rgb(0, 128, 0);
}

/* Popover (Hover-Text) — Text gibt Größe vor */
.l7-business-hours-popover {
    width: auto !important;
    max-width: none !important;
    padding: 6px 10px !important;
    white-space: nowrap;
}
.l7-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ── Hamburger Toggle (nur Mobile — öffnet Panel) ── */
.vw-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    position: relative;
    z-index: 10000;
}
.vw-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--vw-text);
    transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
    transform-origin: center;
}
.vw-header__toggle--active span {
    background: var(--vw-text-light, #fff);
}
.vw-header__toggle--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.vw-header__toggle--active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.vw-header__toggle--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile: Desktop-Nav ausblenden, Hamburger zeigen ── */
@media (max-width: 1199px) {
    .vw-header__nav { display: none; }
    .vw-header__nav-right li:not(:has(.l7-business-hours-nav-icon)) { display: none; }
    .vw-header__toggle { display: flex; }
}

/* ── Mega-Nav Panel (Dropdown unter Header — Vooban-Style) ── */
.vw-panel {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    visibility: hidden;
}
.vw-panel--open {
    pointer-events: auto;
    visibility: visible;
}

/* Overlay (reiner Blur — Vooban-Style) */
.vw-panel__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    backdrop-filter: blur(var(--vw-panel-overlay-blur, 20px));
    -webkit-backdrop-filter: blur(var(--vw-panel-overlay-blur, 20px));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.vw-panel--open .vw-panel__overlay {
    opacity: 1;
}

/* Drawer — 100vh, von links (Vooban-Style) */
.vw-panel__drawer {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--vw-panel-width, 50vw);
    height: 100vh;
    background: var(--vw-panel-bg, var(--vw-bg-light, #fff));
    color: var(--vw-panel-text, var(--vw-text, #1A1A1A));
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.vw-panel--open .vw-panel__drawer {
    transform: translateX(0);
}

/* Panel Header (Logo + Close) */
.vw-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    flex-shrink: 0;
    position: relative;
}
.vw-panel__logo img,
.vw-panel__logo svg {
    height: 32px;
    width: auto;
}
.vw-panel__close {
    color: var(--vw-panel-text, #1A1A1A);
    font-size: 28px;
    line-height: 1;
    padding: 8px;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.vw-panel__close:hover {
    opacity: 1;
}

/* Panel Nav */
.vw-panel__nav {
    flex: 1;
    padding: 24px 40px 32px;
    overflow-y: auto;
}
.vw-panel__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Panel Items */
.vw-panel__item {
    border-bottom: 1px solid color-mix(in srgb, var(--vw-panel-text, #1A1A1A) 8%, transparent);
}
.vw-panel__item:last-child {
    border-bottom: none;
}
.vw-panel__link {
    display: block;
    padding: 14px 0;
    font-family: var(--vw-font-heading);
    font-size: var(--vw-panel-font-size, 22px);
    font-weight: 800;
    color: var(--vw-panel-text, #1A1A1A);
    transition: color 0.2s;
}
.vw-panel__link:hover {
    color: var(--vw-panel-hover, var(--vw-cta));
}

/* Parent-Link mit Toggle-Icon (+) inline */
.vw-panel__link--parent {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.vw-panel__toggle-icon {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    opacity: 0.4;
    transition: transform 0.3s ease, opacity 0.2s;
    flex-shrink: 0;
}
.vw-panel__link--parent:hover .vw-panel__toggle-icon {
    opacity: 1;
}
/* Expanded state: + → × */
.vw-panel__link--parent[aria-expanded="true"] .vw-panel__toggle-icon {
    transform: rotate(45deg);
}

/* ── Erste Ebene: Parent sichtbar als Überschrift, Kinder aufgeklappt ── */
/* Top-Level Parent (z.B. "Leistungen") im Menü ausblenden — als Badge im Header */
.vw-panel__menu > .vw-panel__item--parent > .vw-panel__link--parent {
    display: none;
}

/* Badge im Panel-Header — gleiche Position wie Nav-Item */
.vw-panel__badge {
    font-family: var(--vw-font-body);
    font-size: var(--vw-nav-font-size, 14px);
    font-weight: var(--vw-nav-font-weight, 400);
    color: var(--vw-panel-text, #1A1A1A);
    position: absolute;
    left: var(--vw-panel-badge-left, 200px);
    background: color-mix(in srgb, var(--vw-panel-text, #1A1A1A) 7%, transparent);
    padding: 6px 14px;
    border-radius: 20px;
}
/* Erste Ebene Sub-Items immer sichtbar (kein Accordion) */
.vw-panel__menu > .vw-panel__item--parent > .vw-panel__sub {
    max-height: none !important;
    overflow: visible;
    padding: 0;
}
.vw-panel__menu > .vw-panel__item--parent {
    border-bottom: none;
}
/* Kinder der ersten Ebene: Top-Level Styling */
.vw-panel__menu > .vw-panel__item--parent > .vw-panel__sub > .vw-panel__item > .vw-panel__link,
.vw-panel__menu > .vw-panel__item--parent > .vw-panel__sub > .vw-panel__item > .vw-panel__link--parent {
    font-size: var(--vw-panel-font-size, 22px);
    font-weight: 800;
    padding: 14px 0;
    color: var(--vw-panel-text, #1A1A1A);
}
/* Promoted Kinder: border-bottom wiederherstellen */
.vw-panel__menu > .vw-panel__item--parent > .vw-panel__sub > .vw-panel__item {
    border-bottom: 1px solid color-mix(in srgb, var(--vw-panel-text, #1A1A1A) 8%, transparent);
}
.vw-panel__menu > .vw-panel__item--parent > .vw-panel__sub > .vw-panel__item:last-child {
    border-bottom: none;
}

/* ── Tiefere Ebenen: Accordion (klappbar) ── */
.vw-panel__sub {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.vw-panel__item--parent[aria-expanded="true"] > .vw-panel__sub {
    max-height: 600px;
    padding: 0 0 8px;
}
/* Sub-Items Styling */
.vw-panel__sub .vw-panel__sub .vw-panel__link {
    font-size: var(--vw-panel-font-size-sub, 17px);
    font-weight: 500;
    padding: 10px 0 10px 20px;
    color: color-mix(in srgb, var(--vw-panel-text, #1A1A1A) 60%, transparent);
}
/* Ebene 3+ */
.vw-panel__sub .vw-panel__sub .vw-panel__sub .vw-panel__link {
    font-size: var(--vw-panel-font-size-sub2, 15px);
    padding-left: 40px;
    color: color-mix(in srgb, var(--vw-panel-text, #1A1A1A) 45%, transparent);
}
.vw-panel__sub .vw-panel__link:hover {
    color: var(--vw-panel-hover, var(--vw-cta));
}
/* Sub-Items: kein border-bottom */
.vw-panel__sub .vw-panel__sub .vw-panel__item {
    border-bottom: none;
}

/* Panel Footer Nav */
.vw-panel__footer-nav {
    padding: 16px 40px 24px;
    flex-shrink: 0;
    border-top: 1px solid color-mix(in srgb, var(--vw-panel-text, #1A1A1A) 8%, transparent);
}
.vw-panel__footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
}
.vw-panel__footer-menu li a {
    font-family: var(--vw-font-body);
    font-size: 13px;
    font-weight: 400;
    color: color-mix(in srgb, var(--vw-panel-text, #1A1A1A) 40%, transparent);
    padding: 6px 0;
    display: block;
    transition: color 0.2s;
}
.vw-panel__footer-menu li a:hover {
    color: var(--vw-panel-hover, var(--vw-cta));
}

/* Stagger-Animation für Panel Items */
.vw-panel--open .vw-panel__item {
    opacity: 0;
    transform: translateY(-8px);
    animation: vw-panel-item-in 0.3s ease forwards;
}
@keyframes vw-panel-item-in {
    to { opacity: 1; transform: translateY(0); }
}
.vw-panel--open .vw-panel__item:nth-child(1) { animation-delay: 0.05s; }
.vw-panel--open .vw-panel__item:nth-child(2) { animation-delay: 0.08s; }
.vw-panel--open .vw-panel__item:nth-child(3) { animation-delay: 0.11s; }
.vw-panel--open .vw-panel__item:nth-child(4) { animation-delay: 0.14s; }
.vw-panel--open .vw-panel__item:nth-child(5) { animation-delay: 0.17s; }
.vw-panel--open .vw-panel__item:nth-child(6) { animation-delay: 0.20s; }
.vw-panel--open .vw-panel__item:nth-child(7) { animation-delay: 0.23s; }
.vw-panel--open .vw-panel__item:nth-child(8) { animation-delay: 0.26s; }
.vw-panel--open .vw-panel__item:nth-child(9) { animation-delay: 0.29s; }
.vw-panel--open .vw-panel__item:nth-child(10) { animation-delay: 0.32s; }

/* Mobile: Panel = 100vw, volle Höhe */
@media (max-width: 767px) {
    .vw-panel__drawer {
        width: 100vw;
        height: 100vh;
        top: 0;
    }
    .vw-panel__nav {
        padding: 16px 20px 24px;
    }
    .vw-panel__footer-nav {
        padding: 12px 20px 20px;
    }
}

/* Tablet: Panel = 65vw */
@media (min-width: 768px) and (max-width: 1199px) {
    .vw-panel__drawer {
        width: 65vw;
    }
}

/* ── Header Scroll State ── */
.vw-header--scrolled .vw-header__inner {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* ========================================================================
   HERO (full-height)
   ======================================================================== */
.vw-hero {
    /* Basis = OHNE Leistungs-Slider: kompakte Höhe (wie vorher auf Detail-Seiten).
       MIT Leistungs-Slider greift die :has-Regel weiter unten → volle Höhe. */
    min-height: 60vh;
    display: flex;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}
@media (min-width: 1200px) {
    .vw-hero { min-height: 70vh; }
}
.vw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Einheitlicher Hero-Layer (überall gleich): dunkler Verlauf von links, ab Mitte auslaufend */
    background: linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.22) 28%, rgba(0,0,0,0) 58%);
    z-index: 1;
}

/* Content: full-width, flex-column, trust bar pushed to bottom */
.vw-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2vw;
    padding-top: 100px;   /* fix: Google-Badge startet überall gleich von oben */
    display: flex;
    flex-direction: column;
}

/* 1. Google Rating Badge */
.vw-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--vw-body);
    align-self: flex-start;
    color: var(--vw-text);
    text-decoration: none;
    transition: background 0.2s;
}
a.vw-hero__badge:hover {
    background: rgba(255,255,255,0.95);
}
/* l7-gps-rating Plugin: Star rendering (CSS-based half-stars) */
.l7-rating-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--vw-font-body);
    font-size: inherit;
    line-height: 1;
}
.l7-stars-wrap {
    position: relative;
    display: inline-block;
    font-size: inherit;
    line-height: 1;
    vertical-align: middle;
}
.l7-stars-bg {
    color: var(--vw-cta);
    opacity: 0.3;
}
.l7-stars-fg {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--vw-cta);
}
.l7-rating-text { color: inherit; }

/* 2. H1 — einheitlich weiß auf dem dunklen Layer */
.vw-hero h1 {
    max-width: 920px;
    margin-top: 20px;
    margin-bottom: 7px;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

/* 3. Subline — einheitlich weiß auf dem dunklen Layer */
.vw-hero__subline {
    max-width: 800px;
    font-size: var(--vw-hero-subline);
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.5);
    margin-bottom: 0;
}
/* Subline-Größe (Section-Option) — skaliert relativ zur Basisgröße */
.vw-hero__subline.vw-hero__subline--lg { font-size: calc(var(--vw-body) * 1.5) !important; line-height: 1.3 !important; }
.vw-hero__subline.vw-hero__subline--xl { font-size: calc(var(--vw-body) * 2)   !important; line-height: 1.25 !important; }

/* 4. CTA Button */
.vw-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--vw-cta);
    border-radius: 50px;
    padding: 6px;
    margin-top: 11px;
    margin-bottom: 0;
    text-decoration: none;
    color: var(--vw-text);
    align-self: flex-start;
}
.vw-hero__cta img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--vw-bg-light);
    flex-shrink: 0;
}
.vw-hero__cta-text { display: flex; flex-direction: column; padding-right: 18px; }
.vw-hero__cta-text strong { display: block; font-family: var(--vw-font-heading); font-size: var(--vw-hero-cta); font-weight: 800; line-height: 1.2; }
.vw-hero__cta-text span { font-size: var(--vw-hero-cta-sub); color: rgba(0, 0, 0, 0.7); line-height: 1.2; }

/* 5. Aktionen (Urgency Bar) */
.vw-hero__aktionen {
    margin-top: 20px;
    max-width: fit-content;
}
.vw-hero__aktionen .l7h {
    max-width: 347px;
}

/* 6. Trust Bar — pushed to bottom via flex */
.vw-hero__trust-wrap {
    margin-top: auto;
    padding-bottom: 21px;
}

/* Trust Bar: 1) Meisterbetrieb  2) Metalltechnik  3-6) Badges — eine Zeile */
.vw-hero__trust-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.vw-hero__trust-logo {
    height: 30px;
    width: auto;
    flex-shrink: 0;
}

/* ── Hero Mobile ── */
@media (max-width: 767px) {
    /* Höhe via Basis (60vh ohne Slider) bzw. :has-Regel (full mit Slider) — keine Mobile-Sonderhöhe. */
    /* min-width:0 + box-sizing: verhindert, dass das Flex-Kind (min-width:auto) breiter als
       der Viewport wird — sonst brechen H1/Subline nicht um und werden rechts abgeschnitten. */
    .vw-hero__content { padding: 0 5vw; padding-top: 64px; min-width: 0; max-width: 100vw; box-sizing: border-box; }
    /* Mobile: Der schmale Viewport beschneidet das Bild (die dunklen Zonen fallen weg) →
       kräftigerer Verlauf von links, dunkel bis über die Mitte, dann auslaufend, damit
       H1 + Subline über hellem Himmel/Tal lesbar bleiben. */
    .vw-hero::before {
        background: linear-gradient(90deg,
            rgba(0,0,0,0.72) 0%,
            rgba(0,0,0,0.62) 30%,
            rgba(0,0,0,0.48) 55%,
            rgba(0,0,0,0.22) 78%,
            rgba(0,0,0,0.06) 100%);
    }
    .vw-hero h1 { max-width: 100%; white-space: normal !important; overflow-wrap: anywhere; }
    .vw-hero__subline { max-width: 100%; overflow-wrap: anywhere; }
    .vw-hero__aktionen { max-width: fit-content; }
    .vw-hero__trust-wrap { padding-bottom: 16px; }
    .vw-hero__trust-bar { gap: 8px; }
}

/* ========================================================================
   PORTFOLIO (Plugin wrapper)
   ======================================================================== */
.vw-portfolio {
    padding: var(--vw-section-py) 0;
    width: 100%;
}
.vw-portfolio__header {
    padding: 0 max(2vw, 24px);
    margin-bottom: var(--vw-gap);
}
.vw-portfolio__fallback {
    padding: 0 max(2vw, 24px);
}
.vw-portfolio h2 {
    color: var(--vw-text);
    margin: 0 0 8px;
}
.vw-portfolio .vw-subline {
    color: var(--vw-text);
    font-size: var(--vw-body);
    line-height: var(--vw-body-lh);
    margin: 0;
}
.vw-portfolio .l7pfw-wrap {
    padding: 0 max(2vw, 24px);
}

/* ── Portfolio: Plugin-Overrides ─────────────────── */
.vw-portfolio .l7pfw-card-title {
    font-family: var(--vw-font-heading);
    font-size: var(--vw-h5);
    font-weight: var(--vw-h5-weight);
    line-height: var(--vw-h5-lh);
}
.vw-portfolio .l7pfw-card-desc {
    font-family: var(--vw-font-body);
    font-size: var(--vw-h6);
    line-height: 1.5;
}
.vw-portfolio .l7pfw-load-btn {
    font-family: var(--vw-font-heading);
    background: var(--vw-cta);
    color: var(--vw-text);
}
.vw-portfolio .l7pfw-load-btn:hover {
    filter: brightness(0.92);
}
.vw-portfolio .l7pfw-badge {
    font-family: var(--vw-font-body);
    font-size: var(--vw-badge-size);
    background: var(--vw-badge-bg);
    color: var(--vw-badge-text);
}
.vw-portfolio .l7pfw-global-section {
    font-family: var(--vw-font-body);
}

/* Portfolio CTA — wird per JS in .l7pfw-footer verschoben (neben Button) */
.vw-portfolio__cta {
    padding: 0 2vw;
    margin-top: 30px;
}
.l7pfw-footer .vw-portfolio__cta {
    padding: 0;
    margin-top: 0;
    flex: 1;
}

/* ── Global Section: Shared Base (.vw-gs) ── */
.vw-gs,
.vw-bilder-senden,
.vw-support,
.vw-anrufen {
    display: flex;
    align-items: center;
    gap: 16px;
}
.vw-gs__avatars,
.vw-bilder-senden__avatars,
.vw-support__avatars,
.vw-anrufen__avatars {
    display: flex;
    flex-shrink: 0;
}
.vw-gs__avatars img,
.vw-bilder-senden__avatars img,
.vw-support__avatars img,
.vw-anrufen__avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--vw-bg-light);
}
.vw-gs__avatars img + img,
.vw-bilder-senden__avatars img + img,
.vw-support__avatars img + img,
.vw-anrufen__avatars img + img {
    margin-left: -12px;
}
.vw-gs__text,
.vw-bilder-senden__content,
.vw-anrufen__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vw-gs__text br,
.vw-bilder-senden__content br,
.vw-anrufen__text br {
    display: none;
}
.vw-gs__text strong,
.vw-bilder-senden__content strong,
.vw-bilder-senden__headline,
.vw-support strong,
.vw-anrufen__text strong {
    font-family: var(--vw-font-heading);
    font-size: var(--vw-body);
    font-weight: 600;
    color: var(--vw-text);
}
.vw-gs__text span,
.vw-bilder-senden__text,
.vw-anrufen__text span,
.vw-anrufen__hours,
.vw-anrufen__hours * {
    font-size: var(--vw-body);
    color: var(--vw-text);
}
.vw-gs__text a,
.vw-bilder-senden__text a {
    color: var(--vw-text);
    text-decoration: none;
}
.vw-gs__text a:hover,
.vw-bilder-senden__text a:hover {
    text-decoration: underline;
}
/* ── Global Section: Bilder senden (Override) ── */
.vw-bilder-senden {
    margin-top: 0;
}

/* ========================================================================
   IHRE MÖGLICHKEITEN
   ======================================================================== */
.vw-moeg {
    background: var(--vw-bg-alt);
    padding: var(--vw-section-py) 0;
}
.vw-moeg h2 { margin-bottom: 8px; }
.vw-moeg__subline { margin-bottom: 40px; }

.vw-moeg__row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--vw-bg-light);
    border-radius: var(--vw-radius);
    overflow: hidden;
    margin-bottom: 12px;
    padding: 32px;
    gap: 32px;
    align-items: start;
}
.vw-moeg__label {
    font-family: var(--vw-font-heading);
    font-weight: var(--vw-h3-weight);
    font-size: var(--vw-h3);
}
.vw-moeg__detail {
    border-left: 3px solid var(--vw-bg-dark);
    padding-left: 24px;
}

/* ── Runde Swatches ── */
.vw-moeg__swatches {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.vw-moeg__swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    width: 72px;          /* feste Breite → alle gleich */
    flex-shrink: 0;
}
.vw-moeg__swatch-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--vw-border, #e0e0e0);
    flex-shrink: 0;
}
.vw-moeg__swatch-name {
    font-size: 11px;
    text-align: center;
    color: var(--vw-text);
    width: 100%;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
.vw-moeg__swatch--popular .vw-moeg__swatch-circle,
.vw-moeg__swatch--popular .vw-opt__bef-box {
    position: relative;
}
.vw-moeg__swatch--popular .vw-moeg__swatch-circle::after,
.vw-moeg__swatch--popular .vw-opt__bef-box::after {
    content: '★';
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--vw-text);
    color: var(--vw-text-light);
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Befestigungs-Diagramme in Möglichkeiten: rund clippen */
.vw-moeg__swatch .vw-opt__bef-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--vw-border, #e0e0e0);
    overflow: hidden;
}
/* Skaliere Befestigungs-Innenleben von 64px auf 48px */
.vw-moeg__swatch .vw-opt__bef--aufgesetzt .b-post { bottom: 10px; height: 20px; }
.vw-moeg__swatch .vw-opt__bef--aufgesetzt .b-post:nth-child(1) { left: 12px; }
.vw-moeg__swatch .vw-opt__bef--aufgesetzt .b-post:nth-child(2) { right: 12px; }
.vw-moeg__swatch .vw-opt__bef--aufgesetzt .b-rail { top: 9px; left: 12px; right: 12px; }
.vw-moeg__swatch .vw-opt__bef--aufgesetzt .b-plate { bottom: 7px; left: 7px; right: 7px; }
.vw-moeg__swatch .vw-opt__bef--seitlich .b-post { bottom: 6px; height: 22px; }
.vw-moeg__swatch .vw-opt__bef--seitlich .b-post:nth-child(1) { left: 6px; }
.vw-moeg__swatch .vw-opt__bef--seitlich .b-post:nth-child(2) { right: 6px; }
.vw-moeg__swatch .vw-opt__bef--seitlich .b-rail { top: 9px; left: 6px; right: 6px; }
.vw-moeg__swatch .vw-opt__bef--seitlich .b-plate { bottom: 12px; left: 10px; right: 10px; }
.vw-moeg__swatch .vw-opt__bef--eingelassen .b-post { bottom: 6px; height: 22px; }
.vw-moeg__swatch .vw-opt__bef--eingelassen .b-post:nth-child(1) { left: 12px; }
.vw-moeg__swatch .vw-opt__bef--eingelassen .b-post:nth-child(2) { right: 12px; }
.vw-moeg__swatch .vw-opt__bef--eingelassen .b-rail { top: 9px; left: 12px; right: 12px; }
.vw-moeg__swatch .vw-opt__bef--eingelassen .b-plate { bottom: 7px; left: 7px; right: 7px; }

.vw-moeg__text {
    font-size: var(--vw-body);
    color: var(--vw-text);
}

@media (max-width: 767px) {
    .vw-moeg__row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
    }
    .vw-moeg__swatch {
        width: 64px;
    }
    .vw-moeg__swatch-circle {
        width: 40px;
        height: 40px;
    }
    .vw-moeg__swatch .vw-opt__bef-box {
        width: 40px;
        height: 40px;
    }
}

/* ========================================================================
   SWATCH FILLS & BEFESTIGUNG (shared by Möglichkeiten)
   ======================================================================== */

/* ── Swatch Fills: Material ── */
.vw-opt-fill--edelstahl {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='64'%3E%3Crect width='1' height='64' x='0' fill='%23aaa' opacity='0.1'/%3E%3Crect width='1' height='64' x='2' fill='%23bbb' opacity='0.07'/%3E%3C/svg%3E") repeat,
        linear-gradient(165deg, #b0b8c0 0%, #c8ced4 15%, #d8dce0 25%, #c0c8ce 35%, #d2d8dc 50%, #bcc4ca 65%, #cdd3d8 80%, #b8c0c8 90%, #c4ccd2 100%);
}
.vw-opt-fill--alu {
    background: linear-gradient(150deg, #6a7580 0%, #7d8a95 20%, #8a95a0 35%, #7a8590 50%, #8d98a3 65%, #6e7b86 80%, #808d98 100%);
}
.vw-opt-fill--glas {
    background: linear-gradient(155deg, #c2dae8 0%, #d6e8f2 10%, #e4f0f7 25%, #d0e4f0 40%, #e8f2f8 55%, #c8dced 70%, #daeaf4 85%, #cde0ee 100%);
}
.vw-opt-fill--stahl {
    background: linear-gradient(150deg, #3a3a3a 0%, #505050 15%, #5a5a5a 25%, #444 40%, #585858 55%, #3e3e3e 70%, #525252 85%, #484848 100%);
}

/* ── Swatch Fills: Farbe ── */
.vw-opt-fill--anthrazit {
    background: radial-gradient(ellipse at 30% 20%, rgba(80,90,98,1) 0%, rgba(56,62,66,1) 60%, rgba(42,48,52,1) 100%);
}
.vw-opt-fill--schwarz {
    background: radial-gradient(ellipse at 30% 25%, rgba(30,30,32,1) 0%, rgba(10,10,13,1) 60%, rgba(5,5,8,1) 100%);
}
.vw-opt-fill--weiss {
    background: radial-gradient(ellipse at 35% 25%, #fefefe 0%, #f5f4f0 40%, #eeedea 80%, #e8e7e4 100%);
    border: 1px solid rgba(0,0,0,0.08) !important;
}
.vw-opt-fill--db703 {
    background: radial-gradient(ellipse at 35% 30%, #7a7c65 0%, #6c6e58 50%, #5e604a 100%);
}
.vw-opt-fill--rainbow {
    background: conic-gradient(from 0deg, #e84040, #e87040, #e8d040, #a0e840, #40e8a0, #40d0e8, #4090e8, #a040e8, #e84040);
    position: relative;
}
.vw-opt-fill--rainbow::after {
    content: '+';
    position: absolute;
    inset: 5px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #888;
}

/* ── Swatch Fills: Oberfläche ── */
.vw-opt-fill--geburstet {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='64'%3E%3Crect width='1' height='64' x='0' fill='%23aaa' opacity='0.12'/%3E%3Crect width='1' height='64' x='2' fill='%23bbb' opacity='0.08'/%3E%3C/svg%3E") repeat,
        linear-gradient(170deg, #c0c0c0 0%, #d6d6d6 20%, #e0e0e0 35%, #cacaca 50%, #d8d8d8 65%, #c4c4c4 80%, #d2d2d2 100%);
}
.vw-opt-fill--satiniert {
    background: radial-gradient(ellipse at 40% 30%, #e4e4e4 0%, #d6d6d6 40%, #cccccc 80%);
}
.vw-opt-fill--poliert {
    background: linear-gradient(155deg, #e0e0e0 0%, #f8f8f8 30%, #ffffff 45%, #eaeaea 70%, #e6e6e6 100%);
}
.vw-opt-fill--pulver {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='1' fill='rgba(0,0,0,0.04)'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 35% 30%, #c8c8c8 0%, #b8b8b8 40%, #aaa 80%);
}

/* ── Swatch Fills: Füllung ── */
.vw-opt-fill--klarglas {
    background: linear-gradient(155deg, #c6dce9, #e4f2fa 30%, #dcecf6 50%, #eaf5fb 65%, #daeef7 100%);
}
.vw-opt-fill--mattglas {
    background: radial-gradient(ellipse at 40% 35%, #d6dee3, #c8d2d8 40%, #bcc8d0 80%);
}
.vw-opt-fill--stabe {
    background: repeating-linear-gradient(90deg, #b0b0b0 0px, #b8b8b8 2px, #c8c8c8 3px, #e8e8e8 6px, #c8c8c8 8px, #b0b0b0 10px, #e8e8e8 13px);
}
.vw-opt-fill--seile {
    background: repeating-linear-gradient(0deg, #b0b0b0 0px, #ccc 1.5px, #f2f2f2 6px, #ccc 10.5px, #b0b0b0 12px, #f2f2f2 16px);
}
.vw-opt-fill--lochblech {
    background-color: #bbb;
    background-image: radial-gradient(circle, #d8d8d8 3px, transparent 3px);
    background-size: 10px 10px;
}
.vw-opt-fill--lamellen {
    background: repeating-linear-gradient(0deg, #6a6a6a 0px, #858585 3px, #6a6a6a 6px, #aaa 7px, #b5b5b5 8px, #9a9a9a 10px);
}

/* ── Swatch Fills: Französische Geländer ── */
.vw-opt-fill--glas-rahmenlos {
    background: linear-gradient(155deg, #daedf8 0%, #eaf5fc 20%, #f2f9fe 40%, #e4f1fa 60%, #d6eaf6 80%, #eaf5fc 100%);
    border: 1px solid rgba(0,0,0,0.06) !important;
}
.vw-opt-fill--stahl-pulver {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='1' fill='rgba(0,0,0,0.05)'/%3E%3C/svg%3E") repeat,
        linear-gradient(150deg, #4a4a4a 0%, #5a5a5a 20%, #666 40%, #555 60%, #5e5e5e 80%, #4e4e4e 100%);
}
.vw-opt-fill--ornamentglas {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 4 Q2 0 4 4 Q6 8 8 4' fill='none' stroke='rgba(180,200,215,0.4)' stroke-width='1'/%3E%3C/svg%3E") repeat,
        linear-gradient(155deg, #c8dce9 0%, #dce8f0 30%, #e8f0f5 50%, #d4e4ee 70%, #cce0ec 100%);
}

/* ── Swatch Fills: Befestigung (Franz. Geländer) ── */
.vw-opt-fill--bef-laibung {
    background: radial-gradient(ellipse at 35% 30%, #8a9eaf 0%, #6d8599 50%, #5a7488 100%);
}
.vw-opt-fill--bef-fassade {
    background: radial-gradient(ellipse at 35% 30%, #9aabb8 0%, #7d96a8 50%, #6a8698 100%);
}
.vw-opt-fill--bef-mauerwerk {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Crect x='0' y='0' width='5' height='3' fill='rgba(0,0,0,0.06)' rx='0.5'/%3E%3Crect x='6' y='0' width='5' height='3' fill='rgba(0,0,0,0.04)' rx='0.5'/%3E%3Crect x='3' y='4' width='5' height='3' fill='rgba(0,0,0,0.05)' rx='0.5'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 35% 30%, #a0a89a 0%, #8a9480 50%, #7a8672 100%);
}

/* ── Swatch Fills: Innengeländer ── */
.vw-opt-fill--holz-edelstahl {
    background: linear-gradient(150deg, #b0b8c0 0%, #c0c6cc 25%, #8b6e52 50%, #a0845e 75%, #c0c8ce 100%);
}
.vw-opt-fill--edst-rund {
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, transparent 60%),
        linear-gradient(165deg, #b0b8c0 0%, #c8ced4 25%, #d8dce0 50%, #c0c8ce 75%, #b8c0c8 100%);
}
.vw-opt-fill--edst-eckig {
    background: linear-gradient(165deg, #a8b0b8 0%, #bcc4cc 20%, #d0d6dc 40%, #b8c0c8 60%, #c4ccd4 80%, #b0b8c0 100%);
}
.vw-opt-fill--holz {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='64'%3E%3Crect width='1' height='64' x='1' fill='%23704020' opacity='0.08'/%3E%3Crect width='1' height='64' x='3' fill='%23604018' opacity='0.06'/%3E%3C/svg%3E") repeat,
        linear-gradient(170deg, #a0845e 0%, #b8986a 15%, #c4a876 30%, #b0926a 45%, #c0a478 60%, #a88c64 75%, #bca070 90%, #a48860 100%);
}
.vw-opt-fill--leder {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Ccircle cx='3' cy='3' r='0.8' fill='rgba(0,0,0,0.06)'/%3E%3C/svg%3E") repeat,
        radial-gradient(ellipse at 35% 25%, #6a4a30 0%, #5a3a22 50%, #4a2e18 100%);
}
.vw-opt-fill--bef-treppenwange {
    background: radial-gradient(ellipse at 35% 30%, #7a8e9e 0%, #627a8c 50%, #506a7c 100%);
}
.vw-opt-fill--bef-wand {
    background: radial-gradient(ellipse at 35% 30%, #8a96a2 0%, #717e8c 50%, #5e6c7a 100%);
}

/* ── Swatch Fills: Terrassenüberdachung / Carport – Konstruktion ── */
.vw-opt-fill--konstr-wandgebunden {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='0' y='4' width='4' height='24' rx='1' fill='rgba(255,255,255,0.35)'/%3E%3Crect x='4' y='4' width='24' height='4' rx='1' fill='rgba(255,255,255,0.25)'/%3E%3Crect x='12' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #4a7a6a 0%, #5a9078 40%, #68a488 100%);
}
.vw-opt-fill--konstr-freistehend {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='4' y='4' width='20' height='4' rx='1' fill='rgba(255,255,255,0.3)'/%3E%3Crect x='5' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3Crect x='20' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #5a748a 0%, #6a88a0 40%, #7a9ab4 100%);
}
.vw-opt-fill--konstr-eck {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Cpath d='M4 4 L24 4 L24 14 L14 14 L14 24 L4 24 Z' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2.5' rx='1'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #7a6a5a 0%, #8e7e6e 40%, #a29282 100%);
}
.vw-opt-fill--konstr-seitenwaende {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='4' y='4' width='20' height='4' rx='1' fill='rgba(255,255,255,0.25)'/%3E%3Crect x='4' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.3)'/%3E%3Crect x='21' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.3)'/%3E%3Crect x='4' y='22' width='20' height='2' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #6a5a7a 0%, #7e6e90 40%, #9282a6 100%);
}
.vw-opt-fill--konstr-angebaut {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='0' y='2' width='4' height='24' rx='1' fill='rgba(255,255,255,0.35)'/%3E%3Crect x='4' y='4' width='18' height='4' rx='1' fill='rgba(255,255,255,0.25)'/%3E%3Crect x='19' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #5a7080 0%, #6a8496 40%, #7a96aa 100%);
}
.vw-opt-fill--konstr-doppel {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='2' y='4' width='24' height='4' rx='1' fill='rgba(255,255,255,0.3)'/%3E%3Crect x='3' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3Crect x='13' y='8' width='2' height='16' rx='0.5' fill='rgba(255,255,255,0.15)'/%3E%3Crect x='22' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #4a6070 0%, #5a7486 40%, #6a889e 100%);
}
.vw-opt-fill--konstr-abstellraum {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Crect x='2' y='4' width='24' height='4' rx='1' fill='rgba(255,255,255,0.25)'/%3E%3Crect x='3' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3Crect x='22' y='8' width='3' height='16' rx='0.5' fill='rgba(255,255,255,0.2)'/%3E%3Crect x='14' y='8' width='8' height='16' rx='1' fill='rgba(255,255,255,0.12)' stroke='rgba(255,255,255,0.2)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center,
        linear-gradient(135deg, #5a6a60 0%, #6e7e74 40%, #829288 100%);
}

/* ── Swatch Fills: Eindeckung / Dach ── */
.vw-opt-fill--polycarbonat {
    background: linear-gradient(155deg, #e0e8ec 0%, #eaf0f4 20%, #f4f8fa 40%, #e8eef2 60%, #dce6ec 80%, #eef4f6 100%);
    border: 1px solid rgba(0,0,0,0.06) !important;
}
.vw-opt-fill--lamellendach {
    background: repeating-linear-gradient(0deg, #8a8a8a 0px, #a0a0a0 3px, #8a8a8a 5px, #c0c0c0 6px, #d0d0d0 7px, #b0b0b0 9px);
}
.vw-opt-fill--trapezblech {
    background: repeating-linear-gradient(90deg, #a0a0a0 0px, #c8c8c8 4px, #e0e0e0 6px, #c8c8c8 8px, #a0a0a0 12px);
}
.vw-opt-fill--gruendach {
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Ccircle cx='2' cy='6' r='1.5' fill='rgba(80,140,60,0.2)'/%3E%3Ccircle cx='6' cy='3' r='1.2' fill='rgba(60,120,40,0.15)'/%3E%3C/svg%3E") repeat,
        linear-gradient(150deg, #6aa050 0%, #7ab860 20%, #88c468 40%, #76b058 60%, #6aa050 80%, #80bc62 100%);
}

/* ── Swatch Fills: Zusätze / Extras ── */
.vw-opt-fill--seitenwaende {
    background: linear-gradient(155deg, #c2d8e6 0%, #d6e8f2 25%, #e4f0f7 50%, #d0e4f0 75%, #c2d8e6 100%);
}
.vw-opt-fill--led {
    background: radial-gradient(circle at 50% 40%, #ffe066 0%, #ffcc00 30%, #e6b800 60%, #cc9e00 100%);
}
.vw-opt-fill--regenrinne {
    background: linear-gradient(150deg, #7aaec8 0%, #8abcd6 25%, #9acae2 50%, #88bcd4 75%, #7aaec8 100%);
}
.vw-opt-fill--markise {
    background: repeating-linear-gradient(135deg, #d4a070 0px, #d4a070 4px, #f0e0cc 4px, #f0e0cc 8px);
}

/* ── Swatch Fills: Entwässerung ── */
.vw-opt-fill--rinne-kasten {
    background: linear-gradient(150deg, #6a90a8 0%, #7aa0b8 30%, #8ab0c6 50%, #7aa0b8 70%, #6a90a8 100%);
}
.vw-opt-fill--rinne-vorgehaengt {
    background: linear-gradient(150deg, #5a82a0 0%, #6a94b4 30%, #7aa4c2 50%, #6a94b4 70%, #5a82a0 100%);
}
.vw-opt-fill--rinne-innen {
    background: linear-gradient(150deg, #5a7a98 0%, #6a8eaa 30%, #7a9eba 50%, #6a8eaa 70%, #5a7a98 100%);
}

/* ── Swatch Fills: Carport Material ── */
.vw-opt-fill--stahl-verzinkt {
    background: linear-gradient(165deg, #b8c0c8 0%, #ccd4dc 15%, #dce2e8 30%, #c8d0d8 45%, #d4dce4 60%, #bcc4cc 75%, #d0d8e0 90%, #c0c8d0 100%);
}

/* ── Swatch Fills: Carport Extras ── */
.vw-opt-fill--fahrradstaender {
    background: radial-gradient(ellipse at 35% 30%, #8a9aaa 0%, #6e8296 50%, #5a7086 100%);
}
.vw-opt-fill--wallbox {
    background: radial-gradient(circle at 50% 40%, #60d060 0%, #48b848 30%, #38a038 60%, #2a882a 100%);
}
.vw-opt-fill--solar {
    background: linear-gradient(150deg, #2a4a80 0%, #3a5a90 20%, #4a6aa0 35%, #3a5a90 50%, #5a7aaa 65%, #2a4a80 80%, #4a6aa0 100%);
}

/* ── Glasgeländer Swatches ── */
.vw-opt-fill--getoentes-glas {
    background: linear-gradient(135deg, #4a90b0 0%, #6aafcf 50%, #3a7a9a 100%);
}
.vw-opt-fill--bedrucktes-glas {
    background: linear-gradient(135deg, #b8d4e3 0%, #fff 25%, #b8d4e3 50%, #e8e8e8 75%, #b8d4e3 100%);
}
.vw-opt-fill--teilgerahmt {
    background: linear-gradient(135deg, #c0c8d0 0%, #d8e0e8 30%, #e8f0f8 70%, #c0c8d0 100%);
}
.vw-opt-fill--pfosten-riegel {
    background: linear-gradient(135deg, #c8c8c8 0%, #a0a0a0 35%, #d8d8d8 70%, #b0b0b0 100%);
}
.vw-opt-fill--glas-10mm { background: linear-gradient(135deg, #d4eef7 0%, #e8f5fa 50%, #c0e2f0 100%); }
.vw-opt-fill--glas-12mm { background: linear-gradient(135deg, #b8dff0 0%, #d0ecf5 50%, #a0d0e8 100%); }
.vw-opt-fill--glas-16mm { background: linear-gradient(135deg, #90c8e0 0%, #b0ddef 50%, #78b8d5 100%); }
.vw-opt-fill--glas-20mm { background: linear-gradient(135deg, #6ab0d0 0%, #90c8e0 50%, #5498b8 100%); }
.vw-opt-fill--bodenschuh {
    background: linear-gradient(180deg, #e0e4e8 0%, #b0b8c0 60%, #888e96 100%);
}
.vw-opt-fill--punkthalter {
    background: radial-gradient(circle at 50% 50%, #c0c0c0 30%, #e0e0e0 60%, #a0a0a0 100%);
}
.vw-opt-fill--ohne-handlauf {
    background: linear-gradient(135deg, #e8f0f8 0%, #d0e8f5 50%, #e8f0f8 100%);
}
.vw-opt-fill--edst-flach {
    background: linear-gradient(90deg, #c0c0c0 0%, #e8e8e8 30%, #d0d0d0 60%, #b8b8b8 100%);
}

/* ── Stiegen & Treppen Swatches ── */
.vw-opt-fill--treppe-gerade { background: linear-gradient(135deg, #8a9aa8 0%, #a0b0c0 50%, #7a8a98 100%); }
.vw-opt-fill--treppe-podest { background: linear-gradient(135deg, #7a8a98 0%, #98a8b8 30%, #6a7a88 60%, #8a9aa8 100%); }
.vw-opt-fill--treppe-spindel { background: conic-gradient(#8a9aa8, #b0c0d0, #7a8a98, #a0b0c0, #8a9aa8); }
.vw-opt-fill--treppe-lu { background: linear-gradient(90deg, #8a9aa8 0%, #a0b0c0 50%, #8a9aa8 50%, #7a8a98 100%); }
.vw-opt-fill--gitterrost {
    background: repeating-linear-gradient(0deg, #a0a8b0 0px, #a0a8b0 2px, #c8d0d8 2px, #c8d0d8 6px);
}
.vw-opt-fill--riffelblech {
    background: repeating-linear-gradient(135deg, #b0b8c0 0px, #b0b8c0 2px, #d0d8e0 2px, #d0d8e0 5px);
}
.vw-opt-fill--holz-auf-stahl {
    background: linear-gradient(180deg, #a67c52 0%, #8b6340 50%, #b0b8c0 50%, #8a9098 100%);
}
.vw-opt-fill--stein-auf-stahl {
    background: linear-gradient(180deg, #c8beb0 0%, #b0a898 50%, #b0b8c0 50%, #8a9098 100%);
}
.vw-opt-fill--edst-mit-staeben {
    background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 25%, #c8c8c8 50%, #d8d8d8 75%, #c0c0c0 100%);
}
.vw-opt-fill--edst-mit-glas {
    background: linear-gradient(135deg, #c0c0c0 0%, #d8e8f0 30%, #c0e0f0 70%, #c0c0c0 100%);
}
.vw-opt-fill--einsatz-aussen { background: linear-gradient(135deg, #7aaa88 0%, #90c0a0 50%, #68986a 100%); }
.vw-opt-fill--einsatz-innen { background: linear-gradient(135deg, #c8a878 0%, #e0c898 50%, #b89868 100%); }
.vw-opt-fill--einsatz-flucht { background: linear-gradient(135deg, #d04040 0%, #e06060 50%, #c03030 100%); }
.vw-opt-fill--einsatz-industrie { background: linear-gradient(135deg, #606870 0%, #808890 50%, #505860 100%); }

/* ── Wendeltreppen Swatches ── */
.vw-opt-fill--treppe-wendel { background: conic-gradient(#7a8a98, #a0b0c0, #6a7a88, #90a0b0, #7a8a98); }
.vw-opt-fill--treppe-halbgewendelt {
    background: linear-gradient(180deg, #8a9aa8 0%, #a0b0c0 45%, #6a7a88 55%, #8a9aa8 100%);
}
.vw-opt-fill--stein { background: linear-gradient(135deg, #c8beb0 0%, #d8d0c0 40%, #b0a898 70%, #c8beb0 100%); }

/* ── Vordach Swatches ── */
.vw-opt-fill--aluminiumblech {
    background: linear-gradient(135deg, #c8d0d8 0%, #e0e8f0 30%, #b8c0c8 60%, #d0d8e0 100%);
}
.vw-opt-fill--bef-zugstangen {
    background: linear-gradient(135deg, #b0b8c0 0%, #c8d0d8 40%, #a0a8b0 80%, #c0c8d0 100%);
}
.vw-opt-fill--bef-konsolen {
    background: linear-gradient(135deg, #a0a8b0 0%, #b8c0c8 50%, #909098 100%);
}
.vw-opt-fill--seitenwindschutz {
    background: linear-gradient(90deg, #a8c8e0 0%, #d0e8f5 50%, #a8c8e0 100%);
}
.vw-opt-fill--klingel {
    background: radial-gradient(circle at 50% 40%, #f0c860 25%, #d0a840 50%, #e0b850 100%);
}
.vw-opt-fill--hausnummer {
    background: linear-gradient(135deg, #404040 0%, #606060 50%, #303030 100%);
}

/* ── Verglasung Swatches ── */
.vw-opt-fill--verglasung-fix { background: linear-gradient(135deg, #c0dce8 0%, #d8ecf5 50%, #b0d0e0 100%); }
.vw-opt-fill--verglasung-schiebe { background: linear-gradient(90deg, #c0dce8 0%, #e8f5fa 40%, #c0dce8 60%, #d8ecf5 100%); }
.vw-opt-fill--verglasung-falt {
    background: repeating-linear-gradient(90deg, #c0dce8 0px, #d8ecf5 8px, #b0ccd8 8px, #c8dde8 16px);
}
.vw-opt-fill--verglasung-dreh { background: conic-gradient(from 45deg, #c0dce8, #e8f5fa, #b0ccd8, #c0dce8); }
.vw-opt-fill--waermeschutzglas {
    background: linear-gradient(135deg, #c8e0b0 0%, #d8ecc0 50%, #b0d098 100%);
}
.vw-opt-fill--insektenschutz {
    background: repeating-linear-gradient(45deg, #d0d8e0 0px, #d0d8e0 1px, #e8eff5 1px, #e8eff5 4px);
}
.vw-opt-fill--sonnenschutzfolie {
    background: linear-gradient(135deg, #e0c870 0%, #f0d880 40%, #c8b060 70%, #e0c870 100%);
}
.vw-opt-fill--schliesssystem {
    background: radial-gradient(circle at 50% 50%, #b0b0b0 20%, #808080 50%, #a0a0a0 100%);
}
.vw-opt-fill--lueftungsklappe {
    background: linear-gradient(180deg, #a0c8e0 0%, #d0e8f5 50%, #e8f5fa 100%);
}

/* ── Balkonkonstruktion Swatches ── */
.vw-opt-fill--balkon-vorstell { background: linear-gradient(180deg, #8a9aa8 0%, #a0b0c0 40%, #707880 60%, #8a9aa8 100%); }
.vw-opt-fill--balkon-anbau { background: linear-gradient(90deg, #a0a8b0 0%, #c0c8d0 50%, #8a9098 100%); }
.vw-opt-fill--balkon-freitragend { background: linear-gradient(135deg, #98a0a8 0%, #b8c0c8 50%, #808890 100%); }
.vw-opt-fill--balkon-haenge { background: linear-gradient(180deg, #b8c0c8 0%, #d0d8e0 30%, #90989e 70%, #a0a8b0 100%); }
.vw-opt-fill--wpc-dielen {
    background: repeating-linear-gradient(0deg, #8b6b4a 0px, #9a7a58 3px, #8b6b4a 3px, #7a5c3e 6px);
}
.vw-opt-fill--alu-dielen {
    background: repeating-linear-gradient(0deg, #c0c8d0 0px, #d0d8e0 3px, #b8c0c8 3px, #c8d0d8 6px);
}
.vw-opt-fill--alu-mit-glas {
    background: linear-gradient(135deg, #b0b8c0 0%, #d0e8f0 30%, #c0e0f0 70%, #b0b8c0 100%);
}
.vw-opt-fill--extra-treppe { background: linear-gradient(135deg, #7a8a98 0%, #98a8b8 50%, #6a7a88 100%); }
.vw-opt-fill--extra-ueberdachung { background: linear-gradient(135deg, #a0b0c0 0%, #c0d0e0 50%, #90a0b0 100%); }
.vw-opt-fill--extra-verglasung { background: linear-gradient(135deg, #b8d8e8 0%, #d8ecf5 50%, #a8c8d8 100%); }
.vw-opt-fill--sichtschutz { background: linear-gradient(135deg, #b0a090 0%, #c8b8a0 50%, #a09080 100%); }

/* ── Beschattung Swatches ── */
.vw-opt-fill--konstr-aufsatz {
    background: linear-gradient(180deg, #a0b0c0 0%, #b8c8d8 30%, #c8d0d8 70%, #a0b0c0 100%);
}
.vw-opt-fill--lamellen-dreh {
    background: repeating-linear-gradient(0deg, #888 0px, #bbb 2px, #888 4px, #bbb 6px);
}
.vw-opt-fill--lamellen-fest {
    background: repeating-linear-gradient(0deg, #999 0px, #999 3px, #ccc 3px, #ccc 6px);
}
.vw-opt-fill--stoffbespannung {
    background: linear-gradient(135deg, #e8dcd0 0%, #f0e8d8 50%, #d8ccc0 100%);
}
.vw-opt-fill--heizstrahler {
    background: radial-gradient(circle at 50% 30%, #ff8040 0%, #e06020 40%, #c04010 80%, #a03010 100%);
}
.vw-opt-fill--senkrechtmarkise {
    background: linear-gradient(180deg, #c8b890 0%, #d8c8a0 50%, #b8a880 100%);
}
.vw-opt-fill--app-steuerung {
    background: linear-gradient(135deg, #4080c0 0%, #60a0e0 50%, #3070b0 100%);
}

/* ── Glasgarten Swatches ── */
.vw-opt-fill--wintergarten-kalt {
    background: linear-gradient(135deg, #a0d0e8 0%, #c0e8f5 50%, #88c0d8 100%);
}
.vw-opt-fill--wintergarten-warm {
    background: linear-gradient(135deg, #e0a060 0%, #f0b870 40%, #d09050 70%, #c08040 100%);
}
.vw-opt-fill--stahl-glas {
    background: linear-gradient(135deg, #b0b8c0 0%, #d0e8f0 40%, #a8b0b8 70%, #c0d8e8 100%);
}
.vw-opt-fill--holz-alu {
    background: linear-gradient(135deg, #a67c52 0%, #b8904a 40%, #c0c8d0 60%, #a8b0b8 100%);
}
.vw-opt-fill--sonnenschutzglas {
    background: linear-gradient(135deg, #b0c8a0 0%, #c8e0b0 40%, #90b080 70%, #a8c098 100%);
}
.vw-opt-fill--alu-lamellen {
    background: repeating-linear-gradient(0deg, #c0c8d0 0px, #d8e0e8 3px, #b8c0c8 3px, #c8d0d8 6px);
}
.vw-opt-fill--schiebetueren { background: linear-gradient(90deg, #c0dce8 0%, #e8f5fa 50%, #c0dce8 100%); }
.vw-opt-fill--faltwaende {
    background: repeating-linear-gradient(90deg, #c8dce8 0px, #d8ecf5 10px, #b8ccd8 10px, #c8dce8 20px);
}
.vw-opt-fill--drehkipp { background: conic-gradient(from 90deg, #c0dce8, #e8f5fa, #c0dce8, #d0e8f0); }

/* ── Zäune & Tore Swatches ── */
.vw-opt-fill--zaun-stab {
    background: repeating-linear-gradient(90deg, #606060 0px, #606060 2px, transparent 2px, transparent 6px);
}
.vw-opt-fill--zaun-lamelle {
    background: repeating-linear-gradient(0deg, #707070 0px, #707070 4px, #989898 4px, #989898 6px);
}
.vw-opt-fill--zaun-doppelstab {
    background: repeating-linear-gradient(90deg, #707070 0px, #707070 1px, transparent 1px, transparent 3px);
}
.vw-opt-fill--zaun-schmiedeeisen {
    background: linear-gradient(135deg, #404040 0%, #606060 30%, #505050 60%, #3a3a3a 100%);
}
.vw-opt-fill--tor-dreh { background: linear-gradient(135deg, #788090 0%, #98a0b0 50%, #687080 100%); }
.vw-opt-fill--tor-schiebe { background: linear-gradient(90deg, #788090 0%, #98a0b0 50%, #687080 100%); }
.vw-opt-fill--tor-drehfluegel {
    background: linear-gradient(90deg, #788090 0%, #98a0b0 25%, #687080 50%, #98a0b0 75%, #788090 100%);
}
.vw-opt-fill--tor-pforte { background: linear-gradient(135deg, #90a0a8 0%, #b0c0c8 50%, #80909a 100%); }
.vw-opt-fill--motorantrieb {
    background: radial-gradient(circle at 50% 50%, #e0c040 20%, #d0a020 50%, #c09010 100%);
}
.vw-opt-fill--gegensprechanlage {
    background: linear-gradient(135deg, #505860 0%, #707880 50%, #404850 100%);
}
.vw-opt-fill--briefkasten {
    background: linear-gradient(135deg, #4080a0 0%, #5898b8 50%, #306888 100%);
}

/* ── Befestigung Diagramme ── */
.vw-opt__bef-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--vw-bg-alt);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: border-color 0.15s;
}
.vw-opt__bef-box .b-plate {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
}
.vw-opt__bef-box .b-post {
    position: absolute;
    width: 3px;
    background: #666;
    border-radius: 1px;
}
.vw-opt__bef-box .b-rail {
    position: absolute;
    height: 2px;
    background: #666;
    border-radius: 1px;
}

/* Aufgesetzt */
.vw-opt__bef--aufgesetzt .b-post { bottom: 14px; height: 26px; }
.vw-opt__bef--aufgesetzt .b-post:nth-child(1) { left: 16px; }
.vw-opt__bef--aufgesetzt .b-post:nth-child(2) { right: 16px; }
.vw-opt__bef--aufgesetzt .b-rail { top: 12px; left: 16px; right: 16px; }

/* Seitlich */
.vw-opt__bef--seitlich .b-post { bottom: 8px; height: 30px; }
.vw-opt__bef--seitlich .b-post:nth-child(1) { left: 8px; }
.vw-opt__bef--seitlich .b-post:nth-child(2) { right: 8px; }
.vw-opt__bef--seitlich .b-rail { top: 12px; left: 8px; right: 8px; }
.vw-opt__bef--seitlich .b-plate { bottom: 16px; left: 14px; right: 14px; }

/* Eingelassen */
.vw-opt__bef--eingelassen .b-post { bottom: 8px; height: 30px; }
.vw-opt__bef--eingelassen .b-post:nth-child(1) { left: 16px; }
.vw-opt__bef--eingelassen .b-post:nth-child(2) { right: 16px; }
.vw-opt__bef--eingelassen .b-rail { top: 12px; left: 16px; right: 16px; }

/* ========================================================================
   PROZESS / ABLAUF
   ======================================================================== */
.vw-prozess {
    background: var(--vw-bg-alt);
    padding: var(--vw-section-py) 0;
    width: 100%;
}
.vw-prozess__header { padding: 0 max(2vw, 24px); margin-bottom: var(--vw-gap); }
.vw-prozess h2 { margin-bottom: 8px; }
.vw-prozess__subline { margin: 0; }

.vw-prozess__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vw-gap);
    padding: 0 max(2vw, 24px);
}
.vw-prozess__card {
    background: var(--vw-bg-light);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--vw-radius);
    padding: 28px;
    position: relative;
}
/* ── Verbindungslinie zwischen Badges (Desktop: horizontal) ── */
.vw-prozess__card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: calc(-1 * var(--vw-gap));
    width: var(--vw-gap);
    height: 2px;
    background: var(--vw-text);
    z-index: 1;
}
.vw-prozess__step {
    display: inline-block;
    background: var(--vw-text);
    color: var(--vw-text-light);
    font-family: var(--vw-font-special);
    font-size: var(--vw-badge-size);
    padding: 5px 14px;
    border-radius: var(--vw-radius-pill);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.vw-prozess__card h3 { margin-bottom: 12px; }
.vw-prozess__card p { font-size: var(--vw-body); color: var(--vw-text); }

.vw-prozess__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: var(--vw-h6);
    border-bottom: 1px solid var(--vw-text);
}
.vw-prozess__link::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #38a169;
    border-radius: 50%;
    animation: vw-pulse 2s ease-in-out infinite;
}
@keyframes vw-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}
.vw-prozess__cta { padding: 0 max(2vw, 24px); margin-top: 32px; }

@media (max-width: 991px) {
    .vw-prozess__grid { grid-template-columns: repeat(2, 1fr); }
    /* 2-Spalten: Linie bei Karte 2 ausblenden (Zeilenumbruch) */
    .vw-prozess__card:nth-child(2)::after { display: none; }
}
@media (max-width: 575px) {
    .vw-prozess__grid { grid-template-columns: 1fr; }
    /* Mobile: horizontale Linien ausblenden, border-left Timeline */
    .vw-prozess__card:not(:last-child)::after { display: none; }
    .vw-prozess__card {
        border-left: 2px solid var(--vw-text);
        border-radius: 0 var(--vw-radius) var(--vw-radius) 0;
    }
    .vw-prozess__card:first-child {
        border-top-left-radius: var(--vw-radius);
    }
    .vw-prozess__card:last-child {
        border-bottom-left-radius: var(--vw-radius);
    }
}

/* ========================================================================
   ÜBER VORWAGNER
   ======================================================================== */
.vw-about {
    background: var(--vw-bg-alt);
    padding: var(--vw-section-py) 0;
}
.vw-about__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--vw-bg-light);
    border-radius: var(--vw-radius);
    overflow: hidden;
}
.vw-about__image {
    min-height: 400px;
    background-size: cover;
    background-position: center top;
}
.vw-about__content {
    padding: 48px;
}
.vw-about__content h2 { margin-bottom: 20px; }
.vw-about__content p { margin-bottom: 16px; }
.vw-about__statement {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: var(--vw-body);
    margin: 24px 0;
}
/* ── Global Section: Support (Override) ── */
.vw-support {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--vw-bg-alt);
}

@media (max-width: 767px) {
    .vw-about__card { grid-template-columns: 1fr; }
    .vw-about__image { min-height: 260px; }
    .vw-about__content { padding: 28px; }
}

/* ========================================================================
   TESTIMONIALS (Plugin wrapper)
   ======================================================================== */
.vw-reviews {
    background: var(--vw-bg-alt);
    padding: var(--vw-section-py) 0;
}
.vw-reviews h2 { margin-bottom: 8px; }
.vw-reviews__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 32px;
    font-size: var(--vw-body);
}
.vw-reviews__item {
    margin-bottom: 20px;
}
.vw-reviews__stars { margin-bottom: 12px; }
.vw-reviews__text {
    border-left: 3px solid var(--vw-bg-dark);
    padding-left: 14px;
    margin-bottom: 8px;
    font-size: var(--vw-body);
    line-height: 1.5;
}
.vw-reviews__author {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    padding-left: 20px;
    font-size: var(--vw-body);
}
.vw-reviews__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--vw-font-heading);
    font-weight: 800;
}

/* ========================================================================
   CTA (Global Section)
   ======================================================================== */
.vw-cta {
    background: var(--vw-bg-dark);
    padding: var(--vw-section-py) 0;
}
.vw-cta__header {
    text-align: center;
    margin-bottom: 48px;
}
.vw-cta__header h2 { color: var(--vw-text-light); margin-bottom: 12px; }
.vw-cta__header p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 28px; }

.vw-cta__badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.vw-cta__badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(49, 49, 52, 0.7);
    padding: 4px 10px 4px 4px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}
.vw-cta__badge-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--vw-cta);
    color: #000;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

/* CTA Form Card */
.vw-cta__form-wrap {
    max-width: 680px;
    margin: 0 auto;
}
.vw-cta__form-card {
    background: var(--vw-bg-light);
    border-radius: var(--vw-radius);
    padding: 40px;
}
.vw-cta__form-intro {
    font-size: var(--vw-btn-size);
    margin-bottom: 28px;
    color: var(--vw-text);
}

/* CF7 field layout */
.cf7-field p,
.cf7-field-row p { margin: 0; padding: 0; }
.cf7-field label,
.cf7-field-row label {
    display: block;
    font-family: var(--vw-font-heading);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--vw-text);
}
.cf7-field br,
.cf7-field-row br { display: none; }
.cf7-field { margin-bottom: 14px; }
.cf7-field input,
.cf7-field textarea,
.cf7-field-row input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--vw-font-body);
    font-size: 15px;
    box-sizing: border-box;
    margin: 0;
    transition: border-color 0.2s;
}
.cf7-field input:focus,
.cf7-field textarea:focus {
    outline: none;
    border-color: var(--vw-cta);
}
.cf7-field textarea { min-height: 70px; height: 70px; resize: vertical; }

/* Telefon + PLZ Row */
.cf7-field-row {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
}
.cf7-field-row .cf7-field.half { flex: 1; margin-bottom: 0; }

/* CF7 wpcf7-form-control wrapper */
.vw-cta__form-card .wpcf7-form-control-wrap { display: block; }

/* CF7 checkbox (Datenschutz) */
.cf7-checkbox { margin: 14px 0; }
.cf7-checkbox p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}
.cf7-checkbox .wpcf7-form-control-wrap { display: inline-flex; }
.cf7-checkbox .wpcf7-list-item { margin: 0; }
.cf7-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--vw-cta);
}
.cf7-checkbox a { color: var(--vw-text); text-decoration: underline; }

/* Aktionen Plugin block inside CTA form */
.vw-cta__form-card .l7b { margin: 14px 0; }

/* CF7 submit */
.cf7-submit-wrap { margin-top: 16px; }
.cf7-submit-btn,
.vw-cta__form-card .wpcf7-submit {
    background: var(--vw-cta);
    color: var(--vw-bg-dark);
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: var(--vw-cta-font-size);
    padding: var(--vw-cta-padding-v) var(--vw-cta-padding-h);
    border: none;
    border-radius: var(--vw-radius-pill);
    cursor: pointer;
    transition: opacity 0.2s;
    width: auto;
}
.cf7-submit-btn:hover,
.vw-cta__form-card .wpcf7-submit:hover { opacity: 0.85; }

/* Checkmarks row (under submit button) */
.vw-cta__checks {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
}
.vw-cta__check {
    font-size: var(--vw-body);
    color: var(--vw-text);
    white-space: nowrap;
}

/* ── Global Section: Anrufen (Override) ── */
.vw-anrufen {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e2e2;
}
.vw-anrufen__phone {
    font-family: var(--vw-font-heading);
    font-weight: 600;
    text-decoration: none;
}
.vw-anrufen__phone:hover {
    text-decoration: underline;
}

@media (max-width: 575px) {
    .cf7-field-row { flex-direction: column; }
    .vw-cta__form-card { padding: 24px; }
    .vw-anrufen { flex-direction: column; text-align: center; }
    .vw-cta__checks { flex-direction: column; align-items: center; gap: 4px; }
}

/* ========================================================================
   PAS (Problem – Agitation – Solution)
   ======================================================================== */
.vw-pas {
    padding: var(--vw-section-py) 0;
}

/* ── Oberer Bereich: 2-Spalten (Text + Bild) ── */
.vw-pas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vw-gap);
    align-items: start;
}

/* ── Text-Spalte ── */
.vw-pas__text h2 {
    margin-bottom: 24px;
}
.vw-pas__text p {
    margin-bottom: 20px;
}
.vw-pas__closing {
    margin-top: 8px;
    margin-bottom: 0 !important;
}

/* ── Bild-Spalte ── */
.vw-pas__image-wrap {
    border-radius: var(--vw-radius);
    overflow: hidden;
    max-height: 420px;
}
.vw-pas__image {
    width: 100%;
    height: 100%;
    max-height: 420px;
    border-radius: var(--vw-radius);
    object-fit: cover;
}
.vw-pas__image-placeholder {
    height: 280px;
    background: var(--vw-bg-alt);
    border: 2px dashed var(--vw-border, #e0e0e0);
    border-radius: var(--vw-radius);
}

/* ── Owner Quote (volle Breite unter Grid) ── */
.vw-pas__quote {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: color-mix(in srgb, var(--vw-cta) 15%, white);
    border-left: 4px solid var(--vw-cta);
    border-radius: 0 var(--vw-radius) var(--vw-radius) 0;
    padding: 28px 32px;
    margin-top: var(--vw-gap);
}
.vw-pas__quote-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--vw-cta);
}
.vw-pas__quote-body p {
    font-style: italic;
    margin-bottom: 12px !important;
}
.vw-pas__quote-author {
    display: block;
    font-family: var(--vw-font-heading);
    font-weight: 800;
}
.vw-pas__quote-role {
    display: block;
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    margin-top: 2px;
}

.vw-pas__cta {
    margin-top: 32px;
}

@media (max-width: 991px) {
    .vw-pas__grid {
        grid-template-columns: 1fr;
    }
    .vw-pas__image-wrap {
        max-width: 600px;
    }
}
@media (max-width: 575px) {
    .vw-pas__quote {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
}

/* ========================================================================
   KAUFBERATUNG
   ======================================================================== */
.vw-kaufberatung {
    padding: calc(var(--vw-section-py) * 0.8) 0;
}
.vw-kaufberatung h2 { margin-bottom: 8px; }
.vw-kaufberatung__subline { margin-bottom: 40px; }

.vw-kaufberatung__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vw-gap);
}
.vw-kaufberatung__card {
    background: var(--vw-bg-light);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--vw-radius);
    padding: 28px;
}
.vw-kaufberatung__num {
    display: inline-block;
    background: var(--vw-text);
    color: var(--vw-text-light);
    font-family: var(--vw-font-special);
    font-size: var(--vw-badge-size);
    padding: 5px 14px;
    border-radius: var(--vw-radius-pill);
    margin-bottom: 20px;
}
.vw-kaufberatung__card h3 { margin-bottom: 12px; }
.vw-kaufberatung__card p { margin-bottom: 12px; }

@media (max-width: 767px) {
    .vw-kaufberatung__grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   FERTIGUNG (Lasercutten & Rohrlaser)
   ======================================================================== */
.vw-fertigung {
    padding: var(--vw-section-py) 0;
    background: var(--vw-bg-alt, #f5f5f5);
}
.vw-fertigung h2 { margin-bottom: 8px; }
.vw-fertigung__subline { margin-bottom: 40px; }

.vw-fertigung__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vw-gap);
}
.vw-fertigung__card {
    background: var(--vw-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--vw-radius);
    overflow: hidden;
}
.vw-fertigung__img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.vw-fertigung__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.vw-fertigung__card:hover .vw-fertigung__img img {
    transform: scale(1.03);
}
.vw-fertigung__body {
    padding: 28px;
}
.vw-fertigung__body h3 {
    margin-bottom: 12px;
    font-size: var(--vw-h3);
}
.vw-fertigung__body p {
    color: var(--vw-text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}
.vw-fertigung__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vw-text);
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.2s;
}
.vw-fertigung__link:hover {
    gap: 10px;
}

@media (max-width: 767px) {
    .vw-fertigung__grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   FAQ (Akkordeon)
   ======================================================================== */
.vw-faq {
    background: var(--vw-bg-alt);
    padding: calc(var(--vw-section-py) * 0.66) 0;
}
.vw-faq h2 { margin-bottom: 8px; }
.vw-faq__subline { margin-bottom: 40px; }

.vw-faq__list {
    max-width: 800px;
}
.vw-faq__item {
    border-bottom: 1px solid var(--vw-border, rgba(0,0,0,0.08));
}
.vw-faq__item:first-child {
    border-top: 1px solid var(--vw-border, rgba(0,0,0,0.08));
}
.vw-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: var(--vw-font-heading);
    font-weight: var(--vw-h4-weight, 800);
    font-size: var(--vw-h4);
    cursor: pointer;
    list-style: none;
}
.vw-faq__question::-webkit-details-marker { display: none; }
.vw-faq__question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--vw-text);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s ease;
}
.vw-faq__item[open] .vw-faq__question::after {
    content: '−';
}
.vw-faq__answer {
    padding: 0 0 20px;
}
.vw-faq__answer p {
    margin: 0;
}

/* ========================================================================
   SEO LOCAL (dezent)
   ======================================================================== */
.vw-seo {
    background: var(--vw-bg-alt);
    padding: calc(var(--vw-section-py) * 0.66) 0;
}
.vw-seo h2 {
    margin-bottom: 12px;
}
.vw-seo p {
    color: rgba(0,0,0,0.6);
    margin-bottom: 12px;
    font-size: 15px;
}

/* Leistungen-Liste */
.vw-seo__leistungen {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.vw-seo__leistungen li {
    margin-bottom: 6px;
    font-size: 15px;
    color: rgba(0,0,0,0.5);
}
.vw-seo__leistungen a {
    color: var(--vw-text);
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,0.2);
    text-underline-offset: 2px;
    font-weight: 600;
}
.vw-seo__leistungen a:hover {
    text-decoration-color: var(--vw-text);
}
.vw-seo__leistungen strong {
    font-weight: 600;
    color: var(--vw-text);
}
.vw-seo__leistungen span {
    color: rgba(0,0,0,0.45);
    margin-left: 4px;
}

/* ========================================================================
   VARIANTEN-VERGLEICH
   ======================================================================== */
.vw-varianten {
    background: var(--vw-bg-alt, #f5f5f5);
    padding: var(--vw-section-py) 0;
}
.vw-varianten h2 { margin-bottom: 8px; }
.vw-varianten__subline { margin-bottom: 40px; }

.vw-varianten__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vw-gap);
}
.vw-varianten__card {
    background: var(--vw-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--vw-radius);
    padding: 44px 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
/* Badge nach unten schieben (Card atmet, gleichmäßige Höhe) */
.vw-varianten__card .vw-varianten__badge { margin-top: auto; align-self: flex-start; }
.vw-varianten__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.vw-varianten__card h3 { margin-bottom: 12px; }
.vw-varianten__card p {
    font-size: 15px;
    color: var(--vw-text);
    margin-bottom: 16px;
}
.vw-varianten__badge {
    display: inline-block;
    margin-top: auto;
    font-size: var(--vw-badge-size);
}

@media (max-width: 991px) {
    .vw-varianten__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .vw-varianten__grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   DIFFERENZIERUNG (5 Punkte)
   ======================================================================== */
.vw-diff {
    background: var(--vw-bg-alt, #f5f5f5);
    color: var(--vw-text);
    padding: var(--vw-section-py) 0;
}
.vw-diff h2 { color: var(--vw-text); margin-bottom: 8px; }
.vw-diff__subline { margin-bottom: 40px; }

.vw-diff__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vw-gap);
}
.vw-diff__card {
    background: var(--vw-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--vw-radius);
    padding: 28px;
}
.vw-diff__num {
    display: inline-block;
    background: var(--vw-text);
    color: var(--vw-text-light);
    font-family: var(--vw-font-special);
    font-size: var(--vw-badge-size);
    padding: 5px 14px;
    border-radius: var(--vw-radius-pill);
    margin-bottom: 20px;
}
.vw-diff__card h3 {
    margin-bottom: 12px;
}
.vw-diff__card p {
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .vw-diff__grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   TEAM (5-6 Bereich-Karten)
   ======================================================================== */
.vw-team {
    padding: var(--vw-section-py) 0;
    background: var(--vw-bg-alt, #f5f5f5);
}
.vw-team h2 { margin-bottom: 8px; }
.vw-team__subline { margin-bottom: 40px; color: var(--vw-text-muted); }

.vw-team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vw-gap);
    align-items: stretch;
}
.vw-team__card {
    background: var(--vw-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--vw-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.vw-team__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--vw-bg-alt);
}
.vw-team__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vw-team__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.vw-team__title {
    font-size: var(--vw-h4);
    margin: 0 0 10px;
}
.vw-team__desc {
    color: var(--vw-text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 12px;
}
.vw-team__names {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .vw-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .vw-team__grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   STORY (Editorial-Block, Magazin-Stil)
   ======================================================================== */
.vw-story {
    padding: calc(var(--vw-section-py) * 1.2) 24px;
    background: var(--vw-bg-light, #fff);
}
.vw-story__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}
.vw-story__eyebrow {
    font-family: var(--vw-font-special);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--vw-text-muted);
    margin: 0 0 24px;
    position: relative;
    padding-left: 36px;
}
.vw-story__eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--vw-text-muted);
}
.vw-story__headline {
    font-family: var(--vw-font-heading);
    font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--vw-text);
    margin: 0 0 32px;
}
.vw-story__lead {
    font-family: var(--vw-font-heading);
    font-size: clamp(1.15rem, 1rem + 0.4vw, 1.4rem);
    line-height: 1.55;
    font-weight: 500;
    color: var(--vw-text);
    margin: 0 0 32px;
}
.vw-story__body {
    font-size: var(--vw-body, 1rem);
    line-height: 1.75;
    color: var(--vw-text);
}
.vw-story__body p {
    margin: 0 0 1.2em;
}
.vw-story__body p:last-child {
    margin-bottom: 0;
}
.vw-story__pullquote {
    font-family: var(--vw-font-heading);
    font-style: italic;
    font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem);
    line-height: 1.45;
    color: var(--vw-text);
    margin: 48px 0;
    padding: 0 0 0 24px;
    border: 0;
    border-left: 3px solid var(--vw-signal, #1E8712);
}
.vw-story__signature {
    font-size: 0.95rem;
    color: var(--vw-text-muted);
    margin: 32px 0 0;
    text-align: right;
}

/* ========================================================================
   GRÜNDERSTORY (Trust + Persönlichkeit)
   ======================================================================== */
.vw-gruender {
    padding: var(--vw-section-py) 0;
    background: var(--vw-bg-alt, #f5f5f5);
    position: relative;
    overflow: hidden;
}
.vw-gruender--has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--vw-gruender-bg) center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
}
.vw-gruender .vw-container {
    position: relative;
    z-index: 1;
}

.vw-gruender__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
}
.vw-gruender__portrait {
    aspect-ratio: 4/5;
    border-radius: var(--vw-radius);
    overflow: hidden;
    background: var(--vw-bg-light, #fff);
    border: 1px solid rgba(0,0,0,0.06);
}
.vw-gruender__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vw-gruender__intro {
    font-family: var(--vw-font-heading);
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
    font-weight: 700;
    color: var(--vw-text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.vw-gruender__quote {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}
.vw-gruender__quote p {
    font-family: var(--vw-font-heading);
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--vw-text);
    margin: 0;
}
.vw-gruender__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vw-gruender__name {
    font-weight: 800;
    font-size: 1.1rem;
}
.vw-gruender__role {
    color: var(--vw-text-muted);
    font-size: 0.95rem;
}

/* Stats Banner unter dem Quote */
.vw-gruender__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vw-gap);
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.vw-gruender__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.vw-gruender__stat-num {
    font-family: var(--vw-font-heading);
    font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--vw-text);
}
.vw-gruender__stat-label {
    font-size: 0.95rem;
    color: var(--vw-text-muted);
}

@media (max-width: 991px) {
    .vw-gruender__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .vw-gruender__portrait {
        max-width: 280px;
        aspect-ratio: 1/1;
    }
    .vw-gruender__stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }
}

/* ========================================================================
   USP BAR (Global, Pre-Footer)
   ======================================================================== */
.vw-usp-bar {
    background: var(--vw-signal, #1E8712);   /* konsolidiert: war 4× deklariert, Rest war tot (überschrieben) */
    padding: 36px 0;   /* nur vertikal — horizontales Padding macht der innere Container */
    display: block;    /* Grid liegt im inneren .vw-usp-bar__grid (= .vw-container) */
}
.vw-usp-bar__item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.vw-usp-bar__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.vw-usp-bar__icon img,
.vw-usp-bar__icon svg {
    width: 64px;
    height: 64px;
    display: block;
    stroke: currentColor;
}
.vw-usp-bar__item h4,
.vw-usp-bar__label {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .vw-usp-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .vw-usp-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================================
   FOOTER CARDS (Global, Pre-Footer)
   ======================================================================== */
.vw-footer-cards {
    background: var(--vw-bg-dark, #1a1a1a);
    padding: var(--vw-section-py) 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vw-gap);
}
.vw-footer-cards--2col { grid-template-columns: repeat(2, 1fr); }
.vw-footer-cards__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--vw-radius-lg);
    color: var(--vw-text-light);
    text-decoration: none;
}
.vw-footer-cards__label {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--vw-text-light);
}
.vw-footer-cards__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    flex: 1;
}
.vw-footer-cards__btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--vw-radius);
    color: var(--vw-text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
    align-self: flex-start;
}
.vw-footer-cards__btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

@media (max-width: 767px) {
    .vw-footer-cards { grid-template-columns: 1fr; }
}

/* ========================================================================
   FOOTER (Global)
   ======================================================================== */
.vw-footer {
    background: var(--vw-cta);
    padding: 48px 0 24px;
}
.vw-footer__products {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
}
.vw-footer__product-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.vw-footer__product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.vw-footer__product-list li { list-style: none; }
.vw-footer__logo {
    justify-self: end;
    flex-shrink: 0;
}
.vw-footer__logo img,
.vw-footer__logo svg { height: 60px; width: auto; }

.vw-footer__contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vw-gap);
    margin-bottom: 40px;
}
.vw-footer__contact-item strong {
    display: block;
    font-family: var(--vw-font-heading);
    font-weight: 800;
    margin-bottom: 4px;
}
.vw-footer__contact-item a { color: inherit; }

.vw-footer__social {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.vw-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transition: background 0.2s, transform 0.2s;
}
.vw-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: translateY(-2px);
}
.vw-footer__social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}
.vw-footer__legal {
    margin-bottom: 24px;
}
.vw-footer__legal-list {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.vw-footer__legal-list li { list-style: none; }
.vw-footer__legal a { text-decoration: underline; }

.vw-footer__copy {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--vw-text);
}
.vw-footer__copy a { color: var(--vw-text); text-decoration: none; }
.vw-footer__made-by {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    color: var(--vw-text-muted);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.vw-footer__made-by:hover { opacity: 1; }
.vw-footer__made-by-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
}
.vw-footer__made-by-logo {
    width: 24px;
    height: 12px;
    color: currentColor;
}

@media (max-width: 767px) {
    .vw-footer__products { grid-template-columns: 1fr; gap: 24px; }
    .vw-footer__logo { justify-self: start; }
    .vw-footer__contact { grid-template-columns: 1fr; }
    .vw-footer__copy { flex-direction: column; gap: 8px; }
}

/* ========================================================================
   IMPRESSUM / RECHTLICHES
   ======================================================================== */
.vw-impr {
    background: var(--vw-bg-alt);
    padding: var(--vw-section-py) 0;
}

.vw-impr__headline {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--vw-ink, #383E42);
    margin-bottom: 32px;
}

.vw-impr__card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 48px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.vw-impr__card--zusatz {
    margin-top: 24px;
}

.vw-impr__block {
    padding: 24px 0;
    border-bottom: 1px solid var(--vw-bg-alt);
}
.vw-impr__block:first-child {
    padding-top: 0;
}
.vw-impr__block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vw-impr__label {
    font-family: var(--vw-font-heading);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--vw-ink, #383E42);
    margin: 0 0 12px 0;
}

.vw-impr__firma {
    font-family: var(--vw-font-body);
    font-weight: 700;
    font-size: clamp(20px, 2vw, 26px);
    margin: 0;
}

.vw-impr__block p {
    margin: 0;
    line-height: 1.7;
}
.vw-impr__block a {
    color: var(--vw-primary);
    text-decoration: none;
}
.vw-impr__block a:hover {
    text-decoration: underline;
}

/* Definition List fuer Firmenbuch / UID */
.vw-impr__dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vw-impr__dl-row {
    display: flex;
    gap: 12px;
    align-items: baseline;
}
.vw-impr__dl-row dt {
    color: var(--vw-text-muted, #888);
    font-size: 14px;
    min-width: 160px;
    flex-shrink: 0;
}
.vw-impr__dl-row dd {
    margin: 0;
    font-weight: 500;
}

/* Zusatztext-Card */
.vw-impr__text {
    line-height: 1.7;
}
.vw-impr__text p:first-child { margin-top: 0; }
.vw-impr__text p:last-child { margin-bottom: 0; }

/* Prose-Card (Datenschutz, AGB etc.) */
.vw-impr__prose {
    line-height: 1.75;
}
.vw-impr__prose h2 {
    font-size: clamp(18px, 2vw, 22px);
    margin: 32px 0 12px 0;
}
.vw-impr__prose h2:first-child {
    margin-top: 0;
}
.vw-impr__prose h3 {
    font-size: clamp(16px, 1.5vw, 18px);
    margin: 24px 0 8px 0;
}
.vw-impr__prose p {
    margin: 0 0 12px 0;
}
.vw-impr__prose ul,
.vw-impr__prose ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}
.vw-impr__prose li {
    margin-bottom: 6px;
}
.vw-impr__prose a {
    color: var(--vw-primary);
    text-decoration: underline;
}
.vw-impr__prose strong {
    font-weight: 600;
}
/* Rechtsseiten-Helfer: „Stand"-Zeile + AGB-Nummernliste (grüne Kreise, CD) */
.vw-impr__prose .vw-legal-stand { font-family: var(--vw-font-heading); font-size: 14px; color: var(--vw-ink-soft, #4F5559); margin: 0 0 22px; }
.vw-impr__prose ol.vw-legal-list { list-style: none; margin: 8px 0 0; padding: 0; counter-reset: vwagb; }
.vw-impr__prose ol.vw-legal-list > li { counter-increment: vwagb; position: relative; padding-left: 46px; margin: 0 0 16px; }
.vw-impr__prose ol.vw-legal-list > li::before { content: counter(vwagb); position: absolute; left: 0; top: -1px; width: 30px; height: 30px; background: var(--vw-signal, #1E8712); color: #fff; border-radius: 50%; font-family: var(--vw-font-heading); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; }
/* Accordion (<details>) in Rechts-/Infoseiten — z. B. Qualitätsanforderungen */
.vw-impr__prose details { border: 1px solid rgba(0,0,0,.10); border-radius: 12px; margin: 0 0 12px; overflow: hidden; background: #fff; }
.vw-impr__prose details[open] { border-color: var(--vw-signal, #1E8712); }
.vw-impr__prose summary { list-style: none; cursor: pointer; padding: 16px 20px; font-family: var(--vw-font-heading); font-weight: 700; font-size: clamp(16px, 1.5vw, 18px); color: var(--vw-ink, #383E42); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.vw-impr__prose summary::-webkit-details-marker { display: none; }
.vw-impr__prose summary::after { content: "+"; font-family: var(--vw-font-heading); font-size: 24px; line-height: 1; color: var(--vw-signal, #1E8712); flex-shrink: 0; }
.vw-impr__prose details[open] summary::after { content: "\2013"; }
.vw-impr__prose details > ul, .vw-impr__prose details > p { margin: 0; padding: 0 20px 18px; }
.vw-impr__prose details > ul { padding-left: 44px; }
/* Qualitätsanforderungen: Detail-Inhalt je Abfallart im Accordion */
.vw-impr__prose .vw-qa__detail { padding: 6px 20px 22px; }
.vw-impr__prose .vw-qa__detail h4 { font-family: var(--vw-font-heading); font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--vw-signal, #1E8712); margin: 18px 0 8px; }
.vw-impr__prose .vw-qa__detail h4:first-child { margin-top: 2px; }
.vw-impr__prose .vw-qa__detail p { font-size: 16px; margin: 0; }
.vw-impr__prose .vw-qa__detail ul { margin: 0; }
.vw-impr__prose ul.vw-qa__limits { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 3px 22px; }
.vw-impr__prose ul.vw-qa__limits li { font-family: var(--vw-font-body); font-size: 15px; line-height: 1.5; color: var(--vw-ink, #383E42); padding-left: 15px; position: relative; margin: 0; }
.vw-impr__prose ul.vw-qa__limits li::before { content: "·"; position: absolute; left: 3px; top: -1px; color: var(--vw-signal, #1E8712); font-weight: 700; }
/* Einspaltige Listen im QA-Detail (lange Sätze, z. B. Ausschlussliste) — grüne Punkte */
.vw-impr__prose .vw-qa__detail ul:not(.vw-qa__limits) { list-style: none; padding: 0; margin: 0; }
.vw-impr__prose .vw-qa__detail ul:not(.vw-qa__limits) li { position: relative; padding-left: 18px; margin: 0 0 6px; font-family: var(--vw-font-body); font-size: 16px; line-height: 1.7; color: var(--vw-ink, #383E42); }
.vw-impr__prose .vw-qa__detail ul:not(.vw-qa__limits) li::before { content: ""; position: absolute; left: 3px; top: .62em; width: 6px; height: 6px; border-radius: 50%; background: var(--vw-signal, #1E8712); }

@media (max-width: 767px) {
    .vw-impr__card {
        padding: 28px 24px;
    }
    .vw-impr__dl-row {
        flex-direction: column;
        gap: 2px;
    }
    .vw-impr__dl-row dt {
        min-width: 0;
    }
}

/* ========================================================================
   SECTION: KONTAKT (Info + Formular)
   ======================================================================== */
.vw-kontakt { padding: var(--vw-section-py) 0; background: var(--vw-bg-alt, #F5F4F1); }
.vw-kontakt__header { text-align: center; max-width: 640px; margin: 0 auto clamp(32px, 5vw, 52px); }
.vw-kontakt__h { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(30px, 5vw, 48px); line-height: 1.08; letter-spacing: -0.025em; color: var(--vw-ink, #383E42); margin: 0 0 12px; }
.vw-kontakt__sub { font-family: var(--vw-font-body); font-size: 18px; line-height: 1.6; color: var(--vw-ink-soft, #4F5559); margin: 0; }

/* ── Boxen (1–4, je nach befüllten Boxen) ── */
.vw-kontakt__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 20px); align-items: stretch; }
.vw-kontakt__cards--3 { grid-template-columns: repeat(3, 1fr); max-width: 820px; margin: 0 auto; }
.vw-kontakt__cards--2 { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 0 auto; }
.vw-kontakt__cards--1 { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
.vw-kontakt__card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; background: #fff; border-radius: 16px; padding: clamp(22px, 2.5vw, 30px) 18px; text-decoration: none; color: var(--vw-ink, #383E42); box-shadow: 0 1px 3px rgba(0,0,0,.05); transition: transform .25s, box-shadow .25s; }
a.vw-kontakt__card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.09); }
.vw-kontakt__card-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--vw-signal, #1E8712); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; flex-shrink: 0; }
.vw-kontakt__card-icon svg { width: 22px; height: 22px; color: #fff; }
.vw-kontakt__card-label { font-family: var(--vw-font-heading); font-size: 13px; color: var(--vw-ink-soft, #4F5559); }
.vw-kontakt__card-value { font-family: var(--vw-font-heading); font-weight: 600; font-size: 15px; line-height: 1.45; color: var(--vw-ink, #383E42); word-break: break-word; width: 100%; }
.vw-kontakt__card-value a { color: inherit; text-decoration: none; }

/* Shortcode-Ausgaben (L7-business-hours) innerhalb einer Box */
.vw-kontakt__card-value .l7bh-weekday-list ul { list-style: none; margin: 6px 0 0; padding: 0; text-align: left; }
.vw-kontakt__card-value .l7bh-weekday-list li { font-family: var(--vw-font-body); font-weight: 400; font-size: 14px; color: var(--vw-ink, #383E42); display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-bottom: 1px solid var(--vw-bg-alt, #F5F4F1); }
.vw-kontakt__card-value .l7bh-weekday-list li:last-child { border-bottom: none; }
.vw-kontakt__card-value .day-name { color: var(--vw-ink-soft, #4F5559); }
.vw-kontakt__card-value .l7bh-today, .vw-kontakt__card-value .l7bh-live { font-weight: 400; color: var(--vw-ink-soft, #4F5559); }

/* Responsive */
@media (max-width: 860px) { .vw-kontakt__cards, .vw-kontakt__cards--3, .vw-kontakt__cards--4 { grid-template-columns: repeat(2, 1fr); max-width: 560px; margin: 0 auto; } }
@media (max-width: 520px) { .vw-kontakt__cards, .vw-kontakt__cards--2, .vw-kontakt__cards--3, .vw-kontakt__cards--4 { grid-template-columns: 1fr; max-width: 340px; } }

/* ==========================================================================
   Leistungen Swiper — full-width wie Portfolio, weißer Hintergrund
   ========================================================================== */
.vw-leistungen {
    padding: var(--vw-section-py) 0;
    width: 100%;
    background: var(--vw-bg-alt, #f5f5f5);
}

/* ── Hero + Leistungen kombiniert: exakt 100vh zusammen ── */
/* Hero = 100vh - ALLE oberen Bars (nav, topbar, urgency) - Swiper-Höhe */
[data-section="hero"]:has(+ [data-section="leistungen"]) .vw-hero {
    min-height: calc(
        100vh
        - var(--vw-nav-h)
        - var(--vw-topbar-h)
        - var(--vw-urgency-h)
        - var(--vw-swiper-h)
    );
}
[data-section="hero"] + [data-section="leistungen"] .vw-leistungen {
    padding: 16px 0;
    height: var(--vw-swiper-h);
}
[data-section="hero"] + [data-section="leistungen"] .vw-leistungen__subline {
    display: none;
}

/* Desktop: Headline links, Cards rechts (horizontal layout) */
@media (min-width: 1200px) {
    [data-section="hero"] + [data-section="leistungen"] .vw-leistungen {
        display: flex;
        align-items: center;
        gap: 20px;
        padding-left: max(2vw, 24px);
    }
    [data-section="hero"] + [data-section="leistungen"] .vw-leistungen__header {
        flex: 0 0 132px;
        padding: 0;
        margin: 0;
    }
    [data-section="hero"] + [data-section="leistungen"] .vw-leistungen__headline {
        font-size: clamp(0.85rem, 0.8rem + 0.2vw, 1rem);
        line-height: 1.3;
        margin: 0;
    }
    [data-section="hero"] + [data-section="leistungen"] .vw-leistungen__track {
        flex: 1;
        min-width: 0;
        padding-left: 0;
        padding-right: max(2vw, 24px);
        scroll-padding-left: 0;
    }
}

/* Mobile/Tablet: Hero auch kleiner, Headline OBER den Cards (kein horizontal-Layout) */
@media (max-width: 1199px) {
    [data-section="hero"]:has(+ [data-section="leistungen"]) .vw-hero {
        min-height: calc(
            100vh
            - var(--vw-nav-h-mobile)
            - var(--vw-topbar-h)
            - var(--vw-urgency-h)
            - var(--vw-swiper-h-mobile)
        );
    }
    [data-section="hero"] + [data-section="leistungen"] .vw-leistungen {
        height: var(--vw-swiper-h-mobile);
    }
    [data-section="hero"] + [data-section="leistungen"] .vw-leistungen__header {
        padding: 0 max(2vw, 24px);
        margin-bottom: 8px;
    }
    [data-section="hero"] + [data-section="leistungen"] .vw-leistungen__headline {
        font-size: 0.85rem;
        margin: 0;
    }
}
.vw-leistungen__header {
    padding: 0 max(2vw, 24px);
    margin-bottom: var(--vw-gap, 24px);
}
.vw-leistungen__headline {
    font-size: var(--vw-h2);
    font-weight: var(--vw-h2-weight);
    line-height: var(--vw-h2-lh);
    color: var(--vw-text);
    margin: 0 0 6px;
}
.vw-leistungen__subline {
    color: var(--vw-text-muted);
    font-size: var(--vw-body);
    margin: 0;
}

/* ── Track (scroll-snap, full-width mit 2vw padding wie Portfolio) ── */
.vw-leistungen__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 max(2vw, 24px) 8px;
    scroll-padding-left: max(2vw, 24px);
    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.vw-leistungen__track::-webkit-scrollbar {
    display: none;
}

/* ── Card — Pill/Badge-Form, weiß auf grau ── */
.vw-leistungen__card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 8px 28px 8px 8px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--vw-radius);
    text-decoration: none;
    color: var(--vw-text, #1d1d1d);
    scroll-snap-align: start;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.vw-leistungen__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    border-color: rgba(0,0,0,0.08);
}
.vw-leistungen__card:focus-visible {
    outline: 2px solid var(--vw-text);
    outline-offset: 3px;
    transform: translateY(-3px);
}

/* Scroll Progress Indicator */
.vw-leistungen__progress {
    position: relative;
    height: 3px;
    background: rgba(0,0,0,0.06);
    border-radius: 3px;
    margin: 10px max(2vw, 24px) 0;
    overflow: hidden;
}
.vw-leistungen__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--vw-text);
    border-radius: 3px;
    transition: transform 0.1s linear;
    transform: translateX(0);
}

/* Progress: wenn Swiper kombiniert mit Hero, Indicator nicht anzeigen (Platz zu knapp) */
[data-section="hero"] + [data-section="leistungen"] .vw-leistungen__progress {
    display: none;
}

/* Card image — Kreis wie CTA-Avatar */
.vw-leistungen__card-img {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: calc(var(--vw-radius) - 4px);
    overflow: hidden;
}
.vw-leistungen__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card title */
.vw-leistungen__card-title {
    flex: 1;
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(0.8rem, 0.72rem + 0.2vw, 0.95rem);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Card badge — beliebt Pill-in-Pill */
.vw-leistungen__badge {
    display: inline-block;
    padding: 2px 9px;
    background: var(--vw-signal, #1E8712);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.02em;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 6px;
    white-space: nowrap;
}

/* Card arrow */
.vw-leistungen__card-arrow {
    flex: 0 0 16px;
    opacity: 0.2;
    transition: opacity 0.2s, transform 0.2s;
}
.vw-leistungen__card:hover .vw-leistungen__card-arrow {
    opacity: 0.6;
    transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .vw-leistungen__card {
        padding: 6px 20px 6px 6px;
        gap: 12px;
    }
    .vw-leistungen__card-img {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
    }
    .vw-leistungen__track {
        gap: 10px;
    }
}

/* (alte vw-kontakt-Responsive entfernt — Card-Layout bringt eigene Media-Queries mit) */


/* ==========================================================================
   VORWAGNER-SPEZIFISCHE SECTIONS
   - leistungen-big (6 Bento-Cards für Startseite)
   - gefaehrliche-abfaelle (USP-Spezialblock CP-Anlage)
   - standorte (3-Standort-Block)
   - Optische Tweaks für CD-Look (Pillen, Hover-Fills, Pre-Footer)
   ========================================================================== */


/* ============ LEISTUNGEN-BIG (6 Bento-Cards) ============ */
.vw-leistungen-big {
    background: var(--vw-bg-alt, #F5F4F1);
    padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px);
}
.vw-leistungen-big__container {
    max-width: var(--vw-container, 1400px);
    margin: 0 auto;
}
.vw-leistungen-big__head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(40px, 6vh, 60px);
}
.vw-leistungen-big__eyebrow {
    display: inline-block;
    background: var(--vw-highlight, #1E8712);
    color: var(--vw-ink, #383E42);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--vw-font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.vw-leistungen-big__headline {
    font-family: var(--vw-font-heading);
    font-weight: 900;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--vw-ink, #383E42);
    margin: 0;
}
.vw-leistungen-big__subline {
    font-family: var(--vw-font-body);
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.55;
    color: var(--vw-ink-soft, #4F5559);
    margin-top: 28px;
}
.vw-leistungen-big__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.vw-leistung-block {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}
.vw-leistung-block:hover { transform: translateY(-4px); }
.vw-leistung-block__bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vw-leistung-block:hover .vw-leistung-block__bg { transform: scale(1.06); }
.vw-leistung-block__overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.78) 100%);
    transition: background 0.4s;
}
.vw-leistung-block:hover .vw-leistung-block__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.88) 100%);
}
/* Placeholder-Gradients wenn kein Bild gesetzt */
.vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, #4A5A4A 0%, #1F2D1F 100%); }
.vw-leistung-block--1 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, #C4D2A8 0%, #5A6E40 100%); }
.vw-leistung-block--2 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, #B3C4D4 0%, #3D5267 100%); }
.vw-leistung-block--3 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, #E3C890 0%, #8B6D38 100%); }
.vw-leistung-block--4 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, #D4A8A0 0%, #6E4548 100%); }
.vw-leistung-block--5 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, var(--vw-signal) 0%, var(--vw-signal-deep) 100%); }
.vw-leistung-block--6 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, #4A5A4A 0%, #0F1A0F 100%); }

.vw-leistung-block__num {
    position: absolute; top: 28px; left: 32px;
    font-family: var(--vw-font-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    z-index: 1;
}
.vw-leistung-block__content {
    position: relative; z-index: 1;
    padding: 80px 32px 32px;
    height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    gap: 14px;
}
.vw-leistung-block__title {
    font-family: var(--vw-font-heading);
    font-weight: 900;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 0.98; letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    max-width: 14ch;
    margin: 0;
}
.vw-leistung-block__text {
    font-family: var(--vw-font-body);
    font-size: 16px; line-height: 1.45;
    color: rgba(255,255,255,0.88);
    max-width: 32ch;
    margin: 0;
}
.vw-leistung-block__arrow {
    position: absolute; bottom: 28px; right: 28px;
    width: 48px; height: 48px;
    background: #fff;
    color: var(--vw-ink, #383E42);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}
.vw-leistung-block:hover .vw-leistung-block__arrow {
    background: var(--vw-signal, #1E8712);
    color: #fff;
    transform: rotate(-45deg);
}

/* Inline-Conversion-Box unter den 6 Cards */
.vw-leistung-cta {
    margin-top: 16px;
    background: #fff;
    border-radius: 24px;
    padding: clamp(20px, 2.5vw, 32px);
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    flex-wrap: wrap;
    border: 1px solid rgba(0,0,0,0.05);
}
.vw-leistung-cta__avatars { display: flex; flex-shrink: 0; }
.vw-leistung-cta__avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #5C7A5C 0%, #2F4A2F 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--vw-font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}
.vw-leistung-cta__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vw-leistung-cta__avatar:not(:first-child) { margin-left: -18px; }
.vw-leistung-cta__text { flex: 1; min-width: 220px; }
.vw-leistung-cta__headline {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--vw-ink, #383E42);
}
.vw-leistung-cta__sub {
    font-family: var(--vw-font-body);
    font-size: 14px; line-height: 1.5;
    color: var(--vw-ink-soft, #4F5559);
    margin-top: 4px;
}
.vw-leistung-cta__sub a { color: var(--vw-signal, #1E8712); font-weight: 600; text-decoration: none; white-space: nowrap; }
.vw-leistung-cta__sub a:hover { text-decoration: underline; }
.vw-leistung-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--vw-signal, #1E8712);
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-family: var(--vw-font-sans);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    flex-shrink: 0;
}
.vw-leistung-cta__btn:hover {
    background: var(--vw-signal-hover, #23A015);
    transform: translateY(-2px);
}
.vw-leistung-cta__btn-arrow { transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.vw-leistung-cta__btn:hover .vw-leistung-cta__btn-arrow { transform: translateX(3px); }

@media (max-width: 900px) {
    .vw-leistungen-big__grid { grid-template-columns: 1fr; }
    .vw-leistung-block { aspect-ratio: 4/3; }
}
@media (max-width: 700px) {
    .vw-leistung-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
    .vw-leistung-cta__btn { width: 100%; justify-content: center; }
}


/* ============ GEFÄHRLICHE ABFÄLLE (USP-Spezialblock) ============ */
.vw-gefahr {
    position: relative;
    isolation: isolate;
    padding: clamp(80px, 14vh, 140px) clamp(20px, 4vw, 48px);
    color: #fff;
    overflow: hidden;
}
.vw-gefahr__bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
}
.vw-gefahr__bg--placeholder {
    background:
        radial-gradient(ellipse 70% 60% at 30% 30%, rgba(120, 160, 90, 0.45), transparent 65%),
        radial-gradient(ellipse 60% 50% at 75% 70%, rgba(40, 70, 30, 0.5), transparent 60%),
        linear-gradient(180deg, #5C7A4C 0%, #3D5C3D 45%, #1F2D1F 100%);
}
.vw-gefahr__overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}
.vw-gefahr__container {
    max-width: var(--vw-container, 1400px);
    margin: 0 auto;
}
.vw-gefahr__inner {
    max-width: 800px;
}
.vw-gefahr__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--vw-highlight, #1E8712);
    color: var(--vw-ink, #383E42);
    padding: 7px 16px;
    border-radius: 50px;
    font-family: var(--vw-font-sans);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.vw-gefahr__headline {
    font-family: var(--vw-font-heading);
    font-weight: 900;
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0;
    text-transform: none;
}
.vw-gefahr__lead {
    font-family: var(--vw-font-body);
    font-size: clamp(18px, 1.4vw, 24px);
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    margin-top: 28px;
    max-width: 60ch;
}
.vw-gefahr__body {
    font-family: var(--vw-font-body);
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
    margin-top: 24px;
}
.vw-gefahr__body p { margin: 0 0 14px; }
.vw-gefahr__body p:last-child { margin-bottom: 0; }
.vw-gefahr__body strong { color: #fff; font-weight: 700; }
.vw-gefahr__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.22);
}
.vw-gefahr__feature-title {
    font-family: var(--vw-font-sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--vw-highlight, #1E8712);
    text-transform: uppercase;
}
.vw-gefahr__feature-text {
    font-family: var(--vw-font-body);
    font-size: 14px; line-height: 1.5;
    color: rgba(255,255,255,0.78);
    margin-top: 6px;
}
.vw-gefahr__closing {
    font-family: var(--vw-font-heading);
    font-weight: 700;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.3;
    color: #fff;
    margin-top: 36px;
    max-width: 50ch;
}
.vw-gefahr__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--vw-signal, #1E8712);
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-family: var(--vw-font-sans);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-top: 36px;
    transition: background 0.2s, transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vw-gefahr__cta:hover {
    background: var(--vw-signal-hover, #23A015);
    transform: translateY(-2px);
}
@media (max-width: 800px) {
    .vw-gefahr__features { grid-template-columns: 1fr; gap: 16px; }
}


/* ============ STANDORTE (3-Block) ============ */
.vw-standorte {
    background: #fff;
    padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px);
}
.vw-standorte__container { max-width: var(--vw-container, 1400px); margin: 0 auto; }
.vw-standorte__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vh, 60px); }
.vw-standorte__eyebrow {
    display: inline-block;
    background: var(--vw-highlight, #1E8712);
    color: var(--vw-ink, #383E42);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--vw-font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.vw-standorte__headline {
    font-family: var(--vw-font-heading);
    font-weight: 900;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1;
    letter-spacing: -0.025em;
    color: var(--vw-ink, #383E42);
    margin: 0;
}
.vw-standorte__subline {
    font-family: var(--vw-font-body);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.55;
    color: var(--vw-ink-soft, #4F5559);
    margin-top: 24px;
}
.vw-standorte__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.vw-standort {
    background: var(--vw-bg-alt, #F5F4F1);
    border-radius: 20px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s;
}
.vw-standort:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.vw-standort__img {
    aspect-ratio: 16/10;
    background-size: cover; background-position: center;
}
.vw-standort__img--placeholder {
    background: linear-gradient(135deg, #5C7A5C 0%, #2F4A2F 100%);
}
.vw-standort__body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.vw-standort__name {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--vw-ink, #383E42);
    margin: 0;
}
.vw-standort__address {
    font-family: var(--vw-font-body);
    font-size: 15px;
    color: var(--vw-ink-soft, #4F5559);
    margin-top: 6px;
}
.vw-standort__meta {
    list-style: none;
    padding: 0; margin: 18px 0 0;
    display: flex; flex-direction: column; gap: 8px;
}
.vw-standort__meta li {
    display: flex; gap: 12px; align-items: baseline;
    font-family: var(--vw-font-body);
    font-size: 14px;
    color: var(--vw-ink, #383E42);
}
.vw-standort__meta-label {
    font-family: var(--vw-font-mono);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--vw-ink-soft, #4F5559);
    letter-spacing: 0.08em;
    min-width: 42px;
}
.vw-standort__meta a:hover { color: var(--vw-signal, #1E8712); }
.vw-standort__maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--vw-font-sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--vw-signal, #1E8712);
    text-decoration: none;
    align-self: flex-start;
}
.vw-standort__maps:hover { color: var(--vw-signal-hover, #23A015); }
@media (max-width: 960px) {
    .vw-standorte__grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   VORWAGNER FIXES & POLISH (User-Feedback Runde 1)
   ========================================================================== */

/* 1. ─── Logo-Größe begrenzen (war zu groß) ─── */
.vw-header__logo img,
.vw-header__logo .custom-logo,
.vw-header__logo .custom-logo-link img {
    height: 36px !important;
    max-height: 36px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain;
    display: block;
}
.vw-header__nav a,
.vw-header__nav-right a { font-size: 14px; font-weight: 500; }

/* 2. ─── Linksbündig: leistungen-big Header (analog Hero) ─── */
.vw-leistungen-big {
    padding-inline: clamp(20px, 4vw, 48px);
}
.vw-leistungen-big__head {
    text-align: left;
    max-width: none;   /* volle Container-Breite — wie die differenzierung-Section darüber */
    margin: 0 0 clamp(40px, 6vh, 60px) 0;
}
.vw-leistungen-big__headline {
    font-size: clamp(26px, 3.2vw, 40px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    font-weight: 900;
}
.vw-leistungen-big__subline {
    max-width: none;   /* so breit wie die differenzierung-Subline (volle Breite) */
    margin-left: 0;
    margin-right: auto;
}

/* 3. ─── Border-Radius CD-konsistent (12px statt 24px) ─── */
.vw-leistung-block { border-radius: 12px; }
.vw-leistung-cta   { border-radius: 12px; }
.vw-standort       { border-radius: 12px; }
.vw-about__card    { border-radius: 12px; }
.vw-leistung-block__bg,
.vw-leistung-block__overlay { border-radius: 12px; }

/* 4. ─── Gefährliche Abfälle: Vorwagner-Grün statt Schwarz ─── */
.vw-gefahr {
    background: var(--vw-signal, #1E8712);
    color: #fff;
}
.vw-gefahr__bg { display: none; }
.vw-gefahr__overlay { display: none; }
.vw-gefahr__eyebrow {
    background: #fff;
    color: var(--vw-signal, #1E8712);
}
.vw-gefahr__eyebrow::before { background: var(--vw-signal, #1E8712); }
.vw-gefahr__feature-title {
    color: #fff;
    opacity: 1;
}
.vw-gefahr__features {
    border-top: 1px solid rgba(255,255,255,0.28);
}
.vw-gefahr__feature-text { color: rgba(255,255,255,0.85); }
.vw-gefahr__lead,
.vw-gefahr__body { color: rgba(255,255,255,0.92); }
.vw-gefahr__body strong { color: #fff; }
.vw-gefahr__closing { color: #fff; }
.vw-gefahr__cta {
    background: #fff;
    color: var(--vw-signal, #1E8712);
}
.vw-gefahr__cta:hover {
    background: var(--vw-highlight, #1E8712);
    color: var(--vw-ink, #383E42);
    transform: translateY(-2px);
}

/* 5. ─── Footer: alle Texte hell + lesbar ─── */
.vw-footer { color: rgba(255,255,255,0.85); }
.vw-footer p,
.vw-footer li,
.vw-footer span,
.vw-footer address {
    color: rgba(255,255,255,0.80);
}
.vw-footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}
.vw-footer a:hover {
    color: var(--vw-highlight, #1E8712);
}
.vw-footer__col h4,
.vw-footer h4,
.vw-footer h3,
.vw-footer .vw-footer__heading {
    color: var(--vw-highlight, #1E8712);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 16px;
}
.vw-footer__col strong { color: #fff; }
.vw-footer .vw-btn,
.vw-footer button {
    color: var(--vw-ink, #383E42);
}

/* 6. ─── Hero auch linksbündig (sicher) ─── */
.vw-hero h1 {
    text-align: left;
}
/* Home-Hero-H1 „Ihr Entsorgungspartner in OÖ" nie in „OÖ" umbrechen —
   ab ~2000px ist die H1-Schrift maximal und sprengte sonst die 920px-Deckelung.
   Nur Home (body.home); Service-Seiten mit langen H1 behalten ihre 920px. */
body.home .vw-hero h1 { max-width: none; }
.vw-hero__subline,
.vw-hero__content > * {
    text-align: left;
}


/* ─── Logo-Größe final (custom-logo override) ─── */
.vw-header__logo {
    display: inline-flex;
    align-items: center;
}
.vw-header__logo .custom-logo-link,
.vw-header__logo a {
    display: inline-flex;
    align-items: center;
}
.vw-header__logo img,
.vw-header__logo .custom-logo,
.vw-header__logo .custom-logo-link img,
img.custom-logo {
    height: 32px !important;
    width: auto !important;
    max-width: 200px !important;
    max-height: 32px !important;
    object-fit: contain;
    display: block;
}

/* Nav-Menü Styling Stabilisierung */
.vw-header__nav ul#menu-vorwagner-hauptmenue {
    display: flex;
    gap: 6px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.vw-header__nav ul#menu-vorwagner-hauptmenue li { margin: 0; padding: 0; }
.vw-header__nav ul#menu-vorwagner-hauptmenue a {
    color: var(--vw-ink, #383E42);
    font-family: var(--vw-font-sans);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
}
.vw-header__nav ul#menu-vorwagner-hauptmenue a:hover,
.vw-header__nav ul#menu-vorwagner-hauptmenue .vw-nav__item--active > a {
    color: var(--vw-signal, #1E8712);
    background: var(--vw-bg-alt, #F5F4F1);
}

.vw-header__nav-right ul#menu-vorwagner-kontakt {
    display: flex;
    gap: 16px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.vw-header__nav-right ul#menu-vorwagner-kontakt a {
    color: var(--vw-ink, #383E42);
    font-family: var(--vw-font-sans);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.vw-header__nav-right ul#menu-vorwagner-kontakt a:hover {
    color: var(--vw-signal, #1E8712);
}

@media (max-width: 900px) {
    .vw-header__nav { display: none; }
    .vw-header__nav-right { display: none; }
    .vw-header__toggle { display: flex !important; }
}


/* (Hero auf Detail-Seiten = Basis-Spec, keine Sonderhöhe mehr) */

/* Detail-Page Breadcrumb (über Hero) */
.vw-breadcrumb {
    font-family: var(--vw-font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.vw-breadcrumb a:hover { color: var(--vw-highlight, #1E8712); }
.vw-breadcrumb .sep { margin: 0 8px; opacity: 0.5; }


/* ─── Panel: Logo raus, Close-Button alleine ─── */
.vw-panel__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 56px;
}
.vw-panel__close {
    font-size: 32px;
    line-height: 1;
    width: 44px; height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--vw-ink, #383E42);
    transition: color 0.2s;
}
.vw-panel__close:hover { color: var(--vw-signal, #1E8712); }


/* ─── Hero ohne Background-Bild (Detail-Pages) ─── */
.vw-hero--no-image {
    background:
        radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255, 255, 255, 0.10), transparent 65%),
        linear-gradient(135deg, var(--vw-signal, #1E8712) 0%, var(--vw-signal-deep, #12833F) 100%);
}
.vw-hero--no-image h1,
.vw-hero--no-image .vw-hero__subline,
.vw-hero--no-image .vw-hero__cta-text strong {
    color: #fff;
}
.vw-hero--no-image .vw-hero__subline {
    color: rgba(255,255,255,0.92);
}
.vw-hero--no-image .vw-hero__cta {
    background: #fff;
}
.vw-hero--no-image .vw-hero__cta-text strong { color: var(--vw-ink); }
.vw-hero--no-image .vw-hero__cta-text span { color: var(--vw-ink-soft); }
.vw-hero--no-image .vw-pill--glass {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

/* About-Block: Default-Bild-Fallback */
.vw-about__image
.vw-about__image[style*="team-vorwagner.webp"] {
    background-image: linear-gradient(135deg, #5C7A5C 0%, #2F4A2F 100%) !important;
}

/* Nur die Aktionen-Bar auf Detail-Pages (nicht Home) ausblenden.
   Google-Rating-Badge + Trust-Pills bleiben erlaubt (Social Proof auf Leistungsseiten). */
body.page:not(.page-id-41) .vw-hero__aktionen {
    display: none;
}
/* (Hero-Content auf Detail-Pages = Basis-Spec) */


/* Detail-Pages nutzen jetzt denselben Hero-Spec wie die Home (Basis .vw-hero):
   gleicher Layer, gleicher weißer Text, gleiche Höhe. Einzige Höhen-Abhängigkeit
   ist ein folgender Leistungs-Slider (siehe :has-Regel weiter unten). */


/* ─── Main-Container: kein Padding wenn Sections konfiguriert sind ─── */
/* Wenn die Page Sections nutzt, kommt das Spacing aus den Sections selbst, nicht aus <main>. */
.vw-page:has([data-section]) {
    padding: 0;
}
/* Fallback für ältere Browser ohne :has() — über body-Klasse */
body.page .vw-page {
    padding: 0;
}
/* Aber für Pages OHNE Sections (z.B. nur WP-Content) behalten wir das padding */
body.page .vw-page:not(:has([data-section])) {
    padding: var(--vw-section-py) 0;
}


/* ─── About-Section: simpel (H2 + Text, linksbündig) ─── */
.vw-about__inner {
    max-width: 1320px;
    margin: 0 auto 0 0;
}

/* ─── Hero-CTA: Text weiß auf grünem Pill (Bild-Hero) ─── */
.vw-hero__cta { color: #fff; }
.vw-hero__cta-text strong { color: #fff; }
.vw-hero__cta-text span { color: rgba(255,255,255,0.85); }

/* ─── Hero-Trust-Pills: weißer Text + grünlicher Glass-BG + Icon ─── */
.vw-hero__trust-bar .vw-pill--glass {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(30, 135, 18, 0.55);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.vw-pill__icon { flex-shrink: 0; color: #fff; }

/* Bei Hero OHNE Bild (grüner Gradient) — Pills heller damit sie sich abheben */
.vw-hero--no-image .vw-hero__trust-bar .vw-pill--glass {
    background: rgba(255,255,255,0.18);
}

/* ─── Gefährliche-Abfälle Inner breiter ─── */
.vw-gefahr__inner { max-width: 1200px; }
.vw-about__h {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--vw-ink, #383E42);
    margin: 0 0 24px 0;
}
.vw-about__text {
    font-family: var(--vw-font-body);
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.6;
    color: var(--vw-ink-soft, #4F5559);
}
.vw-about__text p {
    margin: 0 0 16px;
}
.vw-about__text p:last-child {
    margin-bottom: 0;
}


/* (Kontakt-CTA entfernt — ersetzt durch die Global Section "anfrage-cta") */


/* ─── Container-Varianten: 2x2 statt 1x4 ─── */
.vw-varianten__grid { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 600px) {
    .vw-varianten__grid { grid-template-columns: 1fr !important; }
}


/* ─── Scrollbar-Gutter immer reservieren (verhindert Header-Shift zwischen Seiten) ─── */
html {
    scrollbar-gutter: stable;
}


/* ─── Logo-Höhe aus Theme-Setting (überschreibt alle vorherigen Regeln) ─── */
.vw-header__logo img,
.vw-header__logo .custom-logo,
.vw-header__logo .custom-logo-link img,
img.custom-logo,
.vw-header__logo svg {
    height: var(--vw-logo-h, 32px) !important;
    max-height: var(--vw-logo-h, 32px) !important;
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain;
}
@media (max-width: 900px) {
    .vw-header__logo img,
    .vw-header__logo .custom-logo,
    .vw-header__logo .custom-logo-link img,
    img.custom-logo,
    .vw-header__logo svg {
        height: var(--vw-logo-h-mobile, 28px) !important;
        max-height: var(--vw-logo-h-mobile, 28px) !important;
    }
}


/* ==========================================================================
   PRO-UMWELT-STYLE: USP-Bar + Footer in Highlight-Grün (statt Gelb)
   ========================================================================== */

/* ─── USP-Bar: Icon-Circles ─── */
.vw-usp-bar__item {
    justify-content: flex-start;
}
.vw-usp-bar__icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50%;
    background: rgba(30, 135, 18, 0.14);   /* dunklerer grüner Kreis, wie proUmwelt */
    color: var(--vw-ink, #383E42) !important;
    padding: 13px;
}
.vw-usp-bar__icon svg {
    width: 100% !important;
    height: 100% !important;
}
.vw-usp-bar__item h4,
.vw-usp-bar__label {
    color: var(--vw-ink, #383E42);
    font-size: clamp(15px, 1.3vw, 18px);
}

/* ─── Footer: hell-grün + dunkle Pills + dunkler Text (pro-umwelt-Look) ─── */
.vw-footer {
    background: var(--vw-highlight, #1E8712) !important;
    color: var(--vw-ink, #383E42) !important;
    padding-top: 56px !important;
}
.vw-footer,
.vw-footer p,
.vw-footer li,
.vw-footer span,
.vw-footer a,
.vw-footer strong,
.vw-footer h4,
.vw-footer__copy,
.vw-footer__copy a {
    color: var(--vw-ink, #383E42) !important;
}
/* Leistungs-Links als dunkle Pills (wie proUmwelt's schwarze Pills) */
.vw-footer__product-list a {
    display: inline-block;
    background: var(--vw-ink, #383E42);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--vw-font-heading);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s ease;
}
.vw-footer__product-list a:hover {
    background: var(--vw-signal, #1E8712);
    transform: translateY(-2px);
}
/* Footer-Headings (Kontakt-Labels) */
.vw-footer__contact-item strong { color: var(--vw-ink, #383E42) !important; }
/* Legal-Links unterstrichen, dunkel */
.vw-footer__legal a { color: var(--vw-ink, #383E42) !important; }
/* Made-by (lab7) dezent dunkel */
.vw-footer__made-by { color: rgba(56,62,66,0.6) !important; }
.vw-footer__made-by:hover { color: var(--vw-ink, #383E42) !important; }


/* ==========================================================================
   BADGE-SYSTEM (vereinheitlicht) — 2 Typen, alle CD-grün
   1. EYEBROW (Sektion-Label):     hell-grün BG + ink-Text, uppercase   → --vw-highlight
   2. STATUS-PILL (beliebt/Trust): solid grün BG + weiß                 → --vw-signal
   ========================================================================== */

/* ── Typ 1: Eyebrow / Sektion-Label (einheitlich) ── */
.vw-eyebrow,
.vw-leistungen-big__eyebrow,
.vw-gefahr__eyebrow,
.vw-standorte__eyebrow,
.vw-story__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vw-highlight, #1E8712);
    color: var(--vw-ink, #383E42);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--vw-font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Typ 2: Status-Pill — beliebt, Varianten-Badge, Trust (einheitlich solid grün) ── */
.vw-leistungen__badge,
.vw-pill--yellow,
.vw-pill--green,
.vw-varianten__badge.vw-pill {
    display: inline-flex;
    align-items: center;
    background: var(--vw-signal, #1E8712) !important;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: var(--vw-font-sans);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.02em;
    line-height: 1.4;
    white-space: nowrap;
    border: none;
}

/* ── Hero Trust-Pills: bleiben solid grün mit Check-Icon (Typ 2 auf Bild) ── */
.vw-hero__trust-bar .vw-pill--glass {
    background: rgba(30, 135, 18, 0.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    font-weight: 700;
}


/* ─── USP-Bar: Grid auf Container-Breite (fluchtet mit Footer) ─── */
.vw-usp-bar__grid {
    /* .vw-container liefert max-width + margin auto + padding 0 24px */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vw-gap);
    align-items: center;
}
@media (max-width: 991px) {
    .vw-usp-bar__grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}
@media (max-width: 575px) {
    .vw-usp-bar__grid { grid-template-columns: 1fr; }
}


/* ─── Footer-Cards: Bild oben + Button-Schriftart (Franklin Gothic) ─── */
.vw-footer-cards__img {
    aspect-ratio: 16 / 9;
    border-radius: var(--vw-radius);
    margin-bottom: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
/* Gradient-Platzhalter wenn kein Bild gesetzt */
.vw-footer-cards__img--ph-unternehmen {
    background: linear-gradient(135deg, #5C7A5C 0%, #2F4A2F 100%);
}
.vw-footer-cards__img--ph-kontakt {
    background: linear-gradient(135deg, #B3C4D4 0%, #4D5D72 100%);
}
/* Button: Franklin Gothic (Sans) statt geerbtem Palatino + Pill */
.vw-footer-cards__btn {
    font-family: var(--vw-font-heading) !important;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.vw-footer-cards__btn:hover {
    background: var(--vw-signal, #1E8712);
    border-color: var(--vw-signal, #1E8712);
    color: #fff;
}

/* ─── Hero-CTA komplett in Franklin Gothic (UI-Element, kein Fließtext) ─── */
.vw-hero__cta,
.vw-hero__cta-text strong,
.vw-hero__cta-text span { font-family: var(--vw-font-heading) !important; }


/* ─── Footer-Cards: full-width mit etwas seitlichem Padding (nicht auf Container begrenzt) ─── */
.vw-footer-cards {
    background: var(--vw-signal, #1E8712) !important;   /* wie USP-Bar + Footer (durchgehend grün) */
    padding-block: clamp(40px, 6vh, 64px) !important;
    padding-inline: clamp(24px, 4vw, 56px) !important;   /* full-width, nur etwas Rand */
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vw-gap);
}


/* ─── Footer-Pills sauber lesbar (span.vw-btn--dark = dunkler Pill, weißer Text) ─── */
.vw-footer__product-list a {
    background: transparent !important;
    padding: 0 !important;
    display: inline-block;
}
.vw-footer__product-list .vw-btn--dark,
.vw-footer__product-list a .vw-btn,
.vw-footer__product-list a span {
    display: inline-block;
    background: var(--vw-ink, #383E42) !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-family: var(--vw-font-heading) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    letter-spacing: 0.01em;
    line-height: 1.2;
    transition: background 0.2s, transform 0.2s ease;
}
.vw-footer__product-list a:hover .vw-btn--dark,
.vw-footer__product-list a:hover span {
    background: var(--vw-signal, #1E8712) !important;
    transform: translateY(-2px);
}


/* ==========================================================================
   FOOTER-CARDS — flächenfüllende Foto-Cards mit Overlay (proUmwelt-Stil)
   ========================================================================== */
.vw-footer-cards__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;   /* Content unten */
    min-height: 506px;           /* +15% ggü. 440px */
    padding: 40px;
    border-radius: var(--vw-radius-lg, 20px);
    overflow: hidden;
    isolation: isolate;
    background-color: #2a2f33;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(.2,.7,.3,1), box-shadow 0.35s;
}
.vw-footer-cards__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
/* Bild zoomt leicht beim Hover */
.vw-footer-cards__card::after {
    content: '';
    position: absolute; inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.vw-footer-cards__card:hover::after { transform: scale(1.05); }

/* Dunkler Verlauf für Lesbarkeit */
.vw-footer-cards__overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to top,
        rgba(13,18,15,0.88) 0%,
        rgba(13,18,15,0.45) 45%,
        rgba(13,18,15,0.05) 100%);
}
/* Gradient-Platzhalter (kein Bild gesetzt) */
.vw-footer-cards__card--ph-unternehmen { background-image: linear-gradient(135deg, var(--vw-signal) 0%, var(--vw-signal-deep) 100%); }
.vw-footer-cards__card--ph-jobs        { background-image: linear-gradient(135deg, #383E42 0%, #23272A 100%); }

.vw-footer-cards__content { display: flex; flex-direction: column; gap: 12px; }
.vw-footer-cards__label {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(22px, 2.6vw, 30px);
    color: #fff;
    line-height: 1.1;
}
.vw-footer-cards__text {
    font-family: var(--vw-font-body);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 46ch;
}
.vw-footer-cards__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    align-self: flex-start;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--vw-signal, #1E8712);
    color: #fff !important;
    font-family: var(--vw-font-heading) !important;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s, gap 0.2s;
}
.vw-footer-cards__card:hover .vw-footer-cards__btn { gap: 14px; background: var(--vw-highlight, #1E8712); color: var(--vw-ink, #383E42) !important; }

@media (max-width: 767px) {
    .vw-footer-cards { grid-template-columns: 1fr !important; }
    .vw-footer-cards__card { min-height: 340px; padding: 28px; }
}


/* ==========================================================================
   CD-KONFORM (AAW088.00): NUR CD-Grün #1E8712 + CD-Grau #383E42 + Weiß.
   Mint/Hellgrün (#C8E89F) komplett eliminiert. Grüne Flächen → weißer Text.
   ========================================================================== */

/* ─── USP-Bar: weiße Icon-Circles + weiße Labels (Hintergrund: siehe Basis-Regel) ─── */
.vw-usp-bar__icon {
    background: rgba(255,255,255,0.16) !important;
    color: #fff !important;
}
.vw-usp-bar__icon svg { color: #fff !important; }
.vw-usp-bar__label,
.vw-usp-bar__item h4 { color: #fff !important; }

/* ─── Footer: CD-Grün, durchgehend weißer Text ─── */
.vw-footer { background: var(--vw-signal, #1E8712) !important; color: #fff !important; }
.vw-footer p,
.vw-footer li,
.vw-footer span,
.vw-footer a,
.vw-footer strong,
.vw-footer h4,
.vw-footer__copy,
.vw-footer__copy span,
.vw-footer__contact-item,
.vw-footer__contact-item strong,
.vw-footer__legal a { color: #fff !important; }

/* Footer-Pills: CD-Grau Pill auf Grün, weißer Text; Hover → weiße Pill, grüner Text */
.vw-footer__product-list .vw-btn--dark,
.vw-footer__product-list a span {
    background: var(--vw-ink, #383E42) !important;
    color: #fff !important;
}
.vw-footer__product-list a:hover .vw-btn--dark,
.vw-footer__product-list a:hover span {
    background: #fff !important;
    color: var(--vw-signal, #1E8712) !important;
    transform: translateY(-2px);
}
/* Made-by Lab7 dezent */
.vw-footer__made-by,
.vw-footer__made-by span { color: rgba(255,255,255,0.72) !important; }
.vw-footer__made-by:hover span { color: #fff !important; }

/* ─── Eyebrows: CD-Grün Pille + weißer Text (auf hellen Sections) ─── */
.vw-eyebrow,
.vw-leistungen-big__eyebrow,
.vw-gefahr__eyebrow,
.vw-standorte__eyebrow,
.vw-story__eyebrow {
    background: var(--vw-signal, #1E8712) !important;
    color: #fff !important;
}
.vw-eyebrow::before,
.vw-gefahr__eyebrow::before { background: #fff !important; }

/* ─── Footer-Cards Hover-Button: CD-konform (weiß/grün statt Mint) ─── */
.vw-footer-cards__card:hover .vw-footer-cards__btn {
    background: #fff !important;
    color: var(--vw-signal, #1E8712) !important;
}

/* ─── Leistung-Block-5 Platzhalter-Gradient: CD-Grün-Töne statt Mint ─── */
.vw-leistung-block--5 .vw-leistung-block__bg--placeholder {
    background: linear-gradient(135deg, var(--vw-signal) 0%, var(--vw-signal-deep) 100%);
}


/* ==========================================================================
   HOME: CTA-Banner + Jobs + Home-Cards (CD-konform)
   ========================================================================== */

/* ─── CTA-Banner: großer Titel + Text + grüner Pill-Button (weiße Section) ─── */
.vw-cta-banner { padding: clamp(56px, 9vh, 120px) 0; }
.vw-cta-banner__inner { max-width: 760px; }
.vw-cta-banner__h {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    color: var(--vw-ink, #383E42);
    margin: 0 0 20px;
}
.vw-cta-banner__text {
    font-family: var(--vw-font-body);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: var(--vw-ink-soft, #4F5559);
    margin: 0 0 32px;
    max-width: 60ch;
}
.vw-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    background: var(--vw-highlight, #1E8712);
    color: var(--vw-ink, #383E42) !important;
    font-family: var(--vw-font-heading) !important;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s, transform 0.2s;
}
.vw-cta-banner__btn:hover { background: var(--vw-signal, #1E8712); color: #fff !important; gap: 16px; transform: translateY(-2px); }

/* ─── Jobs: dunkelgrüner Recruiting-Block, 2-spaltig ─── */
.vw-jobs {
    background: #143A0C;   /* dunkles CD-Grün (abgeleitet, satter) */
    background: linear-gradient(135deg, var(--vw-signal) 0%, var(--vw-signal-deep) 130%);
    padding: clamp(64px, 11vh, 140px) 0;
    color: #fff;
}
.vw-jobs__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(32px, 6vw, 96px);
    align-items: center;
}
.vw-jobs__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--vw-font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #A9E08C;
    margin-bottom: 20px;
}
.vw-jobs__eyebrow::before {
    content: '';
    width: 9px; height: 9px; border-radius: 50%;
    background: #6CC04A;
}
.vw-jobs__h {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.02;
    color: #fff;
    margin: 0 0 22px;
}
.vw-jobs__text {
    font-family: var(--vw-font-body);
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 52ch;
    margin: 0;
}
.vw-jobs__aside {
    border-left: 1px solid rgba(255,255,255,0.22);
    padding-left: clamp(24px, 3vw, 48px);
}
.vw-jobs__count {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(56px, 7vw, 96px);
    line-height: 1;
    color: #A9E08C;
}
.vw-jobs__count-label {
    font-family: var(--vw-font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin: 6px 0 28px;
}
.vw-jobs__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    background: var(--vw-signal, #1E8712);
    color: #fff !important;
    font-family: var(--vw-font-heading) !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s, transform 0.2s;
}
.vw-jobs__btn:hover { background: #fff; color: var(--vw-signal, #1E8712) !important; gap: 16px; transform: translateY(-2px); }
.vw-jobs__link2 {
    display: inline-block;
    margin-top: 18px;
    color: #fff;
    font-family: var(--vw-font-heading);
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.vw-jobs__link2:hover { color: #A9E08C; }
@media (max-width: 860px) {
    .vw-jobs__inner { grid-template-columns: 1fr; gap: 32px; }
    .vw-jobs__aside { border-left: none; border-top: 1px solid rgba(255,255,255,0.22); padding-left: 0; padding-top: 32px; }
}

/* ─── Home-Cards: Text oben, Titel+Button unten (space-between) ─── */
.vw-promo-cards__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2vw, 28px);
}
.vw-promo-cards__card { justify-content: space-between !important; }
.vw-promo-cards__text {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 42ch;
}
@media (max-width: 767px) {
    .vw-promo-cards__grid { grid-template-columns: 1fr; }
}


/* ─── Jobs vereinfacht: einspaltig, Button direkt unter Text ─── */
.vw-jobs__inner {
    display: block !important;
    max-width: 720px;
}
.vw-jobs__btn {
    margin-top: 32px;
    background: #fff !important;          /* weiß auf dunkelgrün = klar sichtbar */
    color: var(--vw-signal, #1E8712) !important;
}
.vw-jobs__btn:hover {
    background: var(--vw-highlight, #1E8712) !important;
    color: #fff !important;
}

/* ─── CTA-Banner-Button: schwarz/weiß (dunkler Button, weißer Text) wie andere ─── */
.vw-cta-banner__btn {
    background: var(--vw-ink, #383E42) !important;
    color: #fff !important;
}
.vw-cta-banner__btn:hover {
    background: var(--vw-signal, #1E8712) !important;
    color: #fff !important;
}


/* ==========================================================================
   EINHEITLICHE SECTION-KANTE — alle starten links exakt wie Leistungen-Big:
   section = clamp(20-48px) horizontales Padding · innerer Container = 1400 zentriert, kein Padding
   ========================================================================== */
.vw-diff,
.vw-jobs,
.vw-cta-banner,
.vw-promo-cards,
.vw-section-wrap[data-section="zertifikate"] {
    padding-inline: clamp(20px, 4vw, 48px) !important;
}
.vw-diff > .vw-container,
.vw-jobs > .vw-container,
.vw-cta-banner > .vw-container,
.vw-promo-cards > .vw-container,
.vw-section-wrap[data-section="zertifikate"] > .vw-container {
    max-width: var(--vw-container, 1400px) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
}


/* ─── USP-Bar + Main-Footer: full-width mit gleichem Padding wie die Footer-Cards ─── */
.vw-usp-bar__grid,
.vw-footer > .vw-container {
    max-width: none !important;
    margin-inline: 0 !important;
    padding-inline: clamp(24px, 4vw, 56px) !important;
}


/* ─── Hero mobil: Bildausschnitt weiter nach rechts (Tankwagen-Motiv mittiger) ─── */
@media (max-width: 767px) {
    .vw-hero { background-position: 78% center !important; }
}


/* ==========================================================================
   TEAM — Personen-Cards (Repeater: Foto, Name, Position, Telefon, Mail)
   ========================================================================== */
.vw-team__h { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(28px, 4vw, 44px); margin: 0 0 8px; }
.vw-team__subline { margin: 0 0 40px; max-width: 60ch; }
.vw-team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: clamp(16px, 2vw, 28px);
}
.vw-team__card {
    background: var(--vw-bg-alt, #F5F4F1);
    border-radius: var(--vw-radius-lg, 20px);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.vw-team__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }
.vw-team__img {
    width: 120px; height: 120px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--vw-signal, #1E8712);
    display: flex; align-items: center; justify-content: center;
}
.vw-team__img img { width: 100%; height: 100%; object-fit: cover; }
.vw-team__initial { font-family: var(--vw-font-heading); font-weight: 800; font-size: 44px; color: #fff; }
.vw-team__name { font-family: var(--vw-font-heading); font-weight: 800; font-size: 19px; margin: 0 0 2px; color: var(--vw-ink, #383E42); }
.vw-team__position { font-size: 14px; color: var(--vw-ink-soft, #4F5559); margin: 0 0 16px; }
.vw-team__contacts { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.vw-team__contact {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; color: var(--vw-signal, #1E8712);
    text-decoration: none; font-family: var(--vw-font-heading); font-weight: 600;
}
.vw-team__contact svg { flex-shrink: 0; }
.vw-team__contact:hover { text-decoration: underline; text-underline-offset: 3px; }


/* ==========================================================================
   TYPO-KONSISTENZ über ALLE Sections
   - Fließtext: einheitliche Zeilenhöhe 1.6
   - Eyebrows + Headlines: einheitliche Abstände
   ========================================================================== */

/* Fließtext überall gleiche Zeilenhöhe (Absätze, Sublines, Beschreibungen) */
.vw-section p,
.vw-subline,
[class*="__text"],
[class*="__subline"],
[class*="__desc"],
[class*="__lead"],
[class*="__intro"] {
    line-height: 1.5 !important;
}

/* Eyebrows: einheitlicher Abstand nach unten */
.vw-eyebrow,
[class*="__eyebrow"] {
    margin-bottom: 20px;
}

/* Section-Headlines mit eigenem Bottom-Abstand auf einen Wert angleichen
   (margin:0-Headlines bleiben — die nutzen Flex/Grid-gap) */
.vw-jobs__h,
.vw-cta-banner__h,
.vw-story__headline,
.vw-team__h {
    margin: 0 0 20px !important;
}


/* ==========================================================================
   ZENTRALE TYPO-GRÖSSEN — h1/h2/h3/p ziehen ihre Größe aus EINER Quelle
   (Settings → Typografie → Tokens --vw-h1/h2/h3 + --vw-body).
   Neutralisiert alle Section-spezifischen font-size-Overrides.
   ========================================================================== */
h1 { font-size: var(--vw-h1) !important; line-height: var(--vw-h1-lh) !important; }
h2 { font-size: var(--vw-h2) !important; line-height: var(--vw-h2-lh) !important; }
h3 { font-size: var(--vw-h3) !important; line-height: var(--vw-h3-lh) !important; }

/* Fließtext überall = zentrale Body-Größe */
.vw-section p, [data-section] p,
[class*="__text"], [class*="__subline"], [class*="__desc"], [class*="__lead"], [class*="__intro"] {
    font-size: var(--vw-body) !important;
}


/* ─── Gefahr-Features: nummerierte Auflistung (wie Differenzierung) ─── */
.vw-gefahr__feature-num {
    display: block;
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: 30px;
    line-height: 1;
    color: #A9E08C;          /* hell-grün, sichtbar auf dunklem Gefahr-Hintergrund */
    margin-bottom: 8px;
}


/* ==========================================================================
   EINHEITLICHER BOX-RADIUS — alle Karten/Boxen = var(--vw-radius)
   (Referenz: Leistungen-Slider-Card · steuerbar über Setting „Border Radius Global")
   Pills (50px), Kreise (50%) und dünne Balken bleiben eigene Typen.
   ========================================================================== */
.vw-about__card,
.vw-footer-cards__card,
.vw-impr__card,
.vw-kontakt__card,
.vw-leistung-block,
.vw-leistung-block__bg,
.vw-leistung-block__bg--placeholder,
.vw-leistung-block__overlay,
.vw-opt__bef-box,
.vw-standort,
.vw-team__card,
.vw-promo-cards__card,
.vw-leistungen-big__card,
.vw-diff__card,
.vw-varianten__card {
    border-radius: var(--vw-radius) !important;
}


/* ─── Leistungen-Big: H2 + Card-Titel (H3) normale Schreibweise statt UPPERCASE
   (Eyebrow-Label bleibt uppercase) ─── */
.vw-leistungen-big__headline,
.vw-leistung-block__title {
    text-transform: none !important;
}


/* ─── Video-Section (Player mit Poster + Controls) ─── */
.vw-video { padding: clamp(56px, 9vh, 110px) 0; }
.vw-video__head { max-width: 720px; margin: 0 0 32px; }
.vw-video__eyebrow {
    display: inline-flex; align-items: center;
    background: var(--vw-highlight, #1E8712); color: #fff;
    padding: 6px 14px; border-radius: 50px;
    font-family: var(--vw-font-heading); font-weight: 700;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 16px;
}
.vw-video__h { margin: 0 0 12px; }
.vw-video__text { color: var(--vw-ink-soft, #4F5559); }
.vw-video__player {
    border-radius: var(--vw-radius);
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.vw-video__el { width: 100%; height: auto; display: block; }


/* ==========================================================================
   VIDEO — Lightbox-Teaser (Standbild + Play → Vollbild-Video mit Ton)
   ========================================================================== */
.vw-video { padding: clamp(56px, 9vh, 110px) 0; }

.vw-video__teaser {
    position: relative; display: block; width: 100%;
    border: none; padding: 0; cursor: pointer;
    aspect-ratio: 16 / 9;
    border-radius: var(--vw-radius);
    overflow: hidden;
    background: #1a1a1a center / cover no-repeat;
}
.vw-video__teaser-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,18,15,0.6) 0%, rgba(13,18,15,0.15) 70%);
    transition: background 0.3s;
}
.vw-video__teaser:hover .vw-video__teaser-overlay { background: linear-gradient(to top, rgba(13,18,15,0.5) 0%, rgba(13,18,15,0.05) 70%); }
.vw-video__teaser-content {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px; text-align: center; padding: 24px;
}
.vw-video__eyebrow {
    display: inline-flex; align-items: center;
    background: var(--vw-signal, #1E8712); color: #fff;
    padding: 6px 14px; border-radius: 50px;
    font-family: var(--vw-font-heading); font-weight: 700;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.vw-video__h {
    color: #fff; font-family: var(--vw-font-heading); font-weight: 800;
    font-size: clamp(24px, 3.5vw, 40px); line-height: 1.1; margin: 0;
    max-width: 18ch; text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.vw-video__play {
    display: flex; align-items: center; justify-content: center;
    width: 84px; height: 84px; border-radius: 50%;
    background: var(--vw-signal, #1E8712); color: #fff;
    box-shadow: 0 10px 34px rgba(0,0,0,0.35);
    margin-top: 6px; transition: transform 0.25s, background 0.2s;
}
.vw-video__play svg { margin-left: 3px; }
.vw-video__teaser:hover .vw-video__play { transform: scale(1.08); }
.vw-video__text { margin: 18px auto 0; max-width: 60ch; text-align: center; color: var(--vw-ink-soft, #4F5559); }

/* Lightbox (Vollbild) */
.vw-video__lightbox {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(0,0,0,0.92);
    display: none; align-items: center; justify-content: center; padding: 24px;
}
.vw-video__lightbox.is-open { display: flex; }
.vw-video__stage { width: min(92vw, 1200px); }
.vw-video__el { width: 100%; height: auto; max-height: 86vh; display: block; border-radius: var(--vw-radius); background: #000; }
.vw-video__close {
    position: absolute; top: 18px; right: 24px;
    width: 44px; height: 44px; border: none; border-radius: 50%;
    background: rgba(255,255,255,0.15); color: #fff; font-size: 28px; line-height: 1; cursor: pointer;
    transition: background 0.2s;
}
.vw-video__close:hover { background: rgba(255,255,255,0.3); }


/* Hero-Layer + weißer Text sind jetzt in der Basis (.vw-hero) — überall gleich. */


/* ─── Hero-Feinschliff: Rating-Badge kleiner + heading-font, CTA-Abstand + Desktop größer ─── */
/* Google-Rating-Badge über H1: ~40% kleiner (25% + nochmal 20%) + Überschriften-Schrift */
.vw-hero__badge {
    font-size: calc(var(--vw-body, 19px) * 0.6) !important;
    font-family: var(--vw-font-heading) !important;
    padding: 5px 12px !important;
}
.vw-hero__badge .l7-rating-text,
.vw-hero__badge .l7-rating-header { font-family: var(--vw-font-heading) !important; }

/* Mehr Abstand zwischen Subline und CTA */
.vw-hero__cta { margin-top: 30px !important; }

/* CTA auf Desktop etwas größer */
@media (min-width: 992px) {
    .vw-hero__cta { padding: 10px 16px 10px 10px !important; gap: 18px !important; }
    .vw-hero__cta-avatar { width: 62px !important; height: 62px !important; }
    .vw-hero__cta-text strong { font-size: calc(var(--vw-hero-cta, 18px) * 1.18) !important; }
}


/* ─── Leistungen-Slider-Label: Überschriften-Schrift (Franklin Gothic) ─── */
.vw-leistungen__headline { font-family: var(--vw-font-heading) !important; font-weight: 800; }

/* (Hero-Layer jetzt einheitlich in der Basis .vw-hero::before) */


/* ─── Video-Feature: Head (H2+P über Video) + Overlay-Text im Teaser ─── */
.vw-video__head { max-width: none; margin: 0 0 36px; }   /* volle Container-Breite — wie differenzierung / leistungen-big */
.vw-video__section-h { margin: 0 0 12px; }
.vw-video__section-text { color: var(--vw-ink-soft, #4F5559); margin: 0; }
.vw-video__overlay-h {
    color: #fff;
    font-family: var(--vw-font-heading);
    font-weight: 700;
    font-size: clamp(15px, 1.7vw, 21px);
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
    margin-top: 4px; max-width: 22ch;
}


/* ─── Leistungs-Slider-Label "+8 Leistungen …" etwas kleiner ─── */
.vw-leistungen__headline,
[data-section="hero"] + [data-section="leistungen"] .vw-leistungen__headline {
    font-size: clamp(0.72rem, 0.66rem + 0.18vw, 0.85rem) !important;
    line-height: 1.3 !important;
}


/* ==========================================================================
   MEGA-PANEL: Header (Logo + Nav-Punkte) bleibt sichtbar/an Ort —
   Panel öffnet UNTERHALB des Headers statt ihn zu überdecken.
   ========================================================================== */
.vw-header { z-index: 10000 !important; }              /* über dem Panel (9998) */
.vw-panel { top: var(--vw-nav-h, 84px) !important; }    /* Panel-Bereich startet unter Header */
.vw-panel__drawer { top: 0 !important; height: 100% !important; }  /* füllt den Panel-Bereich (unter Header) */
/* Redundanter Close-Button im Panel weg — der Header bleibt ja mit Toggle sichtbar */
.vw-panel__header { display: none !important; }
.vw-panel__drawer { padding-top: 24px; }

/* Aktiver Menüpunkt "Leistungen" hervorgehoben, solange das Panel offen ist */
.vw-panel--open ~ .vw-header .menu-item--leistungen > a,
body:has(.vw-panel--open) .vw-header__nav .menu-item.current-menu-item > a { color: var(--vw-signal, #1E8712); }

@media (max-width: 1199px) {
    .vw-panel { top: var(--vw-nav-h-mobile, 64px) !important; }
}


/* (Kontakt-CTA-Subline + Leistungsseiten-CTA-Banner-Variante entfernt —
   ersetzt durch die Global Section "anfrage-cta". Home-CTA-Banner bleibt unten.) */


/* ==========================================================================
   VEREINHEITLICHTE KARTEN — Differenzierung (Home) + Container-Größen (Leistung)
   Identische Card-Optik · grüner Marker oben (Nummer bzw. Größe) · grüne Badges
   ========================================================================== */

/* Section-Basis identisch */
.vw-diff, .vw-varianten { background: var(--vw-bg-alt, #F5F4F1); padding: var(--vw-section-py) 0; }

/* Grid identisch: 4 → 2 → 1 */
.vw-diff__grid, .vw-varianten__grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: clamp(14px, 1.6vw, 22px) !important;
    align-items: stretch;
}
@media (max-width: 991px) { .vw-diff__grid, .vw-varianten__grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 575px) { .vw-diff__grid, .vw-varianten__grid { grid-template-columns: 1fr !important; } }

/* Karte identisch */
.vw-diff__card, .vw-varianten__card {
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.07) !important;
    border-radius: var(--vw-radius, 10px) !important;
    padding: clamp(22px, 2vw, 30px) !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s !important;
}
.vw-diff__card:hover, .vw-varianten__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(30,135,18,0.12) !important;
    border-color: rgba(30,135,18,0.30) !important;
}

/* Marker A — Differenzierung: grüner Nummern-Kreis */
.vw-diff__num {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--vw-signal, #1E8712) !important;
    color: #fff !important;
    font-family: var(--vw-font-heading) !important;
    font-weight: 800;
    font-size: 19px !important;
    line-height: 1;
    border-radius: 50% !important;
    padding: 0 !important;
    margin: 0 0 2px !important;
}

/* Marker B — Container-Größen: großer grüner Größen-Akzent */
.vw-varianten__size {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: clamp(26px, 3vw, 30px);
    line-height: 1;
    color: var(--vw-signal, #1E8712);
    margin-bottom: 2px;
}

/* Titel + Text identisch */
.vw-diff__card h3, .vw-varianten__card h3 { margin: 0 !important; }
.vw-diff__card p, .vw-varianten__card p { margin: 0 !important; color: var(--vw-ink-soft, #4F5559); flex: 1; }

/* Badge identisch — CD-Grün, unten ausgerichtet */
.vw-diff__badge, .vw-varianten__badge {
    align-self: flex-start;
    margin-top: auto !important;
    background: rgba(30,135,18,0.10) !important;
    color: var(--vw-signal, #1E8712) !important;
    font-family: var(--vw-font-heading) !important;
    font-weight: 600;
    border: none !important;
}


/* Differenzierung (Home): 2-spaltig (2×2) — mehr Platz für die längeren Texte.
   Container-Größen bleiben 4-spaltig (kompakte Inhalte). */
.vw-diff__grid { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 575px) { .vw-diff__grid { grid-template-columns: 1fr !important; } }


/* Container-Größen: identischer grüner Nummern-Kreis wie Differenzierung (einheitlich 1–4) */
.vw-varianten__num {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--vw-signal, #1E8712);
    color: #fff;
    font-family: var(--vw-font-heading);
    font-weight: 800;
    font-size: 19px;
    line-height: 1;
    border-radius: 50%;
    margin: 0 0 2px;
}


/* Container-Größen jetzt auch 2×2 — komplett einheitlich mit Differenzierung */
.vw-varianten__grid { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 575px) { .vw-varianten__grid { grid-template-columns: 1fr !important; } }


/* ==========================================================================
   GRÜNDERSTORY (Home): Foto LINKS (wirkt besser).
   Layout bleibt Original (320px 1fr); nur Gesicht im 4:5-Crop sichern.
   ========================================================================== */
.vw-gruender__portrait img { object-position: top center; }


/* Leistungen-Big: Platzhalter-Verläufe für Karte 7+8 (CD-konform) + Mint-Relikt Karte 5 entfernt */
.vw-leistung-block--5 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, var(--vw-signal-deep) 0%, var(--vw-signal) 100%) !important; }
.vw-leistung-block--7 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, #C4D2A8 0%, #5A6E40 100%); }
.vw-leistung-block--8 .vw-leistung-block__bg--placeholder { background: linear-gradient(135deg, #4A5A4A 0%, #0F1A0F 100%); }


/* ==========================================================================
   TEAM — Portrait-Grid (Screenshot-Stil): große 4:5-Fotos, Name GROSS +
   Position linksbündig, Telefon/Mail darunter, Join-Button. Überschreibt
   die älteren (doppelten) vw-team-Regeln aus früheren Bauphasen.
   ========================================================================== */
.vw-team__grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: clamp(20px, 2.5vw, 32px) !important;
    align-items: start !important;
}
.vw-team__card {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    box-shadow: none !important;
    transform: none !important;
    height: auto !important;
}
.vw-team__card:hover { transform: none !important; box-shadow: none !important; }

.vw-team__img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: var(--vw-radius, 10px) !important;
    overflow: hidden !important;
    margin: 0 0 16px !important;
    background: var(--vw-bg-alt, #F5F4F1) !important;
    display: block !important;
}
.vw-team__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
}
.vw-team__img--ph {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--vw-signal, #1E8712) !important;
}
.vw-team__initial { font-family: var(--vw-font-heading); font-weight: 800; font-size: 56px; color: #fff; }

.vw-team__name {
    font-family: var(--vw-font-heading) !important;
    font-weight: 700;
    font-size: 18px !important;
    letter-spacing: 0;
    text-transform: none;
    color: var(--vw-ink, #383E42);
    margin: 0 0 3px !important;
    line-height: 1.25 !important;
}
.vw-team__position {
    font-family: var(--vw-font-body);
    font-size: 15px;
    color: var(--vw-ink-soft, #4F5559);
    margin: 0 0 10px !important;
    line-height: 1.35 !important;
}
.vw-team__contacts { display: flex; flex-direction: column; gap: 5px; align-items: flex-start !important; }
.vw-team__contact {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--vw-signal, #1E8712);
    text-decoration: none; font-family: var(--vw-font-heading); font-weight: 600;
}
.vw-team__contact:hover { text-decoration: underline; text-underline-offset: 2px; }

/* Team-CTA „Werde Teil des Teams" entfernt (auf Wunsch) — kein Button unter dem Grid */

@media (max-width: 991px) { .vw-team__grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 575px) { .vw-team__grid { grid-template-columns: 1fr !important; } }


/* ==========================================================================
   TEAM — moderner Touch (auf Standard-Theme-BG --vw-bg-alt):
   Foto-Hover-Zoom, weiche Tiefe, Lift + grüner Name-Akzent bei Hover.
   ========================================================================== */
.vw-team { background: var(--vw-bg-alt) !important; }   /* explizit Standard-BG */

.vw-team__img {
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.4s cubic-bezier(.16,1,.3,1), transform 0.4s cubic-bezier(.16,1,.3,1) !important;
    will-change: transform;
}
.vw-team__card:hover .vw-team__img {
    box-shadow: 0 20px 48px rgba(30,135,18,0.16);
    transform: translateY(-6px);
}
.vw-team__img img {
    transition: transform 0.6s cubic-bezier(.16,1,.3,1) !important;
}
.vw-team__card:hover .vw-team__img img { transform: scale(1.06) !important; }

/* Name bekommt bei Hover den CD-Grün-Akzent */
.vw-team__name { transition: color 0.25s ease; }
.vw-team__card:hover .vw-team__name { color: var(--vw-signal, #1E8712); }

/* etwas großzügigeres, modernes Spacing der Section-Einleitung */
.vw-team__h { margin-bottom: 10px !important; }
.vw-team__subline { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px) !important; }


/* ==========================================================================
   Video + Gründerstory → exakt gleiche Section-Breite/-Kante wie der Rest
   (Leistungen-Big, Differenzierung, CTA-Banner …): Section-Padding clamp,
   innerer Container max 1400 zentriert ohne Extra-Padding.
   ========================================================================== */
.vw-video,
.vw-gruender {
    padding-inline: clamp(20px, 4vw, 48px) !important;
}
.vw-video > .vw-container,
.vw-gruender > .vw-container {
    max-width: var(--vw-container, 1400px) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
}


/* Hero ohne Bild: dunklen Layer weglassen — der grüne CD-Gradient trägt den weißen Text selbst */
.vw-hero--no-image::before { display: none !important; }


/* ==========================================================================
   ANFRAGE-CTA — zentrierter Conversion-Block (Avatare + Live-Zeiten + Button)
   pro-umwelt-Stil, CD-konform (grüner Button statt gelb)
   ========================================================================== */
.vw-anfrage-cta { background: var(--vw-bg-alt); padding: calc(var(--vw-section-py) * 0.6) 0 calc(var(--vw-section-py) * 1.4) 0; }
.vw-anfrage-cta__inner {
    /* exakt wie der Intro-Block (about): begrenzte Breite, linksbündig im zentrierten .vw-container */
    max-width: 1320px;
    margin: 0 auto 0 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.vw-anfrage-cta__h {
    font-family: var(--vw-font-heading);
    font-weight: 800;
    margin: 0 0 14px;
    color: var(--vw-ink, #383E42);
}
.vw-anfrage-cta__sub {
    color: var(--vw-ink-soft, #4F5559);
    margin: 0 0 28px;
    font-size: clamp(16px, 1.6vw, 20px);
}
.vw-anfrage-cta__avatars { display: flex; justify-content: flex-start; margin: 0 0 28px; }
.vw-anfrage-cta__avatar {
    width: 58px; height: 58px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--vw-bg-alt, #F5F4F1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.14);
    background: #fff;
}
.vw-anfrage-cta__avatar:not(:first-child) { margin-left: -16px; }
.vw-anfrage-cta__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vw-anfrage-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--vw-signal, #1E8712);
    color: #fff !important;
    font-family: var(--vw-font-heading);
    font-weight: 700;
    font-size: 17px;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, gap 0.2s;
}
.vw-anfrage-cta__btn:hover { background: var(--vw-ink, #383E42); transform: translateY(-2px); gap: 15px; }


/* (Container-Größen wieder 4 Karten inkl. Presscontainer → 2×2 aus der vereinheitlichten Karten-Regel) */


/* ─── Gefährliche Abfälle: Sticky-Layout · links Bild+HL (bleibt stehen) · rechts USP-Karten (scrollen) ─── */
.vw-gefahr--sticky { overflow: visible; }   /* overflow:hidden würde position:sticky brechen */
.vw-gefahr--sticky .vw-gefahr__split {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}
.vw-gefahr__sticky {
    position: sticky;
    top: clamp(88px, 12vh, 120px);
    align-self: start;
}
.vw-gefahr__sticky .vw-gefahr__media { margin-top: 26px; }
.vw-gefahr__sticky .vw-gefahr__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--vw-radius, 16px);
    display: block;
}
.vw-gefahr__scroll { display: flex; flex-direction: column; }
.vw-gefahr--sticky .vw-gefahr__lead { margin-top: 0; }
.vw-gefahr--sticky .vw-gefahr__features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: clamp(28px, 3vw, 40px);
    padding-top: 0;
    border-top: 0;
}
.vw-gefahr--sticky .vw-gefahr__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--vw-radius, 16px);
    padding: clamp(22px, 2.4vw, 32px);
}
.vw-gefahr--sticky .vw-gefahr__feature-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    margin-bottom: 0;
}
.vw-gefahr--sticky .vw-gefahr__feature-icon svg { width: 28px; height: 28px; }
.vw-gefahr--sticky .vw-gefahr__feature-title { font-size: 17px; }
.vw-gefahr--sticky .vw-gefahr__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 40px;
    margin-top: clamp(28px, 3vw, 40px);
}
.vw-gefahr--sticky .vw-gefahr__foot .vw-gefahr__closing,
.vw-gefahr--sticky .vw-gefahr__foot .vw-gefahr__cta { margin-top: 0; }
@media (max-width: 900px) {
    .vw-gefahr--sticky .vw-gefahr__split { grid-template-columns: 1fr; gap: 28px; }
    .vw-gefahr__sticky { position: static; }
    .vw-gefahr--sticky .vw-gefahr__foot { flex-direction: column; align-items: flex-start; }
}


/* ─── Fahrplan / PDF-Download (Müllabfuhrpläne) ─── */
.vw-fahrplan { background: var(--vw-bg-alt, #F5F4F1); padding: var(--vw-section-py) 0; }
.vw-fahrplan__inner { max-width: 1320px; margin: 0 auto 0 0; }
.vw-fahrplan__h { font-family: var(--vw-font-heading); font-weight: 900; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -0.02em; color: var(--vw-ink, #383E42); margin: 0 0 10px; }
.vw-fahrplan__text { font-family: var(--vw-font-body); font-size: 17px; line-height: 1.6; color: var(--vw-ink-soft, #4F5559); margin: 0 0 24px; max-width: 60ch; }
.vw-fahrplan__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.vw-fahrplan__item {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 1px solid rgba(56,62,66,0.12); border-radius: 12px;
    padding: 16px 18px; text-decoration: none; color: var(--vw-ink, #383E42);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.vw-fahrplan__item:hover { border-color: var(--vw-signal, #1E8712); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.07); }
.vw-fahrplan__file-icon { flex: 0 0 24px; width: 24px; height: 24px; color: var(--vw-signal, #1E8712); }
.vw-fahrplan__file-icon svg { width: 100%; height: 100%; }
.vw-fahrplan__label { flex: 1; font-family: var(--vw-font-sans); font-weight: 600; font-size: 15px; }
.vw-fahrplan__dl { flex: 0 0 20px; width: 20px; height: 20px; color: var(--vw-ink-soft, #4F5559); }
.vw-fahrplan__dl svg { width: 100%; height: 100%; }


/* ─── Stellen / Jobcards (Green Jobs) ─── */
.vw-stellen { background: var(--vw-bg-alt, #F5F4F1); padding: var(--vw-section-py) 0; }
.vw-stellen__head { margin-bottom: 28px; }
.vw-stellen__h { font-family: var(--vw-font-heading); font-weight: 900; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.02em; color: var(--vw-ink, #383E42); margin: 0; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.vw-stellen__count { font-family: var(--vw-font-sans); font-weight: 600; font-size: 15px; color: var(--vw-signal, #1E8712); }
.vw-stellen__sub { font-family: var(--vw-font-body); font-size: 17px; color: var(--vw-ink-soft, #4F5559); margin: 8px 0 0; }
.vw-stellen__list { display: flex; flex-direction: column; gap: 12px; }
.vw-stellen__card { display: flex; align-items: center; gap: 24px; background: #fff; border: 1px solid rgba(56,62,66,0.12); border-radius: var(--vw-radius, 16px); padding: 24px 28px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.vw-stellen__card:hover { border-color: var(--vw-signal, #1E8712); box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.vw-stellen__body { flex: 1; min-width: 0; }
.vw-stellen__title { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(19px, 1.6vw, 23px); color: var(--vw-ink, #383E42); margin: 0 0 6px; line-height: 1.2; }
.vw-stellen__excerpt { font-family: var(--vw-font-body); font-size: 15px; line-height: 1.5; color: var(--vw-ink-soft, #4F5559); margin: 0 0 12px; max-width: 640px; }
.vw-stellen__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.vw-stellen__badge { font-family: var(--vw-font-sans); font-weight: 600; font-size: 12px; letter-spacing: 0.03em; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; background: rgba(30,135,18,0.10); color: var(--vw-signal, #1E8712); }
.vw-stellen__cta { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; font-family: var(--vw-font-sans); font-weight: 700; font-size: 14px; color: #fff; background: var(--vw-signal, #1E8712); border-radius: 50px; padding: 13px 26px; text-decoration: none; transition: background .2s, transform .2s; }
.vw-stellen__cta:hover { background: var(--vw-signal-hover, #23A015); transform: translateY(-2px); }
@media (max-width: 720px) {
    .vw-stellen__card { flex-direction: column; align-items: stretch; padding: 20px; gap: 14px; }
    .vw-stellen__cta { width: 100%; justify-content: center; }
}


/* ─── Job-Detailseite (single vw_job) ─── */
.vw-job-hero { background: var(--vw-signal, #1E8712); color: #fff; padding: clamp(40px, 8vh, 90px) 0 clamp(32px, 5vh, 56px); }
.vw-job-back { display: inline-block; font-family: var(--vw-font-sans); font-weight: 600; font-size: 14px; color: rgba(255,255,255,0.85); text-decoration: none; margin-bottom: 20px; }
.vw-job-back:hover { color: #fff; }
.vw-job-hero__title { font-family: var(--vw-font-heading); font-weight: 900; font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.02em; color: #fff; margin: 0; }
.vw-job-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.vw-job-badge { font-family: var(--vw-font-sans); font-weight: 600; font-size: 13px; padding: 6px 14px; border-radius: 50px; background: rgba(255,255,255,0.16); color: #fff; }
.vw-job-apply { display: inline-flex; align-items: center; gap: 8px; font-family: var(--vw-font-sans); font-weight: 800; font-size: 15px; color: var(--vw-ink, #383E42); background: var(--vw-bg-alt, #F5F4F1); border-radius: 50px; padding: 15px 32px; text-decoration: none; margin-top: 28px; transition: transform .2s, background .2s; }
.vw-job-apply:hover { transform: translateY(-2px); background: #fff; }
.vw-job-body { background: var(--vw-bg-alt, #F5F4F1); padding: var(--vw-section-py) 0; }
.vw-job-body .vw-container { max-width: 820px; }
.vw-job-content { font-family: var(--vw-font-body); font-size: 17px; line-height: 1.7; color: var(--vw-ink, #383E42); }
.vw-job-content h2, .vw-job-content h3 { font-family: var(--vw-font-heading); font-weight: 800; color: var(--vw-ink, #383E42); margin: 1.6em 0 0.4em; }
.vw-job-content ul { padding-left: 1.2em; }
.vw-job-content li { margin: 0.3em 0; }
.vw-job-applybox { margin-top: 48px; background: #fff; border: 1px solid rgba(56,62,66,0.12); border-radius: var(--vw-radius, 16px); padding: clamp(28px, 4vw, 44px); }
.vw-job-applybox__h { font-family: var(--vw-font-heading); font-weight: 900; font-size: clamp(22px, 2.4vw, 30px); color: var(--vw-ink, #383E42); margin: 0 0 12px; }
.vw-job-applybox__text { font-family: var(--vw-font-body); font-size: 16px; line-height: 1.6; color: var(--vw-ink-soft, #4F5559); margin: 0 0 8px; }
.vw-job-applybox__text a { color: var(--vw-signal, #1E8712); font-weight: 600; }
.vw-job-applybox__addr { font-family: var(--vw-font-sans); font-size: 14px; color: var(--vw-ink-soft, #4F5559); margin: 0 0 20px; }
.vw-job-apply--solid { background: var(--vw-signal, #1E8712); color: #fff; margin-top: 0; }
.vw-job-apply--solid:hover { background: var(--vw-signal-hover, #23A015); color: #fff; }

/* ─── Job-Kontaktblock: Ansprechperson (zentral gepflegt, am Fuß jeder Stelle) ─── */
.vw-job-contact__card { display: inline-flex; align-items: center; gap: 16px; margin: 22px 0 26px; text-align: left; }
.vw-job-contact__photo img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; display: block; box-shadow: 0 2px 12px rgba(0,0,0,0.14); }
.vw-job-contact__meta { display: flex; flex-direction: column; gap: 3px; }
.vw-job-contact__name { font-family: var(--vw-font-heading); font-weight: 800; font-size: 17px; color: var(--vw-ink, #383E42); }
.vw-job-contact__role { font-family: var(--vw-font-sans); font-size: 14px; color: var(--vw-ink-soft, #4F5559); margin-bottom: 3px; }
.vw-job-contact__line { font-family: var(--vw-font-sans); font-weight: 600; font-size: 15px; color: var(--vw-signal, #1E8712); text-decoration: none; }
.vw-job-contact__line:hover { text-decoration: underline; }
@media (max-width: 560px) {
    .vw-job-contact__card { flex-direction: column; text-align: center; gap: 12px; }
    .vw-job-contact__meta { align-items: center; }
}

/* Stellen-Beschreibung (Section auf Job-Detailseiten) */
.vw-stellentext { background: var(--vw-bg-alt, #F5F4F1); padding: var(--vw-section-py) 0 clamp(20px, 2vw, 32px); }
.vw-stellentext__inner { max-width: 820px; }
.vw-stellentext__intro { font-family: var(--vw-font-body); font-size: 19px; line-height: 1.6; color: var(--vw-ink, #383E42); margin: 0; }
.vw-stellentext__h { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(20px, 2vw, 26px); color: var(--vw-ink, #383E42); margin: 1.5em 0 0.4em; }
.vw-stellentext__list { list-style: disc; font-family: var(--vw-font-body); font-size: 17px; line-height: 1.6; color: var(--vw-ink, #383E42); padding-left: 1.3em; margin: 0; }
.vw-stellentext__list li { margin: 0.35em 0; }
.vw-stellentext__list li::marker { color: var(--vw-signal, #1E8712); }
/* Fuß mit Bewerbungs-Box */
.vw-job-foot { background: var(--vw-bg-alt, #F5F4F1); padding: clamp(20px, 2vw, 32px) 0 var(--vw-section-py); }
.vw-job-foot .vw-container { max-width: 820px; }


/* ══════════════════════════════════════════════════════════════════════
   BLOG / JOURNAL — Übersicht (Card-Grid) + Artikel (Magazin) + Blog-Blöcke
   Nur CD: Grün #1E8712, Grau #383E42; Franklin (Headings) + Palatino (Text)
   ══════════════════════════════════════════════════════════════════════ */

/* ─── Journal-Übersicht ─── */
.vw-journal { padding: var(--vw-section-py) 0; }
.vw-journal__header { text-align: center; max-width: 640px; margin: 0 auto clamp(28px, 4vw, 44px); }
.vw-journal__h { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(30px, 5vw, 48px); line-height: 1.05; letter-spacing: -0.025em; color: var(--vw-ink, #383E42); margin: 0 0 12px; }
.vw-journal__sub { font-family: var(--vw-font-body); font-size: 18px; line-height: 1.6; color: var(--vw-ink-soft, #4F5559); margin: 0; }
.vw-journal__filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: clamp(28px, 4vw, 44px); }
.vw-journal__filter-btn { font-family: var(--vw-font-heading); font-weight: 600; font-size: 14px; color: var(--vw-ink, #383E42); background: var(--vw-bg-alt, #F5F4F1); border: none; border-radius: 50px; padding: 9px 20px; cursor: pointer; transition: background .2s, color .2s; }
.vw-journal__filter-btn:hover { background: #e9e7e1; }
.vw-journal__filter-btn.is-active { background: var(--vw-signal, #1E8712); color: #fff; }
/* Eine Zeile pro Artikel — weiße Karte, links Bild, rechts Content (gestapelt) */
.vw-journal__grid { display: flex; flex-direction: column; gap: clamp(18px, 2.2vw, 26px); max-width: 900px; margin: 0 auto; }
.vw-journal__card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.06); transition: transform .3s, box-shadow .3s; }
.vw-journal__card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(0,0,0,.10); }
.vw-journal__card-link { display: flex; align-items: stretch; min-height: 220px; text-decoration: none; color: inherit; }
.vw-journal__card-media { position: relative; flex: 0 0 40%; max-width: 340px; overflow: hidden; background: var(--vw-bg-alt, #F5F4F1); }
.vw-journal__card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.vw-journal__card:hover .vw-journal__card-img { transform: scale(1.04); }
.vw-journal__card-ph { position: absolute; inset: 0; background: linear-gradient(135deg, var(--vw-signal) 0%, var(--vw-signal-deep) 100%); }
.vw-journal__card-cat { position: absolute; top: 12px; left: 12px; font-family: var(--vw-font-heading); font-weight: 600; font-size: 12px; letter-spacing: .03em; color: #fff; background: var(--vw-signal, #1E8712); padding: 5px 12px; border-radius: 50px; }
.vw-journal__card-body { flex: 1; min-width: 0; padding: clamp(22px, 2.6vw, 34px); display: flex; flex-direction: column; justify-content: center; }
.vw-journal__card-date { font-family: var(--vw-font-heading); font-size: 13px; color: var(--vw-ink-soft, #4F5559); margin-bottom: 8px; }
.vw-journal__card-title { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.22; letter-spacing: -0.015em; color: var(--vw-ink, #383E42); margin: 0 0 10px; transition: color .2s; }
.vw-journal__card:hover .vw-journal__card-title { color: var(--vw-signal, #1E8712); }
.vw-journal__card-excerpt { font-family: var(--vw-font-body); font-size: 16px; line-height: 1.55; color: var(--vw-ink-soft, #4F5559); margin: 0 0 14px; }
.vw-journal__card-more { font-family: var(--vw-font-heading); font-weight: 600; font-size: 14px; color: var(--vw-signal, #1E8712); }
@media (max-width: 640px) {
  .vw-journal__card-link { flex-direction: column; min-height: 0; }
  .vw-journal__card-media { flex: none; max-width: none; aspect-ratio: 16 / 9; }
  .vw-journal__card-body { justify-content: flex-start; }
}

/* ─── Artikel-Hero ─── */
.vw-article__hero { padding: clamp(28px, 5vw, 56px) 0 0; }
.vw-article__back { display: inline-block; font-family: var(--vw-font-heading); font-weight: 600; font-size: 14px; color: var(--vw-ink-soft, #4F5559); text-decoration: none; margin-bottom: 24px; }
.vw-article__back:hover { color: var(--vw-signal, #1E8712); }
.vw-article__hero-inner { max-width: 820px; }
.vw-article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 18px; font-family: var(--vw-font-heading); font-size: 14px; color: var(--vw-ink-soft, #4F5559); }
.vw-article__cat { font-weight: 600; color: #fff; background: var(--vw-signal, #1E8712); padding: 5px 14px; border-radius: 50px; text-decoration: none; }
.vw-article__title { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(30px, 5vw, 52px); line-height: 1.08; letter-spacing: -0.03em; color: var(--vw-ink, #383E42); margin: 0; }
.vw-article__hero-media { margin-top: clamp(28px, 4vw, 44px); }
.vw-article__hero-img { width: 100%; height: auto; border-radius: 20px; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

/* ─── Artikel-Body: zentrierte Textspalte, breite Blöcke brechen aus ─── */
.vw-article__body { padding: clamp(32px, 5vw, 56px) 0; }
.vw-article__body .vw-section-wrap { max-width: 740px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.vw-article__body .vw-section-wrap + .vw-section-wrap { margin-top: clamp(22px, 3vw, 34px); }
.vw-article__body .vw-section-wrap[data-section="blog-galerie"],
.vw-article__body .vw-section-wrap[data-section="blog-zahlen"],
.vw-article__body .vw-section-wrap[data-section="blog-bild"] { max-width: 1080px; }

/* Fließtext (Palatino) + Überschriften (Franklin) */
.vw-article__text p, .vw-article__media-text-body p, .vw-article__infobox-body p { font-family: var(--vw-font-body); font-size: 18px; line-height: 1.75; color: var(--vw-ink, #383E42); margin: 0 0 1.1em; }
.vw-article__text p:last-child, .vw-article__infobox-body p:last-child { margin-bottom: 0; }
.vw-article__text a, .vw-article__media-text-body a { color: var(--vw-signal, #1E8712); text-decoration: underline; text-underline-offset: 2px; }
.vw-article__text--lead p { font-size: 22px; line-height: 1.6; }
.vw-article__h2 { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.15; letter-spacing: -0.02em; color: var(--vw-ink, #383E42); margin: 0 0 16px; }

/* Auflistungen — Häkchen / Punkte / Nummern (+ eine Sub-Ebene) */
.vw-article__list-items { margin: 0; padding: 0; list-style: none; }
.vw-article__list-items > li { font-family: var(--vw-font-body); font-size: 18px; line-height: 1.55; color: var(--vw-ink, #383E42); padding-left: 34px; position: relative; margin: 0 0 12px; }
.vw-article__sublist { list-style: none; margin: 10px 0 0; padding: 0; }
.vw-article__sublist > li { font-family: var(--vw-font-body); font-size: 16px; line-height: 1.5; color: var(--vw-ink-soft, #4F5559); padding-left: 28px; position: relative; margin: 0 0 8px; }
.vw-article__list--haken li::before { content: ""; position: absolute; left: 4px; top: 0.35em; width: 15px; height: 8px; border-left: 2.5px solid var(--vw-signal, #1E8712); border-bottom: 2.5px solid var(--vw-signal, #1E8712); transform: rotate(-45deg); }
.vw-article__list--bullet li::before { content: ""; position: absolute; left: 8px; top: 0.6em; width: 7px; height: 7px; border-radius: 50%; background: var(--vw-signal, #1E8712); }
.vw-article__list--nummer .vw-article__list-items { counter-reset: vwli; }
.vw-article__list--nummer > .vw-article__list-items > li { counter-increment: vwli; }
.vw-article__list--nummer > .vw-article__list-items > li::before { content: counter(vwli); position: absolute; left: 0; top: 0.05em; width: 24px; height: 24px; background: var(--vw-signal, #1E8712); color: #fff; border-radius: 50%; font-family: var(--vw-font-heading); font-weight: 700; font-size: 12px; display: flex; align-items: center; justify-content: center; }

/* Galerie */
.vw-article__gallery { margin: 0; }
.vw-article__gallery-grid { display: grid; gap: 12px; }
.vw-article__gallery--cols-2 .vw-article__gallery-grid { grid-template-columns: repeat(2, 1fr); }
.vw-article__gallery--cols-3 .vw-article__gallery-grid { grid-template-columns: repeat(3, 1fr); }
.vw-article__gallery--cols-4 .vw-article__gallery-grid { grid-template-columns: repeat(4, 1fr); }
.vw-article__gallery-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; display: block; }
.vw-article__gallery-cap, .vw-article__figure-cap { font-family: var(--vw-font-heading); font-size: 13px; color: var(--vw-ink-soft, #4F5559); margin-top: 8px; text-align: center; }

/* Einzelbild */
.vw-article__figure { margin: 0; }
.vw-article__figure--normal { max-width: 740px; margin-left: auto; margin-right: auto; }
.vw-article__figure-img { width: 100%; height: auto; border-radius: 16px; display: block; }

/* Bild + Text */
.vw-article__media-text { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); align-items: center; }
.vw-article__media-text--rechts .vw-article__media-text-img { order: 2; }
.vw-article__media-text-img img { width: 100%; height: auto; border-radius: 16px; display: block; }

/* Downloads */
.vw-article__downloads-list { display: flex; flex-direction: column; gap: 10px; }
.vw-article__download { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--vw-bg-alt, #F5F4F1); border-radius: 12px; text-decoration: none; color: var(--vw-ink, #383E42); transition: background .2s; }
.vw-article__download:hover { background: #e9e7e1; }
.vw-article__download-icon svg { width: 24px; height: 24px; color: var(--vw-signal, #1E8712); display: block; }
.vw-article__download-label { flex: 1; font-family: var(--vw-font-heading); font-weight: 600; font-size: 16px; }
.vw-article__download-arrow svg { width: 20px; height: 20px; color: var(--vw-signal, #1E8712); display: block; }

/* Info-/Hinweis-Box */
.vw-article__infobox { display: flex; gap: 16px; padding: 22px 24px; border-radius: 14px; border-left: 4px solid var(--vw-signal, #1E8712); background: var(--vw-bg-alt, #F5F4F1); }
.vw-article__infobox--achtung { border-left-color: var(--vw-ink, #383E42); }
.vw-article__infobox-icon svg { width: 26px; height: 26px; color: var(--vw-signal, #1E8712); display: block; }
.vw-article__infobox--achtung .vw-article__infobox-icon svg { color: var(--vw-ink, #383E42); }
.vw-article__infobox-h { font-family: var(--vw-font-heading); font-weight: 800; font-size: 17px; color: var(--vw-ink, #383E42); margin: 0 0 6px; }

/* Zahlen & Fakten */
.vw-article__stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; padding: clamp(24px, 3vw, 36px); background: var(--vw-signal, #1E8712); border-radius: 18px; }
.vw-article__stat { text-align: center; }
.vw-article__stat-value { display: block; font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(28px, 4vw, 40px); line-height: 1; color: #fff; }
.vw-article__stat-label { display: block; margin-top: 8px; font-family: var(--vw-font-heading); font-size: 14px; color: rgba(255,255,255,.85); }

/* Verwandte Beiträge */
.vw-article__related { background: var(--vw-bg-alt, #F5F4F1); }
.vw-article__related-h { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(22px, 3vw, 30px); color: var(--vw-ink, #383E42); margin: 0 0 clamp(24px, 3vw, 36px); text-align: center; }
.vw-article__related .vw-journal__card { box-shadow: 0 1px 3px rgba(0,0,0,.05); }

/* Responsive */
@media (max-width: 767px) {
  .vw-article__media-text { grid-template-columns: 1fr; }
  .vw-article__media-text--rechts .vw-article__media-text-img { order: 0; }
  .vw-article__gallery--cols-3 .vw-article__gallery-grid,
  .vw-article__gallery--cols-4 .vw-article__gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vw-article__gallery-grid { grid-template-columns: 1fr !important; }
}


/* ══════════════════════════════════════════════════════════════════════
   ZERTIFIKATE & KATALOG — kompakter Trust-Streifen (eine Zeile, im Container)
   Liegt im .vw-container (= --vw-container aus Settings), hugt seinen Inhalt.
   ══════════════════════════════════════════════════════════════════════ */
.vw-zert { display: flex; align-items: stretch; flex-wrap: wrap; gap: 8px; }
.vw-zert__head { text-align: left; margin: 0 0 18px; }
.vw-zert__headline { font-family: var(--vw-font-heading); font-weight: var(--vw-h2-weight, 800); font-size: var(--vw-h2); line-height: var(--vw-h2-lh, 1.15); letter-spacing: -0.01em; color: var(--vw-ink, #383E42); margin: 0; }
.vw-zert__badge { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 4px; flex: 0 0 auto; min-width: 96px; max-width: 240px; padding: 9px 14px; background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 9px; text-decoration: none; color: var(--vw-ink, #383E42); transition: border-color .2s, box-shadow .2s; }
a.vw-zert__badge:hover { border-color: var(--vw-signal, #1E8712); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.vw-zert__badge-seal-icon { width: 22px; height: 22px; color: var(--vw-signal, #1E8712); }
.vw-zert__badge-seal-icon svg { width: 100%; height: 100%; }
.vw-zert__badge-text { font-family: var(--vw-font-heading); font-weight: 700; font-size: 12.5px; line-height: 1.15; }
.vw-zert__badge-img { width: 40px; height: 40px; object-fit: contain; }
.vw-zert__badge--logo { min-width: 0; padding: 8px 10px; }
.vw-zert__badge--logo .vw-zert__badge-img { width: auto; height: 76px; max-width: 100%; }
.vw-zert__badge--logo .vw-zert__badge-cap { display: none; }
.vw-zert__badge-cap { font-family: var(--vw-font-heading); font-size: 10.5px; color: var(--vw-ink-soft, #4F5559); line-height: 1.25; }
.vw-zert__badge-dl { font-family: var(--vw-font-heading); font-weight: 600; font-size: 10px; color: var(--vw-signal, #1E8712); white-space: nowrap; }
/* Katalog — kompakte horizontale Karte */
.vw-zert__katalog { display: flex; flex-direction: row; align-items: stretch; flex: 0 0 auto; border-radius: 9px; overflow: hidden; text-decoration: none; background: #fff; border: 1px solid rgba(0,0,0,.08); transition: box-shadow .2s; }
.vw-zert__katalog:hover { box-shadow: 0 6px 16px rgba(0,0,0,.10); }
.vw-zert__katalog-cover { flex: 0 0 auto; display: flex; }
.vw-zert__katalog-cover img { width: 40px; height: 100%; object-fit: cover; object-position: center top; display: block; }
.vw-zert__katalog-btn { display: flex; align-items: center; gap: 6px; padding: 0 14px; background: transparent; color: var(--vw-ink, #383E42); font-family: var(--vw-font-heading); font-weight: 600; font-size: 12.5px; white-space: nowrap; }
.vw-zert__katalog-btn svg { width: 15px; height: 15px; color: var(--vw-signal, #1E8712); }
/* Mobile: linksbündig gegliedert (nicht gestapelt/zentriert) — 2×2-Raster */
@media (max-width: 600px) {
  .vw-zert { justify-content: flex-start; }
  .vw-zert__badge,
  .vw-zert__katalog { flex: 1 1 calc(50% - 4px); min-width: 0; max-width: none; }
  .vw-zert__katalog-cover { display: none; }
  .vw-zert__katalog-btn { flex: 1; justify-content: center; padding: 12px; }
}

/* ══════════════════════════════════════════════════════════════════════
   INFO-HUB — Card-Grid (Infos-Seite: klickbare Karten mit Icon/Titel/Text)
   ══════════════════════════════════════════════════════════════════════ */
.vw-infohub { padding: var(--vw-section-py) 0; }
.vw-infohub__head { text-align: center; max-width: 640px; margin: 0 auto clamp(28px, 4vw, 44px); }
.vw-infohub__h { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(30px, 5vw, 48px); line-height: 1.05; letter-spacing: -0.025em; color: var(--vw-ink, #383E42); margin: 0 0 12px; }
.vw-infohub__sub { font-family: var(--vw-font-body); font-size: 18px; line-height: 1.6; color: var(--vw-ink-soft, #4F5559); margin: 0; }
.vw-infohub__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.vw-infohub__card { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: clamp(24px, 2.4vw, 30px); background: #fff; border-radius: 16px; box-shadow: 0 1px 3px rgba(0,0,0,.05); text-decoration: none; color: var(--vw-ink, #383E42); transition: transform .25s, box-shadow .25s; }
.vw-infohub__card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.09); }
.vw-infohub__icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(30,135,18,.10); color: var(--vw-signal, #1E8712); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vw-infohub__icon svg { width: 26px; height: 26px; }
.vw-infohub__title { font-family: var(--vw-font-heading); font-weight: 800; font-size: 19px; line-height: 1.25; color: var(--vw-ink, #383E42); }
.vw-infohub__text { font-family: var(--vw-font-body); font-size: 15px; line-height: 1.55; color: var(--vw-ink-soft, #4F5559); }
.vw-infohub__more { margin-top: auto; padding-top: 6px; font-family: var(--vw-font-heading); font-weight: 600; font-size: 14px; color: var(--vw-signal, #1E8712); }
.vw-infohub__card:hover .vw-infohub__more { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════════════
   QUALITÄTSANFORDERUNG – DETAIL (Kind-Seite) — Head wie Jobs + Prose-Body
   ══════════════════════════════════════════════════════════════════════ */
.vw-qa-detail__hero { background: var(--vw-signal, #1E8712); color: #fff; padding: clamp(40px, 8vh, 90px) 0 clamp(30px, 5vh, 52px); }
.vw-qa-detail__back { display: inline-block; font-family: var(--vw-font-sans); font-weight: 600; font-size: 14px; color: rgba(255,255,255,.85); text-decoration: none; margin-bottom: 20px; }
.vw-qa-detail__back:hover { color: #fff; }
.vw-qa-detail__eyebrow { display: inline-block; font-family: var(--vw-font-sans); font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.16); padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.vw-qa-detail__title { font-family: var(--vw-font-heading); font-weight: 900; font-size: clamp(28px, 4vw, 48px); line-height: 1.06; letter-spacing: -.02em; color: #fff; margin: 0; }
.vw-qa-detail__body { background: var(--vw-bg-alt, #F5F4F1); padding: var(--vw-section-py) 0; }
.vw-qa-detail__body .vw-container { max-width: 900px; }
/* Content sitzt direkt in der Karte (kein Accordion) -> QA-Detail-Padding zurücksetzen */
.vw-qa-detail__body .vw-impr__prose .vw-qa__detail { padding: 0; }
.vw-qa-detail__body .vw-impr__prose .vw-qa__detail h4:first-child { margin-top: 0; }
/* Übersicht: Abfallart-Links als saubere Zeilen mit Pfeil */
.vw-impr__prose ul.vw-qa-links { list-style: none; padding: 0; margin: 4px 0 8px; }
.vw-impr__prose ul.vw-qa-links li { margin: 0; border-bottom: 1px solid rgba(0,0,0,.07); }
.vw-impr__prose ul.vw-qa-links li:last-child { border-bottom: none; }
.vw-impr__prose ul.vw-qa-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 4px; font-family: var(--vw-font-heading); font-weight: 600; font-size: 16px; color: var(--vw-ink, #383E42); text-decoration: none; transition: color .2s, padding .2s; }
.vw-impr__prose ul.vw-qa-links a::after { content: "→"; color: var(--vw-signal, #1E8712); font-weight: 700; }
.vw-impr__prose ul.vw-qa-links a:hover { color: var(--vw-signal, #1E8712); padding-left: 10px; }

/* ═══ Öffnungszeiten-Section (Woche + Live + Urlaube) ═══ */
.vw-oeff__head { margin-bottom: clamp(18px, 2.4vw, 28px); }
.vw-oeff__h { font-family: var(--vw-font-heading); font-weight: 800; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; color: var(--vw-ink, #383E42); margin: 0 0 6px; }
.vw-oeff__sub { font-size: var(--vw-body); color: var(--vw-ink-soft, #4F5559); margin: 0; max-width: 60ch; }
.vw-oeff__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(14px, 1.8vw, 22px); align-items: start; }
.vw-oeff__side { display: flex; flex-direction: column; gap: clamp(14px, 1.8vw, 22px); }
.vw-oeff__card { background: #fff; border-radius: 16px; padding: clamp(20px, 2.4vw, 28px); box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.vw-oeff__label { display: block; font-family: var(--vw-font-heading); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--vw-signal, #1E8712); margin-bottom: 12px; }
/* Wochenliste */
.vw-oeff .l7bh-weekday-list ul { list-style: none; margin: 0; padding: 0; }
.vw-oeff .l7bh-weekday-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 10px 0; font-family: var(--vw-font-body); font-size: 16px; color: var(--vw-ink, #383E42); border-bottom: 1px solid var(--vw-bg-alt, #F5F4F1); }
.vw-oeff .l7bh-weekday-list li:last-child { border-bottom: none; }
.vw-oeff .l7bh-weekday-list .day-name { font-family: var(--vw-font-heading); font-weight: 600; color: var(--vw-ink-soft, #4F5559); }
.vw-oeff .l7bh-weekday-list li.is-today { color: var(--vw-signal, #1E8712); font-weight: 700; }
.vw-oeff .l7bh-weekday-list li.is-today .day-name { color: var(--vw-signal, #1E8712); }
/* Live-Status */
.vw-oeff__card--live { background: var(--vw-signal, #1E8712); }
.vw-oeff__card--live .vw-oeff__label { color: rgba(255,255,255,.8); }
.vw-oeff__live { margin: 0; font-family: var(--vw-font-heading); font-weight: 600; font-size: clamp(17px, 1.9vw, 20px); line-height: 1.35; color: #fff; }
/* Feiertage & Urlaube */
.vw-oeff .l7bh-holiday-list ul { list-style: none; margin: 0; padding: 0; }
.vw-oeff .l7bh-holiday-list li { position: relative; padding: 8px 0 8px 20px; font-size: 15px; line-height: 1.5; color: var(--vw-ink, #383E42); border-bottom: 1px solid var(--vw-bg-alt, #F5F4F1); }
.vw-oeff .l7bh-holiday-list li:last-child { border-bottom: none; }
.vw-oeff .l7bh-holiday-list li::before { content: ""; position: absolute; left: 2px; top: 1.05em; width: 7px; height: 7px; border-radius: 50%; background: var(--vw-signal, #1E8712); }
.vw-oeff__note { margin: 2px 0 0; font-size: 14px; line-height: 1.6; color: var(--vw-ink-soft, #4F5559); }
@media (max-width: 860px) {
    .vw-oeff__grid { grid-template-columns: 1fr; }
}

/* ═══ Wavio Funnel — Marken-Tokens (Vorwagner CD) ═══
   Das Plugin liest diese Variablen und greift sonst auf seine eigenen Defaults zurück.
   Dadurch bleibt das Plugin selbst unberührt und für andere Kunden wiederverwendbar —
   ein Rebranding ist ein Tausch dieser Werte, kein Eingriff in die Plugin-CSS.
   Die CD-Farben kommen aus inc/custom-properties.php (Theme-Einstellungen), damit eine
   Farbänderung im Backend automatisch auch im Funnel greift. */
.wavio-funnel-frame {
    --wavio-mint:      var(--vw-signal, #1E8712);      /* Akzent = CD-Grün statt Plugin-Mint */
    --wavio-on-accent: #FFFFFF;                        /* Text AUF dem Akzent — Pflicht, weil unser Akzent dunkel ist */
    --wavio-black:     var(--vw-ink, #383E42);         /* CD-Grau statt reinem Schwarz */
    --wavio-white:     #FFFFFF;
    --wavio-gray-100:  var(--vw-bg-alt, #F5F4F1);      /* CD Hintergrund-Alt */
    --wavio-gray-200:  #E6E4DF;                        /* warmer Rahmen-/Trennton dazu */
    --wavio-gray-600:  var(--vw-ink-soft, #4F5559);    /* CD Sekundärtext */
    --font-display:    var(--vw-font-heading);         /* Libre Franklin */
    --font-mono:       var(--vw-font-mono);            /* CD kennt kein Mono → ebenfalls Franklin */
}

/* Die Modalfläche des Plugins ist per Default der Akzent-Gradient (helles Mint im Original).
   Mit unserem DUNKLEN Grün würde daraus eine grüne Vollfläche mit grauem Text — schlecht
   lesbar und CD-widrig (Grün ist Akzent, nicht Fläche). Also Fläche neutral, Grün bleibt
   den Buttons und der Auswahl vorbehalten. Explizit gewählte Vollbild-Hintergründe
   (--bg-white/-gray/-dark) bleiben unangetastet. */
.wavio-funnel-frame:not([class*="--bg-"]) .wavio-funnel-modal {
    /* CD-Neutralton statt Weiß: die weißen Auswahl-Cards behalten dadurch ihre Kontur */
    background: var(--wavio-funnel-gray-100);
}
/* Der Funnel liegt auf z-index 9999, unser Header aber auf 10000 !important —
   dadurch schnitt die Navigation in den Funnel. Modal/Fullpage müssen darüber liegen. */
.wavio-funnel-frame--modal,
.wavio-funnel-frame--fullpage { z-index: 100001; }

/* Solange der Funnel offen ist, tritt die Website-Navigation komplett zurück.
   Das Plugin setzt dafür bereits body.wavio-funnel-modal-open (frontend.js);
   hier nötig, weil unser Header hoch (sticky) liegt.
   display:none statt nur z-index, damit der Header auch nicht mehr klickbar ist. */
body.wavio-funnel-modal-open .vw-header { display: none; }

/* Das Logo im Funnel-Header ist im Plugin hardcodiert (kein Setting) und hier
   überflüssig — der Funnel öffnet ohnehin auf der eigenen Website. Ausblenden
   statt Plugin-Eingriff; der Fortschritts-Indikator rückt nach rechts. */
.wavio-funnel-brand { display: none; }
.wavio-funnel-progress { margin-left: auto; }

/* Wird ein CTA zum Funnel-Trigger, rendert er als <button> statt <a>. Browser geben
   Buttons eigene Schrift, Rahmen und zentrierten Text — hier zurückgesetzt, damit die
   Optik exakt der Link-Variante entspricht. Hintergrund/Padding kommen weiter aus den
   jeweiligen Klassen und bleiben deshalb bewusst unangetastet.
   WICHTIG: KEIN `font: inherit` — das würde die Marken-Schrift der Button-Klassen mit
   der geerbten Body-Serifenschrift (Palatino) überschreiben. Nur die Familie fest auf
   Franklin setzen; Größe/Gewicht/Letterspacing kommen aus den jeweiligen Klassen. */
button.vw-hero__cta,
button.vw-anfrage-cta__btn,
button.vw-leistung-cta__btn,
button.vw-job-apply {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    font-family: var(--vw-font-heading);
    text-align: inherit;
    cursor: pointer;
}
