

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}







:root {
    --green:         #99c22d;
    --green-dark:    #7aa022;
    --green-light:   #b8db4a;
    --charcoal:      #1a1a1a;
    --charcoal-mid:  #2d2d2d;
    --grey-dark:     #4e4d4d;
    --grey-mid:      #6b6b6b;
    --grey-light:    #f4f4f2;
    --grey-border:   #e2e2de;
    --white:         #ffffff;
    --yellow-accent: #fde962;

    --font-sans:     'Montserrat', 'Segoe UI', system-ui, sans-serif;

    --max-w:         1160px;
    --section-px:    clamp(1.25rem, 5vw, 3rem);
    --section-py:    clamp(3rem, 8vw, 6rem);

    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;

    --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:     0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg:     0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
    --shadow-green:  0 8px 32px rgba(153,194,45,.28);

    --transition:    .22s cubic-bezier(.4,0,.2,1);
}


*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }


.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--section-px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .9375rem;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
}

.btn--primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: var(--shadow-green);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(153,194,45,.38);
}

.btn--outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border-color: rgba(255,255,255,.3);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.6);
}

.btn--lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.0625rem;
}

.btn--sm {
    padding: .625rem 1.25rem;
    font-size: .875rem;
    font-weight: 600;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    padding: .3rem .85rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(153,194,45,.12);
    color: var(--green-dark);
    border: 1px solid rgba(153,194,45,.25);
}

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.625rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--charcoal);
    letter-spacing: -.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--grey-mid);
    max-width: 540px;
    margin-top: .75rem;
}


#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 1rem 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    
    background: transparent;
}


#header .nav-links,
#header .nav-cta {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

#header.scrolled .nav-links,
#header.scrolled .nav-cta {
    opacity: 1;
    pointer-events: all;
}


#header .nav-burger {
    opacity: 1;
    pointer-events: all;
}


#header:not(.scrolled) .nav-burger span {
    background: var(--white);
}


#header.scrolled .nav-burger span {
    background: var(--charcoal);
}

#header.scrolled {
    background: rgba(255,255,255,.96);
    box-shadow: 0 1px 0 var(--grey-border), var(--shadow-sm);
    padding: .625rem 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-logo {
    flex-shrink: 0;
    width: 160px;
}

.nav-logo img,
.nav-logo svg {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: .5rem; }


.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.nav-burger.active span { background: var(--charcoal) !important; }


.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 1000;
    flex-direction: column;
    overflow: hidden;
}

.nav-mobile.open { display: flex; }


.nav-mobile-header {
    border-bottom: 1px solid var(--grey-border);
    flex-shrink: 0;
    
    padding: 1rem 0;
}


.nav-mobile-header .nav-inner {
    padding-inline: var(--section-px);
}

.nav-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    flex-shrink: 0;
    padding: 4px;
    width: 36px;
    height: 36px;
    align-self: flex-start;
    margin-top: 8px;
}

.nav-mobile-close svg {
    stroke: var(--charcoal);
    transition: var(--transition);
}

.nav-mobile-close:hover { background: var(--grey-light); }
.nav-mobile-close:hover svg { stroke: var(--green); }


.nav-mobile-scroll {
    flex: 1;
    overflow-y: auto;
    padding: .5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}


.nav-mobile-scroll a:not(.nav-mobile-call) {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    border-bottom: 1px solid var(--grey-border);
    text-decoration: none;
    transition: color var(--transition);
}

.nav-mobile-scroll a:not(.nav-mobile-call):hover { color: var(--green); }


.nav-mobile-call {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.5rem;
    padding: .875rem 1.25rem;
    background: var(--grey-light);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
}

.nav-mobile-call:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.nav-mobile-call i.ph {
    font-size: 1.25rem;
    color: var(--green);
    transition: var(--transition);
}

.nav-mobile-call:hover i.ph { color: var(--white); }




#hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
}


#hero::after {
    content: '';
    position: absolute;
    inset: -8%;
    background: var(--hero-img, var(--charcoal)) 65% top / cover no-repeat;
    z-index: 0;
    animation: kenBurns 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenBurns {
    0%   { transform: scale(1)    translate(0%, 0%); }
    33%  { transform: scale(1.05) translate(-1%, .5%); }
    66%  { transform: scale(1.08) translate(.5%, -1%); }
    100% { transform: scale(1.04) translate(-1.5%, .5%); }
}


