/* Hilfsklassen für Textformatierung */
.marzer{
    margin: 0;
}
/*Überschrift Beiträge*/
.text-heading {
    padding: 5px 5px 0px 5px;
    margin: 0;
}
.size-medium {
    font-size: 1.6rem;
}
/*Beiträge*/
.text-text {
    padding: 15px 5px 0 5px;
    margin: 0;
}
.size-small {
    font-size: 1.1rem;
}
.weight-400 {
    font-weight: 400;
}
/*Ausrichtung*/
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
/*Design*/
.text-light {
    color: #F5F9F5;
}
.text-accent {
    color: #aecc24;
}
.text-bright {
    color: #F4FFD1;
}
.text-dark {
    color: #212607;
}
.weight-300 {
    font-weight: 300;
}
.weight-500 {
    font-weight: 500;
}
.weight-600 {
    font-weight: 600;
}
.weight-700 {
    font-weight: 700;
}
.size-big {
    font-size: 2rem;
}
.block-heading {
    margin: 0;
    padding: 15px 5px 10px 5px;
}

.block-copy {
    margin: 0;
    padding: 0 8px 8px 8px;
}
/* =====================
 *  Responsive Basis / Anti-Overflow
 * ===================== */

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

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
}

img,
video,
iframe,
table,
svg {
    max-width: 100%;
}

img,
video {
    height: auto;
}

section,
div,
p,
h1,
h2,
h3,
button {
    max-width: 100%;
}

p,
h1,
h2,
h3,
button,
a,
summary {
    overflow-wrap: break-word;
    word-break: normal;
}

a,
summary {
    max-width: 100%;
}

/* =====================
 *  Hero Video – Fixed Background & Full Width
 * ===================== */

.hero-section {
    position: relative; /* bleibt Container für die Slogan-Position */
    width: 100%;
    height: 80vh; /* Höhe der Hero-Section */
    overflow: hidden;
}

/* Video verhält sich wie die frühere fixed Slideshow */
.hero-video-container {
    position: fixed;
    inset: 0;
    width: 100%; /* verhindert 100vw-Überbreite durch Scrollbar */
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Slogan soll mitscrollen → nicht fixed */
.hero-slogan-box {
    position: absolute; /* bleibt innerhalb der Hero-Sektion */
    top: 200px;
    right: 0;
    z-index: 10;
    padding: 10px 20px 10px 10px;
    font-size: 2.75rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: rgba(85, 100, 18, 0.65);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    max-width: min(90%, 760px);
}

.hero-slogan-box p {
    margin: 5px;
}

.backscroll-oben {
    width: 100%;
    background-color: #F5f9f5;
    border-top: 30px solid #aecc24;
}
.backscroll-mitte {
    width: 100%;
    padding-bottom: 20px;
    background-color: #F5f9f5;
}
.backscroll-unten {
    width: 100%;
    padding-bottom: 40px;
    background-color: #F5f9f5;
    border-bottom: 30px solid #aecc24;
}

/* =====================
 *  Content Wrapper (90%)
 * ===================== */

.content-wrapper {
    width: min(90%, 100%);
    margin: 0 auto;
    margin-top: 0vh; /* Abstand, damit Inhalt unter der Slideshow beginnt */
    padding-top: 40px;
    background-color: #F5f9f5;
}

.introduction {
    padding-bottom: 20px;
}

.introtuction-wrapper {
    border-radius: 3px;
    padding: 10px 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    background: #556412;
    color: #F5f9f5;
}


/* Drei Boxen */
.three-box-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: stretch;
}

.box {
    flex: 1 1 0;
    min-width: 0;
    margin: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    border-radius: 3px;

    display: flex;
    flex-direction: column;
}

.box h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 15px 0;
}

.box-copy {
    margin: 0 0 15px 0;
    padding: 0 5px 5px 5px;
    font-weight: 300;
}

.white-box {
    background: #F5f9f5;
    color: #414D0D;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);

}

.green-box {
    background: #556412;
    color: #F4FFD1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);

}

/* =====================
 *  Scroll Animation Boxes
 * ===================== */

