/* ==========================================================================
   E-Learning Detail Page – Conversion-Optimized Layout
   Single-column flow, sticky CTA, social proof
   ========================================================================== */


/* ── Hero: Single Image statt Slideshow ────────────────────────────────── */

.el-hero-image {
    margin: 0;
}

.el-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}


/* ── Desktop Hero: 2-Spalten (Titel+Checkpoints | TOC) + CTA darunter ── */

@media (min-width: 1200px) {
    #page-product .header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 30px;
        align-items: start;
        padding-left: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Bild rechts oben */
    #page-product .header > .left {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
    }

    #page-product .header > .left .el-hero-image img {
        border-radius: 10px;
        width: 100%;
    }

    /* TOC unter dem Bild */
    #page-product .header > .el-toc {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
        margin: 0;
        max-width: none;
    }

    /* Titel + USP + Checkpoints links */
    #page-product .header > .right {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 100%;
    }

    #page-product .header .title,
    #page-product .header .title .title__main {
        font-size: 30px;
        line-height: 38px;
        margin-top: 0px;
    }

    #page-product .header .title h1 {
        font-size: 28px;
        line-height: 1.25;
    }

    #page-product .header .bulletpoints li {
        padding-left: 32px;
        font-size: 16px;
        line-height: 26px;
    }

    /* CTA volle Breite darunter */
    #page-product .header > .cta-hero {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    #page-product .benefits .benefit__text * {
        font-size: 16px;
        line-height: 26px;
    }

    /* ── Kursinhalte 2-spaltig ─────────────────────────────────────── */
    #el-inhalte .content ul {
        columns: 2;
        column-gap: 30px;
    }

    #el-inhalte .content ul li {
        break-inside: avoid;
    }

    .benefits .benefit {
        text-align: left;
        margin-bottom: 0;
        padding: 16px 20px;
        background: #fff;
        border-radius: 14px;
        border: 1px solid var(--tpl-color-sub-e);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.25s ease, transform 0.25s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 380px;
    }

}

/* ── Social Proof ──────────────────────────────────────────────────────── */

.el-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 16px;
    background: transparent;
    border-radius: 10px;
    border-left: none;
}

.el-social-proof__stars {
    color: #f5a623;
    font-size: 15px;
    white-space: nowrap;
}

.el-social-proof__stars .fas {
    margin-right: 1px;
}

.el-social-proof__text {
    font-size: 13px;
    color: var(--tpl-color-sub-b);
    line-height: 1.4;
}


/* ── Single-Column Content Flow ────────────────────────────────────────── */

#page-product .information {
    max-width: 800px;
    margin: 0 auto;
}

#page-product .information > .video,
#page-product .information > .description,
#page-product .information > .block,
#page-product .information > .list-steps,
#page-product .information > .benefits,
#page-product .information > .faq,
#page-product .information > .cta-bottom {
    margin-bottom: 20px;
}

#page-product .information > .video {
    margin-top: 10px;
}


/* ── Description Typography Normalization ────────────────────────────────── */

#page-product .information .description h2,
#page-product .information .description h3,
#page-product .information .description h4 {
    font-family: var(--tpl-font-sub);
    font-weight: 700;
    color: var(--tpl-color-sub-a);
    line-height: 1.3;
    margin-top: 28px;
    margin-bottom: 12px;
    border: none;
    padding-bottom: 0;
    display: block;
}

#page-product .information .description h2 {
    font-size: 22px;
}

#page-product .information .description h3 {
    font-size: 18px;
    color: var(--tpl-color-main-a);
}

#page-product .information .description h4 {
    font-size: 16px;
}

#page-product .information .description h2:first-child {
    margin-top: 0;
}

#page-product .information .description p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
}

#page-product .information .description ul,
#page-product .information .description ol {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
    padding-left: 20px;
}

#page-product .information .description ul li,
#page-product .information .description ol li {
    margin-bottom: 4px;
}


/* ── Section Headings ────────────────────────────────────────────────────── */

#page-product .information h2 {
    font-family: var(--tpl-font-sub);
    font-size: 26px;
    font-weight: 700;
    color: var(--tpl-color-sub-a);
    margin-bottom: 0px;
    padding-bottom: 12px;
    /* border-bottom: 3px solid var(--tpl-color-main-b); */
    display: inline-block;
}

#page-product .information .benefits h2 {
    display: block;
    text-align: center;
    border-bottom: none;
    padding-bottom: 4px;
}


/* ── USP Subtitle ─────────────────────────────────────────────────────── */

