.vorteile-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    max-width: 900px;
    margin: 0 auto
}

.vorteile-bild {
    display: block;
    max-width: 36.8%;
    width: 36.8%;
    margin: 0 auto;
    border-radius: 16px
}

@media(max-width:1024px) {
    .vorteile-bild {
        max-width: 62%;
        width: 62%
    }
}

.vorteile-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px
}

.vorteile-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center
}

.vorteile-icon-item p {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.5;
    margin: 0
}

@media(max-width:768px) {
    .vorteile-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px
    }

    .vorteile-bild {
        max-width: 88%;
        width: 88%
    }
}

@media(max-width:480px) {
    .vorteile-bild {
        max-width: 96%;
        width: 96%;
        border-radius: 12px
    }
}

.consent-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(940px, calc(100% - 24px));
    z-index: 3500;
    background: rgba(18, 26, 18, .95);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
    backdrop-filter: blur(10px)
}

.consent-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px
}

.consent-banner-content p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    opacity: .96
}

.consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.consent-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast)
}

.consent-accept {
    background: #a8b8a0;
    color: #1a241a
}

.consent-accept:hover {
    transform: translateY(-1px);
    background: #b6c5af
}

.consent-reject {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .24)
}

.consent-reject:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .22)
}

@media(max-width:768px) {
    .consent-banner-content {
        flex-direction: column;
        align-items: flex-start
    }

    .consent-actions {
        width: 100%
    }

    .consent-btn {
        flex: 1
    }
}

.concept-philosophy .section-tag {
    display: block;
    font-size: 44px !important;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -1px;
    color: var(--color-primary);
    margin-bottom: 18px;
    line-height: 1.12
}

.concept-philosophy h2 {
    font-size: 24px !important
}

.profile-avatar-box {
    padding: 0;
    overflow: hidden
}

.profil-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* 2026 MODERN DESIGN - Glassmorphism & Micro-interactions */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-margin-top: 90px;
    overflow-x: hidden
}

section[id] {
    scroll-margin-top: 90px
}

:root {
    --color-primary: #2d3e2d;
    --color-accent: #a8b8a0;
    --color-text-dark: #0f1410;
    --color-text-light: #fff;
    --color-bg-light: #fafaf8;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all .35s cubic-bezier(.34, 1.56, .64, 1);
    --transition-fast: all .2s cubic-bezier(.34, 1.56, .64, 1)
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.7;
    overflow-x: hidden
}

.blur-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(45, 62, 45, .85);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    transition: var(--transition-smooth)
}

.blur-header:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, .12)
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none
}

.logo-link {
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent
}

.logo-link:link,
.logo-link:visited,
.logo-link:hover,
.logo-link:active,
.logo-link:focus {
    text-decoration: none;
    border: none;
    outline: none
}

.logo:hover {
    transform: translateY(-2px)
}

.brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.8px;
    color: var(--color-text-light);
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #cbd2c8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.sub-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-accent);
    margin-top: 6px;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
    opacity: .8;
    position: relative;
    transition: var(--transition-fast)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transition: width .3s ease
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-accent)
}

.nav-links a:hover::after {
    width: 100%
}

.btn-nav {
    background: rgba(255, 255, 255, .08);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px)
}

.btn-nav:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .3)
}

.hero-section {
    padding-top: 160px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, rgba(168, 184, 160, .08) 0%, rgba(250, 248, 245, 0) 50%, rgba(168, 184, 160, .04) 100%);
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 184, 160, .1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0)
    }

    50% {
        transform: translateY(30px) translateX(-20px)
    }
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--color-primary);
    margin-bottom: 24px;
    background: linear-gradient(135deg, #2d3e2d 0%, #3a5040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.hero-text p {
    font-size: 19px;
    color: var(--color-text-dark);
    opacity: .8;
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.8
}

.hero-detail-note {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin: -18px 0 28px;
    line-height: 1.3
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px
}

