@font-face { font-family: 'Inter'; src: url('./assets/fonts/inter-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('./assets/fonts/inter-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('./assets/fonts/inter-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('./assets/fonts/inter-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('./assets/fonts/inter-800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }

/*
Theme Name: WidenBOX
Theme URI: https://widenbox.de
Author: WidenBOX GmbH
Author URI: https://widenbox.de
Description: Corporate B2B Theme für WidenBOX – Verpackung, Logistik, Nachhaltigkeit.
Version: 3.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: widenbox
*/

/* ================================================
   Custom Properties
   ================================================ */
:root {
    --c-primary: #1ab14b;
    --c-primary-dark: #158f3c;
    --c-primary-light: #e8f7ed;
    --c-primary-glow: rgba(26, 177, 75, 0.25);
    --c-gray: #616465;
    --c-gray-light: #f5f5f5;
    --c-gray-border: #e0e0e0;
    --c-white: #ffffff;
    --c-dark: #1a1a1a;
    --c-hero-overlay: #0d3320;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi: 600;
    --fw-bold: 700;
    --fw-extra: 800;

    --max-w: 1280px;
    --max-w-narrow: 960px;
    --header-h: 80px;
    --section-py: 100px;
    --radius: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-green: 0 8px 30px rgba(26, 177, 75, 0.2);
}

/* ================================================
   Reset
   ================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-weight: var(--fw-regular);
    color: var(--c-dark);
    background: #f5f6f7;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Dunkler Hintergrund ausblenden */
.wb-bg, .wb-grid { display: none; }

/* Globale Farben: dunkel auf hell */
h1, h2, h3, h4 { color: #1a1a1a; }
p { color: #616465; }
.overline { color: #1ab14b; }

/* Sektionen abwechselnd */
.section { background: #ffffff; }
.section:nth-child(even) { background: #f0f2f4; }
.section--gray { background: #f0f2f4; }
.section--dark {
    background: #f8f9fa;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    color: var(--c-dark);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #1a1a1a; }
.section--dark p { color: #616465; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f2f4; }
::-webkit-scrollbar-thumb { background: #1ab14b; border-radius: 3px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--c-primary-dark); }
ul, ol { list-style: none; }

/* ================================================
   Typografie
   ================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--fw-bold);
    line-height: 1.15;
    color: var(--c-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: var(--fw-extra); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: var(--fw-semi); }
h4 { font-size: 1.1rem; font-weight: var(--fw-semi); }

p {
    font-size: 1.05rem;
    color: var(--c-gray);
    margin-bottom: 1rem;
}

/* ================================================
   Layout
   ================================================ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow { max-width: var(--max-w-narrow); }

/* Header auf Desktop etwas breiter, damit Nav + CTAs + Sprach-Switcher nicht gequetscht wirken */
@media (min-width: 1025px) {
    .site-header .container { max-width: 1480px; }
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section--gray { background: var(--c-gray-light); }

.section--dark { background: #f8f9fa; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #1a1a1a; }
.section--dark p { color: #616465; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.overline {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-primary);
    margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; }

/* ================================================
   Buttons
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: var(--fw-semi);
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

.btn--primary {
    background: var(--c-primary);
    color: var(--c-white);
    border-color: var(--c-primary);
}

.btn--primary:hover {
    background: var(--c-primary-dark);
    border-color: var(--c-primary-dark);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn--pulse { animation: pulse 3s ease-in-out infinite; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--c-primary-glow); }
    50% { box-shadow: 0 0 0 12px transparent; }
}

.btn--outline {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
    background: var(--c-white);
    color: var(--c-dark);
    border-color: var(--c-white);
}

.btn--white {
    background: var(--c-white);
    color: var(--c-primary);
    border-color: var(--c-white);
}

.btn--white:hover {
    background: transparent;
    color: var(--c-white);
    border-color: var(--c-white);
}

.btn--large { padding: 18px 40px; font-size: 1.05rem; }

/* Ripple-Effekt */
.btn { position: relative; overflow: hidden; }
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
}
.btn:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: 0s;
}

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================================================
   Header
   ================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: padding var(--ease);
}

/* Ganz oben: komplett transparent */
.site-header:not(.scrolled) {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

.site-header:not(.scrolled) .main-nav > li > a {
    color: #1a1a1a;
}

/* Beim Scrollen: weißes Glas */
.site-header.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.site-header.scrolled .main-nav > li > a {
    color: #1a1a1a;
}

.site-header.scrolled .main-nav > li > a:hover {
    color: #1ab14b;
}

.site-header.scrolled .header-inner {
    padding: 10px 0;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    height: 52px;
    width: auto;
    transition: all var(--ease);
}

.site-logo-img {
    /* Logo dunkel auf hellem Hintergrund – kein Filter nötig */
}

.site-header.scrolled .site-logo-img {
    transform: scale(0.9);
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 16px;
}

.main-nav li { position: relative; }

.main-nav > li > a {
    display: block;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: var(--fw-medium);
    color: #333;
    transition: color var(--ease);
    white-space: nowrap;
}

.main-nav > li > a:hover { color: var(--c-primary); }

/* Nav Link Underline-Effekt */
.main-nav > li > a {
    position: relative;
}

.main-nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--c-primary);
    transition: width 0.3s ease;
}

.main-nav > li > a:hover::before,
.main-nav > li.current-menu-item > a::before {
    width: calc(100% - 32px);
}

/* ================================================
   Mega-Menü
   ================================================ */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-xl);
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ease);
    min-width: 680px;
    z-index: 100;
}

/* Sub-Menü und Dropdown breiter */
.main-nav li.menu-item-has-children > ul {
    min-width: 560px;
}

.main-nav li.menu-item-has-children > ul li a {
    white-space: nowrap;
}

.main-nav > li:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mega-Menü: Links links + Bild rechts */
.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 24px;
    align-items: start;
}

.mega-menu-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.mega-menu-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    transition: background var(--ease);
    text-decoration: none;
    color: var(--c-dark);
}

.mega-menu-item:hover {
    background: var(--c-primary-light);
    color: var(--c-dark);
}

.mega-menu-item-icon {
    width: 40px;
    height: 40px;
    background: var(--c-gray-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--c-primary);
    transition: background var(--ease);
}

.mega-menu-item:hover .mega-menu-item-icon {
    background: var(--c-primary);
    color: var(--c-white);
}

.mega-menu-item-icon svg { width: 20px; height: 20px; }

.mega-menu-item-text h4 {
    font-size: 0.88rem;
    font-weight: var(--fw-semi);
    margin-bottom: 2px;
    color: var(--c-dark);
    white-space: nowrap;
}

.mega-menu-item-text span {
    font-size: 0.78rem;
    color: var(--c-gray);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dropdown */
.main-nav > li.has-children > 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;
    transition: transform var(--ease);
}

.main-nav > li.has-children:hover > a::after {
    transform: rotate(-135deg);
}

/* ================================================
   Produkte Mega-Menü (3-Spalten)
   ================================================ */
.nav-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff !important;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.13);
    border: 1px solid rgba(0,0,0,0.07);
    padding: 28px 32px;
    min-width: 820px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ease);
    z-index: 1000;
}
.nav-item--has-mega:hover > .nav-mega-menu,
.nav-item--has-mega:focus-within > .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-item--has-mega > a::after { display: none !important; }
.nav-arrow {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.6;
    display: inline-block;
    transition: transform 0.2s ease;
}
.nav-item--has-mega:hover .nav-arrow { transform: rotate(180deg); }

.nav-mega-inner { width: 100%; }
.nav-mega-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 200px;
    gap: 40px;
    align-items: start;
}
.nav-mega-col { display: flex; flex-direction: column; }
.nav-mega-cat {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #1ab14b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    margin-top: 18px;
    margin-bottom: 8px;
}
.nav-mega-col > .nav-mega-cat:first-child { margin-top: 0; }
.nav-mega-cat:hover { color: #0d3320; }

.nav-mega-link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.nav-mega-link-grid a {
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    padding: 2px 0;
    white-space: nowrap;
}
.nav-mega-link-grid a:hover { color: #1ab14b; }

.nav-mega-col--img {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.nav-mega-col--img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}
.nav-mega-col--img > a {
    font-size: 13px;
    font-weight: 600;
    color: #1ab14b;
    text-decoration: none;
}
.nav-mega-col--img > a:hover { color: #0d3320; }

@media (max-width: 1024px) {
    .nav-mega-menu { display: none !important; }
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--c-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--ease);
}

.main-nav > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--c-dark);
    transition: all var(--ease);
}

.sub-menu li a:hover {
    background: var(--c-primary-light);
    color: var(--c-primary);
    padding-left: 24px;
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 15px; font-size: 0.85rem; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: all var(--ease);
    border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================
   Hero – Glassmorphism 2.0
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff 0%, #f0f4f0 100%);
    padding: var(--header-h) 0 100px;
}

/* Animierte Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(26,177,75,0.25), transparent);
    top: -100px; left: -100px;
    animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(13,138,58,0.2), transparent);
    top: 200px; right: -80px;
    animation: orbFloat 11s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(26,177,75,0.15), transparent);
    bottom: -50px; left: 30%;
    animation: orbFloat 9s ease-in-out infinite alternate;
}

.hero-orb-4 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(97,100,101,0.5), transparent);
    top: 100px; left: 40%;
    animation: orbFloat 13s ease-in-out infinite alternate-reverse;
    filter: blur(80px);
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.15); }
}

/* Gitter-Overlay */
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(26,177,75,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,177,75,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Bubble Canvas */
#bubbleCanvas {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 780px;
    padding-top: 0;
    text-align: center;
    margin: 0 auto;
}

/* Glas-Badge */
.hero-badge {
    display: inline-block;
    background: rgba(26,177,75,0.1);
    border: 1px solid rgba(26,177,75,0.25);
    border-radius: 100px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: var(--fw-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1ab14b;
    margin-bottom: 24px;
}

.hero h1 {
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero .hero-sub {
    color: #616465;
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 560px;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

/* KPI-Karten im Hero (Glassmorphism) */
.kpi-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.kpi-item {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 130px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    cursor: default;
}

.kpi-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    border-color: rgba(26,177,75,0.25);
}

.kpi-number {
    font-size: 22px;
    font-weight: var(--fw-extra);
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
    white-space: nowrap;
}

.kpi-label {
    font-size: 10px;
    font-weight: var(--fw-semi);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #616465;
    white-space: nowrap;
}

/* Glas-Button */
.btn--glass {
    background: rgba(255,255,255,0.06);
    color: var(--c-white);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn--glass:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.btn--ppwr {
    background: #158f3c;
    color: #fff;
    padding: 10px 15px;
    border-radius: var(--radius);
    font-size: 13.6px;
    font-weight: var(--fw-semi);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--ease);
    border: 2px solid #158f3c;
}
.btn--ppwr:hover {
    background: #0d6b2d;
    border-color: #0d6b2d;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Buttons – immer sichtbar und zentriert */
.hero .btn-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.hero .btn-group .btn {
    display: inline-flex;
    align-items: center;
    visibility: visible;
    opacity: 1;
}

.hero .btn--primary {
    background: #1ab14b;
    color: #fff;
    border: 2px solid #1ab14b;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(26,177,75,0.35);
}

.hero .btn--primary:hover {
    box-shadow: 0 8px 32px rgba(26,177,75,0.45);
    transform: translateY(-2px);
}

.hero .btn--outline,
.hero .btn--glass {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(26,26,26,0.25);
    color: #1a1a1a;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.hero .btn--outline:hover,
.hero .btn--glass:hover {
    background: rgba(255,255,255,0.75);
    border-color: #1ab14b;
    color: #1ab14b;
}

/* Region-Text */
.hero-region {
    font-size: 12px;
    color: rgba(0,0,0,0.3);
    letter-spacing: 0.1em;
    margin-top: 16px;
}

/* Scroll-Indikator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(0,0,0,0.25);
    font-size: 0.7rem;
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-indicator-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid rgba(0,0,0,0.2);
    border-bottom: 2px solid rgba(0,0,0,0.2);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.4; }
    50% { transform: rotate(45deg) translate(4px,4px); opacity: 1; }
}

/* ================================================
   Produkt-Karten
   ================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--c-white);
    border: 1px solid var(--c-gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--c-primary);
    box-shadow: var(--shadow-green);
}

.product-card-image {
    height: 220px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-body { padding: 28px; }
.product-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.product-card-body p { font-size: 0.92rem; margin-bottom: 16px; line-height: 1.6; }

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: var(--fw-semi);
    color: var(--c-primary);
}

.product-card-link::after {
    content: '\2192';
    transition: transform var(--ease);
}

.product-card:hover .product-card-link::after { transform: translateX(4px); }

/* ================================================
   Prozess
   ================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, var(--c-primary), var(--c-gray-border));
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--c-primary);
    color: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--fw-bold);
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(26,177,75,0.3);
}

.process-step h4 { margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { font-size: 0.85rem; line-height: 1.5; }

/* ================================================
   Trust (2-spaltig)
   ================================================ */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-text h2 { margin-bottom: 20px; }
.trust-text > p { margin-bottom: 16px; font-size: 1.05rem; }

.trust-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--c-dark);
}

.trust-list-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--c-primary);
}

.trust-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================================================
   CTA Section
   ================================================ */
.cta-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    isolation: isolate;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 64px 56px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    border-radius: 50%;
}

.cta-inner .overline {
    display: block;
    color: #4ade80;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.cta-inner h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.cta-inner .btn-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-inner .btn--primary {
    background: #1ab14b;
    color: #fff;
    border: 2px solid #1ab14b;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(26,177,75,0.4);
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
}
.cta-inner .btn--primary:hover {
    background: #17a044;
    box-shadow: 0 0 60px rgba(26,177,75,0.6);
    transform: translateY(-2px);
}

.btn--glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #ffffff;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
}
.btn--glass:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.55);
    transform: translateY(-2px);
    color: #fff;
}