.hero-bg-pattern,
.hero-grid-overlay,
.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        
        linear-gradient(
            to right,
            rgba(0,0,0,.80) 0%,
            rgba(0,0,0,.60) 40%,
            rgba(0,0,0,.25) 70%,
            rgba(0,0,0,.15) 100%
        ),
        
        linear-gradient(
            to bottom,
            rgba(0,0,0,.50) 0%,
            rgba(0,0,0,.10) 35%,
            rgba(0,0,0,.10) 65%,
            rgba(0,0,0,.60) 100%
        );
    pointer-events: none;
}

.hero-grid-overlay { display: none; }

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-block: 4rem 5rem;
    position: relative;
    
    max-width: var(--max-w);
}

.hero-content {
    color: var(--white);
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .875rem;
    border-radius: 50px;
    
    background: rgba(153,194,45,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    border: 1px solid rgba(153,194,45,.5);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 1.75rem;
    align-self: flex-start;
}

.hero-badge::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.4); }
}

.hero-h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.hero-h1 em {
    font-style: normal;
    color: var(--green);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255,255,255,.92);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.65;
    text-shadow: 0 1px 12px rgba(0,0,0,.8);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: flex-start;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .8125rem;
    color: rgba(255,255,255,.5);
    justify-content: flex-start;
}

.hero-trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.15);
}

.hero-trust strong { color: rgba(255,255,255,.8); }



.hero-image-inner {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    overflow: visible;
    
    animation: heroImageIn .9s cubic-bezier(.22,1,.36,1) both;
    animation-delay: .3s;
    will-change: transform, opacity;
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateY(32px) scale(.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;
    box-shadow:
        0 32px 80px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.08);
}


.hero-image-frame {
    position: absolute;
    inset: -10px;
    border-radius: calc(var(--radius-lg) + 10px);
    border: 2px solid rgba(153,194,45,.35);
    pointer-events: none;
    animation: framePulse 4s ease-in-out infinite;
    will-change: opacity;
}

@keyframes framePulse {
    0%, 100% { opacity: .6; }
    50%       { opacity: 1; }
}


.hero-stat-badge {
    position: absolute;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-md);
    padding: .75rem 1.125rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .625rem;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    font-size: .875rem;
    font-weight: 600;
}

.hero-stat-badge--top {
    top: -1.25rem;
    left: -1.5rem;
    flex-direction: column;
    align-items: flex-start;
    animation: floatUp 6s ease-in-out infinite;
    animation-delay: .6s;
    will-change: transform;
}

.hero-stat-badge--bottom {
    bottom: -1.25rem;
    right: -1.5rem;
    background: var(--green);
    border-color: var(--green-dark);
    animation: floatDown 6s ease-in-out infinite;
    animation-delay: 1.2s;
    will-change: transform;
}

.hero-stat-badge--bottom i.ph {
    font-size: 1.1rem;
    color: #fff;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

.hero-stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--green-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: .8125rem;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}


#problem {
    padding-block: var(--section-py);
    background: var(--grey-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.125rem 1.25rem;
    border: 1px solid var(--grey-border);
    transition: var(--transition);
}