.chip {
    padding: 16px 24px;
    background-color: #fff;
    border: 1px solid rgba(45, 62, 45, .12);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    transition: var(--transition-fast)
}

.chip:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px)
}

.btn-primary {
    background: linear-gradient(135deg, #2d3e2d 0%, #344834 100%);
    color: var(--color-text-light);
    border: 0;
    padding: 18px 40px;
    border-radius: 14px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 12px 24px rgba(45, 62, 45, .18);
    position: relative;
    overflow: hidden
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .15);
    transition: left .4s ease
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(45, 62, 45, .25)
}

.btn-primary:hover::before {
    left: 100%
}

.bento-image-card {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, .1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth)
}

.bento-image-card:hover {
    transform: scale(1.02)
}

.story-section {
    padding: 100px 0;
    background-color: #fff
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px
}

.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.story-text h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #2d3e2d 0%, #344834 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.story-text p {
    font-size: 16px;
    color: var(--color-text-dark);
    opacity: .85;
    margin-bottom: 20px;
    line-height: 1.8
}

.faq-section {
    padding: 80px 24px;
    background-color: #fff;
    text-align: center
}

.faq-container {
    max-width: 800px;
    margin: 48px auto;
    text-align: left
}

.faq-container details {
    background: #2d3e2d;
    margin-bottom: 14px;
    padding: 20px 24px;
    border-radius: 14px;
    transition: var(--transition-smooth);
    color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .1)
}

.faq-container details:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
    border-color: rgba(255, 255, 255, .2)
}

.faq-container summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    outline: 0;
    font-size: 1.05rem;
    padding-bottom: 8px;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.faq-container summary::after {
    content: '+';
    font-size: 1.4rem;
    color: #fff;
    transition: transform .3s ease;
    font-weight: 300
}

.faq-container details[open] summary::after {
    content: '−';
    transform: rotate(180deg)
}

.faq-container details p {
    margin-top: 8px;
    color: #fff;
    line-height: 1.7;
    padding-top: 6px;
    opacity: .95;
    font-size: .95rem
}

.comparison-section {
    padding: 80px 24px;
    background-color: var(--color-bg-light)
}

.comparison-container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(45, 62, 45, .95);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden
}

.comparison-container-fluid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px)
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.comparison-badge {
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 22px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35)
}

.comparison-card h5 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: .3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35)
}

.galerie-img {
    width: 100%;
    max-width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .15);
    display: block;
    transition: var(--transition-smooth);
    cursor: pointer
}

.galerie-img:hover {
    transform: scale(1.02)
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px
}

.slider-arrow {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    user-select: none
}

.slider-arrow:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: scale(1.08)
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, .3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth)
}

.dot:hover {
    background-color: rgba(255, 255, 255, .6)
}

.dot.active {
    background-color: #fff;
    width: 24px;
    border-radius: 20px
}

.leistungen-section {
    padding: 100px 0;
    background-color: #fff
}

.leistungen-section h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 50px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #2d3e2d 0%, #344834 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.leistungs-card {
    background-color: var(--color-bg-light);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(45, 62, 45, .06);
    position: relative;
    overflow: hidden
}

.leistungs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(168, 184, 160, .1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .4s ease
}

.leistungs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(45, 62, 45, .08);
    border-color: var(--color-accent)
}

.leistungs-card:hover::before {
    opacity: 1
}

.leistungs-img-container {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px
}

.leistungs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(1)
}

.leistungs-card:hover .leistungs-img {
    transform: scale(1.08) rotate(.5deg);
    filter: brightness(1.1)
}

.leistungs-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px
}

.leistungs-card p {
    font-size: 15px;
    color: var(--color-text-dark);
    opacity: .75;
    line-height: 1.6
}

.vorteile-neu-section {
    width: 100%;
    background-color: #f4efe2;
    padding: 100px 32px;
    text-align: center
}

.vorteile-neu-section>* {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto
}

