:root {
    --primary-color: #455240;
    /* SoilTrack Grün */
    --secondary-color: #FF5622;
    /* SoilTrack Orange */
    --text-color: #333333;
    --background-light: #F5F5F5;
    --white: #FFFFFF;
    --grey-light: #D9DADA;
    --transition: all 0.3s ease;
    --font-main: 'Inter', sans-serif;
    --max-width: 1200px;
}

html {
    font-size: 90%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════ */
/* HEADER — Schuttflix-Stil Navigation                     */
/* ═══════════════════════════════════════════════════════ */
.header {
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo img {
    filter: brightness(0) invert(1);
    height: 50px !important;
    transition: height 0.3s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-login {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.header-login:hover {
    opacity: 1;
}

.menu-toggle {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-list a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    border-bottom-color: var(--secondary-color);
}

/* CTA-Button im Header — Weisser Outline (Schuttflix-Stil) */
.btn-header-cta {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 10px 24px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-header-cta:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.menu-toggle {
    display: none;
}

.menu-toggle span {
    background-color: var(--white);
}

/* ═══════════════════════════════════════════════════════ */
/* HERO — Fullscreen Bild mit Bold-Overlay                 */
/* ═══════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background-image: url('hero_frame_35s.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-content {
    max-width: 800px;
    text-align: right;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.6;
    max-width: 550px;
    font-weight: 400;
    margin-left: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
}

.btn-hero-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background-color: #e64d1a;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* Scroll-down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(45deg) translateY(8px);
    }
}

/* ═══════════════════════════════════════════════════════ */
/* SECTIONS — Allgemein                                    */
/* ═══════════════════════════════════════════════════════ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.section-tag {
    display: inline-block;
    background: rgba(69, 82, 64, 0.1);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════ */
/* PLATTFORM-SEKTION — Smartphone-Mockup (Schuttflix-Stil) */
/* ═══════════════════════════════════════════════════════ */
.platform-section {
    background: var(--white);
    overflow: hidden;
}

.platform-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: center;
}

.platform-text h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.platform-intro {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin-bottom: 36px;
}

.platform-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-light);
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.platform-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.platform-features li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.platform-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-cta-primary:hover {
    background-color: #e64d1a;
    transform: translateY(-2px);
}

.btn-cta-link {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-cta-link:hover {
    color: var(--secondary-color);
}


.platform-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.aushub-bg {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    max-width: 500px;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════ */
/* SMARTPHONE FRAME — CSS-basiertes App-Mockup             */
/* ═══════════════════════════════════════════════════════ */
.phone-frame {
    margin-top: -75px;
    width: 320px;
    background: #1a1a1a;
    border-radius: 38px;
    padding: 5px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    position: relative;
    transition: transform 0.4s ease;
    transform: scale(0.75);
    transform-origin: center center;
}

.phone-frame:hover {
    transform: scale(0.75) translateY(-10px);
}

.platform-mockup {
    position: relative;
}

.aushub-bg {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.phone-notch {
    width: 120px;
    height: 26px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    background: #FFFFFF;
    border-radius: 34px;
    overflow: hidden;
    height: 640px;
    position: relative;
    font-size: 126%;
}

/* App Status Bar */
.app-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 20px 4px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.app-statusbar-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 10px;
}

.app-username {
    font-size: 15px;
    font-weight: 700;
    color: #3C3C3C;
    font-family: 'Inter', sans-serif;
}

.app-company {
    font-size: 12px;
    font-weight: 400;
    color: #888;
    font-family: 'Inter', sans-serif;
    margin-top: 2px;
}

.app-logout-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* App Action Cards */
.app-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
}

.app-card {
    background: #F2F2F2;
    border-radius: 12px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-card:hover {
    background: #455240;
}

.app-card:hover .app-card-title {
    color: #FF5622;
}

.app-card:hover .app-truck-icon path:first-child {
    fill: #FFFFFF;
}

.app-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #455240;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    text-align: center;
    transition: color 0.3s ease;
}

.app-truck-icon {
    flex-shrink: 0;
    transform: scale(1.2);
}

.app-truck-flip {
    transform: scaleX(-1) scale(1.2);
}

/* App Tab Bar */
.app-tabbar {
    display: flex;
    justify-content: space-around;
    padding: 10px 0 16px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.app-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.app-tab span {
    font-size: 10px;
    font-weight: 500;
    color: #455240;
    font-family: 'Inter', sans-serif;
}

.app-tab-active span {
    color: #FF5622;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════ */
/* PROCESS STEPS                                           */
/* ═══════════════════════════════════════════════════════ */
.process {
    background-color: var(--background-light);
}

.steps-wrapper {
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.step {
    text-align: center;
    position: relative;
    padding: 20px 10px;
}

.step-arrow {
    position: absolute;
    right: -18px;
    top: 35px;
    z-index: 2;
    opacity: 0.85;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

/* Scratch Road */
.scratch-road {
    position: relative;
    margin-top: 24px;
    height: 55px;
}

.road-surface {
    width: 100%;
    height: 55px;
}

.road-svg {
    width: 100%;
    height: 55px;
}

.road-truck {
    position: absolute;
    top: -2px;
    left: 0;
    animation: truckDrive 20s linear infinite;
}

@keyframes truckDrive {
    0% {
        left: 5%;
    }

    4% {
        left: 5%;
    }

    14% {
        left: 27%;
    }

    18% {
        left: 27%;
    }

    28% {
        left: 47%;
    }

    32% {
        left: 47%;
    }

    42% {
        left: 67%;
    }

    46% {
        left: 67%;
    }

    56% {
        left: 75%;
    }

    64% {
        left: 75%;
    }

    70% {
        left: 75%;
        opacity: 0;
    }

    71% {
        left: 5%;
        opacity: 0;
    }

    76% {
        left: 5%;
        opacity: 1;
    }

    100% {
        left: 5%;
    }
}

.step-icon {
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.step-active .step-icon {
    background-color: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 86, 34, 0.5), 0 0 40px rgba(255, 86, 34, 0.25);
}

.step-active h3 {
    color: var(--secondary-color);
    transition: color 0.4s ease;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════ */
/* ZIELGRUPPEN / TARGET CARDS                              */
/* ═══════════════════════════════════════════════════════ */
.target-groups {
    background: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.target-card {
    background: var(--white);
    padding: 36px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.target-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.target-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(69, 82, 64, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.target-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.target-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════ */
/* TEAM                                                    */
/* ═══════════════════════════════════════════════════════ */
.team {
    background: var(--background-light);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: nowrap;
}

.team-member {
    text-align: center;
    transition: var(--transition);
    max-width: 220px;
}
.team-member:hover {
    transform: translateY(-4px);
}

.member-avatar {
    width: 110px;
    height: 110px;
    background-color: var(--grey-light);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #888;
    overflow: hidden;
}

.team-member h3 {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.05rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

.role-badge {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(69, 82, 64, 0.1);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    min-height: 52px;
    text-align: center;
}

.team-member {
    text-align: center;
    transition: var(--transition);
    max-width: 220px;
}

.member-qualifications {
    list-style: none;
    padding: 0;
    margin-top: 12px;
    text-align: left;
}

.member-qualifications li {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
}

.member-qualifications li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════ */
/* FOOTER                                                  */
/* ═══════════════════════════════════════════════════════ */
.footer {
    background-color: #455240;
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    flex-direction: unset !important;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: #E8EFE8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.footer-col a {
    color: #ADB7AD;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: #ADB7AD;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.85rem;
    color: #7A877A;
}

/* ═══════════════════════════════════════════════════════ */
/* ANIMATIONS                                              */
/* ═══════════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Header Shrink on scroll */
.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled .logo img {
    height: 40px !important;
}

/* ═══════════════════════════════════════════════════════ */
/* OLD BUTTON STYLES (Fallback)                            */
/* ═══════════════════════════════════════════════════════ */
.btn {
    padding: 10px 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #374330;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════ */
/* RESPONSIVE                                              */
/* ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .platform-grid {
        gap: 40px;
    }

    .platform-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white);
        margin: 5px 0;
    }

    .nav {
        display: none;
        width: 100%;
        margin-top: 10px;
        background-color: #374330;
        padding: 15px 0;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .header-actions {
        display: none;
    }

    .nav.active+.header-actions,
    .nav.active~.header-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 10px 0;
    }

    .hero {
        min-height: 85vh;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .platform-text {
        grid-row: 1;
    }

    .platform-mockup {
        grid-row: 2;
    }

    .platform-mockup img {
        max-width: 280px;
    }

    .phone-frame {
        width: 240px;
    }

    .phone-screen {
        min-height: 440px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-arrow {
        display: none;
    }

    .scratch-road {
        display: none;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .team-grid {
        flex-wrap: wrap !important;
        flex-direction: column !important;
        align-items: center;
        gap: 30px;
    }
    .team-member {
        max-width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .phone-frame {
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
        transform: scale(0.65) !important;
        transform-origin: center top;
        margin-bottom: -120px;
        margin-top: -40px;
    }
    .phone-frame:hover {
        transform: scale(0.65) translateY(-10px) !important;
    }
    .phone-screen {
        height: 540px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .platform-text h2 {
        font-size: 1.6rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 28px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════ */
/* SOLUTION FEATURES (Legacy)                              */
/* ═══════════════════════════════════════════════════════ */
.card {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.problem-card h3 {
    color: var(--secondary-color);
}

.solution-card h3 {
    color: var(--primary-color);
}

.stats-list,
.benefits-list {
    list-style: none;
}

.stats-list li,
.benefits-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.stats-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ══════════════════════════════════════════════════════
   IMPACT / ZAHLEN SECTION
   ══════════════════════════════════════════════════════ */
.impact-section {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.impact-section .section-tag {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

.impact-section h2 {
    color: white;
}

.impact-section p {
    color: rgba(255, 255, 255, 0.8);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.impact-card {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.impact-icon {
    margin-bottom: 16px;
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: white;
}

.impact-unit {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.impact-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .impact-number {
        font-size: 2.5rem;
    }
}

/* ══════════════════════════════════════════════════════
   PARTNER SECTION
   ══════════════════════════════════════════════════════ */
.partner-section {
    background: var(--background-light);
    padding: 60px 0;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    min-width: 160px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.partner-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.partner-logo span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.partner-placeholder {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .partner-logos {
        gap: 16px;
    }

    .partner-logo {
        min-width: 140px;
        padding: 16px 20px;
    }
}

/* ══════════════════════════════════════════════════════
   CONTACT FORM SECTION
   ══════════════════════════════════════════════════════ */
.contact-form-section {
    background: white;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 16px 0;
    line-height: 1.15;
}

.contact-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-detail a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background: var(--background-light);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-main);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(69, 82, 64, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-form-submit {
    font-family: var(--font-main);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.btn-form-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(69, 82, 64, 0.08);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* ══════════════════════════════════════════════════════
   INTERACTIVE CLICK DUMMY (Smartphone Mockup)
   ══════════════════════════════════════════════════════ */

/* Screen container system */
/* phone-screen is already position:relative with fixed height above */

.dummy-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 56px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
}

.dummy-screen-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

/* Ensure tabbar stays fixed at bottom of phone-screen */
/* #dummyPhone IS .phone-screen — no extra positioning needed */

#dummyPhone>.app-tabbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    border-radius: 0 0 34px 34px;
    background: #fff;
}

/* Sub-header (back + title) */
.dummy-subheader {
    display: flex;
    align-items: center;
    padding: 30px 16px 10px;
    gap: 8px;
    flex-shrink: 0;
}

.dummy-subheader-center {
    justify-content: center;
}

.dummy-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-right: 4px;
    display: flex;
    align-items: center;
}

.dummy-subheader-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

/* ── FORM FIELDS (proportional skaliert für 296px Screen) ── */
.dummy-form-scroll {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.dummy-form-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

/* Dropdown wrapper */
.dd-wrap {
    position: relative;
}

/* Trigger (closed state) – exact App styles: border 1.5px #333, radius 12, padding 18h 16v */
.dd-trigger {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color 0.2s;
    background: #fff;
}

.dd-trigger:hover {
    border-color: #455240;
}

.dd-trigger-open {
    border-color: #3d4f2f;
    border-width: 2px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.dd-trigger-input {
    cursor: pointer;
}

.dd-notiz-field {
    min-height: 60px;
    align-items: flex-start;
    padding-top: 12px;
}

.dd-trigger-filled {
    border-color: #3d4f2f;
}

.dd-value {
    flex: 1;
    font-size: 13px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.dd-value-selected {
    font-weight: 500;
}

.dd-arrow {
    font-size: 14px;
    color: #333;
    margin-left: 6px;
}

/* Panel (open dropdown content) */
.dd-panel {
    display: none;
    border: 1px solid #d1d5db;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    background: #f5f5f5;
    padding: 6px 14px 8px;
    max-height: 220px;
    overflow-y: auto;
}

.dd-panel-open {
    display: block;
}

/* Einschränkungen panel – matches app: border 1.5px #333 */
.dd-panel-einschr {
    border-width: 1.5px;
    border-color: #333;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 8px 14px 10px;
}

/* Zeitfenster panel */
.dd-panel-zeit {
    border-width: 1.5px;
    border-color: #333;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 12px 14px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.dd-panel-zeit.dd-panel-open {
    display: flex;
}

/* ── Dropdown items (Bauvorhaben) ── */
.dd-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.dd-item:last-child {
    border-bottom: none;
}

.dd-item:hover {
    background: rgba(69, 82, 64, 0.05);
    margin: 0 -14px;
    padding: 12px 14px;
    border-radius: 6px;
}

.dd-item-text {
    font-size: 12px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.dd-item-meta {
    font-size: 11px;
    color: #888;
    font-family: 'Inter', sans-serif;
}

/* ── Kategorie Header (Materialtyp) ── */
.dd-kategorie {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.dd-kat-green {
    color: #455240;
}

/* ── Radio buttons (exact App: 24x24, border 2px #999, inner 14x14) ── */
.dd-radio-row {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 12px;
    cursor: pointer;
}

.dd-radio-row:hover {
    background: rgba(69, 82, 64, 0.04);
    margin: 0 -14px;
    padding: 8px 14px;
    border-radius: 6px;
}

.dd-radio-outer {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dd-radio-inner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1a1a1a;
}

.dd-hidden {
    display: none;
}

.dd-radio-label {
    font-size: 12px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    flex: 1;
}

.dd-label-green {
    color: #455240;
}

/* ── Checkboxen (exact App: 26x26, border 2px #1a1a1a, radius 6) ── */
.dd-check-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    gap: 14px;
    cursor: pointer;
}

.dd-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
}

.dd-checkbox-checked {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.dd-checkmark {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.dd-check-label {
    flex: 1;
    font-size: 12px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.dd-sign-svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

/* ── Zeitfenster Picker ── */
.dd-zeit-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dd-zeit-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    width: 30px;
    font-family: 'Inter', sans-serif;
}

.dd-zeit-val {
    flex: 1;
    font-size: 13px;
    padding: 9px 12px;
    border: 1.5px solid #ccc;
    border-radius: 10px;
    background: #fff;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s;
}

.dd-zeit-val:hover {
    border-color: #3d4f2f;
}

.dd-zeit-filled {
    color: #1a1a1a;
    font-weight: 500;
    border-color: #3d4f2f;
}

/* ── BOTTOM BAR ── */
.dummy-bottom-bar {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.dummy-btn-cancel {
    flex: 1;
    background: #2d2d2d;
    border: none;
    border-radius: 20px;
    padding: 11px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.dummy-btn-cancel:hover {
    background: #444;
}

.dummy-btn-submit {
    flex: 1.3;
    background: #E8501E;
    border: none;
    border-radius: 20px;
    padding: 11px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s;
}

.dummy-btn-submit:hover {
    background: #FF5622;
    transform: translateY(-1px);
}

/* ── SUCCESS SCREEN ── */
.dummy-success-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    text-align: center;
}

.dummy-success-icon {
    margin-bottom: 16px;
    animation: dummyPulse 0.6s ease-out;
}

@keyframes dummyPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.dummy-success-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.dummy-success-divider {
    height: 1px;
    background: #f0f0f0;
    width: 60%;
    margin-bottom: 16px;
}

.dummy-success-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.dummy-success-hint {
    font-size: 11px;
    color: #999;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.dummy-success-btn {
    background: #E8501E;
    border: none;
    border-radius: 20px;
    padding: 11px 28px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.dummy-success-btn:hover {
    background: #FF5622;
}

/* ── TAB SWITCHER ── */
.dummy-tab-switcher {
    display: flex;
    margin: 8px 18px 10px;
    border: 1.5px solid #455240;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.dummy-tab {
    flex: 1;
    padding: 9px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: #fff;
}

.dummy-tab-active {
    background: #455240;
    color: #fff;
}

/* ── LIST CARDS ── */
.dummy-list-scroll {
    flex: 1;
    padding: 4px 18px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dummy-list-scroll::-webkit-scrollbar {
    display: none;
}

.dummy-date-label {
    font-size: 11px;
    color: #888;
    margin: 8px 0 4px;
    font-family: 'Inter', sans-serif;
}

.dummy-list-card {
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 8px 10px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dummy-list-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dummy-list-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.dummy-list-row svg {
    flex-shrink: 0;
}

.dummy-list-row span {
    font-size: 12px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── DETAIL SCREEN ── */
.dummy-detail-scroll {
    flex: 1;
    padding: 12px 18px;
    overflow-y: auto;
}

.dummy-detail-section {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.dummy-detail-accent {
    width: 3px;
    background: #FF5622;
    border-radius: 2px;
    flex-shrink: 0;
}

.dummy-detail-body {
    flex: 1;
}

.dummy-detail-label {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    font-family: 'Inter', sans-serif;
}

.dummy-detail-value {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.dummy-detail-meta {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
}

.dummy-status-badge {
    font-size: 13px;
    font-weight: 600;
    color: #e6a817;
    font-family: 'Inter', sans-serif;
}

/* ── ORDER CARDS ── */
.dummy-order-card {
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.dummy-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e0e0e0;
}

.dummy-order-nr {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.dummy-order-status {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.dummy-status-pending {
    background: #fff3cd;
    color: #856404;
}

.dummy-status-transit {
    background: #d4edda;
    color: #155724;
}

/* ── Clickable card cursor ── */
.app-card {
    cursor: pointer;
}

/* ── Tab active colors via currentColor ── */
.app-tab-active {
    color: #FF5622;
}

.app-tab:not(.app-tab-active) {
    color: #455240;
}

/* ══════════════════════════════════════════════════════════════════
   6-SCHRITTE WORKFLOW SEKTION
   ══════════════════════════════════════════════════════════════════ */
.workflow-section {
    background: #f5f5f0;
    padding: 80px 0;
}

.workflow-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 680px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.workflow-step {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e4d8;
}

.workflow-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(69, 82, 64, 0.12);
}

.workflow-step-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #455240, #6b7d63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.workflow-step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #f5f5f0;
    transition: background 0.3s ease;
}

.workflow-step:hover .workflow-step-icon {
    background: #e8e4d8;
}

.workflow-step-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.workflow-badge-plattform {
    background: rgba(69, 82, 64, 0.1);
    color: #455240;
}

.workflow-badge-app {
    background: rgba(255, 86, 34, 0.1);
    color: #FF5622;
}

.workflow-badge-matching {
    background: rgba(200, 160, 40, 0.12);
    color: #8a6d14;
}

.workflow-step h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workflow-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Animation delays */
.workflow-step.delay-6 {
    transition-delay: 0.5s;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .workflow-section {
        padding: 60px 0;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }

    .workflow-step {
        padding: 24px 20px;
    }

    .workflow-step-number {
        font-size: 32px;
    }

    .workflow-subtitle {
        font-size: 16px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   HYBRIDE LÖSUNG: PLATTFORM & APP
   ══════════════════════════════════════════════════════════════════ */
.hybrid-section {
    background: #f5f5f0;
    padding: 80px 0;
}

.hybrid-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.hybrid-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 48px;
}

.hybrid-device {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hybrid-device-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.hybrid-platform .hybrid-device-label {
    color: #455240;
}

.hybrid-app .hybrid-device-label {
    color: #FF5622;
}

/* ── Monitor Mockup ── */
.hybrid-monitor {
    width: 100%;
    max-width: 420px;
}

.hybrid-monitor-screen {
    background: #fff;
    border: 2px solid #333;
    border-radius: 12px 12px 2px 2px;
    overflow: hidden;
}

.hybrid-monitor-topbar {
    background: #e8e8e8;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #d0d0d0;
}

.hybrid-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.hybrid-dots span:nth-child(1) {
    background: #ff5f57;
}

.hybrid-dots span:nth-child(2) {
    background: #febc2e;
}

.hybrid-dots span:nth-child(3) {
    background: #28c840;
}

.hybrid-url {
    font-size: 10px;
    color: #888;
    background: #fff;
    padding: 2px 12px;
    border-radius: 4px;
    flex: 1;
    text-align: center;
}

.hybrid-monitor-content {
    display: flex;
    min-height: 180px;
}

.hybrid-sidebar {
    width: 90px;
    background: #455240;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}

.hybrid-sidebar-item {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 10px;
    font-family: 'Inter', sans-serif;
    cursor: default;
}

.hybrid-sidebar-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 700;
}

.hybrid-main {
    flex: 1;
    padding: 12px;
    background: #f8f8f6;
}

.hybrid-kpi-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.hybrid-kpi {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    border: 1px solid #e8e4d8;
}

.hybrid-kpi-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #455240;
    font-family: 'Inter', sans-serif;
}

.hybrid-kpi-label {
    font-size: 8px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hybrid-chart-placeholder {
    height: 70px;
    background: linear-gradient(135deg, rgba(69, 82, 64, 0.08), rgba(69, 82, 64, 0.03));
    border-radius: 8px;
    border: 1px dashed #d0d0d0;
}

/* ── Sidebar Logo ── */
.hybrid-sidebar-logo {
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    padding: 8px 10px 10px;
    line-height: 1;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 4px;
}

.hybrid-sidebar-logo small {
    font-size: 7px;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* ── Welcome Header ── */
.hybrid-welcome {
    font-size: 9px;
    font-weight: 700;
    color: #333;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e8e4d8;
    font-family: 'Inter', sans-serif;
}

.hybrid-badge-admin {
    font-size: 7px;
    background: #455240;
    color: #fff;
    padding: 1px 6px;
    border-radius: 8px;
    margin-left: 4px;
    font-weight: 600;
}

/* ── KPI Farben ── */
.hybrid-kpi-blue {
    border-top: 3px solid #3b82f6;
}

.hybrid-kpi-red {
    border-top: 3px solid #ef4444;
}

.hybrid-kpi-green {
    border-top: 3px solid #22c55e;
}

.hybrid-kpi-purple {
    border-top: 3px solid #8b5cf6;
}

/* ── Zentrale Steuerung ── */
.hybrid-section-label {
    font-size: 7px;
    font-weight: 800;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 8px 0 6px;
    font-family: 'Inter', sans-serif;
}

.hybrid-cards-row {
    display: flex;
    gap: 4px;
}

.hybrid-mini-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e8e4d8;
    border-radius: 6px;
    padding: 6px 4px;
    text-align: center;
    font-size: 7px;
    font-weight: 600;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.hybrid-monitor-stand {
    width: 40px;
    height: 24px;
    background: #666;
    margin: 0 auto;
    border-radius: 0 0 2px 2px;
}

.hybrid-monitor-base {
    width: 100px;
    height: 6px;
    background: #555;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}

/* ── Verbindungspfeile ── */
.hybrid-connections {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    padding: 20px 0;
}

.hybrid-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hybrid-arrow-line {
    width: 60px;
    height: 3px;
    border-radius: 2px;
    position: relative;
}

.hybrid-arrow-right {
    background: linear-gradient(to right, #455240, #FF5622);
}

.hybrid-arrow-right::after {
    content: '›';
    position: absolute;
    right: -8px;
    top: -8px;
    font-size: 16px;
    color: #FF5622;
    font-weight: 900;
}

.hybrid-arrow-left {
    background: linear-gradient(to left, #455240, #FF5622);
}

.hybrid-arrow-left::before {
    content: '‹';
    position: absolute;
    left: -8px;
    top: -8px;
    font-size: 16px;
    color: #FF5622;
    font-weight: 900;
}

.hybrid-arrow-both {
    background: linear-gradient(to right, #FF5622, #455240, #FF5622);
}

.hybrid-arrow-label {
    font-size: 11px;
    font-weight: 700;
    color: #455240;
    background: rgba(69, 82, 64, 0.08);
    padding: 3px 12px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hybrid-arrow-label-match {
    background: rgba(255, 86, 34, 0.1);
    color: #FF5622;
}

/* ── Smartphone Mockup ── */
.hybrid-phone {
    width: 180px;
    background: #1a1a1a;
    border-radius: 28px;
    padding: 8px;
    position: relative;
}

.hybrid-phone-notch {
    width: 70px;
    height: 16px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    top: -1px;
}

.hybrid-phone-screen {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -12px;
}

.hybrid-phone-header {
    background: #455240;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 20px 0 10px;
    font-family: 'Inter', sans-serif;
}

.hybrid-phone-card {
    margin: 8px 10px;
    padding: 12px;
    border: 1px solid #e8e4d8;
    border-radius: 10px;
    background: #f8f8f6;
}

.hybrid-phone-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.hybrid-phone-card-sub {
    font-size: 9px;
    color: #888;
    margin-top: 2px;
}

.hybrid-phone-tabbar {
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    border-top: 1px solid #e8e4d8;
    margin-top: 8px;
}

.hybrid-phone-tabbar span {
    font-size: 9px;
    color: #999;
    font-family: 'Inter', sans-serif;
}

.hybrid-tab-active {
    color: #FF5622 !important;
    font-weight: 700;
}

/* ── Features Liste ── */
.hybrid-features {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hybrid-feature {
    font-size: 13px;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.hybrid-platform .hybrid-feature {
    color: #455240;
}

.hybrid-app .hybrid-feature {
    color: #c44a1a;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hybrid-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hybrid-connections {
        flex-direction: row;
        gap: 16px;
    }

    .hybrid-arrow {
        flex-direction: row;
    }

    .hybrid-arrow-line {
        width: 3px;
        height: 40px;
    }

    .hybrid-arrow-right {
        background: linear-gradient(to bottom, #455240, #FF5622);
    }

    .hybrid-arrow-right::after {
        right: -6px;
        top: auto;
        bottom: -6px;
        content: '›';
        transform: rotate(90deg);
    }

    .hybrid-arrow-left {
        background: linear-gradient(to top, #455240, #FF5622);
    }

    .hybrid-arrow-left::before {
        left: -6px;
        top: auto;
        bottom: -6px;
        content: '‹';
        transform: rotate(90deg);
    }
}

/* ══════════════════════════════════════════════════════════════════
   IMPACT / VORTEILE
   ══════════════════════════════════════════════════════════════════ */
.impact-section {
    background: #fff;
    padding: 80px 0;
}

.impact-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 680px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.impact-card {
    background: #f8f8f6;
    border: 1px solid #e8e4d8;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.impact-icon {
    width: 56px;
    height: 56px;
    background: rgba(69, 82, 64, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.impact-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.impact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════════
   PARTNER & FÖRDERUNG
   ══════════════════════════════════════════════════════════════════ */
.partner-section {
    background: #f5f5f0;
    padding: 80px 0;
}

.partner-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 640px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.partner-card {
    background: #fff;
    border: 1px solid #e8e4d8;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.partner-logo-area {
    width: 72px;
    height: 72px;
    background: rgba(69, 82, 64, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.partner-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.partner-type {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #455240;
    background: rgba(69, 82, 64, 0.08);
    padding: 3px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.partner-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════ */
/* PROBLEM / LÖSUNG SEKTION                                */
/* ═══════════════════════════════════════════════════════ */
.pl-section {
    background: #fff;
    padding: 100px 0;
}

.pl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pl-col {
    display: flex;
    flex-direction: column;
}

.pl-col-header {
    margin-bottom: 28px;
}

.pl-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.pl-badge-problem {
    background: rgba(255, 86, 34, 0.08);
    color: #FF5622;
    border-left: 3px solid #FF5622;
}

.pl-badge-solution {
    background: rgba(69, 82, 64, 0.08);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.pl-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.pl-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
}

.pl-card:hover {
    transform: translateY(-2px);
}

.pl-card-problem {
    background: #fff8f5;
    border: 1px solid rgba(255, 86, 34, 0.08);
}

.pl-card-problem:hover {
    box-shadow: 0 6px 24px rgba(255, 86, 34, 0.08);
}

.pl-card-solution {
    background: #f6f8f5;
    border: 1px solid rgba(69, 82, 64, 0.08);
}

.pl-card-solution:hover {
    box-shadow: 0 6px 24px rgba(69, 82, 64, 0.08);
}

.pl-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pl-icon-problem {
    background: rgba(255, 86, 34, 0.1);
    color: #FF5622;
}

.pl-icon-solution {
    background: rgba(69, 82, 64, 0.1);
    color: var(--primary-color);
}

.pl-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 6px;
    line-height: 1.3;
}

.pl-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pl-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pl-section {
        padding: 60px 0;
    }
}
/* Platform Components (Web & App) */
.platform-components {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.platform-component {
    background: rgba(69, 82, 64, 0.04);
    border-left: 3px solid var(--primary-color);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
}

.platform-component h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.platform-component p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.platform-subheading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 28px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}


/* ═══ Abwechselnde Sektions-Hintergründe  */
#problem-loesung {
    background-color: #ffffff;
}
#plattform {
    background-color: #f5f5f2;
}
#erklaervideo {
    background-color: #ffffff;
}
#partner {
    background-color: #f5f5f2;
}
#team {
    background-color: #ffffff;
}
#contact {
    background-color: #455240 !important;
    color: #ffffff;
}

/* ═══ Sektionen auf Viewport-Höhe  */
#problem-loesung,
#plattform,
#erklaervideo,
#partner {

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#problem-loesung > .container,
#plattform > .container,
#erklaervideo > .container,
#partner > .container {

    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ═══ Scroll-Offset für fixen Header  */
section[id] {
    scroll-margin-top: 80px;
}


/* ════════════════════ */
/* MOBILE RESPONSIVE  nur fuer Bildschirme <= 768px             */
/* Desktop-Darstellung bleibt komplett unveraendert!              */
/* ══════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Hamburger-Menu Button sichtbar machen ── */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }
    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: 0.3s ease;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /*  Navigation verstecken & als Overlay  */
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 20px;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .nav.mobile-open {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .nav-list li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-list a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }

    /*  Header Actions (Login/CTA)  */
    .header-actions {
        display: none;
    }
    .nav.mobile-open + .header-actions,
    .header-container .header-actions {
        /* Wird im Hamburger-Menu angezeigt */
    }

    /*  Header kompakter  */
    .header-container {
        height: 60px;
    }
    .logo img {
        height: 38px !important;
    }

    /*  Container Padding  */
    .container {
        padding: 0 16px;
    }

    /*  HERO  */
    .hero {
        min-height: 80vh;
    }
    .hero h1 {
        font-size: 2rem;
        line-height: 1.15;
    }
    .hero-sub {
        font-size: 0.95rem;
    }
    .btn-hero-primary {
        font-size: 0.8rem;
        padding: 14px 24px;
    }

    /*  Sektionen: kein 100vh auf Mobile  */
    #problem-loesung,
    #plattform,
    #erklaervideo,
    #partner {
        min-height: auto !important;
    }
    section[id] {
        scroll-margin-top: 65px;
    }

    /*  PROBLEM / LOESUNG  */
    .pl-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .pl-col {
        min-height: auto;
    }

    /*  PLATTFORM (So funktioniert es)  */
    .platform-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px;
    }
    .platform-text {
        order: 1 !important;
    }
    .platform-mockup {
        order: 2 !important;
    }
    .phone-frame {
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
        transform: scale(0.65) !important;
        transform-origin: center top;
        margin-bottom: -120px;
        margin-top: -40px;
    }
    .phone-frame:hover {
        transform: scale(0.65) translateY(-10px) !important;
    }
    .phone-screen {
        height: 540px;
    }
    .platform-intro {
        font-size: 0.95rem;
    }
    .section {
        padding: 60px 0;
    }

    /*  ERKLAERVIDEO  */
    #video .section-header h2 {
        font-size: 1.6rem;
    }

    /*  PARTNER / NETZWERK  */
    .partner-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .partner-card {
        padding: 24px 20px;
    }

    /*  TEAM  */
    .team-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    .team-member {
        max-width: 280px !important;
        min-width: 280px !important;
        flex: none !important;
        width: 280px !important;
    }

    /*  FOOTER  */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .footer {
        padding: 40px 0 20px;
    }
    .footer-bottom {
        text-align: center;
    }

    /*  Section Headers  */
    .section-header h2 {
        font-size: 1.8rem;
    }
    .section-header p {
        font-size: 0.9rem;
    }

    /*  Touch-freundliche Buttons  */
    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
}

/*  Tablet Breakpoint  */
@media (min-width: 769px) and (max-width: 1024px) {
    .pl-grid {
        gap: 20px;
    }
    .partner-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .hero h1 {
        font-size: 3rem;
    }
}