.problem-item:hover {
    border-color: rgba(153,194,45,.4);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.problem-icon {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(153,194,45,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.problem-text strong {
    display: block;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .2rem;
}

.problem-text span {
    font-size: .875rem;
    color: var(--grey-mid);
    line-height: 1.5;
}

.problem-promise {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
}

.problem-promise-quote {
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.problem-promise-quote em {
    color: var(--green);
    font-style: normal;
}

.problem-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.problem-author-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid var(--green);
    outline: 3px solid rgba(153,194,45,.3);
    outline-offset: 2px;
    box-shadow: 0 4px 18px rgba(0,0,0,.3);
}

.problem-author-avatar img,
.problem-author-avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 50%;
}

.problem-author-name {
    font-size: .9375rem;
    font-weight: 700;
}

.problem-author-role {
    font-size: .8125rem;
    color: rgba(255,255,255,.55);
}


#leistungen {
    padding-block: var(--section-py);
    background: var(--white);
}

.leistungen-header {
    text-align: center;
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.leistungen-header .section-subtitle { margin-inline: auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}


.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card:hover {
    border-color: rgba(153,194,45,.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.service-card.featured::before { background: var(--green); transform: scaleX(1); }


.service-card-top {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.25rem;
}

.service-card-top .service-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(153,194,45,.12);
    color: var(--green-dark);
    border: 1px solid rgba(153,194,45,.25);
    margin-bottom: 1.25rem;
}

.service-card.featured .service-badge {
    background: rgba(153,194,45,.2);
    color: var(--green-light);
    border-color: rgba(153,194,45,.4);
}

.service-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: rgba(153,194,45,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card.featured .service-icon {
    background: rgba(153,194,45,.15);
}

.service-card h3 {
    font-size: 1.1875rem;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: .625rem;
    color: var(--charcoal);
}

.service-card.featured h3 { color: var(--white); }

.service-card p {
    font-size: .9rem;
    color: var(--grey-mid);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-card.featured p { color: rgba(255,255,255,.65); }

.service-features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.5rem;
    flex: 1; 
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    font-size: .875rem;
    color: var(--grey-dark);
}

.service-card.featured .service-features li { color: rgba(255,255,255,.75); }

.service-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: .05rem;
}


#vertrauen {
    padding-block: var(--section-py);
    background: var(--grey-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trust-intro-block { }

.trust-empathy {
    font-size: 1.125rem;
    color: var(--grey-mid);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--green);
    padding-left: 1.25rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-stat {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
}

.trust-stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--charcoal);
    letter-spacing: -.03em;
    display: block;
}

.trust-stat-label {
    font-size: .8rem;
    color: var(--grey-mid);
    margin-top: .2rem;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: relative;
}

.testimonial-stars {
    color: var(--green);
    font-size: 1rem;
    margin-bottom: .75rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: .9rem;
    color: var(--grey-dark);
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonial-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: .875rem;
    font-weight: 700;
    color: var(--charcoal);
}

.testimonial-role {
    font-size: .75rem;
    color: var(--grey-mid);
}


#prozess {
    padding-block: var(--section-py);
    background: var(--white);
}

.prozess-header {
    text-align: center;
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: 3.5rem;
}

.prozess-header .section-subtitle { margin-inline: auto; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 2.375rem;
    left: calc(50% / 3);
    right: calc(50% / 3);
    height: 2px;
    background: linear-gradient(90deg, var(--green) 0%, var(--grey-border) 100%);
    pointer-events: none;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
}

.step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green);
}

.step-item:first-child .step-num { background: var(--green); box-shadow: var(--shadow-green); }

.step-item h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: .5rem;
    color: var(--charcoal);
}

.step-item p {
    font-size: .875rem;
    color: var(--grey-mid);
    line-height: 1.6;
}


#stakes {
    padding-block: var(--section-py);
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stakes-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(153,194,45,.07) 0%, transparent 60%);
    pointer-events: none;
}

.stakes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stakes-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.stakes-card.bad { border-color: rgba(255,70,70,.2); }
.stakes-card.good { border-color: rgba(153,194,45,.25); }

.stakes-card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.stakes-card-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.stakes-card.bad .stakes-card-icon  { background: rgba(255,70,70,.12); }
.stakes-card.good .stakes-card-icon { background: rgba(153,194,45,.12); }

.stakes-card-header h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -.01em;
}

.stakes-card.bad h3  { color: rgba(255,100,100,.9); }
.stakes-card.good h3 { color: var(--green-light); }

.stakes-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.stakes-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
}

.stakes-list li::before {
    flex-shrink: 0;
    font-size: .9rem;
    margin-top: .05rem;
}

.stakes-card.bad  .stakes-list li::before { content: '✗'; color: rgba(255,100,100,.7); }
.stakes-card.good .stakes-list li::before { content: '✓'; color: var(--green); }


#funnel {
    padding-block: var(--section-py);
    background: var(--grey-light);
}

.funnel-header {
    text-align: center;
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.funnel-header .section-subtitle { margin-inline: auto; }

.funnel-wrapper {
    max-width: 680px;
    margin-inline: auto;
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
}

.funnel-progress-bar {
    height: 4px;
    background: var(--grey-border);
    position: relative;
}

.funnel-progress-fill {
    height: 100%;
    background: var(--green);
    transition: width .4s ease;
    border-radius: 0 4px 4px 0;
}

.funnel-step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--grey-border);
}

.funnel-step-label {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--grey-mid);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.funnel-step-count {
    font-size: .8125rem;
    color: var(--grey-mid);
}

.funnel-step-count strong { color: var(--charcoal); }

.funnel-body {
    padding: 2rem 1.75rem;
}

.funnel-step { display: none; }
.funnel-step.active { display: block; }

.funnel-question {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -.01em;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}