/* Legacy .cta-banner Support */
.cta-banner {
    background: #0f0f0f;
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-banner p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { justify-content: center; }
.cta-banner .btn--primary { background: #1ab14b; color: #fff; border-color: #1ab14b; }
.cta-banner .btn--white { background: #fff; color: #1ab14b; border-color: #fff; }
.cta-banner .btn--outline { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; }

/* ================================================
   Footer
   ================================================ */
.site-footer {
    background: var(--c-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
    color: var(--c-white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.footer-logo { margin-bottom: 20px; }

.footer-logo-img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-col p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: all var(--ease);
}

.footer-links a:hover {
    color: var(--c-primary);
    padding-left: 4px;
}

.footer-contact-block { margin-bottom: 20px; }
.footer-contact-block strong {
    display: block;
    color: var(--c-white);
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.footer-contact-block span,
.footer-contact-block a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    display: block;
    line-height: 1.6;
}

.footer-contact-block a:hover { color: var(--c-primary); }

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-legal a:hover { color: var(--c-white); }

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px 60px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5,30,15,0.72) 0%, rgba(10,50,25,0.65) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 44px 48px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.page-hero .container::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}

.page-hero h1 {
    color: #ffffff;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero p {
    color: rgba(255,255,255,0.72);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.6;
    margin: 0;
}

.page-hero .overline {
    color: #4ade80;
    font-size: 11px;
    margin-bottom: 10px;
    display: block;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.page-hero .breadcrumb span {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
}

.page-hero .breadcrumb a:hover {
    color: rgba(255,255,255,0.75);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color var(--ease);
}

.breadcrumb a:hover { color: var(--c-primary); }

.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ================================================
   Scroll-Animationen Startzustände
   ================================================ */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.in-view, .anim-left.in-view, .anim-right.in-view {
    opacity: 1; transform: none;
}
/* Stagger-Verzögerungen */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Legacy-Kompatibilität */
.gs-fade { opacity: 1; transform: none; }
.gs-fade-left { opacity: 1; transform: none; }
.gs-fade-right { opacity: 1; transform: none; }

/* ================================================
   Unterseiten – Content Sections
   ================================================ */
.content-section { padding: var(--section-py) 0; }

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse .content-image { order: 2; }
.content-grid.reverse .content-text { order: 1; }

.content-grid .content-image { align-self: stretch; min-height: 360px; border-radius: var(--radius-xl); overflow: hidden; }
.content-grid .content-image img,
.content-grid .content-img { width: 100%; height: 100%; min-height: 360px; max-height: 560px; object-fit: cover; border-radius: 12px; display: block; }
.content-grid--tall .content-image img,
.content-grid--tall .content-img { max-height: 720px; }

.content-text h2 { margin-bottom: 16px; }
.content-text > h3 {
    font-size: 0.75rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-primary);
    margin-bottom: 8px;
}
.content-text p { margin-bottom: 16px; }
.content-text ul { margin: 16px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.content-text ul li {
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--c-gray);
}
.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: var(--c-primary);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: var(--c-white);
    border: 1px solid var(--c-gray-border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    transition: all var(--ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    border-color: var(--c-primary);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    background: var(--c-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--c-primary);
}

.feature-card-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1rem; }
.feature-card p { font-size: 0.88rem; margin: 0; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-extra);
    color: var(--c-primary);
    line-height: 1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Timeline – Modern */
.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-primary), rgba(26,177,75,0.15));
    z-index: 0;
}

.timeline-item {
    position: relative;
    padding: 0 0 44px 0;
    display: block;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--c-white);
    border: 2.5px solid var(--c-primary);
    box-shadow: 0 0 0 4px rgba(26,177,75,0.1);
    z-index: 1;
    transition: all var(--ease);
}

.timeline-item:hover::before {
    background: var(--c-primary);
    box-shadow: 0 0 0 6px rgba(26,177,75,0.15);
}

.timeline-year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--c-primary);
    background: var(--c-primary-light);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.05rem;
    font-weight: var(--fw-semi);
    color: var(--c-dark);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--c-gray);
    margin: 0;
    line-height: 1.6;
}


/* Kontakt */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: var(--fw-semi);
    color: var(--c-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--c-gray-border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--c-dark);
    background: var(--c-white);
    transition: border-color var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-glow);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-card {
    background: var(--c-gray-light);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.contact-info-card h3 svg { color: var(--c-primary); }
.contact-info-card p { font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-card a { color: var(--c-primary); font-size: 0.9rem; }

/* Standortkarten mit Foto-Hintergrund */
.standort-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 20px;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
}

.standort-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.standort-card:hover .standort-card-bg {
    transform: scale(1.05);
}

.standort-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    transition: background var(--ease);
}

.standort-card:hover .standort-card-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.standort-card-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    width: 100%;
}

.standort-card-content h3 {
    color: var(--c-white);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.standort-card-content .standort-card-label {
    color: var(--c-primary);
    font-size: 0.78rem;
    font-weight: var(--fw-semi);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.standort-card-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 4px;
    line-height: 1.5;
}

.standort-card-content a {
    color: var(--c-white);
    font-weight: var(--fw-medium);
}

.standort-card-content a:hover {
    color: var(--c-primary);
}

.map-placeholder {
    background: var(--c-gray-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--c-gray);
    font-size: 0.9rem;
    text-align: center;
    border: 2px dashed var(--c-gray-border);
}

.map-placeholder svg { color: var(--c-primary); width: 32px; height: 32px; }

/* Responsive Unterseiten */
@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .content-grid { gap: 48px; }
}

@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; gap: 32px; }
    .content-grid.reverse .content-image,
    .content-grid.reverse .content-text { order: 0; }
    .feature-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .timeline { padding-left: 40px; }
    .timeline::before { left: 13px; }
    .timeline-item::before { left: -34px; width: 14px; height: 14px; }
    .page-hero .container { padding: 36px 28px; border-radius: 18px; }
    .page-hero { min-height: 360px; }
}

/* ================================================
   WordPress-Klassen
   ================================================ */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 24px; }

.screen-reader-text {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ================================================
   prefers-reduced-motion
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .gs-fade, .gs-fade-left, .gs-fade-right {
        opacity: 1 !important;
        transform: none !important;
    }
    .scroll-indicator-arrow { animation: none; }
    .btn--pulse { animation: none; }
    .hero-bg { transform: none !important; }
}

/* ================================================
   Responsive – Tablet
   ================================================ */
@media (max-width: 1024px) {
    :root { --section-py: 72px; }
    .kpi-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(3, 1fr); }
    .process-steps::before { display: none; }
    .trust-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ================================================
   Responsive – Mobile
   ================================================ */