.el-usp {
    font-family: var(--tpl-font-main);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--tpl-color-sub-b);
    margin: 14px 0 25px;
}


/* ── Anchor Price (Strikethrough) ─────────────────────────────────────── */

.price__anchor {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 2px;
}

.price__anchor del {
    text-decoration: line-through;
}


/* ── Raten-Divider ────────────────────────────────────────────────────── */

.price__divider {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

/* ── Ratenpreis (prominent) ──────────────────────────────────────────── */

.price__rate {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #5a9e6f;
    line-height: 1.2;
}

/* ── Installment Trust-Badge ─────────────────────────────────────────── */

.price__installment {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #5a9e6f;
    margin-top: 4px;
    margin-bottom: 6px;
}

.price__installment .fas {
    color: #5a9e6f;
    margin-right: 4px;
}


/* ── CTA Sections ──────────────────────────────────────────────────────── */

.cta-bottom {
    background: linear-gradient(135deg, var(--tpl-color-main-e) 0%, var(--tpl-color-main-d) 100%);
    border-radius: 16px;
    padding: 32px 28px !important;
    text-align: center;
    border: none;
}

.cta-bottom .price {
    margin-bottom: 14px;
}

.cta-bottom .price .price__value {
    font-size: 30px;
    font-weight: 700;
}

.cta-bottom .addtocart-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cta-bottom .addtocart-wrap .btn-wip {
    display: inline-block;
    font-size: 17px;
    padding: 14px 32px;
}

.cta-final {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--tpl-color-main-e) 0%, var(--tpl-color-main-d) 100%);
    border: none;
}


/* ── Benefits ─────────────────────────────────────────────────────────── */

.benefits .row {
    gap: 0;
    align-items: flex-start;
}

#page-product .benefits .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 24px;
}

.benefits .col-lg-4,
.benefits .col-md-6 {
    padding: 8px;
    flex: 0 0 50%;
    max-width: 50%;
}

.benefits .benefit {
    text-align: left;
    margin-bottom: 0;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--tpl-color-sub-e);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits .benefit:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--tpl-color-main-c);
}

.benefits .benefit {
    cursor: pointer;
}

.benefits .benefit__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits .benefit__toggle {
    margin-left: auto;
    font-size: 12px;
    color: #999;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.benefits .benefit.is-open .benefit__toggle {
    transform: rotate(180deg);
}

.benefits .benefit__text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.benefits .benefit.is-open .benefit__text {
    max-height: 200px;
}

.benefits .benefit__image {
    margin: 0;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tpl-color-main-e) 0%, var(--tpl-color-main-d) 100%);
    border-radius: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

#page-product .benefits .benefit__image {
    position: absolute;
    left: 40px;
    top: 23px;
}

#page-product .benefits .benefit__image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    object-position: center;
}

.benefits .benefit__image svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.benefits .benefit__image .wip-image {
    width: 24px;
    height: 24px;
}

.benefits .benefit__title {
    margin-bottom: 0;
    flex: 1;
}

.benefits .benefit__title span {
    font-family: var(--tpl-font-sub);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--tpl-color-main-a);
}

.benefits .benefit__text p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--tpl-color-sub-b);
    margin: 8px 0 0;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ── Certificates ────────────────────────────────────────────────────── */

.el-certificates .inner {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.el-cert__slide {
    display: inline-block;
}

.el-cert__slide img {
    width: 220px;
    height: auto;
}

.el-cert__dots {
    display: none;
}

@media (max-width: 767.98px) {
    .el-certificates .inner {
        display: block;
        position: relative;
        min-height: 300px;
    }

    .el-cert__slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .el-cert__slide.is-active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
    }

    .el-cert__slide img {
        width: 80%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .el-cert__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .el-cert__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        background: #ccc;
        cursor: pointer;
        padding: 0;
        transition: background 0.3s;
    }

    .el-cert__dot.is-active {
        background: var(--tpl-color-main-a);
    }
}


/* ── Google Reviews Carousel ─────────────────────────────────────────── */

.el-reviews {
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
    background: #f8fafb;
    border-radius: 14px;
}

.el-reviews__google-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.el-reviews__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.el-reviews__header .el-social-proof__stars {
    font-size: 18px;
}

.el-reviews__rating {
    font-size: 14px;
    color: var(--tpl-color-sub-b);
}

.el-reviews__divider {
    border: none;
    border-top: 1px solid #e0e4e8;
    margin: 20px 0;
}