.funnel-options {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.funnel-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 2px solid var(--grey-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    text-align: left;
    width: 100%;
}

.funnel-option:hover {
    border-color: var(--green);
    background: rgba(153,194,45,.04);
}

.funnel-option.selected {
    border-color: var(--green);
    background: rgba(153,194,45,.08);
}

.funnel-option-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(153,194,45,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.funnel-option.selected .funnel-option-icon {
    background: var(--green);
}
.funnel-option.selected .funnel-option-icon i.ph {
    color: #fff;
}

.funnel-option-text {
    display: block;
    text-align: left;
    flex: 1;
}

.funnel-option-text strong {
    display: block;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .15rem;
}

.funnel-option-text span {
    font-size: .8125rem;
    color: var(--grey-mid);
}


.funnel-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.funnel-tile {
    padding: 1rem;
    border: 2px solid var(--grey-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    background: var(--white);
    width: 100%;
}

.funnel-tile:hover { border-color: var(--green); background: rgba(153,194,45,.04); }
.funnel-tile.selected { border-color: var(--green); background: rgba(153,194,45,.08); }

.funnel-tile-icon { font-size: 1.5rem; margin-bottom: .375rem; display: block; }

.funnel-tile-label {
    font-size: .875rem;
    font-weight: 700;
    color: var(--charcoal);
    display: block;
}


.funnel-location-field {
    position: relative;
    margin-bottom: .75rem;
}

.funnel-location-field input {
    width: 100%;
    padding: .875rem 1.125rem .875rem 3rem;
    border: 2px solid var(--grey-border);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.funnel-location-field input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(153,194,45,.12);
}

.funnel-location-field .field-icon {
    position: absolute;
    left: .875rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.funnel-location-field .field-icon svg {
    stroke: var(--grey-mid);
    width: 16px; height: 16px;
}

.funnel-location-resolved {
    display: none;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--grey-mid);
    padding: .375rem .75rem;
    background: rgba(153,194,45,.08);
    border-radius: var(--radius-sm);
    margin-bottom: .5rem;
}

.funnel-location-resolved.visible { display: flex; }

.funnel-availability {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--grey-dark);
    margin-top: .75rem;
}

.availability-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}


.funnel-lead-intro {
    font-size: 1rem;
    color: var(--grey-dark);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.funnel-lead-intro strong { color: var(--charcoal); }

.form-fields {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

.form-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: .375rem;
}

.form-field label {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: .01em;
}

.form-field label .req { color: var(--green); }

.form-field input {
    width: 100%;
    padding: .8125rem 1rem;
    border: 2px solid var(--grey-border);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: .9375rem;
    color: var(--charcoal);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-field input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(153,194,45,.12);
}

.form-field input.error { border-color: #e53e3e; }
.form-field input.valid { border-color: var(--green); }

.field-error-msg {
    font-size: .75rem;
    color: #e53e3e;
    display: none;
}

.field-error-msg.visible { display: block; }


.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    tab-index: -1;
}


.funnel-submit-row {
    margin-top: 1.25rem;
}

.funnel-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .625rem;
}

.funnel-submit-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
}

.funnel-submit-btn:not(:disabled):hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(153,194,45,.4);
}

.form-notice {
    font-size: .75rem;
    color: var(--grey-mid);
    text-align: center;
    margin-top: .75rem;
    line-height: 1.5;
}


.funnel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    border-top: 1px solid var(--grey-border);
    background: var(--grey-light);
}

.funnel-back-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: .875rem;
    font-weight: 600;
    color: var(--grey-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .375rem;
    transition: color var(--transition);
    padding: .5rem 0;
}

.funnel-back-btn:hover { color: var(--charcoal); }

.funnel-next-btn {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 700;
    padding: .75rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.funnel-next-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.funnel-next-btn:not(:disabled):hover {
    background: var(--green);
    transform: translateY(-1px);
}


#funnel-success {
    display: none;
    padding: 3rem 2rem;
    text-align: center;
}

.funnel-success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(153,194,45,.15);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.funnel-success-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--charcoal);
    margin-bottom: .75rem;
}

.funnel-success-text {
    font-size: 1rem;
    color: var(--grey-mid);
    line-height: 1.65;
    max-width: 420px;
    margin-inline: auto;
}


#footer {
    background: var(--charcoal);
    color: rgba(255,255,255,.6);
    padding-block: 3rem 1.75rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1.75rem;
}

.footer-logo-block .nav-logo { margin-bottom: 1rem; }

.footer-brand-text {
    font-size: .875rem;
    line-height: 1.7;
    max-width: 280px;
    margin-top: 1rem;
}

.footer-contact {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .625rem;
    font-size: .875rem;
}

.footer-contact a {
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: .5rem;
    line-height: 1.3;
}

.footer-contact a svg {
    flex-shrink: 0;
    opacity: .7;
}

.footer-contact a:hover { color: var(--green); }
.footer-contact a:hover svg { opacity: 1; }

