/* ========== CSS Custom Properties ========== */
:root {
    --header-h: 72px;
    --site-nav-h: 44px;          /* zweite Leiste */
    --safe-top: calc(var(--header-h) + var(--site-nav-h));
    --space-1: .5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --radius: 999px;
    --fg: #111;
    --muted: #666;
    --line: #e7e7e7;

    --text-neutral-primary: #1A1A1A;
    --type-font-family-display: "InterDisplay";
    --text-heading: #1A1A1A;
    --text-default-default: #1A1A1A;

    --body-size-m: 16px;
    --body-line-height-m: 20px; /* 125% */


    --spacing-jumper-gap-l: 24px;  
    --spacing-jumper-gap-gutter: 32px;
    --spacing-jumper-gap-xxl: 48px;
    --corner-radius-xl: 16px;
    --corner-radius-round: 256px;
    --background-default: #F2F2F2;
    --spacing-jumper-padding-margin: 48px;
    --spacing-device-breakpoint: 1440px;
    
    --heading-size-h1: 60px;
    --heading-size-h2: 48px;
    --heading-size-h3: 40px;
    --heading-size-h5: 24px;
    --heading-size-h6: 20px; 
    --heading-line-height-h1: 72px; /* 120% */
    --heading-line-height-h2: 56px; /* ~117% */
    --heading-line-height-h3: 48px; /* 120% */
    --heading-line-height-h5: 28px; /* ~117% */
    --heading-line-height-h6: 24px; /* 120% */

    /*Tablet*/
    @media (max-width: 1440px){
        --heading-size-h2: 40px;
        --heading-size-h3: 32px;
        --heading-size-h6: 20px;
    }
    
    /*Mobile*/
    @media (max-width: 768px){
        --heading-size-h2: 28px;
        --heading-size-h3: 24px;
        --heading-size-h6: 20px;
        --spacing-jumper-padding-margin: 16px; 
    }
}

/* ========== Typo Utilities ========== */
.bodySemiBold{
    font-size: var(--body-size-m, 16px);
    font-style: normal;
    font-weight: 600;
    line-height: var(--body-line-height-m, 20px); /* 125% */
}

.headingH1 {
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h1);
    font-style: normal;
    font-weight: 600;
    line-height: var(--heading-line-height-h1);
    margin: 0;
}

.headingH2 {
    color: var(--text-heading);
    text-align: left;
    margin: 0;
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h2);
    font-style: normal;
    font-weight: 600;
    line-height: var(--heading-line-height-h2);
}

.headingH3{
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h3);
    font-style: normal;
    font-weight: 600;
    line-height: var(--heading-line-height-h3);
    margin: 0;
}

.headingH4{
    
}

.headingH5 {
    color: var(--text-heading);
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h5);
    font-style: normal;
    font-weight: 600;
    line-height: var(--heading-line-height-h5);
    margin: 0;
}

.headingH6{
    font-family: var(--type-font-family-display);
    font-size: var(--heading-size-h6);
    font-style: normal;
    font-weight: 600;
    line-height: var(--heading-line-height-h6);
}




/* ========== Header ========== */
.site-header {
    background: #fff;
    color: var(--fg);
    padding: 5px 32px 5px 32px;
    /* Falls Header nicht sticky sein soll einfach die nächsten 3 Zeilen ausblenden */
    position: fixed;
    width: 100vw;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Optional für Kontrast */
}


.header-top {
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 0 20px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: inherit;
}
.brand__logo {
    width: 100px;
    display: inline-block;
}
.brand__name {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    cursor: pointer;
}
.action {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: inherit;
    text-decoration: none;
}
.action--login span {
    font-size: .95rem;
}
.action:hover {
    opacity: .85;
}