@media (max-width: 768px) {
    :root { --section-py: 56px; --header-h: 64px; }

    .menu-toggle { display: flex; }

    .nav-wrapper {
        position: fixed;
        top: 0; right: -100%;
        width: 85%; max-width: 380px;
        height: 100vh;
        background: #fff;
        box-shadow: var(--shadow-lg);
        padding: 80px 24px 24px;
        transition: right var(--ease);
        overflow-y: auto;
        z-index: 1000;
    }
    .nav-wrapper.active { right: 0; }

    .main-nav { flex-direction: column; gap: 0; }
    .main-nav > li > a {
        color: #333;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid #f0f2f4;
    }

    .sub-menu, .mega-menu {
        position: static; box-shadow: none;
        opacity: 1; visibility: visible; transform: none;
        padding: 0 0 0 16px; display: none;
        min-width: 0; width: 100%;
        border-radius: 0;
    }
    .main-nav > li.has-children.open > .sub-menu,
    .main-nav > li.has-children.open > .mega-menu { display: block; }
    .sub-menu li a { padding: 10px 0; border-bottom: 1px solid var(--c-gray-light); }
    .mega-menu-inner { grid-template-columns: 1fr; }
    .mega-menu-links { grid-template-columns: 1fr; }
    .mega-menu-image { display: none; }
    .mega-menu { padding: 8px 0; }
    .mega-menu-item { padding: 10px 0; border-bottom: 1px solid var(--c-gray-light); border-radius: 0; }
    .mega-menu-item-icon { display: none; }
    .mega-menu-item-text span { display: none; }
    .main-nav > li > a::before { display: none; }

    .header-cta { margin-top: 24px; }
    .header-cta .btn { width: 100%; justify-content: center; }

    .mobile-overlay {
        display: none; position: fixed; inset: 0;
        background: rgba(0,0,0,0.5); z-index: 999;
    }
    .mobile-overlay.active { display: block; }

    .hero { min-height: 100svh; padding: 96px 0 80px; }
    .hero-content { padding-top: 0; }
    .hero-content h1 { font-size: 1.65rem; line-height: 1.18; }
    .hero-content .hero-sub { font-size: 0.95rem; }
    .hero-badge { font-size: 10px; padding: 5px 14px; }
    .scroll-indicator { bottom: 16px; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn--large { padding: 16px 32px; }
    .kpi-grid { gap: 8px; }
    .kpi-item { min-width: calc(50% - 8px); padding: 14px 12px; border-radius: 12px; }
    .kpi-number { font-size: 18px; }
    .kpi-label { font-size: 9px; }
    .hero-orb-1 { width: 200px; height: 200px; }
    .hero-orb-2 { width: 150px; height: 150px; }
    .hero-orb-3, .hero-orb-4 { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 28px; }
    .trust-grid { grid-template-columns: 1fr; gap: 32px; }
    .trust-image { order: -1; max-height: 300px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .container { padding: 0 16px; }
    .step-num { width: 64px; height: 64px; font-size: 1.2rem; }
    .hero-content h1 { font-size: 1.45rem; }
}

/* ================================================
   Glassmorphism auf hellem Grund
   ================================================ */

/* Produkt-Karten */
.product-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,1);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,1);
}
.product-card-body h3 { color: #1a1a1a; }
.product-card-link { color: #1ab14b; }

/* Feature-Karten */
.feature-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,1);
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
    border-color: rgba(26,177,75,0.3);
}

/* Prozess-Steps */
.process-step {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,1);
    padding: 32px 24px;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,1);
    border-color: rgba(26,177,75,0.25);
}

/* CTA – siehe Hauptblock */

