﻿#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navigation {
    padding: 20px 0;
    transition: all 0.3s ease;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.logo-dark {
    display: none;
}

.logo-light {
    display: inline-flex;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 24px;
    border: 1.5px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    font-size: 19px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: transparent;
    font-weight: 400;
}

#header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

#header.scrolled .logo-light {
    display: none;
}

#header.scrolled .logo-dark {
    display: inline-flex;
}

#header.scrolled .nav-menu a {
    color: #000000;
}

#header.scrolled .nav-btn {
    color: #000000;
    border-color: #000000;
    background: transparent;
}

.nav-menu a:hover,
#header.scrolled .nav-menu a:hover {
    opacity: 0.7;
}

.nav-btn:hover,
#header.scrolled .nav-btn:hover {
    opacity: 0.8;
}

.mobile-menu-overlay {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: 0.3s;
}

#header.scrolled .menu-toggle span {
    background-color: #000000;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #424242;
        z-index: 10000;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 30px;
        flex-direction: column;
        color: #fff;
    }

    .mobile-menu-overlay.open {
        right: 0;
    }

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

    .drawer-logo {
        width: 30%;
    }

    .menu-close {
        background: none;
        border: none;
        color: #fff;
        font-size: 40px;
        cursor: pointer;
    }

    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-links li {
        margin-bottom: 25px;
    }

    .mobile-nav-links a {
        color: #fff;
        text-decoration: none;
        font-size: 22px;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
    }

    .drawer-footer {
        margin-top: auto;
    }

    .nav-divider {
        border: 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        margin-bottom: 30px;
    }

    .legal-links {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .legal-links a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 18px;
        line-height: 2;
        font-family: 'Inter';
        font-weight: 300;
    }

    .follow-text {
        font-family: 'Poppins';
        font-size: 14px;
        color: #FFFFFF;
        display: block;
        font-weight: 300;
        margin-bottom: 15px;
    }

    .social-icons {
        display: flex;
        gap: 20px;
        font-size: 20px;
    }
}

.intro {
    position: relative;
}

.intro .imgvid {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
/*
.intro .imgvid > img,
.intro .imgvid > video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
*/

/* Bilder bleiben wie gehabt */
.intro .imgvid > img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

/* Video.js Wrapper auf volle Höhe zwingen */
.intro .imgvid .video-js.hero-main-asset {
    width: 100% !important;
    height: 100vh !important;
    padding-top: 0 !important; /* überschreibt vjs-fluid Aspect-Ratio */
    display: block;
}

/* Das echte <video>-Element darin füllt komplett */
.intro .imgvid .video-js.hero-main-asset .vjs-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.intro .imgvid .video-js.hero-main-asset .vjs-control-bar,
.intro .imgvid .video-js.hero-main-asset .vjs-big-play-button,
.intro .imgvid .video-js.hero-main-asset .vjs-loading-spinner {
    display: none !important;
}

.intro .imgvid .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.intro .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    z-index: 3;
}

.intro .content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 120px;
    line-height: 1.05;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.intro .content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    color: #fff;
    font-weight: 600;
}

.intro .content p {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    line-height: 62px;
    color: #fff;
    margin-top: 20px;
    font-weight: 400;
}

.intro .hero-badge-left {
    position: absolute;
    left: 40px;
    bottom: 25px;
    z-index: 4;
}

.intro .hero-badge-left img {
    width: 80%;
    height: auto;
    display: block;
}

.intro .hero-figure-right {
    position: absolute;
    right: -90px;
    bottom: 0;
    z-index: 4;
}

.intro .hero-figure-right img {
    width: 80%;
    height: auto;
    display: block;
}
.intro .hero-figure-right .speech-bubble {
    position: absolute;
    top: -10px;
    left: -50px;

    background: #fff;
    color: #333;
    padding: 12px 16px;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    max-width: 160px;
}
.intro .hero-figure-right .speech-bubble::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 10px;

    width: 12px;
    height: 12px;
    background: #fff;

    clip-path: polygon(0 0, 0 100%, 100% 100%);
}


.intro .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    border-radius: 50%;
    z-index: 4;
}

.intro .scroll-down span {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translateX(-50%) rotate(45deg);
}

.patent-section {
    padding: 140px 0 120px;
    text-align: center;
}