/* ========== Navigation ========== */
.site-nav__inner {
    display: flex;
    /* align-items: center;*/
    gap: 2rem;
    height: 44px;
    position: relative;
    padding: 0 20px 4px 20px;
    align-items: baseline;

}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-neutral-primary);
    text-decoration: none;
    padding: .25rem 0;
    border-bottom: 2px solid transparent;
    cursor: pointer;

    font-size: var(--body-size-m);
    font-style: normal;
    font-weight: 600;
    line-height: var(--body-line-height-m);
}
.site-nav__link:hover {
    border-bottom-color: #bbb;
}
.site-nav__link.is-active {
    border-bottom-color: #111;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html{ scroll-padding-top: var(--safe-top); }
main{
    padding-top: var(--safe-top);
}


/* ========== Start / Video Section ========== */
.startInfoBannerElementVideo {
    display: flex;
    margin: calc(-1 * var(--safe-top) + 50px) 36px 20px 36px;
    height: 720px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    position: relative;
    overflow: hidden; /* fallback */
    background: linear-gradient(180deg, rgba(72, 72, 72, 0) 10%, rgba(72, 72, 72, 0.75) 82.21%);
    background-blend-mode: darken;
    border-radius: 40px;
    overflow: clip; /* if supported */
}
.startInfoBannerElementVideo .visual-container {
    position: absolute;
    inset: 0;
    z-index: -1; /* Video hinter den Text */
    border-radius: 40px;
}
#videoMultiworkCloud {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}
.MultiworkCloudStart {
    display: flex;
    width: 795px;
    padding: 0 48px 48px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.MultiworkCloudLogoStart {
    fill: #fff;
    width: 245px;
    height: 85px;
    aspect-ratio: 49 / 17;
}
.MultiworkCloudDescriptionStart {
    align-self: stretch;
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* ========== Projektmanagement ========== */
.projectManagement {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.projectManagement_first {
    display: flex;
    height: 720px;
    padding: 20px 0 0 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 52px;
    align-self: stretch;
    background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
    overflow: hidden; /* fallback */
    overflow: clip;  /* if supported */
}
.projectManagement_first_heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 144px;
}
.projectManagement_first_heading p {
    color: var(--text-heading);
    text-align: center;
    font-size: var(--heading-size-h1);
    font-style: normal;
    font-weight: 600;
    line-height: var(--heading-line-height-h1);
}

.projectManagement_first_image {
    display: flex;
    height: 924.31px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    aspect-ratio: 452 / 924.31;
}
.projectManagement_first_image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.projectManagement_second {
    padding-block: 64px 58px;
    background: #fff;
    width: 100vw;
}
.projectManagement_second__title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    margin-bottom: 24px;
}

/* --- Carousel --- */
.carousel {
    position: relative;
    display: flex;
    padding: 0 128px;
    align-items: flex-start;
    gap: 128px;
    overflow: hidden;
}

.task-steps {
    overscroll-behavior-x: contain; /* blockt Scrollweitergabe */
    user-select: none;              /* verhindert Textauswahl beim Swipen */
    display: flex;
    gap: 128px;
    margin: 0;
    padding: 0;
    list-style: none;
    transform: translateX(0);
    transition: transform 0.4s ease;
    touch-action: none;
    pointer-events: none;
    justify-content: flex-start;
}

/* Einzelnes Slide */
.task-step {
    flex: 0 0 auto;
    width: clamp(240px, 25vw, 280px);
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
}

.task-step__figure {
    margin: 0;
}
.task-step__figure img {
    width: 100%;
    height: auto;
    display: block;
}

.task-step__caption {
    margin-top: 12px;
    display: grid;
    gap: 8px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
}

/* Carousel Buttons */
.carousel-controls {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100vw;
}
.carousel-btn {
    background: transparent;
    border: none;
    padding: 16px;
    cursor: pointer;
    opacity: .8;
}
.carousel-btn[disabled] {
    opacity: .3;
    cursor: default;
}

/* Nummerierung */
.numbering {
    display: flex;
    width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    background: #1A1A1A;
    color: #fff;
}

/* ========== Scan Tag ========== */
.scanTag {
    display: flex;
    padding: 112px 158px;
    align-items: center;
    gap: 148px;
}
.scanTagText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    flex: 1 0 0;
}
.scanTagRectangle {
    width: 230px;
    height: 230px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: #d9d9d9;
    display: flex;
    justify-content: center;
    align-items: center;
}
.scanTagRectangle object{
    width: 70%;
    height: 70%;
}
.benefits{
    text-align: left;
}

/* ========== Alleinarbeit / InfoBox ========== */
.infoBox {
    display: flex;
    height: 720px;
    padding: 0 146px;
    align-items: center;
    gap: 144px;
    background: #f2f2f2;
}
.infoBoxPhone {
    display: flex;
    width: 227px;
    height: 465px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 227 / 465;
}
.infoBoxPhone img {
    width: 100%;
    height: 100%;
}
.infoBoxText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    flex: 1 0 0;
}
#winterService {
    background: #fff;
}