.el-reviews__carousel {
    position: relative;
    min-height: 140px;
    max-width: 600px;
    margin: 0 auto;
}

.el-reviews__slide {
    display: none;
    animation: reviewFade 0.5s ease;
}

.el-reviews__slide.is-active {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.el-reviews__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f5a623;
}

.el-reviews__body {
    text-align: left;
    flex: 1;
}

.el-reviews__stars {
    color: #f5a623;
    font-size: 13px;
    margin-bottom: 6px;
}

.el-reviews__stars .fas {
    margin-right: 1px;
}

.el-reviews__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--tpl-color-sub-b);
    font-style: italic;
    margin: 0 0 8px;
}

.el-reviews__author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--tpl-color-main-a);
}

.el-reviews__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.el-reviews__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.el-reviews__dot.is-active {
    background: var(--tpl-color-main-a);
}


/* ── Table of Contents (TOC) ──────────────────────────────────────────── */

.el-toc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    /* padding: 18px 20px; */
    background: #fff;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    /* border-radius: 12px; */
    /* border: 1px solid var(--tpl-color-sub-e); */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
    margin-bottom: 36px;
    overflow-x: auto;
}

.el-toc__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--tpl-color-main-a);
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.03em;
}

.el-toc ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    list-style: none !important;
    margin: 0;
    padding: 0;
    width: 100%;
}

.el-toc li {
    list-style: none !important;
}

.el-toc li::before,
.el-toc li::marker {
    content: none !important;
    display: none !important;
}

.el-toc li a {
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: var(--tpl-color-sub-b);
    text-decoration: none;
    text-align: center;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: 1px solid #dde4ea;
    background: linear-gradient(135deg, var(--tpl-color-main-e) 0%, var(--tpl-color-main-d) 100%);
}

.el-toc li a:hover {
    background: var(--tpl-color-main-b);
    color: #fff;
    border-color: var(--tpl-color-main-b);
}


/* ── Comparison Table ─────────────────────────────────────────────────── */

.el-compare {
    /* margin-bottom: 40px; */
    /* background: linear-gradient(135deg, var(--tpl-color-main-e) 0%, var(--tpl-color-main-d) 100%); */
    border-radius: 16px;
    padding: 28px 24px;
}

#page-product .information .el-compare h2 {
    margin-bottom: 20px;
    text-align: center;
    display: block;
    border-bottom: none;
    padding-bottom: 0;
}

.el-compare__table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.el-compare__table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.el-compare__table thead th {
    font-family: var(--tpl-font-sub);
    font-size: 15px;
    font-weight: 700;
    /* text-align: center; */
    padding: 14px 20px;
    border-bottom: 2px solid var(--tpl-color-sub-e);
    color: var(--tpl-color-sub-a);
    background: #ebebeb;
}

.el-compare__table thead th:first-child {
    text-align: left;
    /* background: transparent; */
}

.el-compare__table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid var(--tpl-color-sub-e);
    text-align: left;
    vertical-align: middle;
}

.el-compare__table tbody tr:last-child td {
    border-bottom: none;
}

.el-compare__table tbody td:first-child {
    font-weight: 600;
    color: var(--tpl-color-sub-a);
}

.el-compare__highlight {
    background: transparent;
}

.el-compare__table thead th.el-compare__highlight {
    background: #ebebeb;
}

.el-check {
    color: #27ae60;
    font-size: 17px;
    margin-right: 8px;
}

.el-cross {
    color: #c0392b;
    font-size: 17px;
    margin-right: 8px;
}


/* ── Steps (Schritte bis zum Zertifikat) ──────────────────────────────── */

#page-product .information .list-steps {
    list-style: none !important;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

#page-product .information .list-steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 20px 20px 20px 72px;
    margin-bottom: 0;
    border-left: none;
    margin-left: 20px;
    list-style: none !important;
}

#page-product .information .list-steps li::after {
    content: '';
    position: absolute;
    left: -1px;
    top: 50px;
    bottom: -18px;
    width: 2px;
    background: var(--tpl-color-main-c);
}

#page-product .information .list-steps li:last-child::after {
    display: none;
}

#page-product .information .list-steps li::before {
    content: counter(step-counter) !important;
    position: absolute;
    left: -17px;
    top: 18px;
    width: 32px;
    height: 32px;
    background: var(--tpl-color-main-b);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--tpl-font-sub);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 150, 210, 0.25);
    border: none;
    transform: none;
}

#page-product .information .list-steps li strong {
    display: block;
    font-size: 16px;
    color: var(--tpl-color-sub-a);
    margin-bottom: 2px;
}