.patent-section .subheadline {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #A2BA47;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.patent-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.patent-section p {
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 31px;
    line-height: 55px;
    font-weight: 300;
    color: #707070;
}

.patent-icons {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.patent-icons .icon-item img {
    width: 70%;
    object-fit: contain;
}

.behind-scenes {
    position: relative;
    background: #f3f3f1;
    padding: 110px 0 0;
    overflow: hidden;
}

.behind-scenes .container {
    position: relative;
    max-width: 1320px;
}

.behind-scenes .frame {
    position: absolute;
    left: calc((100vw - 1320px) / -2 + 60px);
    top: -20px;
    transform: translateX(-20px);
    width: 750px;
    height: 90%;
    border: 3px solid #A2BA47;
    z-index: 1;
}

.behind-scenes .content-wrap {
    position: relative;
    z-index: 2;
}

.behind-scenes .content-wrap > div:first-child {
    padding-left: 0;
    padding-right: 20px;
}

.behind-scenes .content-wrap > div:last-child {
    padding-left: 40px;
}

.behind-scenes .video-box {
    position: relative;
    left: calc((100vw - 1320px) / -2);
    width: 950px;
    max-width: 100%;
}

.behind-scenes .video-box .video-js {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    background: #000;
}

.behind-scenes .text-box {
    max-width: 430px;
}

.behind-scenes .text-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    line-height: 62px;
    font-weight: 600;
    color: #A2BA47;
    margin-bottom: 24px;
}

.behind-scenes .text-box p {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    line-height: 49px;
    font-weight: 400;
    color: #1d1d1b;
    margin-bottom: 0;
}

.behind-scenes .bottom-bar {
    width: 100%;
    height: 34px;
    background: #A2BA47;
    margin-top: 70px;
}

.behind-scenes .video-js .vjs-big-play-button {
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    border: none;
    background: #A2BA47;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.behind-scenes .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
    font-size: 30px;
    line-height: 64px;
}

.why-wmm {
    background-color: #A2BA47;
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    min-height: 600px;
}

.why-wmm .container {
    position: relative;
    min-height: inherit;
}

.why-intro {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    padding-bottom: 300px;
}

.why-intro h2 {
    font-family: 'Poppins';
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-intro p {
    font-family: 'Inter';
    font-size: 31px;
    line-height: 55px;
}

.why-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 19px;
    width: fit-content;
}

.why-btn:hover {
    background-color: #ffffff;
    color: #A2BA47;
}

.why-figure {
    position: absolute;
    bottom: -80px;
    left: 15px;
    width: 400px;
    z-index: 5;
    pointer-events: none;
}