/* ========== Fahrtenbuch ========== */
.logbook {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    /* background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%); */
}

.logbook_first {
    display: flex;
    height: 720px;
    padding: 20px 0 0 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 52px;
    align-self: stretch;
    background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
    overflow: hidden; /* fallback */
    overflow: clip;  /* if supported */
}
.logbook_first_heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 144px;
}
.logbook_first_heading p {
    color: var(--text-heading);
    text-align: center;
    font-size: var(--heading-size-h1);
    font-style: normal;
    font-weight: 600;
    line-height: var(--heading-line-height-h1);
}

.logbook_first_image {
    display: flex;
    height: 924.31px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    aspect-ratio: 452 / 924.31;
}
.logbook_first_image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.logbook_slide {
    padding-block: 64px 58px;
    background: #fff;
    width: 100vw;
}
.logbook_slide__title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    margin-bottom: 24px;
}

/* ========== Media Queries ========== */
/* Kleinere Screens */
@media (max-width: 1000px) {
    .site-nav__inner{
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }
    .header-top { gap: var(--space-2); }
    .action--login span { display: none; }
}

@media (max-width: 640px) {
    .site-nav__inner { gap: 1rem; overflow: auto; }
}

/* ========= Tablet bis kleine Laptops ========= */
@media (min-width: 768px) and (max-width: 1200px) {
    /* Headings etwas kompakter */
    .headingH1 {
        font-size: 44px;
        line-height: 56px;
    }
    .headingH2 {
        font-size: 32px;
        line-height: 40px;
    }
    .headingH5 {
        font-size: 20px;
        line-height: 26px;
    }

    /* Start / Video */
    .startInfoBannerElementVideo {
        height: 600px;
        margin: calc(-1 * var(--safe-top) + 50px) 20px 20px 20px;
        border-radius: 32px;
    }
    .startInfoBannerElementVideo .visual-container,
    #videoMultiworkCloud {
        border-radius: 32px;
    }
    .MultiworkCloudStart {
        width: 680px;
        padding: 0 32px 36px 36px;
        gap: 8px;
    }
    .MultiworkCloudLogoStart {
        width: 200px;
        height: auto;
    }
    .MultiworkCloudDescriptionStart {
        font-size: 24px;
    }

    /* Projektmanagement – Hero */
    .projectManagement_first {
        height: 560px;
        gap: 32px;
        padding-top: 16px;
    }
    .projectManagement_first_heading {
        width: auto;
    }
    .projectManagement_first_heading p {
        font-size: 44px;
        line-height: 56px;
    }
    .projectManagement_first_image {
        height: 700px;
        aspect-ratio: 452 / 700;
    }

    /* Projektmanagement – Carousel enger */
    .projectManagement_second {
        padding-block: 48px 44px;
    }
    .projectManagement_second__title {
        font-size: clamp(18px, 2vw, 24px);
        margin-bottom: 18px;
    }
    .carousel {
        padding: 0 48px;
        gap: 32px;
    }
    .task-steps {
        gap: 32px;
    }
    .task-step {
        width: clamp(220px, 28vw, 260px);
    }
    .task-step__caption {
        font-size: 14px;
    }

    /* Scan Tag kompakter */
    .scanTag {
        padding: 64px 96px;
        gap: 72px;
    }
    .scanTagRectangle {
        width: 180px;
        height: 180px;
    }

    /* InfoBox kompakter */
    .infoBox {
        height: 620px;
        padding: 0 64px;
        gap: 64px;
    }
    .infoBoxPhone {
        width: 200px;
        height: 410px;
    }

    /* Fahrtenbuch */
    .logbook_first {
        height: 560px;
        gap: 32px;
        padding-top: 16px;
    }
    .logbook_first_heading p {
        font-size: 44px;
        line-height: 56px;
    }
    .logbook_first_image {
        height: 700px;
        aspect-ratio: 452 / 700;
    }
    .logbook_slide {
        padding-block: 48px 44px;
    }
    .logbook_slide__title {
        font-size: clamp(18px, 2vw, 24px);
        margin-bottom: 18px;
    }

    /* Buttons im Carousel minimal kleiner Padding */
    .carousel-btn {
        padding: 12px;
    }
    
    .container{
        max-width: 1000px;
    }
}