/* ── Orange CTA Button ────────────────────────────────────────────────── */

.btn-cta-primary {
    background: var(--tpl-color-main-a) !important;
    border-color: var(--tpl-color-main-a) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 115, 153, 0.35);
    transition: all 0.25s ease !important;
}

.btn-cta-primary:hover,
.btn-cta-primary:focus {
    background: #005f7f !important;
    border-color: #005f7f !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(0, 95, 127, 0.4);
    transform: translateY(-1px);
}


/* ── Secondary CTA Button (invertiert) ────────────────────────────────── */

.btn-secondary {
    background: transparent !important;
    border: 2px solid var(--tpl-color-main-a) !important;
    color: var(--tpl-color-main-a) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    box-shadow: none;
    transition: all 0.25s ease !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #f0f0f0 !important;
    color: var(--tpl-color-main-a) !important;
    box-shadow: none;
    transform: translateY(-1px);
}


/* ── FAQ accordion ─────────────────────────────────────────────────────── */

.faq {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
}

#page-product .information .faq h2 {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.faq .el-accordion {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq .el-accordion .ult-item {
    /* border-bottom: 1px solid var(--tpl-color-sub-e); */
    cursor: pointer;
}

.faq .el-accordion .ult-item:last-child {
    border-bottom: none;
}

.faq .el-accordion .ult-headline {
    display: flex;
    align-items: center;
    font-family: var(--tpl-font-main);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 20px;
    margin: 0px 0px calc(var(--tpl-spacing-content) * 0.5) 0px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid var(--tpl-color-sub-e);
    color: var(--tpl-color-sub-a);
    transition: background 0.2s;
}

.faq .el-accordion .ult-item:last-child .ult-headline {
    border-bottom: none;
}

.faq .el-accordion .ult-headline:hover {
    background: linear-gradient(135deg, var(--tpl-color-main-e) 0%, var(--tpl-color-main-d) 100%);
}

.faq .el-accordion .ult-toggle {
    margin-left: auto;
    font-size: 12px;
    color: #999;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq .el-accordion .ult-item.is-open .ult-toggle {
    transform: rotate(180deg);
}

.faq .el-accordion .ult-inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    line-height: 1.7;
}

.faq .el-accordion .ult-item.is-open .ult-inner {
    max-height: 500px;
    padding: 0 20px 22px;
}


/* ── Sticky Mobile CTA ─────────────────────────────────────────────────── */

.el-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    padding: 10px 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.el-sticky-cta.visible {
    transform: translateY(0);
}

.el-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.el-sticky-cta__price {
    line-height: 1.2;
}

.el-sticky-cta__rate {
    display: block;
    font-family: var(--tpl-font-sub);
    font-size: 17px;
    font-weight: 700;
    color: var(--tpl-color-sub-a);
    white-space: nowrap;
}

.el-sticky-cta__total {
    display: block;
    font-family: var(--tpl-font-main);
    font-size: 11px;
    font-weight: 400;
    color: var(--tpl-color-sub-b);
    white-space: nowrap;
}

.el-sticky-cta .btn-wip {
    text-align: center;
    font-size: 13px;
    padding: 8px 14px;
    white-space: nowrap;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991.98px) {
    #article {
        padding-top: 40px;
        padding-bottom: 0;
    }

    .benefits .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .el-compare {
        padding: 20px 16px;
    }

    .faq {
        padding: 20px 16px;
    }
}