.footer-col-title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: .875rem;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-col-links a {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
}

.footer-col-links a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: .8125rem;
    color: rgba(255,255,255,.3);
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
    font-size: .8125rem;
}

.footer-legal-links a {
    color: rgba(255,255,255,.4);
    transition: color var(--transition);
}

.footer-legal-links a:hover { color: rgba(255,255,255,.7); }


#cookie-banner {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 2.5rem);
    max-width: 720px;
    background: var(--charcoal-mid);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: opacity .3s, transform .3s;
}

#cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(1rem);
}

.cookie-text {
    font-size: .875rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
    flex: 1;
}

.cookie-text a { color: var(--green); text-decoration: underline; }

.cookie-btns {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    padding: .625rem 1.25rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept:hover { background: var(--green-dark); }

.cookie-btn-decline {
    padding: .625rem 1.25rem;
    background: transparent;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: .875rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-decline:hover { color: var(--white); border-color: rgba(255,255,255,.4); }


#scroll-top {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 800;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow-green);
}

#scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

#scroll-top:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
}


.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }


@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .steps-grid { gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }

    .hero-inner {
        text-align: center;
        align-items: center;
        padding-block: 5rem 3rem;
        margin-inline: auto;
    }

    #hero {
        min-height: 100svh;
    }

    #hero::after {
        background: url('../img/heromobil.webp') center center / cover no-repeat;
        background-position: center center;
    }

    
    .hero-bg-pattern {
        background:
            linear-gradient(
                to bottom,
                rgba(0,0,0,.55) 0%,
                rgba(0,0,0,.20) 40%,
                rgba(0,0,0,.20) 60%,
                rgba(0,0,0,.65) 100%
            );
    }

    
    .hero-h1,
    .hero-h1 em,
    .hero-subtitle,
    .hero-badge,
    .hero-trust {
        text-shadow: none;
    }

    .hero-content    { align-items: center; }
    .hero-badge      { align-self: center; }
    .hero-ctas       { justify-content: center; }
    .hero-trust      { justify-content: center; }
    .hero-subtitle   { margin-inline: auto; text-align: center; }
    

    .problem-grid { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card .btn { align-self: center; width: 100%; justify-content: center; }
    .service-badge { align-self: center; text-align: center; }

    .trust-grid { grid-template-columns: 1fr; }

    .steps-grid { grid-template-columns: 1fr; }

    .stakes-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom { flex-direction: column; text-align: center; }

    .funnel-tiles { grid-template-columns: 1fr; }

    .form-field-group { grid-template-columns: 1fr; }

    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        bottom: .75rem;
    }

    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
    
    .hero-inner { padding-block: 5.5rem 3rem; }

    .hero-h1 { font-size: clamp(1.875rem, 8.5vw, 2.25rem); }

    .hero-badge {
        font-size: .6rem;
        padding: .3rem .625rem;
        letter-spacing: .04em;
        max-width: 85vw;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: .9375rem;
        text-align: center;
    }

    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 340px;
        margin-inline: auto;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        font-size: .8125rem;
        padding: .875rem 1rem;
        letter-spacing: .01em;
    }

    .btn--lg {
        padding: .75rem 1.25rem;
        font-size: .875rem;
    }

    
    .hero-ctas .btn--lg {
        width: auto;
        align-self: center;
    }

    
    .hero-trust {
        font-size: .75rem;
        gap: .625rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    
    .funnel-body { padding: 1.5rem 1.25rem; }
    .funnel-nav { padding: 1rem 1.25rem; }
    .funnel-step-indicator { padding: 1rem 1.25rem; }
    .trust-stats { grid-template-columns: 1fr; }
}


a[data-p1][data-p2] {
    cursor: pointer;
}

a[data-p1][data-p2]::before {
    content: attr(data-p1);
}

a[data-p1][data-p2]::after {
    content: attr(data-p2);
}


a[data-p1][data-p2]:empty::before,
a[data-p1][data-p2]:empty::after {
    
}


.consent-field {
    margin-top: .25rem;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    line-height: 1;
}


.consent-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}


.consent-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px; height: 20px;
    margin-top: 1px;
    border: 2px solid var(--grey-border);
    border-radius: 4px;
    background: var(--white);
    transition: var(--transition);
}


.consent-box::after {
    content: '';
    display: block;
    width: 5px; height: 9px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0;
    transition: opacity .15s ease;
}


.consent-label:hover .consent-box {
    border-color: var(--green);
}


.consent-label input[type="checkbox"]:checked ~ .consent-box {
    background: var(--green);
    border-color: var(--green);
}