/* Trust */
.trust-image { border-radius: 20px; border: 1px solid rgba(0,0,0,0.06); }
.trust-list-item { color: #1a1a1a; }
.trust-list-item svg { color: #1ab14b; }

/* Footer */
.site-footer { background: #0f0f0f; margin-top: 0; }
.footer-logo-img { filter: brightness(0) invert(1); }

/* Buttons */
.btn--outline {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.12);
    color: #1a1a1a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn--outline:hover {
    background: #fff;
    border-color: #1ab14b;
    color: #1ab14b;
}

/* Page Hero mobil */
@media (max-width: 768px) {
    .page-hero { padding: 70px 16px 50px; min-height: 360px; }
    .page-hero .container { padding: 32px 24px; border-radius: 16px; }
}

/* Content Sections */
.content-section { background: transparent; }
.content-grid img { border-radius: 20px; border: 1px solid rgba(0,0,0,0.06); }
.content-text h3 { color: #1ab14b; }
.content-text ul li { color: #616465; }
.content-text ul li::before { background: #1ab14b; }

/* Kontakt */
.contact-info-card, .standort-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.95);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-radius: 16px;
}
.contact-info-card p, .contact-info-card a { color: #616465; }

/* Formular */
.form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.1);
    color: #1a1a1a;
    border-radius: 10px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #1ab14b;
    box-shadow: 0 0 0 3px rgba(26,177,75,0.1);
}
.form-group label { color: #333; }

/* Stats (clean corporate) */
.stat-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: none;
}
.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: rgba(26,177,75,0.2);
}
.stat-number {
    color: #1a1a1a;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}
.stat-label {
    color: #616465;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* Timeline */
.timeline-year { color: #1ab14b; }
.timeline-content h3 { color: #1a1a1a; }
.timeline-content p { color: #616465; }

/* Mega Menu */
.mega-menu {
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    min-width: 680px;
}
.mega-menu-item { color: #333; white-space: nowrap; }
.mega-menu-item:hover { background: rgba(26,177,75,0.06); color: #1a1a1a; }
.mega-menu-item-text h4 { color: #1a1a1a; white-space: nowrap; }
.mega-menu-item-text span { color: #616465; white-space: nowrap; }
.mega-menu-item-icon { background: #f0f2f4; color: #1ab14b; }
.mega-menu-item:hover .mega-menu-item-icon { background: #1ab14b; color: #fff; }

/* Quote */
.section-quote { padding: 120px 0; text-align: center; background: #f0f2f4; }
.section-quote blockquote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--fw-bold); color: #1a1a1a;
    line-height: 1.4; max-width: 900px;
    margin: 0 auto; letter-spacing: -0.02em;
}
.section-quote blockquote span { color: #1ab14b; }

/* Fade-Up */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .hero-orb { animation: none; }
    .fade-up { opacity: 1; transform: none; }
}

/* ===== ANFRAGE FORMULAR ===== */
.anfrage-wrap { max-width: 860px; margin: 0 auto; }

.wbf-progress { margin-bottom: 48px; }
.wbf-progress-track { height: 3px; background: rgba(0,0,0,0.08); border-radius: 3px; margin-bottom: 20px; overflow: hidden; }
.wbf-progress-fill { height: 100%; background: #1ab14b; border-radius: 3px; transition: width 0.4s ease; width: 20%; }
.wbf-progress-steps { display: flex; justify-content: space-between; }
.wbf-progress-step { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: default; }
.wbf-progress-step span { width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.06); border: 2px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #616465; transition: all 0.3s; }
.wbf-progress-step small { font-size: 11px; color: rgba(0,0,0,0.35); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.wbf-progress-step.active span { background: #1ab14b; border-color: #1ab14b; color: #fff; box-shadow: 0 0 0 4px rgba(26,177,75,0.15); }
.wbf-progress-step.active small { color: #1ab14b; }
.wbf-progress-step.done span { background: #e8f8ee; border-color: #1ab14b; color: #1ab14b; }

.wbf-step { display: none; animation: wbfFadeIn 0.3s ease; }
.wbf-step.active { display: block; }
@keyframes wbfFadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.wbf-step-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.wbf-step-num { font-size: 42px; font-weight: 900; color: rgba(26,177,75,0.15); line-height: 1; letter-spacing: -0.03em; flex-shrink: 0; }
.wbf-step-header h2 { font-size: 1.6rem; font-weight: 800; color: #1a1a1a; margin-bottom: 4px; }
.wbf-step-header p { color: #616465; font-size: 15px; margin: 0; }

.wbf-grid { display: grid; gap: 20px; }
.wbf-grid-2 { grid-template-columns: 1fr 1fr; }
.wbf-field-full { grid-column: 1 / -1; }
@media (max-width: 640px) { .wbf-grid-2 { grid-template-columns: 1fr; } }

.wbf-field label { display: block; font-size: 13px; font-weight: 600; color: #1a1a1a; margin-bottom: 8px; }
.wbf-field input, .wbf-field select, .wbf-field textarea { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.1); border-radius: 10px; font-size: 15px; font-family: inherit; color: #1a1a1a; background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); transition: border-color 0.2s, box-shadow 0.2s; outline: none; box-sizing: border-box; }
.wbf-field input:focus, .wbf-field select:focus, .wbf-field textarea:focus { border-color: #1ab14b; box-shadow: 0 0 0 4px rgba(26,177,75,0.1); background: #fff; }
.wbf-field input.error, .wbf-field select.error { border-color: #e24b4a; box-shadow: 0 0 0 3px rgba(226,75,74,0.1); }

.wbf-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 10px; }
.wbf-type-grid-sm { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.wbf-type-card { cursor: pointer; }
.wbf-type-card input { display: none; }
.wbf-type-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 20px 16px; border: 1.5px solid rgba(0,0,0,0.08); border-radius: 14px; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1); }
.wbf-type-inner span { font-size: 28px; }
.wbf-type-inner strong { font-size: 13px; font-weight: 700; color: #1a1a1a; }
.wbf-type-inner small { font-size: 11px; color: #616465; }
.wbf-type-card input:checked + .wbf-type-inner { border-color: #1ab14b; background: rgba(26,177,75,0.06); box-shadow: 0 0 0 3px rgba(26,177,75,0.15); transform: translateY(-2px); }
.wbf-type-card:hover .wbf-type-inner { border-color: rgba(26,177,75,0.3); transform: translateY(-2px); }

.wbf-radio-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.wbf-radio { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1.5px solid rgba(0,0,0,0.08); border-radius: 8px; cursor: pointer; font-size: 14px; font-weight: 500; color: #1a1a1a; background: rgba(255,255,255,0.6); transition: all 0.2s; }
.wbf-radio input { width: 16px; height: 16px; accent-color: #1ab14b; }
.wbf-radio:has(input:checked) { border-color: #1ab14b; background: rgba(26,177,75,0.06); color: #1ab14b; }

.wbf-check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; margin-top: 8px; }
.wbf-check { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1.5px solid rgba(0,0,0,0.07); border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 500; color: #1a1a1a; background: rgba(255,255,255,0.5); transition: all 0.2s; }
.wbf-check input { accent-color: #1ab14b; width: 15px; height: 15px; }
.wbf-check:has(input:checked) { border-color: #1ab14b; background: rgba(26,177,75,0.05); }
.wbf-check-dsgvo { padding: 16px; border-radius: 10px; border: 1.5px solid rgba(0,0,0,0.08); background: rgba(0,0,0,0.02); font-size: 14px; align-items: flex-start; }
.wbf-check-dsgvo a { color: #1ab14b; text-decoration: underline; }

.wbf-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.wbf-nav-right { display: flex; align-items: center; gap: 16px; }
.wbf-step-info { font-size: 13px; color: #616465; font-weight: 500; }
.wbf-btn-next, .wbf-btn-submit { background: #1ab14b; color: #fff; border: none; padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.wbf-btn-next:hover, .wbf-btn-submit:hover { background: #17a044; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,177,75,0.3); }
.wbf-btn-back { background: transparent; border: 1.5px solid rgba(0,0,0,0.12); color: #616465; padding: 13px 24px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.wbf-btn-back:hover { border-color: rgba(0,0,0,0.25); color: #1a1a1a; }

.wbf-success { text-align: center; padding: 80px 40px; }
.wbf-success-icon { width: 72px; height: 72px; border-radius: 50%; background: #1ab14b; color: #fff; font-size: 32px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 0 0 12px rgba(26,177,75,0.1); }
.wbf-success h3 { font-size: 1.8rem; color: #1a1a1a; margin-bottom: 12px; }
.wbf-success p { color: #616465; font-size: 16px; margin-bottom: 32px; }

/* ===== HERO BILD + GLAS ===== */
.hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: none !important;
}
.hero-bg {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 0 !important;
}
.hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(160deg, rgba(5,30,15,0.78) 0%, rgba(10,50,25,0.70) 100%) !important;
    z-index: 1 !important;
}
#bubbleCanvas {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: none !important;
}
.hero .container {
    position: relative !important;
    z-index: 3 !important;
}
.hero-content {
    background: rgba(255,255,255,0.07) !important;
    backdrop-filter: blur(24px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
    border: 1px solid rgba(255,255,255,0.13) !important;
    border-radius: 24px !important;
    padding: 60px 64px !important;
    position: relative !important;
    max-width: 780px !important;
    margin: 0 auto !important;
    text-align: center !important;
}
.hero-content::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}
.hero h1 { color: #fff !important; text-shadow: 0 2px 20px rgba(0,0,0,0.3) !important; }
.hero p, .hero .hero-sub { color: rgba(255,255,255,0.72) !important; }
.hero-badge {
    background: rgba(26,177,75,0.2) !important;
    border-color: rgba(26,177,75,0.4) !important;
    color: #4ade80 !important;
}
.hero .kpi-item {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.12) !important;
}
.hero .kpi-number { color: #fff !important; }
.hero .kpi-label { color: rgba(255,255,255,0.45) !important; }
.hero .btn--outline, .hero .btn--glass {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.25) !important;
    color: #fff !important;
}

/* ===== ADAPTIVE NAV ===== */
.site-header {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease !important;
}
.site-header.nav-dark {
    background: rgba(5,20,10,0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.site-header.nav-dark .main-nav > li > a {
    color: rgba(255,255,255,0.88) !important;
}
.site-header.nav-dark .main-nav > li > a:hover {
    color: #4ade80 !important;
}
.site-header.nav-dark .site-logo img,
.site-header.nav-dark .site-logo-img {
    filter: brightness(0) invert(1) !important;
}
.site-header.nav-dark .btn.btn--primary {
    background: #1ab14b !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(26,177,75,0.35) !important;
}
.site-header.nav-light {
    background: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.07) !important;
    border-bottom: none !important;
}
.site-header.nav-light .main-nav > li > a {
    color: #1a1a1a !important;
}
.site-header.nav-light .main-nav > li > a:hover {
    color: #1ab14b !important;
}
.site-header.nav-light .site-logo img,
.site-header.nav-light .site-logo-img {
    filter: none !important;
}
.main-nav .sub-menu,
.nav-dropdown {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}
.main-nav .sub-menu a { color: #1a1a1a !important; }
.main-nav .sub-menu a:hover { color: #1ab14b !important; }

@media (max-width: 768px) {
    .hero-content { padding: 40px 28px !important; border-radius: 18px !important; }
    .site-header.nav-dark .menu-toggle span { background: #fff !important; }
    .site-header.nav-light .menu-toggle span { background: #333 !important; }
}

/* ===== HEADER TRANSPARENT + NAV KLEIN ===== */
.site-logo img { height: 40px !important; width: auto !important; }
.main-nav > li > a { font-size: 13px !important; }
.site-header.nav-dark {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}
.hero-region { color: rgba(255,255,255,0.6) !important; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 20px 0 60px; }
.legal-block { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.legal-block:last-child { border-bottom: none; }
.legal-block h2 { font-size: 1.2rem !important; font-weight: 700 !important; color: #1a1a1a !important; margin-bottom: 16px !important; }
.legal-block p { color: #616465 !important; font-size: 15px !important; line-height: 1.8 !important; margin-bottom: 12px !important; }
.legal-block ul { list-style: none; padding: 0; margin: 12px 0; }
.legal-block ul li { color: #616465 !important; font-size: 15px !important; line-height: 1.8 !important; padding-left: 20px; position: relative; margin-bottom: 6px; }
.legal-block ul li::before { content: '—'; position: absolute; left: 0; color: #1ab14b; font-weight: 700; }
.legal-block a { color: #1ab14b; text-decoration: underline; }
.legal-block a:hover { color: #17a044; }

/* ===== KONTAKT LAYOUT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }
.contact-intro { margin-bottom: 32px; font-size: 15px; }
.contact-intro a { color: #1ab14b; text-decoration: underline; }
.contact-info-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07); margin-bottom: 20px; }
.contact-location-img { height: 160px; background-size: cover; background-position: center; }
.contact-info-body { padding: 24px; }
.contact-info-body .overline { display: block; margin-bottom: 8px; }
.contact-info-body h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; }
.contact-info-body p { color: #616465; margin-bottom: 8px; }
.contact-info-body a { color: #1ab14b; font-size: 14px; font-weight: 600; text-decoration: none; }
.contact-info-body a:hover { color: #17a044; }
.contact-hours { background: rgba(26,177,75,0.06); border: 1px solid rgba(26,177,75,0.12); border-radius: 14px; padding: 20px; }
.contact-hours h4 { font-size: 13px; font-weight: 700; color: #1a1a1a; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.contact-hours p { color: #616465; font-size: 14px; margin-bottom: 4px; }

/* ===== FAQ LAYOUT ===== */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start; }
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; } .faq-nav { display: flex; flex-wrap: wrap; gap: 8px; } }
.faq-nav { position: sticky; top: 100px; }
.faq-nav-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(0,0,0,0.35); margin-bottom: 12px; }
.faq-nav-link { display: block; padding: 8px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: #616465; text-decoration: none; margin-bottom: 4px; transition: all 0.2s; }
.faq-nav-link:hover, .faq-nav-link.active { background: rgba(26,177,75,0.08); color: #1ab14b; }
.faq-group { margin-bottom: 56px; scroll-margin-top: 100px; }
.faq-group h2 { font-size: 1.3rem; font-weight: 800; color: #1a1a1a; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid rgba(26,177,75,0.15); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 18px 0; font-size: 15px; font-weight: 600; color: #1a1a1a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; transition: color 0.2s; }
.faq-question::after { content: '+'; font-size: 22px; font-weight: 300; color: #1ab14b; flex-shrink: 0; transition: transform 0.3s; }
.faq-question[aria-expanded="true"] { color: #1ab14b; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer.open { max-height: 400px; padding-bottom: 16px; }
.faq-answer p { color: #616465; font-size: 15px; line-height: 1.7; }
.faq-answer a { color: #1ab14b; text-decoration: underline; }

/* ===== MOBILE BURGER BUTTON ===== */
.wb-burger {
    display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 44px; height: 44px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; cursor: pointer; padding: 0;
    transition: all 0.2s; z-index: 1001; position: relative;
}
.wb-burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.wb-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wb-burger.open span:nth-child(2) { opacity: 0; }
.wb-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.nav-light .wb-burger { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); }
.site-header.nav-light .wb-burger span { background: #1a1a1a; }

@media (max-width: 900px) {
    .wb-burger { display: flex; }
    .main-nav, .header-cta, .nav-wrapper .main-nav, .nav-wrapper .header-cta { display: none !important; }
}

/* ===== MOBILE OVERLAY ===== */
.wb-mobile-overlay { position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0; transition: opacity 0.3s ease; }
.wb-mobile-overlay.open { pointer-events: all; opacity: 1; }
.wb-mobile-overlay::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

.wb-mobile-menu {
    position: absolute; top: 16px; left: 16px; right: 16px;
    background: rgba(10,25,15,0.85); backdrop-filter: blur(40px) saturate(180%); -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(26,177,75,0.25); border-radius: 28px; padding: 24px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset, 0 1px 0 rgba(255,255,255,0.1) inset;
    transform: translateY(-20px) scale(0.96); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.wb-mobile-overlay.open .wb-mobile-menu { transform: translateY(0) scale(1); }
.wb-mobile-menu::before { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, transparent, rgba(26,177,75,0.5), transparent); border-radius: 50%; }

.wb-mobile-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.wb-mobile-close { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.wb-mobile-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.wb-mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.wb-mobile-nav a { display: flex; align-items: center; padding: 14px 16px; border-radius: 14px; font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; transition: all 0.2s; border: 1px solid transparent; }
.wb-mobile-nav a:hover, .wb-mobile-nav a:active { background: rgba(26,177,75,0.12); border-color: rgba(26,177,75,0.2); color: #4ade80; padding-left: 24px; }

.wb-mobile-cta { margin-bottom: 20px; }
.wb-mobile-cta .btn--primary { background: #1ab14b !important; color: #fff !important; padding: 15px !important; border-radius: 14px !important; font-size: 15px !important; box-shadow: 0 0 30px rgba(26,177,75,0.3) !important; }

.wb-mobile-footer { display: flex; flex-direction: column; gap: 6px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.wb-mobile-footer a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; text-align: center; }

/* ===== STANDORT MAP (Leaflet) ===== */
.wb-map-section { position: relative; background: #f5f6f7; }
.wb-map-wrap { position: relative; overflow: hidden; height: 420px; }
#wbLeafletMap, #wbLeafletMap2 { width: 100%; height: 100%; }
.wb-leaflet-pin { background: none; border: none; }
.wb-pin-outer {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(26,177,75,0.2); display: flex; align-items: center; justify-content: center;
    animation: wbPinPulse 2s ease-in-out infinite;
}
.wb-pin-inner { width: 14px; height: 14px; border-radius: 50%; background: #1ab14b; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
@keyframes wbPinPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.leaflet-popup-content { margin: 12px 16px; line-height: 1.5; }
.leaflet-popup-tip { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* ===== MOBILE NAVIGATION ===== */
.menu-toggle {
    display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 40px; height: 40px; background: transparent; border: none; cursor: pointer;
    padding: 4px; border-radius: 8px; transition: background 0.2s; z-index: 1001; position: relative;
}
.menu-toggle:hover { background: rgba(0,0,0,0.06); }
.menu-toggle span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease; transform-origin: center; }
.nav-dark .menu-toggle span { background: #fff; }
.nav-light .menu-toggle span { background: #1a1a1a; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .menu-toggle { display: flex; }
    .nav-wrapper { display: none !important; }
}

/* Mobile-only News-Button im Header (zwischen Logo und Burger) */
.header-mobile-news {
    display: none;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 8px;
    padding: 7px 12px;
    background: rgba(26,177,75,0.12);
    border: 1px solid rgba(26,177,75,0.35);
    border-radius: 999px;
    color: #1ab14b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.header-mobile-news:hover,
.header-mobile-news:focus { background: rgba(26,177,75,0.22); color: #0d6b2d; border-color: rgba(26,177,75,0.55); }
.header-mobile-news svg { width: 14px; height: 14px; flex-shrink: 0; }
.site-header.scrolled .header-mobile-news { color: #0d6b2d; }

@media (max-width: 900px) {
    .header-mobile-news { display: inline-flex; }
}
@media (max-width: 380px) {
    .header-mobile-news span { display: none; }
    .header-mobile-news { padding: 7px 9px; }
}

.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    z-index: 1998; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; visibility: hidden;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; visibility: visible; }

.mobile-nav {
    position: fixed; top: 0; right: 0; width: min(360px, 90vw); height: 100vh; height: 100dvh;
    background: rgba(8,20,12,0.55); backdrop-filter: blur(40px) saturate(200%); -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-left: 1px solid rgba(26,177,75,0.15); z-index: 1999;
    display: flex; flex-direction: column; transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); overflow-y: auto;
}

.mobile-nav-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); display: block; }
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0;
}
.mobile-nav-logo { font-size: 20px; font-weight: 400; color: #fff; letter-spacing: -0.02em; }
.mobile-nav-logo strong { font-weight: 800; color: #1ab14b; }
.mobile-nav-close {
    width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
    font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.mobile-nav-links { flex: 1; padding: 12px 0; }
.mobile-nav-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85);
    text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); cursor: pointer; transition: all 0.2s;
}
.mobile-nav-item:hover { color: #4ade80; background: rgba(26,177,75,0.06); }
.mobile-nav-arrow { font-size: 18px; color: rgba(255,255,255,0.3); transition: transform 0.2s, color 0.2s; display: inline-block; }
.mobile-nav-item.open .mobile-nav-arrow { transform: rotate(90deg); color: #4ade80; }

.mobile-nav-sub { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: rgba(0,0,0,0.2); }
.mobile-nav-sub.open { max-height: 2400px; }
.mobile-nav-sub a {
    display: block; padding: 11px 24px 11px 36px; font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.55); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.03); transition: color 0.2s;
}
.mobile-nav-sub a::before { content: '—'; margin-right: 10px; color: #1ab14b; font-size: 12px; }
.mobile-nav-sub a:hover { color: #4ade80; }

/* Kategorie-Header (2. Ebene mit eigenen Unterpunkten) */
.mobile-nav-sub a.mobile-nav-sub-cat {
    padding: 13px 24px 9px 24px; font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.85); letter-spacing: 0.04em; text-transform: uppercase;
    border-bottom: none; margin-top: 4px;
}
.mobile-nav-sub a.mobile-nav-sub-cat::before { content: none; }
.mobile-nav-sub a.mobile-nav-sub-cat:hover { color: #4ade80; }

/* 3. Ebene (Grandchildren) – tiefere Einrückung */
.mobile-nav-sub-children a {
    display: block; padding: 9px 24px 9px 48px; font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.5); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.02); transition: color 0.2s;
}
.mobile-nav-sub-children a::before { content: '·'; margin-right: 10px; color: #1ab14b; font-size: 14px; }
.mobile-nav-sub-children a:hover { color: #4ade80; }

.mobile-nav-footer { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; }
.mobile-nav-cta { display: block; text-align: center; width: 100%; margin-bottom: 0; padding: 14px !important; font-size: 15px !important; }
.mobile-nav-contact { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-contact a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; text-align: center; transition: color 0.2s; }
.mobile-nav-contact a:hover { color: #4ade80; }
body.mobile-nav-open { overflow: hidden; }

/* ================================================
   Sprach-Switcher (Header + Mobile)
   ================================================ */
/* Desktop: Globus-Button + Dropdown — ganz rechts in der Header-CTA-Leiste */
.wb-lang { position: relative; display: inline-flex; order: 9; }
.wb-lang-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: 1px solid rgba(255,255,255,0.45);
    border-radius: var(--radius); padding: 8px 11px;
    font: inherit; font-size: 0.8rem; font-weight: var(--fw-semi, 600);
    color: #fff; line-height: 1; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.wb-lang-toggle:hover, .wb-lang-toggle:focus-visible { border-color: #fff; color: #fff; }
.wb-lang-toggle svg { width: 16px; height: 16px; }
.wb-lang-current { letter-spacing: 0.04em; }
.wb-lang-caret { font-size: 0.65em; transition: transform 0.2s; }
.wb-lang.open .wb-lang-toggle { border-color: #fff; color: #fff; }
.wb-lang.open .wb-lang-caret { transform: rotate(180deg); }
/* Beim Scrollen sitzt der Header auf weißem Glas → dunkel, damit lesbar */
.site-header.scrolled .wb-lang-toggle { color: var(--c-dark); border-color: var(--c-gray-border); }
.site-header.scrolled .wb-lang-toggle:hover { border-color: var(--c-primary); color: var(--c-primary); }
.wb-lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0; min-width: 156px;
    list-style: none; margin: 0; padding: 6px;
    background: rgba(13,51,32,0.4);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius); box-shadow: 0 14px 34px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.2);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 1200;
}
.wb-lang.open .wb-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.wb-lang-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: calc(var(--radius) - 3px);
    text-decoration: none; color: #fff; font-size: 0.85rem;
    transition: background 0.15s, color 0.15s;
}
.wb-lang-menu a:hover { background: rgba(255,255,255,0.14); color: #fff; }
.wb-lang-code { font-weight: 700; min-width: 24px; }
.wb-lang-name { color: rgba(255,255,255,0.65); font-size: 0.8rem; }
.wb-lang-menu a:hover .wb-lang-name { color: #fff; }

/* Mobile: flache Sprachliste im dunklen Drawer */
.mobile-nav-lang {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.07); flex-shrink: 0;
}
.mobile-nav-lang-label { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 600; }
.mobile-nav-lang-label svg { width: 18px; height: 18px; }
.mobile-nav-lang-list { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.mobile-nav-lang-list a {
    display: inline-flex; align-items: center; justify-content: center; min-width: 42px;
    padding: 7px 10px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
    color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13px; font-weight: 700;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.mobile-nav-lang-list a.is-active { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.mobile-nav-lang-list a:not(.is-active):hover { border-color: var(--c-primary); color: #fff; }

/* ================================================
   News-Sektion (Startseite)
   ================================================ */
.wb-news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; }
.wb-news-card { display: flex; flex-direction: column; background: var(--c-white); border: 1px solid var(--c-gray-border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.wb-news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); border-color: rgba(26,177,75,0.3); }
.wb-news-card-img { aspect-ratio: 16 / 10; background: var(--c-gray-light); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.wb-news-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wb-news-card-ph { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--c-primary); opacity: 0.45; }
.wb-news-card-ph svg { width: 46px; height: 46px; }
.wb-news-card-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.wb-news-date { font-size: 12px; font-weight: 600; color: var(--c-primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.wb-news-card-body h3 { font-size: 1.05rem; line-height: 1.3; margin: 0 0 8px; color: #1a1a1a; }
.wb-news-card-body p { font-size: 0.875rem; line-height: 1.55; color: var(--c-gray); margin: 0 0 14px; flex: 1; }
.wb-news-more { font-size: 0.85rem; font-weight: 600; color: var(--c-primary); }
.wb-news-card:hover .wb-news-more { color: var(--c-primary-dark); }
.wb-news-cta { text-align: center; margin-top: 36px; }
@media (max-width: 1024px) { .wb-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wb-news-grid { grid-template-columns: 1fr; } }

/* ================================================
   Einzelbeitrag (News)
   ================================================ */
.single-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); max-width: 880px; line-height: 1.2; }
.post-section { margin-bottom: 36px; }
.post-section h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: #1a1a1a; margin: 0 0 12px; line-height: 1.3; }
.post-text { color: var(--c-gray); line-height: 1.75; font-size: 1.02rem; }
.post-text p { margin: 0 0 1em; }
.post-text h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: #1a1a1a; margin: 1.2em 0 0.5em; }
.post-text h3 { font-size: 1.25rem; color: #1a1a1a; margin: 1.2em 0 0.5em; }
.post-text a { color: var(--c-primary); }
.post-text img { border-radius: var(--radius-lg); margin: 1em 0; }
.post-back { margin-top: 44px; }

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
    h1 { font-size: clamp(1.8rem, 7vw, 3rem) !important; word-break: break-word !important; hyphens: auto !important; overflow-wrap: break-word !important; }
    h2 { font-size: clamp(1.3rem, 5.5vw, 2rem) !important; word-break: break-word !important; hyphens: auto !important; overflow-wrap: break-word !important; }
    h3 { font-size: clamp(1.1rem, 4.5vw, 1.5rem) !important; overflow-wrap: break-word !important; }
    .hero h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }
    .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }
    blockquote, .section-quote blockquote { font-size: clamp(1.1rem, 4.5vw, 1.6rem) !important; }
    body, main, section, .container { overflow-x: hidden !important; max-width: 100vw !important; }
    .container { padding-left: 20px !important; padding-right: 20px !important; }
    .hero-content { padding: 36px 28px !important; border-radius: 18px !important; }
    .page-hero .container { padding: 36px 24px !important; border-radius: 18px !important; }
    .cta-inner { padding: 40px 28px !important; border-radius: 20px !important; }
}

/* Scroll Indicator weiß */
.hero .scroll-indicator, .scroll-indicator { color: rgba(255,255,255,0.55) !important; }
.hero .scroll-indicator span, .scroll-indicator span { color: rgba(255,255,255,0.55) !important; }
.scroll-indicator::after, .scroll-indicator .scroll-arrow, .scroll-indicator svg { border-color: rgba(255,255,255,0.45) !important; stroke: rgba(255,255,255,0.45) !important; color: rgba(255,255,255,0.45) !important; }

/* ===== OVERLAY BUG FIX ===== */
.mobile-nav-overlay { position: fixed !important; inset: 0 !important; background: rgba(0,0,0,0.45) !important; backdrop-filter: blur(3px) !important; -webkit-backdrop-filter: blur(3px) !important; z-index: 1998 !important; opacity: 0 !important; pointer-events: none !important; visibility: hidden !important; transition: opacity 0.3s ease, visibility 0.3s ease !important; }
.mobile-nav-overlay.open { opacity: 1 !important; pointer-events: all !important; visibility: visible !important; }
.mobile-nav { background: rgba(5,15,8,0.5) !important; backdrop-filter: blur(48px) saturate(200%) !important; -webkit-backdrop-filter: blur(48px) saturate(200%) !important; }

/* Scroll Indicator Pfeil komplett weiß */
.scroll-indicator-arrow { border-color: rgba(255,255,255,0.55) !important; }
.scroll-indicator-arrow::after, .scroll-indicator-arrow::before { border-color: rgba(255,255,255,0.55) !important; background: rgba(255,255,255,0.55) !important; }

/* ===== KEINE SILBENTRENNUNG ===== */
h1, h2, h3, h4, h5, h6, .hero h1, .page-hero h1, .cta-inner h2, .section-quote blockquote { hyphens: none !important; -webkit-hyphens: none !important; word-break: normal !important; overflow-wrap: normal !important; }
@media (max-width: 768px) { h1, h2, h3 { hyphens: none !important; -webkit-hyphens: none !important; word-break: keep-all !important; overflow-wrap: normal !important; } }

/* ===== FAQ MOBIL ===== */
@media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr !important; gap: 0 !important; }
    .faq-nav { position: static !important; background: rgba(255,255,255,0.85) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important; border: 1px solid rgba(0,0,0,0.07) !important; border-radius: 16px !important; padding: 16px !important; margin-bottom: 32px !important; }
    .faq-nav-title { font-size: 10px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.15em !important; color: rgba(0,0,0,0.3) !important; margin-bottom: 10px !important; display: block !important; }
    .faq-nav-links-wrap { display: flex !important; flex-wrap: wrap !important; gap: 6px !important; }
    .faq-nav-link { display: inline-flex !important; padding: 7px 14px !important; border-radius: 100px !important; font-size: 12px !important; font-weight: 600 !important; color: #616465 !important; background: rgba(0,0,0,0.05) !important; margin-bottom: 0 !important; white-space: nowrap !important; text-decoration: none !important; }
    .faq-nav-link:hover, .faq-nav-link.active { background: rgba(26,177,75,0.12) !important; color: #1ab14b !important; }
}

/* Mobile Nav Split: Link + Toggle Button */
.mobile-nav-item-wrap { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-nav-link { flex: 1; padding: 14px 24px; font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.mobile-nav-link:hover { color: #4ade80; }
.mobile-nav-toggle { width: 52px; height: 52px; flex-shrink: 0; background: transparent; border: none; border-left: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-family: inherit; }
.mobile-nav-toggle:hover { background: rgba(26,177,75,0.1); color: #4ade80; }
.mobile-nav-toggle.open { transform: rotate(90deg); color: #4ade80; }

/* ===== MAP GLASSCARDS ===== */
.wb-map-with-card { background: transparent !important; border: none !important; }
.wb-pin-wrap { position: relative; }
.wb-pin-dot { width: 12px; height: 12px; background: #1ab14b; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(26,177,75,0.5); position: absolute; top: 0; left: 0; z-index: 2; }
.wb-pin-ring { width: 24px; height: 24px; border: 2px solid rgba(26,177,75,0.4); border-radius: 50%; position: absolute; top: -6px; left: -6px; animation: pinPulse 2s ease-out infinite; z-index: 1; }
@keyframes pinPulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }

.wb-map-card {
    position: absolute; left: 18px; top: -20px; min-width: 190px;
    background: rgba(255,255,255,0.45); backdrop-filter: blur(24px) saturate(1.6); -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid rgba(255,255,255,0.6); border-radius: 14px; padding: 12px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    pointer-events: all; white-space: nowrap;
}
.wb-map-card::before { content: ''; position: absolute; left: -7px; top: 28px; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-right: 7px solid rgba(255,255,255,0.45); }
.wb-card-tag { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #1ab14b; margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
.wb-card-dot-tag { width: 6px; height: 6px; background: #1ab14b; border-radius: 50%; flex-shrink: 0; }
.wb-card-name { font-size: 13px; font-weight: 700; color: #1a1a1a; margin-bottom: 5px; }
.wb-card-addr { font-size: 11px; color: #444; line-height: 1.5; margin-bottom: 6px; }
.wb-card-tel { font-size: 11px; font-weight: 600; color: #1ab14b; text-decoration: none; display: block; margin-bottom: 2px; }
.wb-card-tel:hover { color: #17a044; }
.wb-card-email { font-size: 11px; color: #555; text-decoration: none; display: block; }

/* Tiles */
.leaflet-tile-pane { filter: grayscale(100%) brightness(0.82) contrast(1.1) !important; }
.leaflet-container, .wb-map-wrap { border-radius: 20px !important; overflow: hidden !important; }
.leaflet-control-zoom a { background: #fff !important; color: #1a1a1a !important; border-color: rgba(0,0,0,0.1) !important; }
.leaflet-control-zoom a:hover { color: #1ab14b !important; }
.leaflet-control-attribution { font-size: 9px !important; opacity: 0.45 !important; }

/* ===== COOKIE BANNER ===== */
.wb-cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 99990; width: calc(100% - 48px); max-width: 780px; background: rgba(10,22,14,0.82); backdrop-filter: blur(28px) saturate(180%); -webkit-backdrop-filter: blur(28px) saturate(180%); border: 1px solid rgba(26,177,75,0.2); border-radius: 18px; padding: 20px 28px; box-shadow: 0 16px 48px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06); animation: wbCookieIn 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards; }
@keyframes wbCookieIn { from { transform: translateX(-50%) translateY(120%); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }
@keyframes wbCookieOut { from { transform: translateX(-50%) translateY(0); opacity: 1; } to { transform: translateX(-50%) translateY(140%); opacity: 0; } }
.wb-cookie-banner.hiding { animation: wbCookieOut 0.3s ease forwards; }
.wb-cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.wb-cookie-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.wb-cookie-dot { width: 8px; height: 8px; background: #1ab14b; border-radius: 50%; box-shadow: 0 0 8px rgba(26,177,75,0.6); flex-shrink: 0; }
.wb-cookie-text { flex: 1; min-width: 200px; }
.wb-cookie-text p { color: rgba(255,255,255,0.6) !important; font-size: 12px !important; line-height: 1.6 !important; margin: 0 !important; }
.wb-cookie-text a { color: #4ade80 !important; text-decoration: underline !important; }
.wb-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.wb-cookie-btn { padding: 11px 22px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s ease; white-space: nowrap; border: none; }
.wb-cookie-btn--accept { background: #1ab14b; color: #fff; box-shadow: 0 0 20px rgba(26,177,75,0.4); }
.wb-cookie-btn--accept:hover { background: #17a044; box-shadow: 0 0 30px rgba(26,177,75,0.55); transform: translateY(-1px); }
.wb-cookie-btn--decline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.15) !important; }
.wb-cookie-btn--decline:hover { background: rgba(255,255,255,0.14); color: #fff; }
@media (max-width: 600px) { .wb-cookie-banner { bottom: 80px; width: calc(100% - 32px); padding: 16px 18px; } .wb-cookie-inner { flex-direction: column; gap: 14px; } .wb-cookie-actions { width: 100%; } .wb-cookie-btn { flex: 1; text-align: center; } }

/* ===== KEN BURNS ===== */
@keyframes kenBurns {
    0%   { transform: scale(1)   translate(0, 0); }
    50%  { transform: scale(1.08) translate(-1%, -0.5%); }
    100% { transform: scale(1)   translate(0, 0); }
}
.hero-bg, .page-hero-bg, .cta-bg, .standort-card-bg { animation: kenBurns 25s ease-in-out infinite; }
.cta-bg { animation-duration: 30s; }
.standort-card-bg { animation-duration: 20s; }
.standort-card:hover .standort-card-bg { animation-play-state: paused; transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) { .hero-bg, .page-hero-bg, .cta-bg, .standort-card-bg { animation: none !important; } }

/* ===== HERO BANNER EINHEITLICHE HÖHE ===== */
.page-hero { min-height: 80vh !important; height: 80vh !important; display: flex !important; align-items: center !important; justify-content: center !important; padding: 100px 40px 60px !important; }
.page-hero .container { margin-top: auto !important; margin-bottom: auto !important; }
@media (max-width: 768px) { .page-hero { min-height: 60vh !important; height: auto !important; padding: 80px 16px 50px !important; } }


/* Gallery entfernt */

/* ===== INLINE 3D CARD STACK ===== */
.wb-inline-stack { position: relative; width: 100%; aspect-ratio: 4/3; perspective: 1200px; cursor: pointer; }
.wb-icard { position: absolute; inset: 0; border-radius: 16px; overflow: hidden; will-change: transform, opacity; transition: transform 0.72s cubic-bezier(0.22,1,0.36,1), opacity 0.6s ease, box-shadow 0.4s ease; }
.wb-icard img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; transition: transform 0.5s ease; }
.wb-icard[data-p="0"]:hover img { transform: scale(1.04); }
.wb-icard-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%); }
.wb-icard-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px 16px; color: #fff; }
.wb-icard-label em { display: block; font-style: normal; font-size: 9px; font-weight: 700; color: #4ade80; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 4px; }
.wb-icard-label strong { font-size: 14px; font-weight: 700; }

/* Links: hintere Karten nach links */
.wb-stack-left .wb-icard[data-p="0"] { transform: translate3d(0,0,0) scale(1) rotateY(0deg); box-shadow: 0 24px 60px rgba(0,0,0,0.2); opacity: 1; z-index: 5; pointer-events: all; }
.wb-stack-left .wb-icard[data-p="0"]:hover { transform: translate3d(0,-4px,0) scale(1.02); box-shadow: 0 34px 80px rgba(0,0,0,0.26); }
.wb-stack-left .wb-icard[data-p="1"] { transform: translate3d(-42px,-12px,0) scale(0.92) rotateY(5deg); box-shadow: 0 14px 36px rgba(0,0,0,0.13); opacity: 0.75; z-index: 4; pointer-events: none; }
.wb-stack-left .wb-icard[data-p="2"] { transform: translate3d(-84px,-24px,0) scale(0.84) rotateY(10deg); box-shadow: 0 8px 20px rgba(0,0,0,0.09); opacity: 0.45; z-index: 3; pointer-events: none; }

/* Rechts: hintere Karten nach rechts */
.wb-stack-right .wb-icard[data-p="0"] { transform: translate3d(0,0,0) scale(1) rotateY(0deg); box-shadow: 0 24px 60px rgba(0,0,0,0.2); opacity: 1; z-index: 5; pointer-events: all; }
.wb-stack-right .wb-icard[data-p="0"]:hover { transform: translate3d(0,-4px,0) scale(1.02); box-shadow: 0 34px 80px rgba(0,0,0,0.26); }
.wb-stack-right .wb-icard[data-p="1"] { transform: translate3d(42px,-12px,0) scale(0.92) rotateY(-5deg); box-shadow: 0 14px 36px rgba(0,0,0,0.13); opacity: 0.75; z-index: 4; pointer-events: none; }
.wb-stack-right .wb-icard[data-p="2"] { transform: translate3d(84px,-24px,0) scale(0.84) rotateY(-10deg); box-shadow: 0 8px 20px rgba(0,0,0,0.09); opacity: 0.45; z-index: 3; pointer-events: none; }

/* Exit Animationen */
.wb-icard[data-p="out-left"] { transform: translate3d(-140%, 15px, 0) scale(0.85) rotateY(16deg) !important; opacity: 0 !important; z-index: 10 !important; pointer-events: none; transition: transform 0.5s cubic-bezier(0.4,0,0.8,1), opacity 0.35s ease !important; }
.wb-icard[data-p="out-right"] { transform: translate3d(140%, 15px, 0) scale(0.85) rotateY(-16deg) !important; opacity: 0 !important; z-index: 10 !important; pointer-events: none; transition: transform 0.5s cubic-bezier(0.4,0,0.8,1), opacity 0.35s ease !important; }

/* ===== CI HINTERGRUNDMUSTER ===== */
body { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%231ab14b' stroke-width='1.2' opacity='0.09'%3E%3Crect x='30' y='60' width='100' height='80' rx='3'/%3E%3Cpath d='M30 78 L130 78'/%3E%3Cpath d='M80 60 L80 78'/%3E%3Cpath d='M55 60 L45 35 L115 35 L105 60'/%3E%3Cpath d='M80 35 L80 60'/%3E%3C/g%3E%3C/svg%3E") !important; background-size: 160px 160px !important; background-repeat: repeat !important; background-attachment: fixed !important; }
.section, .content-section, .section-quote, .faq-section, .contact-section, .anfrage-section { background-image: none !important; }
.section { background-color: #ffffff !important; }
.section.section--gray { background-color: #f0f0f0 !important; }
.section--dark, .cta-section, .page-hero, .hero, .site-footer { background-image: none !important; }

/* Mega-Menu Gruppenüberschriften */
.mega-menu-group { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #1ab14b; padding: 14px 16px 6px; margin-top: 4px; pointer-events: none; }
.mega-menu-group:first-child { margin-top: 0; padding-top: 0; }

/* ===== PRODUKTE NEU ===== */
.pn-filter-bar { background: rgba(255,255,255,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); position: sticky; top: 70px; z-index: 100; padding: 0; }
.pn-filter-tabs { display: flex; gap: 0; overflow-x: auto; }
.pn-tab { padding: 16px 24px; background: none; border: none; border-bottom: 2px solid transparent; font-size: 14px; font-weight: 600; color: #616465; cursor: pointer; white-space: nowrap; transition: all 0.2s; font-family: inherit; }
.pn-tab:hover { color: #1ab14b; }
.pn-tab.active { color: #1ab14b; border-bottom-color: #1ab14b; }
.pn-section { padding: 80px 0; }
.pn-category.hidden { display: none; }
.pn-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 64px 0; }
.pn-cat-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; gap: 24px; }
.pn-cat-title { display: flex; align-items: flex-start; gap: 20px; }
.pn-cat-num { font-size: 52px; font-weight: 900; color: rgba(26,177,75,0.12); line-height: 1; letter-spacing: -0.04em; flex-shrink: 0; margin-top: -8px; }
.pn-cat-title h2 { font-size: 1.8rem !important; font-weight: 800 !important; color: #1a1a1a !important; margin-bottom: 6px !important; }
.pn-cat-title p { color: #616465 !important; font-size: 15px !important; margin: 0 !important; }
.pn-cat-link { color: #1ab14b; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; padding-top: 4px; transition: color 0.2s; }
.pn-cat-link:hover { color: #17a044; }
.pn-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pn-product-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pn-product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pn-product-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .pn-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pn-product-grid, .pn-product-grid--2, .pn-product-grid--3, .pn-product-grid--4 { grid-template-columns: 1fr; } .pn-cat-header { flex-direction: column; } }
.pn-product-card { background: rgba(255,255,255,0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: 18px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease; }
.pn-product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.13); border-color: rgba(26,177,75,0.25); }
.pn-product-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pn-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pn-product-card:hover .pn-product-img img { transform: scale(1.06); }
.pn-product-badge { position: absolute; top: 12px; left: 12px; background: #1ab14b; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; letter-spacing: 0.05em; }
.pn-product-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.pn-product-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #1ab14b; margin-bottom: 8px; display: block; }
.pn-product-body h3 { font-size: 1rem !important; font-weight: 700 !important; color: #1a1a1a !important; margin-bottom: 8px !important; line-height: 1.3 !important; }
.pn-product-body p { font-size: 13px !important; color: #616465 !important; line-height: 1.6 !important; flex: 1 !important; margin-bottom: 14px !important; }
.pn-product-cta { font-size: 13px; font-weight: 600; color: #1ab14b; margin-top: auto; text-decoration: none; }
.pn-card-actions { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; }
.pn-card-btn-anfragen { font-size: 12px; font-weight: 600; color: #fff; background: #1ab14b; border: none; border-radius: 6px; padding: 6px 14px; cursor: pointer; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.pn-card-btn-anfragen:hover { background: #0d3320; color: #fff; }
.pn-product-card[data-href] { cursor: pointer; }
.pn-product-card--wide .pn-product-img { aspect-ratio: 16/9; }
.pn-product-card--small .pn-product-img { aspect-ratio: 4/3; }
.pn-product-card--dark { background: rgba(10,25,15,0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-color: rgba(26,177,75,0.15); }
.pn-product-card--dark .pn-product-body h3 { color: #fff !important; }
.pn-product-card--dark .pn-product-body p { color: rgba(255,255,255,0.65) !important; }
.pn-feature-list { list-style: none; padding: 0; margin: 12px 0 16px; }
.pn-feature-list li { font-size: 12px; color: rgba(255,255,255,0.65); padding: 4px 0 4px 16px; position: relative; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pn-feature-list li::before { content: '→'; position: absolute; left: 0; color: #4ade80; font-size: 11px; }

/* Varianten */
.pn-variant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 900px) { .pn-variant-grid { grid-template-columns: 1fr; } }
.pn-variant-card { background: rgba(255,255,255,0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pn-variant-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.1); border-color: rgba(26,177,75,0.2); }
.pn-variant-img { overflow: hidden; border-radius: 10px 10px 0 0; }
.pn-variant-img img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.5s; }
.pn-variant-card:hover .pn-variant-img img { transform: scale(1.05); }
.pn-variant-body { padding: 24px 28px 28px; flex: 1; }
.pn-variant-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #1ab14b; background: rgba(26,177,75,0.08); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.pn-variant-body h3 { font-size: 1.2rem !important; font-weight: 800 !important; color: #1a1a1a !important; margin-bottom: 10px !important; }
.pn-variant-body > p { color: #616465 !important; font-size: 14px !important; line-height: 1.7 !important; margin-bottom: 16px !important; }
.pn-spec-list { list-style: none; padding: 0; margin: 0 0 20px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 16px; }
.pn-spec-list li { font-size: 13px; color: #616465; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.pn-spec-list strong { color: #1a1a1a; }
.btn--sm { padding: 10px 20px !important; font-size: 13px !important; }

/* Spec Table */
.pn-spec-table { margin-top: 24px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }
.pn-spec-row { display: flex; justify-content: space-between; padding: 13px 18px; font-size: 14px; border-bottom: 1px solid rgba(0,0,0,0.05); background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.pn-spec-row:last-child { border-bottom: none; }
.pn-spec-row span { color: #616465; }
.pn-spec-row strong { color: #1a1a1a; font-weight: 600; }

/* Wellentypen */
.pn-wave-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 900px) { .pn-wave-grid { grid-template-columns: repeat(2, 1fr); } }
.pn-wave-card { background: rgba(255,255,255,0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.9); border-radius: 16px; padding: 24px; text-align: center; position: relative; transition: all 0.3s ease; }
.pn-wave-card:hover { border-color: rgba(26,177,75,0.2); transform: translateY(-4px); }
.pn-wave-card--highlight { border-color: rgba(26,177,75,0.3); background: rgba(26,177,75,0.04); }
.pn-wave-visual { height: 60px; margin: 0 auto 16px; background-repeat: no-repeat; background-position: center; background-size: contain; opacity: 0.7; }
.pn-wave-e { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40' viewBox='0 0 120 40'%3E%3Cpath d='M0 20 Q5 10 10 20 Q15 30 20 20 Q25 10 30 20 Q35 30 40 20 Q45 10 50 20 Q55 30 60 20 Q65 10 70 20 Q75 30 80 20 Q85 10 90 20 Q95 30 100 20 Q105 10 110 20 Q115 30 120 20' fill='none' stroke='%231ab14b' stroke-width='2'/%3E%3Cline x1='0' y1='5' x2='120' y2='5' stroke='%23999' stroke-width='1'/%3E%3Cline x1='0' y1='35' x2='120' y2='35' stroke='%23999' stroke-width='1'/%3E%3C/svg%3E"); }
.pn-wave-b { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='50' viewBox='0 0 120 50'%3E%3Cpath d='M0 25 Q8 8 16 25 Q24 42 32 25 Q40 8 48 25 Q56 42 64 25 Q72 8 80 25 Q88 42 96 25 Q104 8 112 25 Q116 33 120 25' fill='none' stroke='%231ab14b' stroke-width='2.5'/%3E%3Cline x1='0' y1='5' x2='120' y2='5' stroke='%23999' stroke-width='1'/%3E%3Cline x1='0' y1='45' x2='120' y2='45' stroke='%23999' stroke-width='1'/%3E%3C/svg%3E"); }
.pn-wave-c { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='55' viewBox='0 0 120 55'%3E%3Cpath d='M0 27 Q10 7 20 27 Q30 47 40 27 Q50 7 60 27 Q70 47 80 27 Q90 7 100 27 Q110 47 120 27' fill='none' stroke='%231ab14b' stroke-width='2.5'/%3E%3Cline x1='0' y1='5' x2='120' y2='5' stroke='%23999' stroke-width='1'/%3E%3Cline x1='0' y1='50' x2='120' y2='50' stroke='%23999' stroke-width='1'/%3E%3C/svg%3E"); }
.pn-wave-bc { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M0 30 Q10 8 20 30 Q30 52 40 30 Q50 8 60 30 Q70 52 80 30 Q90 8 100 30 Q110 52 120 30' fill='none' stroke='%231ab14b' stroke-width='2'/%3E%3Cpath d='M0 30 Q6 18 12 30 Q18 42 24 30 Q30 18 36 30 Q42 42 48 30 Q54 18 60 30 Q66 42 72 30 Q78 18 84 30 Q90 42 96 30 Q102 18 108 30 Q114 42 120 30' fill='none' stroke='%2317a044' stroke-width='1.5' opacity='0.6'/%3E%3Cline x1='0' y1='5' x2='120' y2='5' stroke='%23999' stroke-width='1'/%3E%3Cline x1='0' y1='55' x2='120' y2='55' stroke='%23999' stroke-width='1'/%3E%3C/svg%3E"); }
.pn-wave-card h4 { font-size: 15px !important; font-weight: 700 !important; color: #1a1a1a !important; margin-bottom: 8px !important; }
.pn-wave-card p { font-size: 12px !important; color: #616465 !important; line-height: 1.5 !important; }
.pn-wave-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: #1ab14b; color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 100px; white-space: nowrap; }

/* Branchen */
.pn-industry-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px; }
.pn-industry-grid > .pn-industry-item { flex: 0 0 calc(33.333% - 14px); max-width: calc(33.333% - 14px); box-sizing: border-box; }
@media (max-width: 1024px) { .pn-industry-grid { gap: 14px; } .pn-industry-grid > .pn-industry-item { flex: 0 0 calc(50% - 7px); max-width: calc(50% - 7px); } }
@media (max-width: 480px) { .pn-industry-grid { gap: 10px; } .pn-industry-grid > .pn-industry-item { flex: 0 0 calc(50% - 5px); max-width: calc(50% - 5px); padding: 16px 14px; } .pn-industry-icon { font-size: 22px; margin-bottom: 8px; } .pn-industry-item h4 { font-size: 13px !important; } .pn-industry-item p { font-size: 12px !important; } }
.pn-industry-item { background: #ffffff; border: 1px solid #e5e5e5; border-radius: 16px; padding: 28px 24px; transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0,0,0,0.04); text-align: center; }
.pn-industry-item:hover { border-color: rgba(26,177,75,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.pn-industry-icon { font-size: 28px; margin-bottom: 12px; }
.pn-industry-item h4 { font-size: 14px !important; font-weight: 700 !important; color: #1a1a1a !important; margin-bottom: 6px !important; }
.pn-industry-item p { font-size: 13px !important; color: #616465 !important; margin: 0 !important; }

/* ===== ANFRAGE KONDITIONAL ===== */
.wbf-progress-step--skip span { background: #ccc; color: #999; }
.wbf-progress-step--skip small { color: #aaa; text-decoration: line-through; }
.wbf-info-banner { background: rgba(26,177,75,0.07); border: 1px solid rgba(26,177,75,0.18); border-radius: 10px; padding: 12px 16px; font-size: 14px; color: #1a1a1a; margin-bottom: 20px; }

/* ===== ACF RENDERED SECTIONS ===== */
.wb-text-block { line-height: 1.75; }
.wb-text-block h2, .wb-text-block h3 { margin-top: 1.5em; }
.wb-text-block ul, .wb-text-block ol { padding-left: 1.5em; margin: 1em 0; }
.wb-text-block a { color: #1ab14b; text-decoration: underline; }
.pn-spec-row--highlight { background: rgba(26,177,75,0.07); font-weight: 600; }
.wb-accordion { border-top: 1px solid #e5e5e5; }
.wb-accordion-item { border-bottom: 1px solid #e5e5e5; }
.wb-accordion-item__trigger { width: 100%; text-align: left; padding: 18px 0; font-size: 16px; font-weight: 600; cursor: pointer; background: none; border: none; display: flex; justify-content: space-between; align-items: center; font-family: inherit; color: inherit; }
.wb-accordion-item__trigger::after { content: '+'; font-size: 22px; color: #1ab14b; transition: transform 0.2s; }
.wb-accordion-item.open .wb-accordion-item__trigger::after { content: '−'; }
.wb-accordion-item__body { display: none; padding-bottom: 18px; line-height: 1.7; }
.wb-accordion-item.open .wb-accordion-item__body { display: block; }
.wb-slider { position: relative; overflow: hidden; }
.wb-slider__track { display: flex; transition: transform 0.4s ease; }
.wb-slider__item { min-width: 100%; }
.wb-slider__item img { width: 100%; display: block; border-radius: 12px; }
.wb-slider__nav { position: absolute; bottom: 16px; width: 100%; display: flex; justify-content: center; gap: 8px; }
.wb-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; border: none; padding: 0; }
.wb-slider__dot.active { background: #1ab14b; }

/* ===== Footer Badges ===== */
.footer-badges { display: flex; align-items: center; gap: 20px; margin-top: 24px; opacity: 0.65; }
.footer-badge-linkedin { display: none; }
.footer-linkedin-desktop { display: inline-block; margin-top: 20px; opacity: 0.55; transition: opacity 0.2s; }
.footer-linkedin-desktop:hover { opacity: 1; }
@media (max-width: 768px) {
    .footer-badges { display: none !important; }
    .footer-linkedin-desktop { display: none !important; }
    .footer-grid { position: relative; }
    .footer-mobile-badges { display: flex !important; align-items: center; justify-content: center; gap: 16px; width: 100%; padding-top: 24px; margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.65; }
}

/* ===== WPForms Theme Styling ===== */
.wpforms-container { font-family: 'Inter', sans-serif !important; }
.wpforms-container .wpforms-field-label { font-size: 14px !important; font-weight: 600 !important; color: #1a1a1a !important; margin-bottom: 6px !important; }
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="url"],
.wpforms-container input[type="number"],
.wpforms-container select,
.wpforms-container textarea { font-family: 'Inter', sans-serif !important; font-size: 14px !important; padding: 12px 16px !important; border: 1px solid #e0e0e0 !important; border-radius: 10px !important; background: #fafafa !important; transition: border-color 0.2s, box-shadow 0.2s !important; }
.wpforms-container input:focus,
.wpforms-container select:focus,
.wpforms-container textarea:focus { border-color: #1ab14b !important; box-shadow: 0 0 0 3px rgba(26,177,75,0.1) !important; outline: none !important; background: #fff !important; }
.wpforms-container .wpforms-field { margin-bottom: 8px !important; padding-bottom: 0 !important; }
.wpforms-container .wpforms-submit-container { margin-top: 24px !important; }
.wpforms-container button[type="submit"],
.wpforms-container .wpforms-page-button { font-family: 'Inter', sans-serif !important; font-size: 15px !important; font-weight: 700 !important; padding: 14px 32px !important; border-radius: 10px !important; background: #1ab14b !important; color: #fff !important; border: none !important; cursor: pointer !important; transition: background 0.2s, transform 0.2s !important; }
.wpforms-container button[type="submit"]:hover,
.wpforms-container .wpforms-page-button:hover { background: #159e40 !important; transform: translateY(-1px) !important; }
.wpforms-container .wpforms-page-button.wpforms-page-prev { background: transparent !important; color: #1a1a1a !important; border: 1px solid #e0e0e0 !important; }
.wpforms-container .wpforms-page-button.wpforms-page-prev:hover { border-color: #1ab14b !important; color: #1ab14b !important; background: transparent !important; }
.wpforms-container .wpforms-field-radio li,
.wpforms-container .wpforms-field-checkbox li { margin-bottom: 8px !important; }
.wpforms-container .wpforms-field-radio li label,
.wpforms-container .wpforms-field-checkbox li label { font-size: 14px !important; color: #1a1a1a !important; }
.wpforms-container .wpforms-page-indicator { margin-bottom: 32px !important; }
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page-title { font-size: 13px !important; font-weight: 600 !important; }
.wpforms-container .wpforms-page-indicator .wpforms-page-indicator-page.active .wpforms-page-indicator-page-number { background: #1ab14b !important; color: #fff !important; }
.wpforms-container .wpforms-confirmation-container-full { background: #f0f0f0 !important; border-radius: 16px !important; padding: 40px !important; text-align: center !important; }

/* ================================================
   Bild ausblenden (ACF "Bild ausblenden")
   Sektionen ohne Bild: Text volle Breite + dunkler Fallback-Hintergrund
   ================================================ */
.content-grid--noimg { grid-template-columns: 1fr; }
.trust-grid--noimg { grid-template-columns: 1fr; }
.hero--noimg { background: #0a3a1f; }
.page-hero--noimg { background: #0a3a1f; }
.cta-section--noimg { background: #0a2417; }

/* ================================================
   Top-Leiste (Kopfzeile): E-Mail + Social-Icons rechts
   ================================================ */
.header-topbar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 9px 0 7px;
    font-size: 0.82rem;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: color 0.3s ease;
}
.header-topbar-left { opacity: 0.75; }
.header-topbar-right { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.header-topbar-contact { color: inherit; text-decoration: none; font-weight: 500; opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.header-topbar-contact:hover { opacity: 1; color: #1ab14b; }
.header-topbar-social { display: flex; align-items: center; gap: 12px; }
.header-topbar-icon { display: inline-flex; align-items: center; color: inherit; opacity: 0.75; transition: opacity 0.2s, color 0.2s, transform 0.2s; }
.header-topbar-icon:hover { opacity: 1; color: #1ab14b; transform: translateY(-1px); }

/* Farbe an Hero-Hintergrund anpassen (gleiche Logik wie Hauptnavi) */
.site-header.nav-dark .header-topbar { color: #fff; border-bottom-color: rgba(255,255,255,0.18); }
.site-header.nav-light .header-topbar { color: #1a1a1a; border-bottom-color: rgba(0,0,0,0.07); }

/* Beim Scrollen ausblenden, damit die kompakte Glas-Navi bleibt */
.site-header.scrolled .header-topbar { display: none; }

/* Auf Mobile ausblenden (Kontakt steht im mobilen Menü) */
@media (max-width: 768px) {
    .header-topbar { display: none; }
}