/* === Burger Button === */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}
.burger__bar {
    width: 24px;
    height: 2px;
    background-color: #111;
    transition: 0.3s;
}


/* Mobile */
@media (max-width: 768px) {
    /* Burger */
    .burger {
        display: flex;
        padding: 20px;
    }

    .site-header{
        justify-content: center;
        padding: 0;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav__inner {
        display: flex;
        height: fit-content;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
        background: white;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .site-nav__inner.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav__link {
        font-size: 1rem;
    }



    :root{ --safe-top: var(--header-h); }
    .headingH1 { font-size: 28px; line-height: 40px;}
    .headingH2 {  line-height: normal}
    .txt-center{text-align: center}
    .headingH5 { font-size: 14px; line-height: normal; padding: 8px; }

    /* Video */
    .startInfoBannerElementVideo { height: 500px; margin: calc(-1 * var(--safe-top) + 14px) 14px 14px 14px; }
    .MultiworkCloudStart { padding: 0 0 20px 20px; gap: 0; }
    .MultiworkCloudLogoStart { width: 140px; height: auto; }
    .MultiworkCloudLogoStart object { width: 100%; }
    .MultiworkCloudDescriptionStart { font-size: 16px; }

    /* Projektmanagement */
    .projectManagement_first {
        height: 200px;
        padding: 0 10px;
        justify-content: center;
    }
    .projectManagement_first_heading p {
        font-size: 28px;
        line-height: normal;
    }
    .projectManagement_first_image { display: none; }

    .projectManagement_second { padding: 10px; }
    .task-steps { gap: 30px; }
    .task-step { width: clamp(180px, 40vw, 240px); gap: 0; }
    .task-step__caption { font-size: 14px; }
    .carousel { padding: 0 clamp(16px, 5vw, 24px); }
    .carousel-controls { justify-content: unset; }

    /* Scan Tag */
    .scanTag {
        padding: 30px;
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }
    .scanTagText { align-items: center; }
    .scanTagRectangle { width: 50px; height: 50px; }

    /* InfoBox */
    .infoBox {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 20px;
        height: auto;
    }
    .infoBoxText { align-items: center; order: 1; }
    .infoBoxPhone { order: 2; }

    /* Fahrtenbuch */
    .logbook {padding: 30px 0 0 0; gap: 0; }
    .logbook_first {
        height: fit-content;
        padding: 0 10px;
        justify-content: center;
    }
    .logbook_first_heading p {
        display: none;
    }
    .logbook_first_image { display: none; }
    .logbook_slide { padding: 10px; }

    .container{
        max-width: 1000px;
    }
}







/************ Footer ************/
#siteFooterSelf {
    background-color: #f5f5f7;
    color: #727378;
    text-align: center;
    font-size: 16px;
    padding:90px 0 40px 0;
    margin-top: 10px;
    width: 100%;
}
#siteFooterSelf .siteFooterSelfLogo {

}
#siteFooterSelf .siteFooterSelfLogo img {
    width: 49px;
    display: inline-block;
    margin-top: -6px;
    margin-right: 10px;
}
#siteFooterSelf .footerMenuObject {
    display: inline-block;
    margin-left:30px;
    cursor: pointer;
    color: #727378;
}

@media (max-width: 1000px) {
    #siteFooterSelf {
        padding:50px 0 40px 0;
    }
    .siteFooterSelfLinkHolders {
        display: block;
        margin-top: 24px;
    }
}

@media (max-width: 590px) {
    #siteFooterSelf .footerMenuObject {
        display: block;
        width: max-content;
        margin: 10px auto;
    }
    .siteFooterSelfBusinessInfo {
        display: block;
        margin-top: 14px;
    }
}





.videoBtnVolumeOff, .videoBtnVolumeOn,
.videoBtnStopNow, .videoBtnPlayNow,
.videoBtnFullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 36px;
    text-align: center;
    background-color: #FFFFFF99;
    font-size: 18px;
    cursor: pointer;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.videoBtnStopNow, .videoBtnPlayNow {
    right: 70px;
}

.videoBtnFullscreen {
    right: 120px;
}








/************ FAQ ************/

.faq-title {
    text-align: center;
    font-size: 1.2rem;
    margin: 10px 0;
    color: black;
    font-weight: 700;
}