.consent-label input[type="checkbox"]:checked ~ .consent-box::after {
    opacity: 1;
}


.consent-label input[type="checkbox"]:focus-visible ~ .consent-box {
    outline: 3px solid rgba(153,194,45,.4);
    outline-offset: 2px;
}


.consent-label.error .consent-box {
    border-color: #e53e3e;
}

.consent-text {
    font-size: .875rem;
    color: var(--grey-dark);
    line-height: 1.55;
}

.consent-text a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-text a:hover {
    color: var(--green);
}




[class^="ph-"], [class*=" ph-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}


.problem-icon       i.ph { font-size: 1.375rem; }
.service-icon       i.ph { font-size: 1.625rem; }
.hero-card-icon     i.ph { font-size: 1.5rem; }
.stakes-card-icon   i.ph { font-size: 1.375rem; }
.funnel-option-icon i.ph { font-size: 1.375rem; }
.funnel-tile-icon   i.ph { font-size: 1.5rem; }
.funnel-success-icon i.ph { font-size: 2.25rem; }


.problem-icon i.ph,
.funnel-option-icon i.ph,
.funnel-tile-icon i.ph        { color: var(--green-dark); }

.service-icon i.ph             { color: var(--green-dark); }
.service-card.featured .service-icon i.ph { color: var(--green-light); }

.stakes-card.bad  .stakes-card-icon i.ph { color: rgba(255,80,80,.9); }
.stakes-card.good .stakes-card-icon i.ph { color: var(--green-light); }

.hero-card-icon     i.ph       { color: #fff; }
.funnel-success-icon i.ph      { color: var(--green); }


.btn svg {
    fill: currentColor;
    flex-shrink: 0;
    vertical-align: middle;
}




.nav-logo .logo-hell   { display: block; }
.nav-logo .logo-dunkel { display: none;  }


#header.scrolled .nav-logo .logo-hell   { display: none;  }
#header.scrolled .nav-logo .logo-dunkel { display: block; }


.nav-mobile .nav-logo .logo-hell   { display: none;  }
.nav-mobile .nav-logo .logo-dunkel { display: block; }

@media (max-width: 1024px) {
    .hero-stat-badge { display: none; }
    .hero-image-frame { inset: -6px; }
}


.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .375rem;
    opacity: .6;
    animation: fadeInUp .8s ease 1.5s both;
    transition: opacity var(--transition);
	display: none;
}

.hero-scroll-indicator:hover { opacity: 1; }


.hero-scroll-indicator::before {
    content: '';
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,.7);
    border-radius: 12px;
    display: block;
}


.hero-scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--green);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    75%  { opacity: 0; transform: translateX(-50%) translateY(14px); }
    100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(12px); }
    to   { opacity: .6; transform: translateX(-50%) translateY(0); }
}

@keyframes fadeInLightbox {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}


.hero-scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}


.footer-cookie-btn {
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: .8125rem;
    color: rgba(255,255,255,.4);
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
}

.footer-cookie-btn:hover { color: rgba(255,255,255,.7); }

.btn-mobile { display: none; }
.btn-desktop { display: inline; }

@media (max-width: 768px) {
    .btn-mobile  { display: inline; }
    .btn-desktop { display: none; }
}

#faq {
    padding-block: var(--section-py);
    background: var(--grey-light);
}

.faq-header {
    text-align: center;
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.faq-header .section-subtitle { margin-inline: auto; }

.faq-list {
    max-width: 780px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    border-color: rgba(153,194,45,.4);
    box-shadow: var(--shadow-sm);
}

.faq-item.open {
    border-color: rgba(153,194,45,.5);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
}

.faq-question:hover { color: var(--green-dark); }
.faq-item.open .faq-question {
    color: var(--green-dark);
    border-bottom: 1px solid var(--grey-border);
}


.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--green);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}

.faq-icon::before {
    width: 20px; height: 2px;
    top: 9px; left: 0;
}

.faq-icon::after {
    width: 2px; height: 20px;
    top: 0; left: 9px;
}

.faq-item.open .faq-icon::after {
    transform: rotate(90deg) scaleY(0);
    opacity: 0;
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.4,0,.2,1);
}

.faq-answer p {
    padding: 1rem 1.5rem 1.25rem;
    font-size: .9375rem;
    color: var(--grey-mid);
    line-height: 1.75;
    margin: 0;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

#referenzen {
    padding-block: var(--section-py);
    background: var(--grey-light);
}