.vorteile-neu-section h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 50px;
    letter-spacing: -1px
}

.vorteile-neu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.vorteile-neu-card {
    background-color: #fff;
    border: 1px solid rgba(45, 62, 45, .08);
    border-radius: 14px;
    padding: 35px 25px;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative
}

.vorteile-neu-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(45, 62, 45, .06);
    transform: translateY(-4px)
}

.vorteile-neu-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px
}

.vorteile-neu-card p {
    font-size: 14px;
    color: var(--color-text-dark);
    opacity: .75;
    line-height: 1.6
}

.process-section {
    padding: 100px 32px;
    background-color: #fff;
    text-align: center
}

.process-section h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 60px;
    letter-spacing: -1px
}

.process-flow {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative
}

.process-flow::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--color-accent);
    z-index: 1
}

.process-step {
    position: relative;
    z-index: 2
}

.step-icon-wrapper {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f4f0 100%);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition-smooth)
}

.process-step:hover .step-icon-wrapper {
    transform: scale(1.12);
    box-shadow: 0 8px 20px rgba(168, 184, 160, .15)
}

.step-icon-wrapper svg {
    width: 28px;
    height: 28px
}

.process-step h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px
}

.process-step p {
    font-size: 13px;
    color: var(--color-text-dark);
    opacity: .75;
    line-height: 1.5;
    padding: 0 10px
}

.floating-trigger {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    color: var(--color-primary);
    border: 2px solid var(--color-accent);
    padding: 16px 28px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(4px)
}

.floating-trigger:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
    background: linear-gradient(135deg, #2d3e2d 0%, #344834 100%);
    color: #fff
}

.contact-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    transition: visibility .4s
}

.contact-drawer.open {
    visibility: visible
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 20, 16, .4);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity .4s ease
}

.contact-drawer.open .drawer-overlay {
    opacity: 1
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: right .4s cubic-bezier(.4, 0, .2, 1)
}

.contact-drawer.open .drawer-content {
    right: 0
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px
}

.drawer-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary)
}

.btn-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(45, 62, 45, .25);
    border-radius: 8px;
    background: transparent;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth)
}

.btn-close:hover {
    background: linear-gradient(135deg, #2d3e2d 0%, #344834 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-1px)
}

.btn-close:focus-visible {
    outline: 2px solid rgba(45, 62, 45, .45);
    outline-offset: 2px
}

.input-wrapper {
    position: relative;
    margin-bottom: 25px
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 2px solid rgba(45, 62, 45, .15);
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--color-text-dark);
    background: transparent;
    outline: 0;
    transition: border-color .3s
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-bottom-color: var(--color-primary)
}

.checkbox-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 35px
}

.checkbox-wrapper label {
    font-size: 12px;
    color: var(--color-text-dark);
    opacity: .75;
    line-height: 1.6
}

.file-upload-wrapper {
    margin-bottom: 25px
}

.file-upload-wrapper label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px
}

.file-upload-wrapper input {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-bottom: 2px solid rgba(45, 62, 45, .15);
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--color-text-dark);
    background: transparent;
    outline: 0;
    transition: border-color .3s
}

.file-upload-wrapper input::file-selector-button {
    margin-right: 14px;
    border: 0;
    background: rgba(45, 62, 45, .08);
    color: var(--color-primary);
    padding: 10px 14px;
    border-radius: 10px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast)
}

.file-upload-wrapper input::file-selector-button:hover {
    background: rgba(45, 62, 45, .14)
}

.file-upload-wrapper small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--color-text-dark);
    opacity: .65;
    line-height: 1.5
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #2d3e2d 0%, #344834 100%);
    color: var(--color-text-light);
    border: 0;
    padding: 16px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(45, 62, 45, .15)
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(45, 62, 45, .25)
}

.modern-footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, .7);
    padding: 80px 32px 30px 32px
}