.faq-list {
    max-width: 1400px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.faq-item summary {
    cursor: pointer;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: black;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-item summary:hover {
    color: #0ea5e9;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.2rem;
    color: #9ca3af;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: #0ea5e9;
}

.faq-answer {
    padding: 1rem;
    color: black;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.25s ease;
    border-top: 1px solid #e5e7eb;
}

/* Mobile */
@media (max-width: 768px) {
    
}













/* === Pricing === */
.pricing{
    display: flex;
    padding: 0 var(--spacing-jumper-padding-margin);
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-jumper-gap-xxl);
}
.subsAndLic{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}
.subsc{
    display: flex;
}
.subsc-track{
    display: grid;
    row-gap: var(--spacing-jumper-gap-gutter);
    column-gap: var(--spacing-jumper-gap-gutter);
    align-self: stretch;
    grid-template-rows: repeat(1, fit-content(100%));
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.subscBox{
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
    justify-self: stretch;
    border-radius: var(--corner-radius-xl);
    background: var(--background-default);
}
.planAndPrice{
    display: flex;
    height: 424px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}
.annualPricing{
    display: flex;
    align-items: center;
    gap: 12px;
}
.rz-switch.rz-switch-checked{
    background-color: #009EE3 !important; 
}
.rz-switch-circle::before {
    background-color: #FFFFFF !important;
}

.plan{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}
.selectSub{
    color: white;
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: var(--corner-radius-round);
    border: 2px solid #1A1A1A;
    background: #1A1A1A;
}

.storage{
    display: flex;
    align-items: center;
    gap: 5px;
}
.modules{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}
.module{
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.subsc-dots {
    display: none;
}
.enterprice{
    display: flex;
    padding: var(--spacing-jumper-gap-l);
    align-items: center;
    gap: 64px;
    align-self: stretch;
    justify-content: space-between;

    border-radius: var(--corner-radius-xl, 16px);
    border: 1px solid #CCC;
    background: var(--background-default, #F2F2F2);
}


@media (max-width: 1440px){
    .pricing{
        margin: 48px 0 0 0;
    }
    .subsc-track{
        grid-template-rows: repeat(2, fit-content(100%));
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    #pricingCarousel {
        overflow: scroll;
        width: calc(100vw - (var(--spacing-jumper-padding-margin) * 2));
    }

    #pricingCarousel .subsc-track {
        display: flex;
        row-gap: 0;
        column-gap: 20px;
        transition: transform 0.3s ease;
        /*width: calc(100vw - 60px);*/
        width: 100%;
        transform: translateX(calc(var(--active-index, 0) * -1 * (80% + 20px)));
    }

    #pricingCarousel .subscBox {
        flex-shrink: 0;
        width: 80%;
    }
    

    .subsc-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
        align-self: center;
    }

    .subsc-dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        border: none;
        background: #ccc;
        padding: 0;
        cursor: pointer;
    }

    .subsc-dot.is-active {
        width: 24px;
        background: #000;
    }
}



/* Tabelle Pricing*/
.functionsTable{
    width: 100%;
    height: 500px; 
    overflow:auto;"
}
.functionsHeader{
    display: grid;
    grid-template-columns: 40% 15% 15% 15% 15%;
    height: 48px;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid #CCC;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}


/* Desktop */
.feature-mobile { display: none; }

/* Mobile */
@media (max-width: 767px) {
    .functionsHeader .headingH6{
        display: none;
    }
    .functionsHeader{
        grid-template-columns: 25% 25% 25% 25%;
    }
    
    .rz-data-grid th.desktop-only,
    .rz-data-grid td.desktop-only {
        display: none !important;
    }

    /* Desktop-Text verstecken, Mobile-Layout zeigen */
    .feature-desktop { display: none !important; }
    .feature-mobile  { display: block !important; overflow: hidden }
    
    .rz-data-grid th.col-feature,
    .rz-data-grid td.col-feature {
        width: 100vw !important;
        display: block !important;
    }

    .rz-grid-table thead th>div:not(.rz-cell-filter){
        display: none;
    }
    
    .rz-accordion-content{
        padding-inline: unset;
        padding-block: unset;
        overflow: hidden;
    }

    .rz-accordion .rz-accordion-header > a{
        padding-inline: unset;
    }

    .feature-title{
        width: 100vw;
        margin-bottom: 10px;
    }
    
    .feature-icons {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
    }
}