.portfolio-header {
    text-align: center;
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.portfolio-header .section-subtitle { margin-inline: auto; }


.portfolio-filter {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.portfolio-filter-btn {
    padding: .5rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid var(--grey-border);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: .8125rem;
    font-weight: 700;
    color: var(--grey-mid);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: .02em;
}

.portfolio-filter-btn:hover {
    border-color: var(--green);
    color: var(--green-dark);
}

.portfolio-filter-btn.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}


.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
}


.portfolio-grid .reveal {
    opacity: 1;
    transform: none;
    display: contents;
}


.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--grey-border);
    background: var(--white);
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(153,194,45,.4);
}

.portfolio-card.hidden {
    display: none !important;
}


.portfolio-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--grey-light);
    flex-shrink: 0;
}


.portfolio-img-wrap--contain img {
    object-fit: cover !important;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .5s ease;
    display: block;
    aspect-ratio: 16 / 9;
}

.portfolio-card:hover .portfolio-img-wrap img {
    transform: scale(1.04);
}


.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-label,
.portfolio-overlay span {
    color: var(--white);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .06em;
    border: 1.5px solid rgba(255,255,255,.7);
    padding: .5rem 1.375rem;
    border-radius: 50px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
}


.portfolio-card-body {
    padding: 1rem 1.125rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    flex: 1;
}

.portfolio-tag {
    display: inline-block;
    font-size: .55rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: rgba(153,194,45,.1);
    border: 1px solid rgba(153,194,45,.3);
    border-radius: 50px;
    padding: .15rem .5rem;
    margin-bottom: .125rem;
    width: fit-content;
}

.portfolio-card-body strong {
    font-size: .9375rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.3;
    letter-spacing: -.01em;
    display: block;
}

.portfolio-card-body small {
    font-size: .8125rem;
    color: var(--grey-mid);
    font-weight: 500;
    display: block;
    margin-bottom: .5rem;
}

.portfolio-card-body p {
    font-size: .8125rem;
    color: var(--grey-mid);
    line-height: 1.55;
    margin-top: .25rem;
}


@media (max-width: 1024px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (max-width: 600px) {
    .portfolio-grid { grid-template-columns: 1fr; gap: 1rem; }
    .portfolio-filter { gap: .375rem; }
    .portfolio-filter-btn { font-size: .75rem; padding: .4375rem 1rem; }
    .portfolio-card { height: auto; }
    .portfolio-card:hover { transform: none; box-shadow: none; }
    .portfolio-img-wrap { aspect-ratio: 16 / 9; }
    .pf-slider { aspect-ratio: 16 / 9; }
    .portfolio-card-body { padding: .875rem 1rem 1rem; }
    .portfolio-card-body strong { font-size: .9375rem; }
    .portfolio-card-body p { font-size: .8125rem; }
}


.pf-slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--grey-light);
    flex-shrink: 0;
}

.pf-slider-before,
.pf-slider-after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 9;
}

.pf-slider-after {
    z-index: 2;
    animation: sliderFadeAfter 18s ease-in-out infinite;
}

.pf-slider-before {
    z-index: 1;
}

@keyframes sliderFadeAfter {
    0%   { opacity: 1; }
    44%  { opacity: 1; }
    50%  { opacity: 0; }
    94%  { opacity: 0; }
    100% { opacity: 1; }
}

.pf-slider-label {
    position: absolute;
    bottom: .75rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0,0,0,.55);
    padding: 4px 10px;
    border-radius: 50px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    line-height: 1;
    white-space: nowrap;
}

.pf-slider-label--before {
    left: .625rem;
    animation: sliderLabelBefore 18s ease-in-out infinite;
}

.pf-slider-label--after {
    right: .625rem;
    animation: sliderLabelAfter 18s ease-in-out infinite;
}

@keyframes sliderLabelBefore {
    0%   { opacity: 0; }
    44%  { opacity: 0; }
    50%  { opacity: 1; }
    94%  { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes sliderLabelAfter {
    0%   { opacity: 1; }
    44%  { opacity: 1; }
    50%  { opacity: 0; }
    94%  { opacity: 0; }
    100% { opacity: 1; }
}

.portfolio-card:has(.pf-slider) .portfolio-overlay {
    display: none;
}

.portfolio-card:has(.pf-slider)[data-url] {
    cursor: pointer;
}

@media (max-width: 600px) {
    .pf-slider { aspect-ratio: 16 / 9; }
}


#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    cursor: zoom-out;
}

#lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-inner {
    width: 90vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: default;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 40px rgba(0,0,0,.6);
    animation: fadeInLightbox .25s ease both;
    display: block;
    margin: 0 auto;
}