@media (max-width: 767.98px) {
    #article > .inner.maxwidth.el-content {
        padding-left: 0;
        padding-right: 0;
    }

    .price {
        text-align: center;
    }

    .el-sticky-cta {
        display: block;
        right: 0;
        padding-right: 80px;
    }

    .el-sticky-cta__inner {
        max-width: none;
    }

    .el-sticky-cta .btn-wip {
        font-size: 12px;
        padding: 7px 10px;
    }

    #page-product {
        padding-bottom: 60px;
    }

    #page-product .header {
        padding-top: 25px;
    }

    #page-product .information,
    #page-product .information p,
    #page-product .information li,
    #page-product .information span {
        line-height: 1.7;
    }

    .el-hero-image img {
        border-radius: 8px;
    }

    .el-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .el-usp {
        font-size: 15px;
    }

    .el-toc {
        align-items: center;
        gap: 8px;
        padding: 14px 12px;
        max-width: none;
    }

    .el-toc ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 50px;
    }

    .el-toc li a {
        font-size: 14px;
        padding: 6px 8px;
    }

    .el-compare {
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
        padding: 20px 12px;
    }

    .el-compare__table table {
        font-size: 11px;
    }

    .el-compare__table table td {
        font-size: 13px;
    }

    .el-compare__table thead th,
    .el-compare__table tbody td {
        padding: 8px 8px;
    }

    .el-compare__table thead th:first-child,
    .el-compare__table tbody td:first-child {
        width: 35%;
    }

    #page-product .information h2 {
        font-size: 22px;
    }

    .cta-bottom {
        padding: 24px 20px !important;
        border-radius: 12px;
        width: 100%;
    }

    .cta-bottom .addtocart-wrap .btn-wip {
        font-size: 15px;
        padding: 12px 24px;
    }

    .list-steps li {
        padding: 16px 12px 16px 60px;
    }

    .faq {
        margin-left: -12px;
        margin-right: -12px;
        border-radius: 0;
        padding: 24px 12px;
    }

    #page-product .faq {
        padding-top: 50px;
        width: unset;
    }

    #page-product .faq .el-accordion .ult-headline {
        font-size: 16px;
        line-height: 1.7;
        font-family: var(--tpl-font-sub);
        margin: 0px 0px calc(var(--tpl-spacing-content) * 0.5) 0px;
        font-weight: 400;
        display: flex;
    }

    #page-product {
        padding-bottom: 0px;
    }

    #footerbar .center .mod-menu .lv-0,
    #footerbar .center .mod-si-footer-elearning .lv-0 {
        margin: 0px;
        padding: 0px;
        list-style: none;
        max-width: unset;
    }

    /* ── Footer: TÜV-Logo ausblenden, Rest zentrieren ──────────────── */
    #siegel .siegel.tuev {
        display: none;
    }

    #siegel .siegel-reihe {
        justify-content: center;
    }

    #siegel .siegel-reihe > .siegel:first-child {
        margin-left: 0;
    }

    #siegel .siegel-reihe > .siegel:last-child {
        margin-right: unset;
    }

    #copyright p {
        text-align: center;
    }

    #legalsmenu {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #legalsmenu .lv-0 {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    #legalsmenu .lv-0 > li {
        margin: 0;
        padding-right: 0;
    }

    #legalsmenu .lv-0 > li::after {
        display: none;
    }

    #legalsmenu .lv-0 > li:first-child {
        margin-left: 0;
    }

    #legalsmenu .uc-privacy-link {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        display: block;
        margin-top: 6px;
    }

    .bottom {
        padding-bottom: 80px;
    }


    /* ── Aiko Chatbot neben Sticky CTA ──────────────────────────────── */
    body.has-sticky-cta #wipcrm-chat-trigger {
        bottom: 4px !important;
        right: 8px !important;
    }

    body.has-sticky-cta #wipcrm-chat-trigger .bubble {
        display: none !important;
    }

    body.has-sticky-cta #wipcrm-chat-trigger .avatar {
        width: 52px !important;
        height: 52px !important;
    }
}

@media (max-width: 575.98px) {
    .benefits .row {
        margin-left: 0;
        margin-right: 0;
    }

    .benefits .col-lg-4,
    .benefits .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 4px 0;
    }

    .benefits .benefit {
        text-align: left;
        padding: 12px 14px;
        display: block;
        gap: 2px 14px;
    }

    .benefits .benefit__image {
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        margin: 20px 0px 20px 35px;
        align-self: center;
        background: none;
        border-radius: 0;
    }

    #page-product .benefits .benefit__image img,
    .benefits .benefit__image svg,
    .benefits .benefit__image .wip-image {
        width: 70px;
        height: 70px;
    }

    #page-product .benefits .benefit__title span {
        font-size: 16px;
        line-height: 1.7;
        font-weight: 400;
        word-break: break-word;
    }

    #page-product .benefits .benefit__text * {
        font-size: 16px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .el-sticky-cta {
        padding-right: 72px;
        padding-left: 10px;
    }

    .el-sticky-cta__rate {
        font-size: 15px;
    }

    .el-sticky-cta__total {
        font-size: 10px;
    }

    .el-sticky-cta .btn-wip {
        font-size: 12px;
        padding: 7px 8px;
    }

    body.has-sticky-cta #wipcrm-chat-trigger .avatar {
        width: 48px !important;
        height: 48px !important;
    }

    .list-steps li {
        padding-left: 52px;
        margin-left: 16px;
    }

    .list-steps li::before {
        width: 28px;
        height: 28px;
        font-size: 13px;
        left: -15px;
    }
}