.footer-legal-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 50px;
    margin-bottom: 30px
}

.legal-box h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px
}

.legal-box p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
    opacity: .9
}

.footer-end {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px
}

.cookie-settings-group {
    display: flex;
    align-items: center;
    gap: 10px
}

.cookie-settings-note {
    color: rgba(255, 255, 255, .78);
    font-size: 12px
}

.cookie-settings-btn {
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast)
}

.cookie-settings-btn:hover {
    background: rgba(255, 255, 255, .15)
}

section {
    position: relative
}

section+section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(300px, 50vw);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(45, 62, 45, .2) 50%, transparent 100%)
}

section+section::after {
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 48px;
    background: radial-gradient(ellipse at center, rgba(168, 184, 160, .15) 0%, rgba(168, 184, 160, 0) 72%);
    pointer-events: none
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 20, 16, .5);
    z-index: 3000;
    justify-content: center;
    align-items: center
}

.modal[style*="display:block"] {
    display: flex
}

.modal-content {
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    border-radius: 20px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .15);
    animation: slideUpSmooth .4s cubic-bezier(.34, 1.56, .64, 1);
    border: 1px solid rgba(45, 62, 45, .1)
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1)
}

.modal-icon.success-icon {
    background-color: #d4edda;
    color: #28a745
}

.modal-icon.error-icon {
    background-color: #f8d7da;
    color: #dc3545
}

.modal-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px
}

.modal-message {
    font-size: 15px;
    color: var(--color-text-dark);
    opacity: .75;
    margin-bottom: 30px;
    line-height: 1.7
}

.btn-modal-close {
    background: linear-gradient(135deg, #2d3e2d 0%, #344834 100%);
    color: #fff;
    border: 0;
    padding: 14px 32px;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(45, 62, 45, .15)
}

.btn-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(45, 62, 45, .25)
}

@keyframes slideUpSmooth {
    from {
        opacity: 0;
        transform: translateY(40px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes popIn {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1
    }
}

.gallery-img-lightbox {
    cursor: pointer;
    transition: var(--transition-smooth)
}

.gallery-img-lightbox:hover {
    opacity: .85;
    transform: scale(1.02)
}

.meta-info-section {
    padding: 90px 24px;
    background-color: #fff
}

.info-split {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 44px;
    align-items: start
}

.info-split h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1px;
    margin-bottom: 16px
}

.info-split>div>p {
    font-size: 20px;
    line-height: 1.75;
    color: #223223;
    opacity: .95
}

.modern-info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f6f8f5 100%);
    border: 1px solid rgba(45, 62, 45, .15);
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 12px 30px rgba(45, 62, 45, .08)
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(45, 62, 45, .1)
}

.info-row:last-child {
    border-bottom: 0
}

.info-label {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700
}

.info-val {
    color: #121912;
    font-size: 18px;
    font-weight: 600;
    text-align: right
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .92);
    z-index: 2500;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px)
}

.lightbox.active {
    display: flex;
    animation: fadeIn .3s ease-out
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh
}

.lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: 0;
    border: 0;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 300
}

.lightbox-close:hover {
    color: #a8b8a0
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none
}

.lightbox-prev,
.lightbox-next {
    pointer-events: all;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px)
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, .25);
    transform: scale(1.1)
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease
}

.mobile-nav {
    display: none
}

body.mobile-menu-open {
    overflow: hidden
}

@media(max-width:1024px) {
    .hero-text h1 {
        font-size: 42px
    }

    .hero-detail-note {
        font-size: 24px
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px
    }

    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .avatar-gradient-box {
        max-width: 100%;
        max-height: 360px
    }

    .leistungen-grid,
    .vorteile-neu-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-flow {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px
    }

    .process-flow::before {
        top: 34px;
        left: 10%;
        width: 80%;
        height: 2px;
        transform: none
    }

    .header-container {
        padding: 16px 24px
    }

    .section-container {
        padding: 0 24px
    }

    .concept-split {
        flex-direction: column;
        gap: 30px
    }

    .comparison-container-fluid {
        padding: 40px 30px
    }

    .info-split {
        padding: 0 24px
    }
}