#lightbox-caption {
    color: rgba(255,255,255,.75);
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-align: center;
}

#lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    z-index: 10000;
}

#lightbox-close:hover {
    background: rgba(255,255,255,.25);
}

.portfolio-show-more {
    display: block;
    margin: 1.5rem auto 0;
    padding: .75rem 2rem;
    background: transparent;
    border: 1.5px solid var(--grey-border);
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: .875rem;
    font-weight: 700;
    color: var(--grey-mid);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: .02em;
}

.portfolio-show-more:hover {
    border-color: var(--green);
    color: var(--green-dark);
    background: rgba(153,194,45,.05);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


#preloader {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-icon {
    width: 80px;
    height: 80px;
    will-change: transform;
}


#lead-magnet {
    padding-block: var(--section-py);
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

#lead-magnet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(153,194,45,.07) 0%, transparent 70%);
    pointer-events: none;
}

.lead-magnet-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}


.lead-magnet-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem .875rem;
    border-radius: 50px;
    background: rgba(153,194,45,.12);
    border: 1px solid rgba(153,194,45,.4);
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 1.25rem;
}

.lead-magnet-title {
    font-size: clamp(1.625rem, 3.5vw, 2.375rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.02em;
    color: var(--white);
    margin-bottom: 1rem;
}

.lead-magnet-title em {
    font-style: normal;
    color: var(--green);
}

.lead-magnet-desc {
    font-size: .9375rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.lead-magnet-checklist {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.lead-magnet-checklist li {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .875rem;
    color: rgba(255,255,255,.75);
}

.lead-magnet-checklist li::before {
    content: '✓';
    color: var(--green);
    font-weight: 800;
    flex-shrink: 0;
}


.lead-magnet-form-wrap {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.lead-magnet-form-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .375rem;
}

.lead-magnet-form-sub {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.5rem;
}

.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

.lead-magnet-form .lm-field {
    display: flex;
    flex-direction: column;
    gap: .375rem;
}

.lead-magnet-form label {
    font-size: .8125rem;
    font-weight: 700;
    color: rgba(255,255,255,.7);
}

.lead-magnet-form input {
    width: 100%;
    padding: .8125rem 1rem;
    border: 1.5px solid rgba(255,255,255,.15);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: .9375rem;
    color: var(--white);
    background: rgba(255,255,255,.07);
    transition: var(--transition);
    outline: none;
}

.lead-magnet-form input::placeholder {
    color: rgba(255,255,255,.3);
}

.lead-magnet-form input:focus {
    border-color: var(--green);
    background: rgba(255,255,255,.1);
    box-shadow: 0 0 0 3px rgba(153,194,45,.15);
}

.lead-magnet-form input.error { border-color: #e53e3e; }
.lead-magnet-form input.valid { border-color: var(--green); }


.lm-consent-label {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    line-height: 1;
}

.lm-consent-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}

.lm-consent-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px; height: 20px;
    margin-top: 1px;
    border: 2px solid rgba(255,255,255,.25);
    border-radius: 4px;
    background: rgba(255,255,255,.07);
    transition: var(--transition);
}

.lm-consent-box::after {
    content: '';
    display: block;
    width: 5px; height: 9px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0;
    transition: opacity .15s ease;
}

.lm-consent-label:hover .lm-consent-box { border-color: var(--green); }

.lm-consent-label input:checked ~ .lm-consent-box {
    background: var(--green);
    border-color: var(--green);
}

.lm-consent-label input:checked ~ .lm-consent-box::after { opacity: 1; }

.lm-consent-text {
    font-size: .8125rem;
    color: rgba(255,255,255,.55);
    line-height: 1.55;
}

.lm-consent-text a {
    color: var(--green-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lm-error-msg {
    font-size: .75rem;
    color: #fc8181;
    display: none;
}

.lm-error-msg.visible { display: block; }

.lead-magnet-submit {
    width: 100%;
    padding: .9375rem 1.5rem;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    margin-top: .25rem;
}

.lead-magnet-submit:hover:not(:disabled) {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(153,194,45,.4);
}

.lead-magnet-submit:disabled {
    opacity: .5;
    cursor: not-allowed;
}


.lm-success {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
}

.lead-magnet-form-wrap:has(.lm-success[style*="display: block"]) .lead-magnet-form-title,
.lead-magnet-form-wrap:has(.lm-success[style*="display: block"]) .lead-magnet-form-sub {
    display: none;
}

.lm-success-icon {
    margin-bottom: .75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lm-success-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .5rem;
}

.lm-success-text {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}


@media (max-width: 768px) {
    .lead-magnet-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}