/* Grundzustand */
.animate {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Startpositionen */
.animate-left {
    transform: translateX(-80px);
}

.animate-right {
    transform: translateX(80px);
}

.animate-bottom {
    transform: translateY(50px);
}

.animate-slogan {
    transform: translateY(180px);
}

/* Sichtbar */
.animate.in-view {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Unsichtbar (hochscrollen / raus) */
.animate.out-view.scroll-up {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
}

/* Unsichtbar (runterscrollen / raus) */
.animate.out-view.scroll-down {
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
}

/* Bild + Slogan */
.image-with-slogan {
    position: relative;
    width: 100%;
}

.info-box{
    position: absolute;
    top: 30px;
    left: 15px;
    background: #556412;
    width: min(37%, 520px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    max-width: calc(100% - 30px);
}

.section-image {
    display: block;
    width: 100%;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Manuelle Slideshow im Umzugsbereich */
.image-with-info-slider {
    position: relative;
}

.info-slider {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 16px;
}

.info-slider-main {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.info-slider-image {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.info-slider-image.is-active {
    display: block;
}

.info-slider-thumbnails {
    display: flex;
    flex: 0 0 clamp(120px, 18%, 220px);
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.info-slider-thumb {
    flex: 1 1 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: transparent;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0.75;
    overflow: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.info-slider-thumb:hover,
.info-slider-thumb:focus-visible,
.info-slider-thumb.is-active {
    opacity: 1;
}

.info-slider-thumb:focus-visible {
    outline: 3px solid #aecc24;
    outline-offset: 3px;
}

.info-slider-thumb.is-active {
    outline: 3px solid #aecc24;
    outline-offset: -3px;
}

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

.left-slogan-box {
    position: absolute;
    bottom: 100px;
    right: 0;
    padding: 10px 10px 10px 15px;
    font-size: 2.75rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: #556412;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    max-width: min(90%, 760px);
}

.left-slogan-box p {
    margin: 5px;
}

/* =====================
 *  Rezensionen Überschrift
 * ===================== */

.review-section {
    width: 100%;
    max-width: 100%;
    background-color: #6B7C1D;
    overflow: hidden;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);

}

.review-heading {
    margin: 0 auto;
    padding: 5px 0 10px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.review-info {
    width: min(94%, 1100px);
    margin: 0 auto;
    padding: 10px 0 22px;
    color: #93AC20;
    font-size: 0.95rem;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.review-info > p:first-child {
    margin: 0;
}

.review-link-wrapper {
    margin: 14px 0 0;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #aecc24;
    border-radius: 3px;
    background-color: #aecc24;
    color: #212607;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-shadow: none;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* Button-Links im Aktuelles- und FAQ-Bereich */
.aktuelles-link-wrapper {
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(85, 100, 18, 0.25);
}

.aktuelles-link-wrapper + .aktuelles-link-wrapper {
    margin-top: 10px;
    padding-top: 0;
    border-top: 0;
}

.faq-contact-link-wrapper {
    margin: 0;
    text-align: center;
}

/*
 * Angepasster Hover-Zustand für helle Hintergründe.
 * Auf dem hellen Hintergrund wird der Button dunkelgrün,
 * damit Text und Button weiterhin gut sichtbar bleiben.
 */
.aktuelles-card .google-reviews-link:hover,
.home-faq__answer .google-reviews-link:hover {
    border-color: #556412;
    background-color: #556412;
    color: #F4FFD1;
}

.google-reviews-link:hover {
    background-color: transparent;
    color: #F4FFD1;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.28);
}

.google-reviews-link:focus-visible {
    outline: 3px solid #F4FFD1;
    outline-offset: 4px;
}


/* =====================
 *  Rezensionen Coverflow-Slider
 * ===================== */

.rezensionen {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background-color: transparent;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 340px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track img {
    --review-shift: clamp(330px, 25vw, 390px);
    --review-scale: 0.9;
    --review-hover-scale: 0.98;

    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(280px, 26vw, 400px);
    max-width: 86vw;
    max-height: 310px;
    height: auto;
    margin: 0;
    object-fit: contain;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    border-radius: 3px;
    transform:
        translate(-50%, -50%)
        translateX(calc(var(--offset, 0) * var(--review-shift)))
        scale(var(--review-scale));
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform, opacity;
}

.carousel-track img.is-active {
    --review-scale: 1.2;
    --review-hover-scale: 1.28;

    opacity: 1;
    z-index: 30;
    pointer-events: auto;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.carousel-track img.is-side {
    --review-scale: 0.8;
    --review-hover-scale: 0.89;

    opacity: 0.8;
    z-index: 15;
    pointer-events: auto;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.carousel-track img.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.carousel-track img.is-active:hover {
    z-index: 50;
    transform:
        translate(-50%, -50%)
        translateX(calc(var(--offset, 0) * var(--review-shift)))
        scale(var(--review-hover-scale));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.4);
}

.carousel-track img.is-side:hover {
    z-index: 15;
    transform:
        translate(-50%, -50%)
        translateX(calc(var(--offset, 0) * var(--review-shift)))
        scale(var(--review-hover-scale));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

/* Weitere Inhalte */
.textblock-under-image {
    padding-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wrap {
    background: #F5F9F5;
    color: #212607;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.over-three-images-row {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.otirw {
    margin-bottom: 10px;
    padding-bottom: 10px;
    background: #F5F9F5;
    color: #212607;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}



.three-images-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.three-images-row img {
    width: 30%;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.under-three-images-row {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.utirw {
    margin-top: 10px;
    padding-top: 15px;
    background: #F5F9F5;
    color: #212607;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.comp {
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    padding: 20px 70px;
    background-color: #6B7C1D;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}
.comp.is-logo-slider-disabled {
    min-height: 160px;
}

.comp-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.comp-track {
    display: flex;
    align-items: center;
    width: max-content;
    max-width: none;
    will-change: transform;
}

.comp-track img {
    width: auto;
    max-height: 120px;
    margin-right: 24px;
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.comp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 160px;
    border: none;
    background: #aecc24;
    color: #212607;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
}

.comp-prev {
    left: 5px;
}

.comp-next {
    right: 5px;
}

.comp-nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.final-textblock {
    padding: 40px 0;
    background: #F5F9F5;
    color: #212607;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}
.final-textblock.aktuelles-section {
    padding: 38px clamp(18px, 4vw, 48px);
}

.aktuelles-section-header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.aktuelles-section-header h2 {
    margin: 0;
    color: #212607;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.aktuelles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.aktuelles-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(85, 100, 18, 0.22);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.42);
}

.aktuelles-eyebrow {
    margin: 0 0 6px;
    color: #819818;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.aktuelles-card h3 {
    margin: 0 0 8px;
    color: #212607;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

.aktuelles-meta {
    margin: 0 0 18px;
    color: #556412;
    font-size: 1.05rem;
    line-height: 1.45;
}

.aktuelles-lead {
    margin: 0 0 24px;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.65;
}

.aktuelles-note {
    margin: 0 0 24px;
    padding: 14px 16px;
    border-left: 4px solid #aecc24;
    background: rgba(85, 100, 18, 0.08);
    color: #212607;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.55;
}

.aktuelles-note strong {
    display: block;
    margin-bottom: 4px;
    color: #556412;
    font-weight: 600;
}

.aktuelles-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 0 24px;
}

.aktuelles-highlight {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: #556412;
    color: #F5F9F5;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
    line-height: 1.45;
}

.aktuelles-highlight-title {
    color: #aecc24;
    font-weight: 600;
}

.aktuelles-highlight a {
    color: #F4FFD1;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.aktuelles-highlight a:hover,
.aktuelles-highlight a:focus-visible {
    color: #ffffff;
}


/* =====================
 *  HOMEPAGE FAQ BEREICH
 * ===================== */

.home-faq {
    margin: 0 0 40px;
    padding: 28px;
    background: #F5F9F5;
    color: #212607;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.home-faq__intro h2 {
    margin: 0 0 10px;
}

.home-faq__intro p {
    max-width: 760px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

.home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-faq__item {
    overflow: hidden;
    border-radius: 3px;
    background: #556412;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.home-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: #F5F9F5;
    font: inherit;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.home-faq__question:hover,
.home-faq__question:focus-visible {
    color: #aecc24;
    outline: none;
}

.home-faq__question span:first-child {
    min-width: 0;
}

.home-faq__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.home-faq__icon::before,
.home-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

.home-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq__item.is-open .home-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.home-faq__answer {
    max-height: 0;
    overflow: hidden;
    background: #F5F9F5;
    color: #212607;
    transition: max-height 0.3s ease;
}

.home-faq__answer p {
    margin: 0;
    padding: 0 20px 20px;
    line-height: 1.55;
}

.home-faq__answer p.faq-contact-link-wrapper {
    padding-top: 4px;
}

.home-faq .service-preise {
    display: grid;
    gap: 24px;
    padding: 0 20px 22px;
}

.home-faq .service-preise__bereich {
    min-width: 0;
}

.home-faq .service-preise__bereich h3,
.home-faq .service-preise__bereich h4 {
    margin: 0 0 12px;
    color: #556412;
    line-height: 1.25;
}

.home-faq .service-preise__bereich h4 {
    margin-top: 22px;
    font-size: 1.05rem;
}

.home-faq .service-preise__text,
.home-faq .service-preise__hinweis {
    margin: 0 0 12px;
    padding: 0;
}

.home-faq .service-preise__hinweis {
    color: #556412;
    font-weight: 600;
}

.home-faq .service-preise__table-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.12);
    -webkit-overflow-scrolling: touch;
}

.home-faq .service-preise__table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    table-layout: fixed;
    background: #ffffff;
    color: #212607;
}

.home-faq .service-preise__table th,
.home-faq .service-preise__table td {
    padding: 12px 14px;
    border: 1px solid rgba(85, 100, 18, 0.18);
    text-align: left;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.home-faq .service-preise__table th {
    background: #556412;
    color: #F5F9F5;
    font-weight: 600;
}

.home-faq .service-preise__table tbody tr:nth-child(even):not(.service-preise__info-row) {
    background: #FBFDF6;
}

.home-faq .service-preise__info-row td {
    background: rgba(174, 204, 36, 0.16);
    color: #556412;
    font-weight: 600;
    text-align: center;
}

/* =====================
 *  Reduzierte Bewegung
 * ===================== */
@media (prefers-reduced-motion: reduce) {
    .animate,
    .carousel-track img,
    .comp-track,
    .info-slider-thumb,
    .home-faq__answer,
    .home-faq__icon::before,
    .home-faq__icon::after {
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}

/* =====================
 *  Tablet: 768px bis 1024px
 * ===================== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        height: 68vh;
        min-height: 520px;
    }

    .content-wrapper {
        width: 92%;
        padding-top: 30px;
    }

    .three-box-section {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .three-box-section .box:last-child {
        grid-column: 1 / -1;
    }

    .hero-slogan-box {
        top: 140px;
        padding: 12px 24px;
        font-size: 2.2rem;
        max-width: 75%;
    }

    .left-slogan-box {
        bottom: 70px;
        padding: 16px 24px;
        font-size: 2rem;
        max-width: 75%;
    }

    .info-box {
        top: 30px;
        left: 20px;
        width: 52%;
    }

    .info-slider {
        gap: 12px;
    }

    .info-slider-thumbnails {
        flex-basis: clamp(105px, 20%, 170px);
        gap: 10px;
    }

    .three-box-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .box {
        margin: 0;
    }

    .three-images-row img {
        flex: 1 1 calc(33.333% - 14px);
        width: auto;
        min-width: 0;
    }

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

    .aktuelles-section-header h2,
    .aktuelles-card h3 {
        font-size: 1.8rem;
    }

    .aktuelles-highlights {
        grid-template-columns: 1fr;
    }

    .home-faq {
        padding: 24px;
    }

    .comp-wrapper {
        overflow: hidden;
    }

    .rezensionen {
        padding: 28px 0;
    }

    .carousel-wrapper {
        height: 330px;
    }

    .carousel-track img {
        --review-shift: clamp(290px, 42vw, 390px);
        --review-scale: 0.9;
        --review-hover-scale: 0.98;

        width: clamp(250px, 46vw, 400px);
        max-height: 285px;
    }

    .carousel-track img.is-active {
        --review-scale: 1.04;
        --review-hover-scale: 1.1;
    }

    .carousel-track img.is-side {
        --review-scale: 0.9;
        --review-hover-scale: 0.98;
        opacity: 1;
    }

    .comp {
        padding: 20px 55px;
    }
    .comp.is-logo-slider-disabled {
    min-height: 104px;
}

    .comp-track img {
        max-height: 100px;
        margin-right: 18px;
    }

    .comp-nav {
        width: 36px;
        height: 140px;
        font-size: 1.3rem;
    }

}

/* =====================
 *  Mobile: bis 767px
 * ===================== */
@media screen and (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #000;
        isolation: isolate;
    }

    .hero-video-container {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
        background: #000;
    }

    .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: contain;
        object-position: center center;
        display: block;
    }

    .content-wrapper {
        width: 94%;
        padding-top: 24px;
    }

    .introtuction-wrapper h2,
    .introduction-text,
    .otirw .block-copy,
    .utirw .block-copy {
        line-height: 1.45;
    }

    .backscroll-oben {
        border-top-width: 18px;
    }

    .backscroll-unten {
        border-bottom-width: 18px;
    }

    .hero-slogan-box {
        top: auto;
        bottom: 14px;
        right: 0;
        z-index: 2;
        padding: 8px 14px;
        font-size: clamp(1rem, 4.2vw, 1.45rem);
        max-width: 88%;
    }

    .hero-slogan-box p {
        margin: 2px 0;
    }

    .size-small {
        font-size: 1rem;
    }

    .size-medium {
        font-size: 1.3rem;
    }

    .size-big {
        font-size: 1.7rem;
    }

    .block-heading {
        padding: 14px 10px 8px 10px;
    }

    .block-copy {
        padding: 0 10px 10px 10px;
    }

    .three-box-section {
        flex-direction: column;
        gap: 14px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .box {
        margin: 0;
    }

    .image-with-slogan {
        margin-top: 0;
    }

    .section-image {
        display: block;
    }

    .left-slogan-box {
        bottom: 50px;
        right: 0;
        padding: 10px 16px;
        font-size: 1.35rem;
        max-width: 88%;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }

    .left-slogan-box p {
        margin: 2px 0;
    }

    .info-slider {
        flex-direction: column;
        gap: 10px;
    }

    .info-slider-thumbnails {
        flex: none;
        flex-direction: row;
        gap: 8px;
    }

    .info-slider-thumb {
        flex: 1 1 0;
        aspect-ratio: 1 / 1;
    }

    .info-slider-thumb img {
        height: 100%;
        aspect-ratio: 1 / 1;
    }

    .info-box {
        position: relative;
        top: auto;
        width: 100%;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .review-heading {
        width: 94%;
        padding: 24px 0 6px;
    }

    .review-heading h2 {
        font-size: 1.5rem;
    }

    .review-heading p {
        font-size: 1rem;
    }

    .rezensionen {
        padding: 18px 0;
    }

    .carousel-wrapper {
        height: 255px;
    }

    .carousel-track img {
        --review-shift: 64vw;
        --review-scale: 0.84;
        --review-hover-scale: 0.9;

        width: clamp(220px, 76vw, 340px);
        max-width: 78vw;
        max-height: 225px;
    }

    .carousel-track img.is-active {
        --review-scale: 1.03;
        --review-hover-scale: 1.06;
        opacity: 1;
    }

    .carousel-track img.is-side {
        --review-scale: 0.84;
        --review-hover-scale: 0.9;
        opacity: 1;
    }

    .carousel-track img:hover {
        transform:
            translate(-50%, -50%)
            translateX(calc(var(--offset, 0) * var(--review-shift)))
            scale(var(--review-hover-scale));
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    }

    .textblock-under-image {
        padding-bottom: 28px;
    }

    .three-images-row {
        flex-direction: column;
        gap: 14px;
    }

    .three-images-row img {
        width: 100%;
    }

    .comp {
        padding: 16px 42px;
    }
    .comp.is-logo-slider-disabled {
    min-height: 104px;
}

    .comp-track img {
        max-height: 72px;
        margin-right: 14px;
    }

    .comp-nav {
        width: 28px;
        height: 72px;
        font-size: 1rem;
    }

    .final-textblock {
        padding: 28px 0;
    }

    .final-textblock.aktuelles-section {
        padding: 26px 16px;
    }

    .aktuelles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aktuelles-card {
        padding: 18px;
    }

    .aktuelles-section-header h2,
    .aktuelles-card h3 {
        font-size: 1.55rem;
    }

    .aktuelles-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aktuelles-meta,
    .aktuelles-lead {
        line-height: 1.55;
    }

    .animate-left,
    .animate-right {
        transform: translateY(40px);
    }

    .animate-slogan {
        transform: translateY(60px);
    }

    .home-faq {
        padding: 18px;
        margin-bottom: 28px;
    }

    .home-faq__question {
        gap: 12px;
        padding: 16px;
        font-size: 1rem;
    }

    .home-faq__answer p {
        padding: 0 16px 16px;
    }

    .home-faq .service-preise {
        gap: 18px;
        padding: 0 14px 18px;
    }

    .home-faq .service-preise__bereich h3,
    .home-faq .service-preise__bereich h4 {
        margin-bottom: 10px;
    }

    .home-faq .service-preise__table-wrapper {
        overflow-x: visible;
        box-shadow: none;
    }

    .home-faq .service-preise__table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0;
        table-layout: auto;
        background: transparent;
    }

    .home-faq .service-preise__table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .home-faq .service-preise__table tbody {
        display: grid;
        gap: 8px;
    }

    .home-faq .service-preise__table tbody tr {
        display: grid;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid rgba(85, 100, 18, 0.18);
        border-radius: 3px;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
    }

    .home-faq .service-preise__table th,
    .home-faq .service-preise__table td {
        padding: 10px 12px;
        border: 0;
    }

    .home-faq .service-preise__table td:last-child {
        color: #556412;
        font-weight: 600;
        background: #FBFDF6;
        border-top: 1px solid rgba(85, 100, 18, 0.14);
    }

    .home-faq .service-preise__info-row td,
    .home-faq .service-preise__info-row td:last-child {
        background: rgba(174, 204, 36, 0.16);
        border-top: 0;
        text-align: center;
    }
}