@media(max-width:768px) {

    .story-text h2,
    .concept-philosophy h2,
    .vorteile-neu-section h2,
    .process-section h2,
    .leistungen-section h2,
    .faq-section h2 {
        font-size: 22px;
        letter-spacing: -.3px
    }

    .hero-text h1 {
        font-size: 26px
    }

    .hero-detail-note {
        font-size: 20px;
        margin: -10px 0 20px
    }

    .leistungs-card h3,
    .vorteile-neu-card h3 {
        font-size: 15px
    }

    .leistungen-grid,
    .vorteile-neu-grid,
    .footer-legal-container {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .galerie-img {
        height: 260px
    }

    .footer-end {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .cookie-settings-group {
        flex-direction: column;
        gap: 8px
    }

    .drawer-content {
        padding: 30px 20px
    }

    .nav-links,
    .header-container>.btn-nav {
        display: none
    }

    .menu-toggle {
        display: flex !important
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        background: var(--color-primary);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 12px;
        padding: 14px;
        box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease;
        z-index: 1500
    }

    .mobile-nav a {
        color: var(--color-text-light);
        font-size: 15px;
        font-weight: 600;
        padding: 8px 4px
    }

    .mobile-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0)
    }

    .story-section,
    .leistungen-section,
    .vorteile-neu-section,
    .process-section {
        padding: 60px 20px
    }

    .vorteile-neu-section {
        padding: 60px 20px
    }

    .process-flow {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .process-flow::before {
        display: none
    }

    .hero-chips {
        gap: 10px
    }

    .info-split {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0
    }

    .modern-info-card {
        padding: 24px
    }

    .faq-section {
        padding: 60px 20px
    }

    .faq-container {
        margin: 32px auto
    }

    .meta-info-section {
        padding: 60px 0 80px 0
    }

    .story-text h2,
    .concept-philosophy h2,
    .vorteile-neu-section h2,
    .process-section h2,
    .leistungen-section h2,
    .faq-section h2 {
        font-size: 15px;
        letter-spacing: -.2px
    }

    .leistungs-card h3,
    .vorteile-neu-card h3 {
        font-size: 13px
    }

    .process-step h4 {
        font-size: 10px
    }

    .story-text p,
    .leistungs-card p,
    .vorteile-neu-card p {
        font-size: 15px
    }

    .section-tag {
        font-size: 12px
    }

    .badge-premium {
        font-size: 12px
    }

    .hero-text h1 {
        font-size: 25px
    }

    .hero-text p {
        font-size: 17px
    }

    @media(max-width:480px) {
        .blur-header .header-container {
            padding: 10px 14px
        }

        .brand {
            font-size: 20px
        }

        .menu-toggle {
            width: 40px;
            height: 40px
        }

        .mobile-nav {
            left: 8px;
            right: 8px;
            top: 64px;
            padding: 12px
        }

        .hero-section {
            padding-top: 100px;
            padding-bottom: 50px
        }

        .hero-text h1 {
            font-size: 20px;
            line-height: 1.2
        }

        .hero-detail-note {
            font-size: 18px;
            margin: -8px 0 16px
        }

        .hero-text p {
            font-size: 16px;
            margin-bottom: 24px
        }

        .hero-chips {
            gap: 8px
        }

        .chip {
            padding: 10px 14px;
            font-size: 13px
        }

        .btn-primary {
            width: 100%;
            padding: 16px 20px;
            font-size: 15px
        }

        .bento-image-card {
            height: 240px
        }

        .avatar-gradient-box {
            max-height: 280px
        }

        .story-section {
            padding: 50px 16px
        }

        .story-text h2 {
            font-size: 15px
        }

        .concept-intro-section,
        .leistungen-section,
        .vorteile-neu-section,
        .process-section {
            padding: 50px 16px
        }

        .leistungen-grid,
        .vorteile-neu-grid {
            grid-template-columns: 1fr
        }

        .process-flow {
            grid-template-columns: 1fr;
            gap: 30px
        }

        .comparison-section {
            padding: 40px 12px
        }

        .comparison-container-fluid {
            padding: 20px 12px;
            border-radius: 14px
        }

        .galerie-img {
            height: 200px
        }

        .comparison-badge {
            display: block;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: 3px;
            color: #fff;
            text-transform: uppercase;
            margin-bottom: 40px;
            opacity: .95
        }

        .comparison-card h5 {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: .5px;
            opacity: .95
        }

        .faq-section {
            padding: 40px 12px
        }

        .faq-container {
            margin: 24px auto
        }

        .faq-container details {
            padding: 14px 16px
        }

        .faq-section h2 {
            font-size: 15px
        }

        .meta-info-section {
            padding: 40px 16px 60px 16px
        }

        .info-split h2 {
            font-size: 17px
        }

        .modern-info-card {
            padding: 20px 16px
        }

        .info-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
            padding: 10px 0
        }

        .floating-trigger {
            right: 10px;
            bottom: 12px;
            padding: 10px 14px;
            font-size: 12px;
            gap: 6px
        }

        .drawer-content {
            max-width: 100%;
            padding: 20px 16px
        }

        .modal-content {
            padding: 28px 20px;
            border-radius: 14px
        }

        .footer-legal-container {
            grid-template-columns: 1fr;
            gap: 0
        }

        .modern-footer {
            padding: 50px 16px 24px 16px
        }
    }

    .avatar-gradient-box {
        width: 100%;
        max-width: 480px;
        max-height: 480px;
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .avatar-gradient-box img {
        width: 100%;
        height: auto;
        max-height: 480px;
        object-fit: cover;
        border-radius: 16px;
        display: block
    }

    .legal-toggle {
        background: none;
        border: 1px solid rgba(255, 255, 255, .25);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 1px;
        cursor: pointer;
        padding: 10px 20px;
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all .25s ease
    }

    .legal-toggle::after {
        content: "▼";
        font-size: 11px;
        transition: transform .3s ease
    }

    .legal-toggle:hover {
        background: rgba(255, 255, 255, .08);
        border-color: rgba(255, 255, 255, .4)
    }

    .js-collapsible .legal-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        transition: max-height .45s cubic-bezier(.4, 0, .2, 1), opacity .35s ease, margin-top .3s ease
    }

    .js-collapsible.is-open .legal-content {
        max-height: 2000px;
        opacity: 1;
        margin-top: 20px
    }

    .js-collapsible.is-open .legal-toggle::after {
        transform: rotate(-180deg)
    }

    .legal-content p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 12px;
        color: rgba(255, 255, 255, .85)
    }

    .legal-content h4 {
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        margin: 16px 0 6px 0
    }

    .legal-content strong {
        color: #fff
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0)
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

    .story-text h2,
    .concept-philosophy h2,
    .vorteile-neu-section h2,
    .process-section h2,
    .leistungen-section h2,
    .faq-section h2 {
        font-size: 15px;
        letter-spacing: -.2px
    }

    .leistungs-card h3,
    .vorteile-neu-card h3 {
        font-size: 11px
    }

    .process-step h4 {
        font-size: 10px
    }

    .process-step p {
        font-size: 12px
    }

    .story-text p {
        font-size: 15px
    }

    .leistungs-card p,
    .vorteile-neu-card p {
        font-size: 14px
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 1.5px
    }

    .badge-premium {
        font-size: 11px;
        padding: 6px 14px
    }

    .info-split h2 {
        font-size: 15px
    }

    .drawer-header h3 {
        font-size: 14px
    }

    .modal-content h2 {
        font-size: 14px
    }
}
