@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.0
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); }

.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);
}

.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 .btn { padding: 10px 24px; 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%);
}

/* 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: var(--header-h);
    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);
}

/* 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;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.cta-section:hover .cta-bg {
    transform: scale(1.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 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: 80px;
    align-items: center;
}

.content-grid.reverse .content-image { order: 2; }
.content-grid.reverse .content-text { order: 1; }

.content-image { border-radius: var(--radius-xl); overflow: hidden; }
.content-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.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; }
    .hero-content { padding-top: 100px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content .hero-sub { font-size: 0.95rem; }
    .hero-badge { font-size: 10px; padding: 5px 14px; }
    .scroll-indicator { bottom: 20px; }
    .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; }
}

/* ================================================
   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-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.3s ease; background: rgba(0,0,0,0.2); }
.mobile-nav-sub.open { max-height: 400px; }
.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; }

.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: 16px; 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; }

/* ===== 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; }