.why-figure .speech-bubble {
    position: absolute;
    right: -60px;
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.why-figure .speech-bubble::before {
    content: "";
    position: absolute;
    left: -12px;     /* statt right */
    bottom: 8px;

    width: 14px;
    height: 14px;
    background: #fff;

    /* Dreieck spiegeln */
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.why-figure img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.why-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(255, 255, 255, 0.5);
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-active-color: #ffffff;
    --bs-accordion-active-bg: transparent;
}

.accordion-button:not(.collapsed) {
    color: #ffffff!important;
    border-bottom: 1px solid #ffffff;
}

.why-accordion .accordion-button {
    font-family: 'Inter';
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
}

.why-accordion p, .why-accordion a {
    font-family: 'Inter';
    font-size: 19px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}

.accordion-item {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 20px 25px;
    background-color: transparent !important;
    box-shadow: none !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 25px 25px 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.projects {
    padding: 100px 0;
}

.projects .header-block {
    margin-bottom: 70px;
}

.projects .header-block h2,
.projects .header-block h1 {
    font-family: 'Poppins';
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    line-height: 95px;
}

.projects .header-block p {
    font-family: 'Inter';
    font-size: 31px;
    color: #707070;
    margin-top: 20px;
    font-weight: 300;
}

.row.project-grid {
    row-gap: 60px;
    --bs-gutter-x: 120px !important;
}

.project-item {
    padding: 0 40px;
}

.project-item .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.project-item h3 {
    font-family: 'Inter';
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
    margin-top: 20px;
}

.project-item .project-content {
    font-family: 'Inter';
    font-size: 19px;
    line-height: 32px;
    color: #000;
}

.divider {
    background-color: #A2BA47;
    padding: 80px 0;
    color: #ffffff;
}

.divider .divider-title {
    font-family: 'Poppins';
    font-size: 70px;
    font-weight: 600;
    margin: 0;
}

.divider .divider-content p {
    font-family: 'Inter';
    font-size: 31px;
    line-height: 55px;
    margin-bottom: 25px;
    font-weight: 300;
}

.divider-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1.5px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 19px;
}

.divider-btn:hover {
    background-color: #ffffff;
    text-decoration: none;
    color: #A2BA47;
}

.slider {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.slider-item {
    outline: none;
    transition: all 0.5s ease;
}

.slider-item .image-box {
    padding: 0 10px;
}

.slider-item img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-caption {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    margin-top: 40px;
}

.slider-caption p {
    font-family: 'Inter';
    color: #707070;
    font-weight: 300;
    font-size: 31px;
    line-height: 55px;
}

.slick-center .slider-caption {
    opacity: 1;
    transform: translateY(0);
}

.slick-prev, .slick-next {
    width: 60px;
    height: 60px;
    z-index: 10;
}

.slick-prev { left: 5%; }
.slick-next { right: 5%; }

.slick-prev:before, .slick-next:before {
    font-size: 50px;
    color: #fff;
    opacity: 0.9;
}

.contact {
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.contact-header .subline {
    display: block;
    margin-bottom: 18px;
    color: #a2ba47;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    line-height: 1.15;
    font-weight: 600;
    color: #000;
    margin-bottom: 48px;
}

.contact-wrapper {
    position: relative;
    min-height: 520px;
}

.manual-form {
    position: relative;
    z-index: 2;
}

.field-wrap {
    position: relative;
}

.contact-input {
    width: 100%;
    background: #f3f3f3 !important;
    border: none !important;
    border-bottom: 1.5px solid #a2ba47 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 10px 14px !important;
    height: 54px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.contact-input:focus {
    background: #f3f3f3;
    border-color: #a2ba47;
    box-shadow: none;
}

.contact-textarea {
    height: 150px;
    resize: none;
    padding-top: 14px !important;
}

.field-label {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.field-label small {
    font-size: 11px;
    color: #777;
}

.form-footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-top: 8px;
}

.privacy-check {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
}

.privacy-check .form-check-input {
    margin-top: 3px;
    border-radius: 0;
    border-color: #a2ba47;
}

.privacy-check .form-check-input:checked {
    background-color: #a2ba47;
    border-color: #a2ba47;
}

.privacy-check label {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
    color: #444;
    font-family: 'Inter', sans-serif;
}

.privacy-check a {
    color: #a2ba47;
    text-decoration: underline;
}

.submit-container {
    flex-shrink: 0;
}

.submit-btn {
    background: transparent;
    border: 1px solid #8f8f8f;
    border-radius: 999px;
    padding: 12px 28px;
    min-width: 180px;
    color: #777;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #a2ba47;
    border-color: #a2ba47;
    color: #fff;
}

.recaptcha-placeholder {
    margin-top: 18px;
}

.fake-recaptcha {
    width: 125px;
    height: 34px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    font-size: 10px;
    color: #555;
    font-family: Arial, sans-serif;
}

.fake-recaptcha input {
    margin: 0;
}

.contact-wrapper {
    position: relative;
}
.contact {
    position: relative;
}

.contact-figure {
    position: absolute;
    right: 0;          
    bottom: 0;

    width: 220px;
    z-index: 10;
    pointer-events: none;
}

.contact-figure .bubble {
    position: absolute;
    top: -8px;
    left: -55px;
    background: #A2BA47;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    padding: 12px 14px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

/* 🔥 Schwanz exakt an DIESE Bubble hängen */
.contact-figure .bubble::after {
    content: "";
    position: absolute;
    right: -14px;      /* etwas feiner als 18px */
    bottom: 6px;       /* leicht nach oben für schöneren Look */
    width: 14px;
    height: 14px;
    background: #A2BA47;

    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.contact-footer {
    margin-top: 65px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.contact-footer a {
    color: #a2ba47;
    text-decoration: underline;
}

@media (max-width: 1399.98px) {
    .contact-header h2 {
        font-size: 56px;
    }

    .contact-figure {

        width: 150px;
    }
}

@media (max-width: 991.98px) {
    .contact {
        padding: 70px 0 90px;
    }

    .contact-header h2 {
        font-size: 42px;
        margin-bottom: 35px;
    }

    .form-footer-row {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-container {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .contact-header .subline {
        font-size: 14px;
    }

    .contact-header h2 {
        font-size: 34px;
    }

    .contact-input {
        height: 50px;
    }

    .contact-textarea {
        height: 120px;
    }
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-thin.woff') format('woff');
    font-weight: 100;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-extralight.woff') format('woff');
    font-weight: 200;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-light.woff') format('woff');
    font-weight: 300;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-semibold.woff') format('woff');
    font-weight: 600;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-bold.woff') format('woff');
    font-weight: 700;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-extrabold.woff') format('woff');
    font-weight: 800;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-black.woff') format('woff');
    font-weight: 900;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-light.woff') format('woff');
    font-weight: 300;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-semibold.woff') format('woff');
    font-weight: 600;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-bold.woff') format('woff');
    font-weight: 700;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-black.woff') format('woff');
    font-weight: 900;
}

@media (min-width: 1320px) and (max-width: 1500px) {
    h1 {
        font-size: 80px !important;
        line-height: 88px !important;
    }
    .intro .content p {
        font-size: 22px !important;
        line-height: 32px !important;
    }
    h2 {
        font-size: 40px !important;
        line-height: 55px !important;
    }

    .patent-icons .icon-item img {
        width: 50%;
    }
}

@media (min-width: 992px) and (max-width: 1319.98px) {
    h1 {
        font-size: 70px !important;
        line-height: 88px !important;
    }

    .intro .hero-figure-right img {
        width: 60%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    h1 {
        font-size: 55px !important;
        line-height: 60px !important;
    }
    h2, .accordion-button {
        font-size: 38px !important;
        line-height: 46px !important;
    }
    h3 {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    p {
        font-size: 22px !important;
        line-height: 32px !important;
    }
    a {
        font-size: 20px !important;
    }
}

@media (max-width: 758.99px) {
    h1 {
        font-size: 40px!important;
        line-height: 44px!important;
    }
    h2, .accordion-button {
        font-size: 25px!important;
        line-height: 38px!important;
    }
    h3 {
        font-size: 22px!important;
        line-height: 32px!important;
    }
    p {
        font-size: 18px!important;
        line-height: 25px!important;
    }
    a {
        font-size: 18px!important;
    }

    label a {
        font-size: 13px!important;
    }
}


@media (min-width: 1320px) and (max-width: 1500px) {
    h1 { font-size: 80px !important; line-height: 1.1 !important; }
    .intro .content p { font-size: 28px !important; line-height: 1.4 !important; }
    h2 { font-size: 50px !important; line-height: 1.2 !important; }

    .patent-icons .icon-item img { width: 60%; }
}

@media (max-width: 1199px) {
    .behind-scenes .frame {
        display: none; /* Der grüne Rahmen stört auf kleineren Screens oft das Layout */
    }
    .behind-scenes .video-box {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {
    /* Header & Navigation */
    .navigation { padding: 15px 0; }
    .logo img { height: 32px; }

    /* Intro / Hero */
    .intro .imgvid, .intro .imgvid > img, .intro .imgvid > video { height: 70vh; min-height: 500px; }
    .intro .content { width: 95%; }
    .intro .content h1 { font-size: 50px !important; line-height: 1.1 !important; }
    .intro .content h2 { font-size: 32px !important; }
    .intro .content p { font-size: 20px !important; line-height: 1.4 !important; }
    .intro .hero-badge-left, .intro .hero-figure-right { display: none; } /* Platzmangel */

    /* Sektionen Allgemein */
    .patent-section, .projects, .contact, .behind-scenes { padding: 60px 0; }
    h2 { font-size: 36px !important; line-height: 1.2 !important; }
    p { font-size: 18px !important; line-height: 1.6 !important; }

    /* Patent Icons */
    .patent-icons { gap: 30px; flex-wrap: wrap; }
    .patent-icons .icon-item img { width: 80px; }

    /* Behind Scenes Umbau auf Stack */
    .behind-scenes .content-wrap { flex-direction: column; }
    .behind-scenes .content-wrap > div:last-child { padding-left: 0; margin-top: 30px; }
    .behind-scenes .text-box { max-width: 100%;
    padding: 10px}

    /* Why WMM */
    .why-intro { padding-bottom: 50px; min-height: auto; }
    .why-figure { display: none; }
    .why-intro h2 { font-size: 36px !important; }
    .why-intro p { font-size: 20px !important; line-height: 1.4 !important; }
    .why-accordion .accordion-button { font-size: 20px !important; }
}

@media (max-width: 767.98px) {
    /* Intro */
    .intro .content h1 { font-size: 36px !important; }
    .intro .content h2 { font-size: 24px !important; }
    .intro .content p { font-size: 17px !important; }

    /* Sektionen */
    .patent-section h2, .projects .header-block h2, .contact-header h2, .divider .divider-title {
        font-size: 28px !important;
    }
    .patent-section p, .projects .header-block p, .divider .divider-content p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    /* Projekte Grid */
    .project-item { padding: 0 10px; }

    .project-item h3 { font-size: 22px !important; }

    /* Kontakt Formular */
    .form-footer-row { flex-direction: column; align-items: stretch; }
    .submit-btn { width: 100%; margin-top: 15px; }
    .contact-figure { display: none; }
}

@media (max-width: 480px) {
    .intro .content h1 { font-size: 32px !important; }
    .navigation { padding: 10px 0; }
    .container { padding: 0 15px; }
    .why-btn, .divider-btn { width: 100%; text-align: center; }
}
@media (max-width: 767px) {
    .intro .content {
        width: 90% !important;
        padding: 0 15px;
    }

    .hero-main-asset {
        height: 80vh !important;
        object-fit: cover;
    }
}
@media (max-width: 1399.98px) {
    .behind-scenes .frame {
        left: -40px;
        width: 640px;
        height: 88%;
        transform: none;
    }

    .behind-scenes .video-box {
        left: -40px;
        width: 820px;
    }

    .behind-scenes .text-box h2 {
        font-size: 42px;
        line-height: 1.2;
    }

    .behind-scenes .text-box p {
        font-size: 24px;
        line-height: 1.7;
    }
}
@media (max-width: 1199.98px) {
    .behind-scenes {
        padding: 90px 0 0;
    }

    .behind-scenes .frame {
        left: -20px;
        width: 56%;
        height: 82%;
        top: 0;
    }

    .behind-scenes .content-wrap > div:first-child {
        padding-right: 20px;
    }

    .behind-scenes .content-wrap > div:last-child {
        padding-left: 20px;
    }

    .behind-scenes .video-box {
        left: -20px;
        width: 100%;
        max-width: 720px;
    }

    .behind-scenes .text-box {
        max-width: 100%;
    }

    .behind-scenes .text-box h2 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .behind-scenes .text-box p {
        font-size: 22px;
        line-height: 1.6;
    }

    .behind-scenes .bottom-bar {
        height: 26px;
        margin-top: 50px;
    }
}

/* ---------- MD / Tablet ---------- */
@media (max-width: 991.98px) {
    .behind-scenes {
        padding: 70px 0 0;
    }

    .behind-scenes .frame {
        display: none;
    }

    .behind-scenes .content-wrap {
        row-gap: 40px;
    }

    .behind-scenes .content-wrap > div:first-child,
    .behind-scenes .content-wrap > div:last-child {
        padding-left: 12px;
        padding-right: 12px;
    }

    .behind-scenes .video-box {
        left: 0;
        width: 100%;
        max-width: 100%;
    }

    .behind-scenes .text-box {
        max-width: 100%;
        text-align: left;
    }

    .behind-scenes .text-box h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .behind-scenes .text-box p {
        font-size: 20px;
        line-height: 1.6;
    }

    .behind-scenes .bottom-bar {
        height: 20px;
        margin-top: 40px;
    }

    .behind-scenes .video-js .vjs-big-play-button {
        width: 58px;
        height: 58px;
        line-height: 58px;
    }

    .behind-scenes .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
        font-size: 26px;
        line-height: 58px;
    }
}

/* ---------- SM / Mobile ---------- */
@media (max-width: 767.98px) {
    .behind-scenes {
        padding: 55px 0 0;
    }

    .behind-scenes .content-wrap {
        row-gap: 30px;
    }

    .behind-scenes .text-box h2 {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .behind-scenes .text-box p {
        font-size: 17px;
        line-height: 1.55;
    }

    .behind-scenes .bottom-bar {
        height: 16px;
        margin-top: 32px;
    }

    .behind-scenes .video-js .vjs-big-play-button {
        width: 52px;
        height: 52px;
        line-height: 52px;
    }

    .behind-scenes .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
        font-size: 22px;
        line-height: 52px;
    }
}

/* ---------- XS / kleine Handys ---------- */
@media (max-width: 575.98px) {
    .behind-scenes .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .behind-scenes .content-wrap > div:first-child,
    .behind-scenes .content-wrap > div:last-child {
        padding-left: 0;
        padding-right: 0;
    }

    .behind-scenes .text-box h2 {
        font-size: 22px;
    }

    .behind-scenes .text-box p {
        font-size: 15px;
        line-height: 1.5;
    }

    .behind-scenes .bottom-bar {
        height: 12px;
        margin-top: 26px;
    }
}

/* ---------- 1400px abwärts ---------- */
@media (max-width: 1399.98px) {
    .intro .content h1 {
        font-size: 96px;
    }

    .intro .content h2 {
        font-size: 56px;
    }

    .intro .content p {
        font-size: 34px;
        line-height: 1.4;
    }

    .intro .hero-badge-left img,
    .intro .hero-figure-right img {
        width: 70%;
    }
}

/* ---------- 1200px abwärts ---------- */
@media (max-width: 1199.98px) {
    .intro .content {
        width: 88%;
    }

    .intro .content h1 {
        font-size: 72px;
        margin-bottom: 14px;
    }

    .intro .content h2 {
        font-size: 42px;
    }

    .intro .content p {
        font-size: 26px;
        line-height: 1.45;
        margin-top: 16px;
    }

    .intro .hero-badge-left {
        left: 24px;
        bottom: 20px;
    }

    .intro .hero-figure-right {
        right: 24px;
    }

    .intro .hero-badge-left img,
    .intro .hero-figure-right img {
        width: 60%;
    }
}

/* ---------- 992px abwärts ---------- */
@media (max-width: 991.98px) {
    .intro .imgvid {
        min-height: 90vh;
    }

    .intro .imgvid > img,
    .intro .imgvid > video {
        height: 90vh;
    }

    .intro .content {
        width: 90%;
        top: 48%;
    }

    .intro .content h1 {
        font-size: 56px;
        line-height: 1.08;
    }

    .intro .content h2 {
        font-size: 32px;
        line-height: 1.15;
    }

    .intro .content p {
        font-size: 20px;
        line-height: 1.5;
        margin-top: 14px;
    }

    .intro .hero-badge-left {
        left: 16px;
        bottom: 18px;
    }

    .intro .hero-figure-right {
        right: 16px;
    }

    .intro .hero-badge-left img,
    .intro .hero-figure-right img {
        width: 50%;
    }

    .intro .scroll-down {
        width: 30px;
        height: 30px;
        bottom: 16px;
    }

    .intro .scroll-down span {
        top: 8px;
        width: 9px;
        height: 9px;
    }
}

/* ---------- 768px abwärts ---------- */
@media (max-width: 767.98px) {
    .intro .imgvid {
        min-height: 82vh;
    }

    .intro .imgvid > img,
    .intro .imgvid > video {
        height: 82vh;
    }

    .intro .content {
        width: 92%;
        padding: 0 12px;
    }

    .intro .content h1 {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .intro .content h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .intro .content p {
        font-size: 16px;
        line-height: 1.5;
        margin-top: 12px;
    }

    .intro .hero-badge-left img,
    .intro .hero-figure-right img {
        width: 40%;
    }

    .intro .scroll-down {
        bottom: 12px;
    }

    /* Video.js Wrapper komplett ausfüllen lassen */
    .intro .imgvid .video-js.hero-main-asset {
        width: 100% !important;
        height: 100vh !important;
        padding-top: 0 !important; /* video.js fluid-Hack überschreiben */
    }
    
    /* Das echte <video>-Element drinnen */
    .intro .imgvid .video-js.hero-main-asset .vjs-tech {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65% center;
    }
}

/* ---------- 576px abwärts ---------- */
@media (max-width: 575.98px) {
    .intro .content {
        width: 94%;
    }

    .intro .content h1 {
        font-size: 32px;
    }

    .intro .content h2 {
        font-size: 20px;
    }

    .intro .content p {
        font-size: 14px;
        line-height: 1.45;
    }

    .intro .hero-badge-left {
        left: 10px;
        bottom: 14px;
    }

    .intro .hero-figure-right {
        right: 10px;
    }

    .intro .hero-badge-left img,
    .intro .hero-figure-right img {
        width: 34%;
    }

    .intro .scroll-down {
        width: 28px;
        height: 28px;
    }

    .intro .scroll-down span {
        top: 7px;
        width: 8px;
        height: 8px;
    }
}
.sm-item img {
    filter: brightness(0) invert(1);

}
.why-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.footer {
    background-color: #494949;
    color: #ffffff;
    font-size: 16px;
}

/* ---------- TYPO ---------- */
.footer .company {
    margin-top: 20px;
    font-family: 'Poppins';
    font-weight: 400;
}

.footer .street {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 300;
}

.footer p a {
    text-decoration: none;
    color: #ffffff;
}

.footer .rights {
    font-family: 'Inter';
    color: #FFFFFF4D;
    font-weight: 400;
}

/* ---------- NEU: Layout Fix ---------- */
.footer .footer-row {
    display: flex;
    align-items: stretch;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-right {
    text-align: right;
}

.footer .socialmedia {
    font-family: 'Poppins';
    font-weight: 500;
}
/* ---------- Social Icons ---------- */
.sm-item {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .companylogo {
    width: 30%;
}

.sm-item li {
    display: flex;
}

.sm-item img {
    filter: brightness(0) invert(1);
    width: 80%;
}

/* ---------- Legal Links (gleich Höhe wie ©) ---------- */
.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    align-items: center;
}

.footer-legal a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
}

/* ---------- Mobile ---------- */
@media (max-width: 767.98px) {
    .footer-left,
    .footer-right {
        text-align: left;
        gap: 30px;
    }

    .footer-right {
        margin-top: 30px;
    }

    .sm-item,
    .footer-legal {
        justify-content: flex-start;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 12px 20px;
    }
}
.footer .rights {
    font-family: 'Inter';
    color: #FFFFFF4D;
    font-weight: 400;
}

.modal-title {
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 24px;
}
.modal-body p {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 16px;
}
.modal-body p  strong{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
}
.modal-body a {
    color: #a2ba47;
    text-decoration: underline;
    cursor: pointer;
}
}

/* Mobile: Caption immer sichtbar (kein centerMode aktiv) */
@media (max-width: 767.98px) {
    .slick-active .slider-caption {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro .scroll-down {
    animation: scrollBounce 1.8s ease-in-out infinite;
}

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

/*Animationen*/
/* === Scroll-Animationen === */

/* Default: Elemente sind unsichtbar und leicht nach unten versetzt */
.patent-section .col-lg-9,
.patent-icons .icon-item,
.behind-scenes .video-box,
.behind-scenes .text-box,
.why-wmm .why-intro,
.why-wmm .why-accordion,
.projects .header-block,
.projects .project-item,
.divider .divider-title,
.divider .divider-content,
.contact-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

/* Sichtbar nach Trigger */
.patent-section .col-lg-9.is-visible,
.patent-icons .icon-item.is-visible,
.behind-scenes .video-box.is-visible,
.behind-scenes .text-box.is-visible,
.why-wmm .why-intro.is-visible,
.why-wmm .why-accordion.is-visible,
.projects .header-block.is-visible,
.projects .project-item.is-visible,
.divider .divider-title.is-visible,
.divider .divider-content.is-visible,
.contact-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger-Delay für Patent-Icons */
.patent-icons .icon-item:nth-child(2) { transition-delay: 0.15s; }
.patent-icons .icon-item:nth-child(3) { transition-delay: 0.3s; }

/* Stagger-Delay für Project-Items */
.projects .project-item:nth-child(2) { transition-delay: 0.15s; }
.projects .project-item:nth-child(3) { transition-delay: 0.3s; }
.projects .project-item:nth-child(4) { transition-delay: 0.45s; }

/* Stagger für rechte Spalten */
.behind-scenes .text-box,
.why-wmm .why-accordion,
.divider .divider-content {
    transition-delay: 0.2s;
}

/* Respektiert OS-Einstellung "Bewegung reduzieren" */
@media (prefers-reduced-motion: reduce) {
    .patent-section .col-lg-9,
    .patent-icons .icon-item,
    .behind-scenes .video-box,
    .behind-scenes .text-box,
    .why-wmm .why-intro,
    .why-wmm .why-accordion,
    .projects .header-block,
    .projects .project-item,
    .divider .divider-title,
    .divider .divider-content,
    .contact-header {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
