/* ==========================================================================
   Thalmanntools – Zusatz-Styles für Unterseiten, Blog, Pricing, Kontakt
   ========================================================================== */

/* Hero Positioning · "Software muss nicht kompliziert sein" --------------- */
.tt-hero__positioning {
    margin: .9rem 0 1.4rem;
    max-width: 38rem;
    padding: .15rem 0 .15rem .9rem;
    border-left: 2px solid rgba(91, 43, 229, .35);
    font-size: .98rem;
    line-height: 1.5;
    color: var(--tt-ink-soft, #5b5870);
    font-style: italic;
}

    .tt-hero__positioning strong {
        color: var(--tt-ink, #0f172a);
        font-weight: 700;
        font-style: normal;
    }

/* Hero "Kundenaussagen ansehen" – dezenter Textlink mit Stars -------------- */
.tt-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: var(--tt-ink, #0f172a);
    transition: color .15s ease, transform .15s ease;
}

    .tt-hero__rating:hover,
    .tt-hero__rating:focus-visible {
        transform: translateY(-1px);
    }

        .tt-hero__rating:hover .tt-hero__rating-cta,
        .tt-hero__rating:focus-visible .tt-hero__rating-cta {
            color: var(--tt-accent, #5b2be5);
            text-decoration: underline;
            text-underline-offset: .2em;
        }

    .tt-hero__rating .tt-stars {
        color: #f5b400;
        letter-spacing: -.05em;
    }

    .tt-hero__rating strong {
        color: var(--tt-ink, #0f172a);
    }

.tt-hero__rating-cta {
    color: var(--tt-ink-soft, #5b5870);
    font-size: .9rem;
    padding-left: .35rem;
    border-left: 1px solid rgba(0, 0, 0, .12);
    margin-left: .25rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: .2em;
    text-decoration-color: rgba(91, 43, 229, .35);
    transition: color .15s ease;
}

/* Hero "Warum es Thalmanntools gibt" – dezenter unterstrichener Link mit Pfeil */
.tt-hero__why-link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin-top: .55rem;
    color: var(--tt-ink-soft, #5b5870);
    font-size: .9rem;
    font-style: normal;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: .22em;
    text-decoration-color: rgba(91, 43, 229, .4);
    transition: color .15s ease, text-decoration-color .15s ease, transform .15s ease;
}

    .tt-hero__why-link:hover,
    .tt-hero__why-link:focus-visible {
        color: var(--tt-accent, #5b2be5);
        text-decoration-color: var(--tt-accent, #5b2be5);
        transform: translateY(1px);
    }

/* Honest Section · "Was kann Thalmanntools nicht?" -------------------------- */
.tt-honest {
    background:
        radial-gradient(800px 400px at 90% 0%, #FFF7ED 0%, rgba(255,247,237,0) 55%),
        radial-gradient(700px 380px at 0% 100%, #F5F3FF 0%, rgba(245,243,255,0) 55%),
        #ffffff;
    position: relative;
}

.tt-honest__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.tt-honest__card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    padding: 2.25rem 1.5rem 1.5rem;
    box-shadow: 0 18px 40px -28px rgba(15, 23, 42, .35);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

    .tt-honest__card:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 50px -28px rgba(91, 43, 229, .35);
        border-color: #ddd6fe;
    }

.tt-honest__no {
    position: absolute;
    top: -18px;
    left: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb7185, #f43f5e);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px -8px rgba(244, 63, 94, .55);
}

.tt-honest__card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #0f172a;
    line-height: 1.35;
}

.tt-honest__what {
    margin: 0;
    color: #475569;
    line-height: 1.55;
    font-size: .95rem;
}

.tt-honest__how {
    margin: auto 0 0;
    padding: .9rem 1rem;
    background: linear-gradient(135deg, #f5f3ff 0%, #faf7ff 100%);
    border-left: 3px solid #5b2be5;
    border-radius: 10px;
    color: #0f172a;
    font-size: .92rem;
    line-height: 1.5;
}

    .tt-honest__how strong {
        color: #5b2be5;
    }

.tt-honest__close {
    margin: 2.25rem auto 0;
    max-width: 48rem;
    text-align: center;
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.6;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(15, 23, 42, .12);
}

/* Sub-Page Hero ----------------------------------------------------------- */
.tt-page-hero {
    position: relative;
    padding: 4rem 0 3rem;
    background: radial-gradient(900px 450px at 10% -10%, #EDE6FF 0%, rgba(237,230,255,0) 55%), radial-gradient(700px 400px at 100% 0%, #E5ECFF 0%, rgba(229,236,255,0) 55%), linear-gradient(180deg, #FBFAFF 0%, #ffffff 80%);
    border-bottom: 1px solid var(--tt-border);
}

@media (min-width: 900px) {
    .tt-page-hero {
        padding: 6rem 0 4rem;
    }
}

.tt-page-hero__inner {
    max-width: 820px;
}

.tt-page-hero__inner--center {
    margin: 0 auto;
    text-align: center;
}

.tt-page-hero__title {
    font-size: clamp(2rem, 2.8vw + 1rem, 3rem);
    line-height: 1.15;
    margin: .4rem 0 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.tt-page-hero__lead {
    font-size: 1.125rem;
    color: var(--tt-muted);
    margin: 0;
}

/* Reassurance-Zeile direkt unter dem Lead (Trust-Anker im Hero) ---------- */
.tt-page-hero__trust {
    margin: 1rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--tt-ink, #0f172a);
    line-height: 1.5;
}

    .tt-page-hero__trust strong {
        font-weight: 800;
    }

/* Trust-Bar (3 Säulen unter dem Pricing-Grid) ---------------------------- */
.tt-trustbar {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

    .tt-trustbar > div strong {
        display: block;
        font-size: 1.05rem;
        margin-bottom: .15rem;
    }

    .tt-trustbar > div span {
        color: #475569;
        font-size: .92rem;
        line-height: 1.5;
    }

/* Stichtag-Banner (Loss Aversion ohne Druck) ----------------------------- */
.tt-deadline {
    margin: 1.25rem auto 0;
    max-width: 640px;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    color: #9a3412;
    font-size: .92rem;
    font-weight: 600;
}

    .tt-deadline::before {
        content: "⏳";
        font-size: 1rem;
    }

/* Breadcrumb -------------------------------------------------------------- */
.tt-breadcrumb {
    margin: 0 0 1.4rem;
    font-size: .9rem;
    color: var(--tt-muted-2);
}

    .tt-breadcrumb a {
        color: var(--tt-muted);
    }

        .tt-breadcrumb a:hover {
            color: var(--tt-violet);
        }

    .tt-breadcrumb span {
        margin: 0 .35rem;
        color: var(--tt-muted-2);
    }

/* Feature-Blöcke (Funktionen-Seite) -------------------------------------- */
.tt-feature-row {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 900px) {
    .tt-feature-row {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .tt-feature-row--reverse > :first-child {
        order: 2;
    }
}

.tt-feature-row__visual {
    background: linear-gradient(160deg, #F3F0FF 0%, #EEF2FF 100%);
    border-radius: var(--tt-r-xl);
    padding: 2rem;
    border: 1px solid var(--tt-border);
    box-shadow: var(--tt-shadow-1);
    min-height: 260px;
    display: grid;
    place-items: center;
    color: var(--tt-violet);
    font-weight: 700;
}

.tt-feature-row h3 {
    font-size: 1.6rem;
    margin: .3rem 0 .8rem;
}

.tt-feature-row ul.tt-check {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: .5rem;
}

    .tt-feature-row ul.tt-check li {
        color: var(--tt-ink-soft);
    }

        /* Bewusst leerer content, damit die globale Check-Bullet-Grafik
           (weisser Haken im violetten Kreis) aus thalmanntools.css greift
           und kein zweiter violetter Text-Haken darübergelegt wird. */
        .tt-feature-row ul.tt-check li::before {
            content: "";
        }

/* Etwas mehr Luft zwischen Vorteilsliste und dem CTA-Link in den Branchen-Rows. */
.tt-feature-row ul.tt-check + p {
    margin-top: 1.4rem;
}

/* Industry Detail (kleine Info-Leiste) ----------------------------------- */
.tt-info-bar {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-lg);
    padding: 1.5rem;
    box-shadow: var(--tt-shadow-1);
    margin-bottom: 2.5rem;
}

@media (min-width: 800px) {
    .tt-info-bar {
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
    }
}

.tt-info-bar__item strong {
    display: block;
    color: var(--tt-violet);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .2rem;
}

/* Pricing ---------------------------------------------------------------- */
.tt-pricing__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}

@media (min-width: 800px) {
    .tt-pricing__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tt-plan {
    position: relative;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-xl);
    padding: 2rem;
    box-shadow: var(--tt-shadow-1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

    .tt-plan:hover {
        transform: translateY(-3px);
        box-shadow: var(--tt-shadow-2);
    }

.tt-plan--highlight {
    border-color: #D8D2F5;
    background: linear-gradient(160deg, #F3F0FF 0%, #ffffff 60%);
    box-shadow: var(--tt-shadow-2);
}

.tt-plan__badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--tt-grad-cta);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 999px;
}

.tt-plan__name {
    font-size: 1.25rem;
    margin: 0;
    color: var(--tt-ink);
}

.tt-plan__price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
}

    .tt-plan__price strong {
        font-size: 2.4rem;
        color: var(--tt-ink);
        font-weight: 800;
    }

    .tt-plan__price span {
        color: var(--tt-muted);
        font-size: .95rem;
    }

.tt-plan__desc {
    color: var(--tt-muted);
    margin: 0;
}

.tt-plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .45rem;
    border-top: 1px dashed var(--tt-border);
    padding-top: 1rem;
}

    .tt-plan ul li {
        position: relative;
        padding-left: 1.5rem;
        color: var(--tt-ink-soft);
    }

        .tt-plan ul li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--tt-violet);
            font-weight: 700;
        }

.tt-plan .tt-btn {
    margin-top: auto;
}

.tt-pricing-note {
    margin-top: 2rem;
    text-align: center;
    color: var(--tt-muted);
    font-size: .95rem;
}

/* Pricing-Anpassungen für Light / Pro / Enterprise ----------------------- */
.tt-plan__price {
    align-items: flex-start;
    margin-top: .5rem;
}
.tt-plan__price strong {
    font-size: clamp(2.4rem, 4vw + 1rem, 3.4rem);
    line-height: 1.05;
    letter-spacing: -.02em;
}
.tt-plan__price--xl strong {
    font-size: clamp(2.2rem, 3.5vw + 1rem, 3rem);
    line-height: 1.05;
}
.tt-plan__price span {
    line-height: 1.2;
    padding-top: .55rem;
}
.tt-plan__includes {
    margin: .25rem 0 -.5rem;
    color: var(--tt-muted);
    font-size: .9rem;
}
.tt-plan ul {
    border-top: 0;
    padding-top: 0;
    gap: .55rem;
}

/* Highlight-Karte (Pro) als kräftiger Lila-Block. */
.tt-plan--highlight {
    background: linear-gradient(160deg, #6F58E8 0%, #5B45D6 60%, #5036C9 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 18px 38px rgba(76, 31, 203, .25);
}
.tt-plan--highlight .tt-plan__name,
.tt-plan--highlight .tt-plan__price strong { color: #fff; }
.tt-plan--highlight .tt-plan__desc,
.tt-plan--highlight .tt-plan__includes,
.tt-plan--highlight .tt-plan__price span { color: rgba(255, 255, 255, .82); }
.tt-plan--highlight ul li { color: #fff; }
.tt-plan--highlight ul li::before {
    content: "";
    width: 18px; height: 18px;
    border-radius: 50%;
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235B45D6' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 11px 11px no-repeat,
        #fff;
    top: .25rem;
    color: transparent;
}
.tt-plan--highlight .tt-plan__badge {
    position: static;
    align-self: flex-start;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    backdrop-filter: blur(2px);
    margin-bottom: -.25rem;
}

/* Plan-Listen mit grünen Häkchen für Light & Enterprise. */
.tt-plan ul li {
    padding-left: 1.85rem;
}
.tt-plan ul li::before {
    content: "";
    position: absolute;
    left: 0; top: .25rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    background:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 11px 11px no-repeat,
        linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: transparent;
}

/* Dunkle und invertierte Buttons für die Plan-Cards. */
.tt-btn--dark {
    background: #1B2233;
    color: #fff;
    border: 1px solid #1B2233;
}
.tt-btn--dark:hover {
    background: #0F1422;
    border-color: #0F1422;
    color: #fff;
}
.tt-btn--invert {
    background: #fff;
    color: #1B2233;
    border: 1px solid #fff;
}
.tt-btn--invert:hover {
    background: #F4F2FF;
    color: #1B2233;
}

/* ==========================================================================
   Volle Preistransparenz – Bausteine + Beispiele
   ========================================================================== */
.tt-priceflow__blocks {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin: 2rem 0 2.5rem;
}
@media (min-width: 720px) {
    .tt-priceflow__blocks { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .tt-priceflow__blocks { grid-template-columns: repeat(4, 1fr); }
}
.tt-priceflow__block {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-lg);
    padding: 1.1rem 1.25rem;
    box-shadow: var(--tt-shadow-1);
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.tt-priceflow__label {
    color: var(--tt-violet);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.tt-priceflow__block strong {
    font-size: 1.4rem;
    color: var(--tt-ink);
    font-weight: 800;
    letter-spacing: -.01em;
}
.tt-priceflow__block span:last-child {
    color: var(--tt-muted);
    font-size: .9rem;
}

.tt-priceflow__examples {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
}
@media (min-width: 900px) {
    .tt-priceflow__examples { grid-template-columns: 1fr 1fr; }
}
.tt-priceflow__example {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-xl);
    padding: 1.5rem;
    box-shadow: var(--tt-shadow-1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tt-priceflow__example header h3 {
    margin: .35rem 0 0;
    font-size: 1.2rem;
    color: var(--tt-ink);
}
.tt-priceflow__lines {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .55rem;
    border-top: 1px dashed var(--tt-border);
    border-bottom: 1px dashed var(--tt-border);
    padding: .85rem 0;
}
.tt-priceflow__lines li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--tt-ink-soft);
    font-size: .96rem;
}
.tt-priceflow__lines li em {
    font-style: normal;
    color: var(--tt-ink);
    font-weight: 600;
    white-space: nowrap;
}
.tt-priceflow__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}
.tt-priceflow__total span {
    color: var(--tt-muted);
    font-size: .95rem;
}
.tt-priceflow__total strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #16A34A;
    letter-spacing: -.01em;
}
.tt-priceflow__example--accent {
    border-color: #D8D2F5;
    background: linear-gradient(160deg, #F6F2FF 0%, #ffffff 70%);
}

.tt-priceflow__notes {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
}
@media (min-width: 720px) {
    .tt-priceflow__notes { grid-template-columns: 1fr 1fr; }
}
.tt-priceflow__note {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-left: 4px solid var(--tt-violet);
    border-radius: var(--tt-r-md);
    padding: 1rem 1.25rem;
}
.tt-priceflow__note h4 {
    margin: 0 0 .35rem;
    font-size: 1rem;
}
.tt-priceflow__note p,
.tt-priceflow__note ul {
    margin: 0;
    color: var(--tt-ink-soft);
    font-size: .95rem;
}
.tt-priceflow__note ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: .35rem;
}
.tt-priceflow__note ul li {
    position: relative;
    padding-left: 1.25rem;
}
.tt-priceflow__note ul li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: #16A34A;
    font-weight: 800;
}
.tt-priceflow__note--mint {
    border-left-color: #16A34A;
    background: #F1FBF5;
}

/* FAQ -------------------------------------------------------------------- */
.tt-faq {
    display: grid;
    gap: .75rem;
    max-width: 820px;
    margin: 0 auto;
}

    .tt-faq details {
        background: #fff;
        border: 1px solid var(--tt-border);
        border-radius: var(--tt-r-md);
        padding: 1rem 1.25rem;
        box-shadow: var(--tt-shadow-1);
        transition: border-color .25s ease,
                    box-shadow .25s ease,
                    background-color .25s ease;
    }

        .tt-faq details:hover {
            border-color: #D8D2F5;
        }

        .tt-faq details[open] {
            border-color: #D8D2F5;
            box-shadow: 0 10px 28px -16px rgba(91, 43, 229, .25);
        }

    .tt-faq summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--tt-ink);
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        transition: color .2s ease;
    }

        .tt-faq summary::-webkit-details-marker {
            display: none;
        }

        .tt-faq summary:hover {
            color: var(--tt-violet);
        }

        /* Chevron statt +/– – rotiert smooth beim Öffnen */
        .tt-faq summary::after {
            content: "";
            flex: none;
            width: 10px;
            height: 10px;
            border-right: 2px solid var(--tt-violet);
            border-bottom: 2px solid var(--tt-violet);
            border-radius: 1px;
            transform: translateY(-2px) rotate(45deg);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
        }

    .tt-faq details[open] summary::after {
        transform: translateY(2px) rotate(-135deg);
    }

    .tt-faq p {
        margin: .75rem 0 0;
        color: var(--tt-muted);
        animation: ttFaqFadeIn .35s cubic-bezier(.4, 0, .2, 1);
    }

@keyframes ttFaqFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Smoothe Höhen-Animation für moderne Browser (Chrome 129+, Edge 129+).
   Fallback in älteren Browsern: weiterhin sauberes Auf-/Zuklappen ohne Höhenanimation. */
@supports (interpolate-size: allow-keywords) {
    .tt-faq {
        interpolate-size: allow-keywords;
    }

    .tt-faq details::details-content {
        block-size: 0;
        overflow: clip;
        opacity: 0;
        transition: content-visibility .4s allow-discrete,
                    block-size .4s cubic-bezier(.4, 0, .2, 1),
                    opacity .25s ease;
    }

    .tt-faq details[open]::details-content {
        block-size: auto;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tt-faq details,
    .tt-faq summary,
    .tt-faq summary::after,
    .tt-faq p,
    .tt-faq details::details-content {
        transition: none !important;
        animation: none !important;
    }
}

/* Contact ---------------------------------------------------------------- */
.tt-contact__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .tt-contact__grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
}

.tt-form {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-xl);
    padding: 2rem;
    box-shadow: var(--tt-shadow-2);
    display: grid;
    gap: 1rem;
}

    .tt-form label {
        display: grid;
        gap: .35rem;
        font-weight: 600;
        color: var(--tt-ink);
        font-size: .95rem;
    }

    .tt-form input,
    .tt-form select,
    .tt-form textarea {
        font: inherit;
        padding: .75rem .9rem;
        border-radius: var(--tt-r-sm);
        border: 1px solid var(--tt-border);
        background: #FBFAFF;
        color: var(--tt-ink);
        transition: border-color .15s, box-shadow .15s, background .15s;
    }

        .tt-form input:focus,
        .tt-form select:focus,
        .tt-form textarea:focus {
            outline: none;
            border-color: var(--tt-violet);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(91,43,229,.12);
        }

    .tt-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    .tt-form .tt-form__row {
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
    }

@media (max-width: 600px) {
    .tt-form .tt-form__row {
        grid-template-columns: 1fr;
    }
}

.tt-form__hint {
    color: var(--tt-muted);
    font-size: .88rem;
    margin: 0;
}

.tt-contact-card {
    background: linear-gradient(160deg, #F3F0FF 0%, #EEF2FF 100%);
    border: 1px solid #D8D2F5;
    border-radius: var(--tt-r-xl);
    padding: 2rem;
}

    .tt-contact-card h3 {
        margin: 0 0 .5rem;
    }

    .tt-contact-card dl {
        display: grid;
        gap: .8rem;
        margin: 1rem 0 0;
    }

    .tt-contact-card dt {
        color: var(--tt-muted);
        font-size: .85rem;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .tt-contact-card dd {
        margin: .15rem 0 0;
        font-weight: 600;
        color: var(--tt-ink);
    }

/* Blog ------------------------------------------------------------------- */
.tt-blog-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}

@media (min-width: 700px) {
    .tt-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .tt-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tt-blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-lg);
    overflow: hidden;
    box-shadow: var(--tt-shadow-1);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    text-decoration: none;
    color: inherit;
}

    .tt-blog-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--tt-shadow-2);
        border-color: #D8D2F5;
        color: inherit;
    }

.tt-blog-card__cover {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #5B2BE5 0%, #3C6DF0 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem;
    text-align: center;
}

.tt-blog-card__cover--mint {
    background: linear-gradient(135deg, #1F7A54 0%, #3CAE7F 100%);
}

.tt-blog-card__cover--sand {
    background: linear-gradient(135deg, #8A5A17 0%, #D49A3A 100%);
}

.tt-blog-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.tt-blog-card__meta {
    color: var(--tt-muted-2);
    font-size: .82rem;
}

.tt-blog-card h3 {
    margin: 0;
    font-size: 1.15rem;
}

.tt-blog-card p {
    margin: 0;
    color: var(--tt-muted);
}

.tt-blog-card__more {
    margin-top: auto;
    color: var(--tt-violet);
    font-weight: 700;
    font-size: .92rem;
}

/* Blog-Artikel ------------------------------------------------------------ */
.tt-article {
    /* full-width: innere Sections bringen ihre eigene .tt-container-Breite mit */
    width: 100%;
}

    .tt-article header {
        margin-bottom: 2rem;
    }

.tt-article__meta {
    color: var(--tt-muted);
    font-size: .9rem;
    margin-bottom: .75rem;
}

.tt-article h1 {
    font-size: clamp(2rem, 2.6vw + 1rem, 2.6rem);
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 800;
}

.tt-article__cover {
    aspect-ratio: 16 / 7;
    border-radius: var(--tt-r-xl);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #5B2BE5 0%, #3C6DF0 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    box-shadow: var(--tt-shadow-2);
}

.tt-article__body {
    font-size: 1.05rem;
    color: var(--tt-ink-soft);
    line-height: 1.75;
}

    .tt-article__body h2 {
        font-size: 1.5rem;
        margin: 2.5rem 0 .75rem;
    }

    .tt-article__body h3 {
        font-size: 1.2rem;
        margin: 1.8rem 0 .5rem;
    }

    .tt-article__body ul {
        padding-left: 1.25rem;
    }

    .tt-article__body blockquote {
        border-left: 3px solid var(--tt-violet);
        padding: .5rem 1.25rem;
        margin: 1.5rem 0;
        background: var(--tt-bg-lavender);
        border-radius: 0 var(--tt-r-md) var(--tt-r-md) 0;
        color: var(--tt-ink);
        font-weight: 500;
    }

.tt-article__footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--tt-border);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Teaser-Karten für Home-Links ------------------------------------------- */
.tt-teaser-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}

@media (min-width: 700px) {
    .tt-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .tt-teaser-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tt-teaser {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.5rem;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-lg);
    background: #fff;
    box-shadow: var(--tt-shadow-1);
    color: inherit;
    text-decoration: none;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}

    .tt-teaser:hover {
        transform: translateY(-2px);
        border-color: #D8D2F5;
        box-shadow: var(--tt-shadow-2);
        color: inherit;
    }

    .tt-teaser strong {
        font-size: 1.1rem;
        color: var(--tt-ink);
    }

    .tt-teaser span {
        color: var(--tt-muted);
        font-size: .95rem;
    }

    .tt-teaser em {
        margin-top: .4rem;
        color: var(--tt-violet);
        font-style: normal;
        font-weight: 700;
        font-size: .9rem;
    }

/* ==========================================================================
   Home V4 – Hero trustline, Social Proof Bar, Inputs Row, Testimonials Plus
   ========================================================================== */

/* Hero trust-line ---------------------------------------------------------- */
.tt-hero__trustline {
    list-style: none;
    padding: 0;
    margin: 1.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem .65rem;
    max-width: 880px;
}

    .tt-hero__trustline li {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        padding: .4rem .85rem .4rem .7rem;
        background: #fff;
        border: 1px solid var(--tt-border);
        border-radius: 999px;
        color: var(--tt-ink-soft, var(--tt-ink));
        font-size: .9rem;
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
        box-shadow: var(--tt-shadow-1);
    }

        .tt-hero__trustline li::before {
            content: "";
            width: 14px;
            height: 14px;
            flex: 0 0 auto;
            border-radius: 50%;
            background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/10px 10px no-repeat, var(--tt-grad-cta);
        }

/* Social proof bar -------------------------------------------------------- */
.tt-socialbar {
    background: linear-gradient(180deg, #FBFAFF 0%, #ffffff 100%);
    border-top: 1px solid var(--tt-border);
    border-bottom: 1px solid var(--tt-border);
    padding: 1.5rem 0;
}

.tt-socialbar__inner {
    display: grid;
    gap: 1.25rem;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .tt-socialbar__inner {
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
    }
}

.tt-socialbar__rating {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.tt-socialbar__ratingtext {
    display: grid;
    line-height: 1.2;
}

    .tt-socialbar__ratingtext strong {
        font-size: 1.05rem;
        color: var(--tt-ink);
    }

    .tt-socialbar__ratingtext span {
        font-size: .82rem;
        color: var(--tt-muted);
    }

.tt-socialbar__claim {
    margin: 0;
    color: var(--tt-ink-soft);
    font-size: .98rem;
    text-align: center;
}

/* Stars -------------------------------------------------------------------- */
.tt-stars {
    color: #F5B301;
    letter-spacing: .1em;
    font-size: 1.05rem;
    line-height: 1;
}

/* Logo bar (placeholders) ------------------------------------------------- */
.tt-logobar {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
}

.tt-logo-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .8rem;
    border: 1px dashed var(--tt-border);
    border-radius: var(--tt-r-sm, 8px);
    background: #fff;
    color: var(--tt-muted);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .01em;
    min-height: 36px;
}

.tt-logo-placeholder--sm {
    padding: .15rem .45rem;
    font-size: .72rem;
    min-height: auto;
    margin-right: .4rem;
}

/* Inputs row (Zettel · Excel · WhatsApp …) -------------------------------- */
.tt-inputs {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem .6rem;
    max-width: 820px;
}

    .tt-inputs li {
        background: #fff;
        border: 1px solid var(--tt-border);
        border-radius: 999px;
        padding: .45rem .9rem;
        font-size: .92rem;
        color: var(--tt-ink-soft);
        box-shadow: var(--tt-shadow-1);
    }

/* Testimonial extras (photo placeholder avatar + KPI strip) --------------- */
.tt-avatar.tt-avatar--photo {
    width: 48px;
    min-width: 48px;
    height: 48px;
    background: linear-gradient(160deg, #EDE6FF 0%, #E5ECFF 100%);
    color: var(--tt-violet);
    border: 1px dashed rgba(60, 109, 240, .35);
}

/* Echtes Foto-Portrait: gleicher Slot wie der Initialen-Avatar, aber als <img> */
img.tt-avatar.tt-avatar--photo {
    background: none;
    border: 1px solid rgba(15, 23, 42, .08);
    object-fit: cover;
    object-position: center top;
    display: inline-block;
}

.tt-testimonial__company {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem .65rem;
    color: var(--tt-muted);
    font-size: .85rem;
    line-height: 1.35;
    margin-top: .15rem;
}

/* Firmenlogo dezent als Brand-Marker neben/unter dem Namen.
   Einheitliche Höhe, Breite kontrolliert, leicht entsättigt für ruhiges Bild. */
.tt-testimonial__logo {
    display: inline-block;
    height: 40px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    object-position: left center;
    vertical-align: middle;
    margin-right: .15rem;
    filter: grayscale(15%);
    opacity: .92;
    transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.tt-testimonial:hover .tt-testimonial__logo {
    filter: none;
    opacity: 1;
}

/* Sanftes Anführungszeichen, wertet die Karte auf ohne aufdringlich zu sein. */
.tt-testimonial {
    position: relative;
}
.tt-testimonial::before {
    content: "\201C"; /* „ */
    position: absolute;
    top: .35rem;
    right: 1.1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--tt-accent-soft);
    pointer-events: none;
    z-index: 0;
}
.tt-testimonial > * { position: relative; z-index: 1; }

/* Sterne einheitlich warm einfärben (überschreibt vorhandenes Yellow nur wenn nötig). */
.tt-testimonial .tt-stars {
    color: #F5B301;
    letter-spacing: .08em;
    font-size: 1rem;
}

/* Meta-Block: Avatar links, Name + Brand rechts in zwei Zeilen. */
.tt-testimonial__meta {
    align-items: flex-start;
    margin-top: auto; /* schiebt Meta nach unten, Karten gleichen sich aus */
    padding-top: .75rem;
    border-top: 1px solid var(--tt-border);
}
.tt-testimonial__meta > div {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    min-width: 0;
}

.tt-testimonial__kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    border-top: 1px solid var(--tt-border);
    padding-top: 1rem;
}

/* Dark-Variante: setzt Akzente und bricht den Karten-Rhythmus optisch auf. */
.tt-testimonial--dark {
    background: #1B2233;
    border-color: #1B2233;
    color: #E5E9F2;
    box-shadow: 0 14px 30px rgba(27, 34, 51, .25);
}
.tt-testimonial--dark p {
    color: #E5E9F2;
}
.tt-testimonial--dark .tt-testimonial__name {
    color: #fff;
}
.tt-testimonial--dark .tt-testimonial__company {
    color: #A8B0C2;
}
.tt-testimonial--dark .tt-testimonial__meta {
    border-top-color: rgba(255, 255, 255, .08);
}
.tt-testimonial--dark::before {
    color: rgba(255, 255, 255, .12);
}
.tt-testimonial--dark .tt-stars {
    color: #FFD24D;
}
.tt-testimonial--dark .tt-avatar {
    background: linear-gradient(160deg, #2C3550 0%, #3B4A75 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, .15);
}
.tt-testimonial--dark .tt-testimonial__logo {
    filter: brightness(0) invert(1);
    opacity: .85;
}
.tt-testimonial--dark .tt-testimonial__kpis {
    border-top-color: rgba(255, 255, 255, .08);
}
.tt-testimonial--dark .tt-testimonial__kpis strong {
    color: #C9B8FF;
}
.tt-testimonial--dark .tt-testimonial__kpis span {
    color: #A8B0C2;
}

    .tt-testimonial__kpis div {
        display: grid;
        line-height: 1.25;
    }

    .tt-testimonial__kpis strong {
        font-size: 1.4rem;
        color: var(--tt-violet);
        font-weight: 800;
    }

    .tt-testimonial__kpis span {
        font-size: .8rem;
        color: var(--tt-muted);
    }

/* ==========================================================================
   Home V4 – Social Proof Bar V2 (richer)
   ========================================================================== */
.tt-socialbar {
    background: radial-gradient(600px 200px at 0% 0%, rgba(140, 95, 255, .06) 0%, rgba(255,255,255,0) 70%), radial-gradient(600px 200px at 100% 100%, rgba(60, 109, 240, .06) 0%, rgba(255,255,255,0) 70%), linear-gradient(180deg, #FBFAFF 0%, #ffffff 100%);
    border-top: 1px solid var(--tt-border);
    border-bottom: 1px solid var(--tt-border);
    padding: 1.75rem 0;
}

.tt-socialbar__claim {
    margin: 0 auto 1.25rem;
    text-align: center;
    color: var(--tt-ink-soft, var(--tt-ink));
    font-size: 1rem;
    line-height: 1.5;
    max-width: 720px;
}

.tt-socialbar__hint {
    display: block;
    margin-top: .25rem;
    color: var(--tt-muted);
    font-size: .88rem;
    font-style: italic;
}

.tt-socialbar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 2rem;
}

@media (min-width: 1000px) {
    .tt-socialbar__inner {
        justify-content: space-between;
        flex-wrap: nowrap;
    }
}

/* Logo-Marquee (endlos laufender Logo-Slider) ----------------------------- */
.tt-logo-marquee {
    --tt-marquee-duration: 60s;
    --tt-marquee-fade: 64px;
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--tt-marquee-fade), #000 calc(100% - var(--tt-marquee-fade)), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 var(--tt-marquee-fade), #000 calc(100% - var(--tt-marquee-fade)), transparent 100%);
}
.tt-logo-marquee__track {
    display: flex;
    width: max-content;
    gap: .85rem;
    animation: tt-logo-marquee var(--tt-marquee-duration) linear infinite;
    will-change: transform;
}
.tt-logo-marquee__group {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .85rem;
    flex: 0 0 auto;
    padding-bottom: 25px;
    padding-top:18px;
}
.tt-logo-marquee__group li { flex: 0 0 auto; }
.tt-logo-marquee:hover .tt-logo-marquee__track,
.tt-logo-marquee:focus-within .tt-logo-marquee__track {
    animation-play-state: paused;
}

img.tt-testimonial__logo {
    max-width: 150px;
    margin-top: 9px;
    margin-bottom: 10px;
}

@keyframes tt-logo-marquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .tt-logo-marquee__track { animation: none; }
    .tt-logo-marquee {
        overflow-x: auto;
        scrollbar-width: thin;
        -webkit-mask-image: none;
                mask-image: none;
    }
}
@media (max-width: 700px) {
    .tt-logo-marquee { --tt-marquee-duration: 45s; --tt-marquee-fade: 32px; }
}

/* Auf Mobile/Tablet: Logo-Marquee kommt unter das Google-Bewertungs-Pill,
   nicht daneben. Damit bleibt das Rating sauber lesbar. */
@media (max-width: 999px) {
    .tt-socialbar__inner { justify-content: center; }
    .tt-socialbar__rating { flex: 0 0 auto; }
    .tt-logo-marquee { flex: 1 0 100%; width: 100%; }
}

/* Rating block ------------------------------------------------------------ */
.tt-socialbar__rating {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 999px;
    padding: .55rem .9rem .55rem .55rem;
    box-shadow: var(--tt-shadow-1);
    flex: 0 0 auto;
}

.tt-google-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--tt-border);
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.tt-socialbar__ratingbody {
    display: grid;
    line-height: 1.15;
}

    .tt-socialbar__ratingbody .tt-stars {
        font-size: .95rem;
    }

.tt-socialbar__ratingtext {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    flex-wrap: wrap;
}

    .tt-socialbar__ratingtext strong {
        font-size: .98rem;
        color: var(--tt-ink);
    }

    .tt-socialbar__ratingtext span {
        font-size: .78rem;
        color: var(--tt-muted);
    }

/* Logo bar V2 ------------------------------------------------------------- */
.tt-logobar {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .6rem;
    justify-content: center;
}

.tt-logo-placeholder {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .4rem .9rem .4rem .4rem;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 999px;
    color: var(--tt-ink);
    font-size: .85rem;
    font-weight: 600;
    box-shadow: var(--tt-shadow-1);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .tt-logo-placeholder:hover {
        transform: translateY(-1px);
        box-shadow: var(--tt-shadow-2);
    }

.tt-logo-placeholder__mark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 0;
    flex: 0 0 auto;
    background: var(--tt-grad-cta);
}

    .tt-logo-placeholder__mark[data-color="violet"] {
        background: linear-gradient(160deg, #8B5CF6 0%, #6D28D9 100%);
    }

    .tt-logo-placeholder__mark[data-color="indigo"] {
        background: linear-gradient(160deg, #3C6DF0 0%, #1E40AF 100%);
    }

    .tt-logo-placeholder__mark[data-color="amber"] {
        background: linear-gradient(160deg, #F59E0B 0%, #B45309 100%);
    }

    .tt-logo-placeholder__mark[data-color="mint"] {
        background: linear-gradient(160deg, #10B981 0%, #047857 100%);
    }

    .tt-logo-placeholder__mark[data-color="rose"] {
        background: linear-gradient(160deg, #F43F5E 0%, #9F1239 100%);
    }

/* small variant inside testimonial cards */
.tt-logo-placeholder--sm {
    padding: .1rem .5rem .1rem .15rem;
    font-size: .72rem;
    box-shadow: none;
    margin-right: .4rem;
    gap: .35rem;
}

    .tt-logo-placeholder--sm .tt-logo-placeholder__mark {
        width: 18px;
        height: 18px;
        font-size: .65rem;
    }

/* Logo chip (Kundenlogos in der Social-Proof-Bar) ------------------------ */
.tt-logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*    height: 56px;*/
    height: 90px;
    padding: .35rem 1rem;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    box-shadow: var(--tt-shadow-1);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .tt-logo-chip:hover {
        transform: translateY(-1px);
        box-shadow: var(--tt-shadow-2);
        border-color: #D8D2F5;
    }

    .tt-logo-chip img {
        max-height: 50px;
        /* max-width: 140px; */
        max-width: 160px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        filter: grayscale(100%);
        opacity: .8;
        transition: filter .2s ease, opacity .2s ease;
    }

    .tt-logo-chip:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

/* ============================ FAIR STARTEN ============================= */
.tt-fair__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

@media (min-width: 760px) {
    .tt-fair__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .tt-fair__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tt-fair__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-lg);
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: var(--tt-shadow-1);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

    .tt-fair__card:hover {
        transform: translateY(-3px);
        box-shadow: var(--tt-shadow-2);
        border-color: #D8D2F5;
    }

.tt-fair__icon {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(160deg, #F3EEFF 0%, #E6DCFF 100%);
    color: var(--tt-violet);
    flex: 0 0 auto;
}

.tt-fair__badge {
    align-self: flex-start;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--tt-violet-strong, #4C1FCB);
    background: #F3EEFF;
    border: 1px solid #E2D6FB;
    border-radius: 999px;
    padding: .25rem .65rem;
}

.tt-fair__card h3 {
    font-size: 1.15rem;
    margin: .25rem 0 .25rem;
    color: var(--tt-ink);
}

.tt-fair__card p {
    color: var(--tt-muted);
    margin: 0;
    font-size: .98rem;
    line-height: 1.55;
}

.tt-fair__cta {
    margin-top: 2.25rem;
    text-align: center;
}

/* Hide stand-alone .tt-logo-placeholder text nodes that don't have a mark
   gracefully (legacy occurrences) */


/* ============================== TYPER ================================== */
.tt-hero__headline-line { display: block; }
.tt-typer {
    /* inline-block statt inline-flex: iOS Safari rendert background-clip:text
       + transparent fill auf flex-Containern oft fehlerhaft (Text bleibt unsichtbar
       oder ohne Animation). inline-block ist sicher. */
    display: inline-block;
    vertical-align: baseline;
    color: var(--tt-violet);
    background: linear-gradient(135deg, var(--tt-violet) 0%, #3C6DF0 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    /* erlaubt Umbruch innerhalb des Phrasentexts auf schmalen Viewports */
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    line-height: 1.25;
    padding-bottom: .12em;
    min-height: 1.25em;
}
/* Fallback: wenn background-clip:text nicht unterstützt wird (sehr alte iOS),
   bleibt der Verlauf weg, der Text aber sichtbar in Markenfarbe. */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .tt-typer { -webkit-text-fill-color: currentColor; color: var(--tt-violet); background: none; }
}
.tt-typer__text {
    font-style: normal;
    /* erlaubt Wortumbrüche in der animierten Phrase */
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    /* Farbe des Verlaufs erbt vom Eltern-Element */
    -webkit-text-fill-color: inherit;
    /* verhindert Layout-Sprung bei leerem Wort zwischen Wechseln */
    min-width: .5ch;
    display: inline;
}
.tt-typer__caret {
    display: inline-block;
    width: .08em; height: .9em;
    margin-left: .08em;
    background: currentColor;
    -webkit-text-fill-color: currentColor;
    color: var(--tt-violet);
    border-radius: 1px;
    transform: translateY(.05em);
    animation: tt-typer-caret 1s steps(1) infinite;
}
.tt-typer__sr {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@keyframes tt-typer-caret { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
    .tt-typer__caret { animation: none; opacity: 0; }
}
/* Mobile: Hero-Headline bekommt mehr Luft, Typer-Zeile bricht sauber um */
@media (max-width: 640px) {
    .tt-hero__headline { font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.2; }
    .tt-typer { display: block; min-height: 2.6em; }
}

/* ROI Rechner =========================================================== */
.tt-roi__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 900px) {
    .tt-roi__grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
}

.tt-roi__inputs {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: var(--tt-shadow-1);
    display: grid;
    gap: 1.4rem;
}

.tt-roi__field { display: grid; gap: .5rem; }
.tt-roi__label { font-weight: 600; color: var(--tt-ink); }
.tt-roi__field small { color: var(--tt-ink-soft); font-size: .85rem; }

.tt-roi__control {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
}
.tt-roi__control input[type="range"] {
    width: 100%;
    accent-color: var(--tt-violet);
}
.tt-roi__control output {
    min-width: 5.5rem;
    text-align: right;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--tt-violet);
    font-size: 1.05rem;
}

.tt-roi__result {
    background: linear-gradient(160deg, #1e1b4b 0%, #312e81 60%, #4338ca 100%);
    color: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: var(--tt-shadow-2, 0 18px 40px rgba(49,46,129,.25));
    display: grid;
    gap: .75rem;
    position: sticky;
    top: 1rem;
}

.tt-roi__result-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.tt-roi__result-row:last-of-type { border-bottom: 0; }
.tt-roi__result-row span { color: rgba(255,255,255,.78); display: grid; }
.tt-roi__result-row span small { color: rgba(255,255,255,.55); font-size: .75rem; }
.tt-roi__result-row strong { font-size: 1.15rem; font-variant-numeric: tabular-nums; }

.tt-roi__result-row--muted strong { color: rgba(255,255,255,.85); font-weight: 600; }

.tt-roi__result-row--total {
    margin-top: .25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.25);
    border-bottom: 0;
}
.tt-roi__result-row--total span { color: #fff; font-weight: 600; }
.tt-roi__result-row--total strong { font-size: 1.6rem; color: #a5f3fc; }

.tt-roi__roi {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    gap: .5rem 1rem;
    margin-top: .25rem;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
}
.tt-roi__roi span { color: rgba(255,255,255,.8); }
.tt-roi__roi strong { font-size: 2rem; color: #facc15; }
.tt-roi__roi small {
    grid-column: 1 / -1;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
}

.tt-roi__cta { margin-top: .9rem; justify-content: center; }
.tt-roi__hint {
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    margin: .5rem 0 0;
    text-align: center;
}

.tt-roi__form {
    margin-top: 1.25rem;
    display: grid;
    gap: .65rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 1rem 1.1rem 1.15rem;
}
.tt-roi__form-lead {
    margin: 0 0 .25rem;
    color: #fff;
    font-size: .95rem;
    text-align: center;
}
.tt-roi__form .tt-field {
    display: grid;
    gap: .25rem;
    color: rgba(255,255,255,.85);
    font-size: .85rem;
}
.tt-roi__form .tt-field input {
    width: 100%;
    padding: .55rem .7rem;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.25);
    color: #fff;
    font: inherit;
}
.tt-roi__form .tt-field input:focus {
    outline: 2px solid #facc15;
    outline-offset: 1px;
}
.tt-roi__form .tt-field--hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.tt-roi__form button[type="submit"] {
    margin-top: .35rem;
    width: 100%;
}

/* ROI Rechner – Mobile-Optimierung */
@media (max-width: 640px) {
    .tt-roi__grid { gap: 1rem; margin-top: 1.25rem; }

    .tt-roi__inputs {
        padding: 1.1rem 1rem 1.25rem;
        border-radius: 14px;
        gap: 1.15rem;
    }

    .tt-roi__field { gap: .4rem; }
    .tt-roi__label { font-size: .95rem; line-height: 1.3; }
    .tt-roi__field small { font-size: .8rem; line-height: 1.4; }

    /* Slider-Wert in eine eigene Zeile, damit der Slider die volle Breite nutzt */
    .tt-roi__control {
        grid-template-columns: 1fr;
        gap: .35rem;
    }
    .tt-roi__control output {
        text-align: left;
        min-width: 0;
        font-size: 1rem;
    }

    /* Touchfreundlicher Range-Thumb */
    .tt-roi__control input[type="range"] {
        height: 32px;
    }
    .tt-roi__control input[type="range"]::-webkit-slider-thumb {
        height: 22px;
        width: 22px;
    }
    .tt-roi__control input[type="range"]::-moz-range-thumb {
        height: 22px;
        width: 22px;
    }

    /* Ergebnis-Karte: sticky raus (verdeckt sonst auf Mobile Inhalte), kompakter */
    .tt-roi__result {
        position: static;
        top: auto;
        padding: 1.2rem 1.05rem 1.35rem;
        border-radius: 14px;
        gap: .55rem;
    }

    /* Result-Reihen umbrechbar machen, damit lange Labels nicht den Wert quetschen */
    .tt-roi__result-row {
        flex-wrap: wrap;
        gap: .25rem .75rem;
        padding: .5rem 0;
    }
    .tt-roi__result-row strong { font-size: 1.05rem; }
    .tt-roi__result-row--total { padding-top: .85rem; }
    .tt-roi__result-row--total strong { font-size: 1.45rem; }

    .tt-roi__roi {
        grid-template-columns: 1fr auto;
        padding: .85rem .95rem;
        gap: .35rem .85rem;
    }
    .tt-roi__roi strong { font-size: 1.7rem; }
    .tt-roi__roi small { font-size: .8rem; }

    .tt-roi__form {
        padding: .9rem .95rem 1rem;
        border-radius: 12px;
    }
    .tt-roi__form-lead { font-size: .9rem; }
}

/* ============================== ERFOLGSPFAD =============================== */
.tt-pathway__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 900px) {
    .tt-pathway__grid { grid-template-columns: 1fr 1fr; }
}

.tt-pathway__card {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: var(--tt-shadow-1);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.tt-pathway__card--accent {
    border: 1px solid #c7d2fe;
    box-shadow: 0 18px 40px rgba(79,70,229,.12);
    background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
}

.tt-pathway__head h3 { margin: .5rem 0 .35rem; font-size: 1.4rem; }
.tt-pathway__head p { color: var(--tt-ink-soft); margin: 0; }

.tt-pathway__badge {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: .3rem .65rem;
    border-radius: 999px;
}
.tt-pathway__badge--alt { background: #fef3c7; color: #92400e; }

.tt-pathway__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .55rem;
    counter-reset: pwstep;
}
.tt-pathway__steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .85rem;
    align-items: start;
    padding: .55rem .75rem;
    background: rgba(99,102,241,.04);
    border-radius: 10px;
}
.tt-pathway__steps li span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #4338ca;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.tt-pathway__card--accent .tt-pathway__steps li span { background: #b45309; }
.tt-pathway__steps li strong { display: block; color: var(--tt-ink); }
.tt-pathway__steps li em {
    font-style: normal;
    color: var(--tt-ink-soft);
    font-size: .85rem;
}
.tt-pathway__note {
    margin: 0;
    padding: .75rem .9rem;
    background: #f8fafc;
    border-left: 3px solid #4338ca;
    border-radius: 6px;
    font-style: italic;
    color: var(--tt-ink);
    font-size: .92rem;
}
.tt-pathway__card--accent .tt-pathway__note { border-left-color: #b45309; }

.tt-pathway__benefits {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.tt-pathway__benefits > div {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
}
.tt-pathway__benefits strong {
    display: block;
    color: #4338ca;
    margin-bottom: .35rem;
}
.tt-pathway__benefits span { color: var(--tt-ink-soft); font-size: .92rem; }

/* =============================== PHONE MOCK =============================== */
.tt-phone {
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
    background: #0f172a;
    border-radius: 36px;
    padding: 14px 10px 10px;
    box-shadow: 0 30px 60px rgba(15,23,42,.35);
    position: relative;
}
.tt-phone__notch {
    width: 110px;
    height: 18px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    margin: -14px auto 6px;
    position: relative;
    z-index: 2;
}
.tt-phone__screen {
    background: #fff;
    border-radius: 24px;
    padding: 14px 14px 64px;
    display: grid;
    gap: .55rem;
    font-size: .82rem;
    color: var(--tt-ink);
    min-height: 540px;
    position: relative;
}
.tt-phone__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: .55rem;
    margin-bottom: .35rem;
}
.tt-phone__brand { font-size: .9rem; }
.tt-phone__brand .is-bold { font-weight: 800; }
.tt-phone__avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #4338ca);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .65rem;
    font-weight: 700;
}
.tt-phone__title {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
}
.tt-phone__row small { color: #64748b; }
.tt-phone__date {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: .5rem .65rem;
    display: flex;
    align-items: center;
    gap: .55rem;
}
.tt-phone__day {
    background: #38bdf8;
    color: #fff;
    padding: .2rem .45rem;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700;
}
.tt-phone__kpis {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .35rem;
}
.tt-phone__kpis > div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: .35rem .5rem;
    display: flex;
    flex-direction: column;
}
.tt-phone__kpis small { color: #64748b; font-size: .65rem; }
.tt-phone__kpis strong { font-size: .85rem; }
.tt-phone__progress {
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}
.tt-phone__progress span { display: block; height: 100%; background: #4338ca; }
.tt-phone__warn {
    background: #fef2f2;
    color: #b91c1c;
    border-radius: 8px;
    padding: .4rem .6rem;
    font-size: .78rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tt-phone__warn em { color: #64748b; font-style: normal; font-weight: 500; font-size: .72rem; }
.tt-phone__field { display: grid; gap: .25rem; }
.tt-phone__field label {
    font-size: .72rem;
    color: #64748b;
    font-weight: 600;
}
.tt-phone__select, .tt-phone__input {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: .55rem .65rem;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
}
.tt-phone__input.is-filled { color: var(--tt-ink); font-weight: 600; }
.tt-phone__section {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #4338ca;
    font-weight: 700;
    border-top: 1px solid #e5e7eb;
    padding-top: .55rem;
    margin-top: .25rem;
}
.tt-phone__chip {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    border-radius: 999px;
    padding: .25rem .65rem;
    font-size: .75rem;
    font-weight: 600;
    width: fit-content;
}
.tt-phone__tabs {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 24px 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: .55rem .25rem;
    font-size: 1.05rem;
    color: #94a3b8;
}
.tt-phone__tabs .is-active {
    background: #0f172a;
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-top: -22px;
    position: relative;
    box-shadow: 0 8px 18px rgba(15,23,42,.3);
}
.tt-phone__tabs .is-active em {
    position: absolute;
    bottom: -16px;
    font-style: normal;
    font-size: .6rem;
    color: var(--tt-ink);
    font-weight: 700;
    white-space: nowrap;
}

/* ========================== JAHRES-ABWESENHEITSPLAN ======================= */
.tt-yearplan {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: var(--tt-shadow-1);
    color: var(--tt-ink);
    font-size: .8rem;
    text-align: left;
    min-height: auto;
    place-items: stretch;
    display: block;
}
.tt-yearplan__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .65rem;
}
.tt-yearplan__head em { color: #4338ca; font-style: normal; font-weight: 700; }
.tt-yearplan__head span { color: #64748b; font-size: .75rem; }

.tt-yearplan__months,
.tt-yearplan__weeks {
    display: grid;
    grid-template-columns: 110px repeat(11, 1fr);
    gap: 2px;
    font-size: .68rem;
    color: #64748b;
}
.tt-yearplan__months { background: #f1f5f9; padding: .25rem 0; border-radius: 4px; margin-bottom: 2px;}
.tt-yearplan__months span { grid-column: span 3; text-align: center; font-weight: 600; }
.tt-yearplan__months span:first-child { grid-column: 2 / span 3; }
.tt-yearplan__weeks { background: #f8fafc; padding: .25rem 0; border-radius: 4px; margin-bottom: 4px;}
.tt-yearplan__weeks span { text-align: center; font-weight: 600; }
.tt-yearplan__weeks span:first-child { display: none; }

.tt-yearplan__rows { display: grid; gap: 2px; }
.tt-yearplan__row {
    display: grid;
    grid-template-columns: 110px repeat(11, 1fr);
    gap: 2px;
    align-items: stretch;
}
.tt-yearplan__name {
    font-size: .72rem;
    color: var(--tt-ink);
    font-weight: 600;
    padding: .15rem .35rem;
    background: #f8fafc;
    border-radius: 3px;
    display: flex;
    align-items: center;
}
.tt-yearplan__row i {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 2px;
    height: 22px;
}
.tt-yearplan__row i.is-fer       { background: #2563eb; border-color: #1d4ed8; }
.tt-yearplan__row i.is-krank     { background: #c026d3; border-color: #a21caf; }
.tt-yearplan__row i.is-unfall    { background: #dc2626; border-color: #b91c1c; }
.tt-yearplan__row i.is-mil       { background: #16a34a; border-color: #15803d; }
.tt-yearplan__row i.is-komp      { background: #a3a635; border-color: #84860f; }
.tt-yearplan__row i.is-feiertag  { background: #f59e0b; border-color: #d97706; }
.tt-yearplan__row i.is-off       { background: #cbd5e1; border-color: #94a3b8; }

.tt-yearplan__legend {
    margin-top: .75rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    font-size: .72rem;
    color: var(--tt-ink-soft);
    align-items: center;
}
.tt-yearplan__legend i {
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 2px;
    margin-right: .35rem;
    vertical-align: middle;
}
.tt-yearplan__legend i.is-fer       { background: #2563eb; }
.tt-yearplan__legend i.is-krank     { background: #c026d3; }
.tt-yearplan__legend i.is-unfall    { background: #dc2626; }
.tt-yearplan__legend i.is-mil       { background: #16a34a; }
.tt-yearplan__legend i.is-komp      { background: #a3a635; }
.tt-yearplan__legend i.is-feiertag  { background: #f59e0b; }

/* =========================== MONATSÜBERSICHT MOCK ========================= */
.tt-month {
    margin: 0;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    box-shadow: var(--tt-shadow-1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    color: var(--tt-ink);
}
@media (min-width: 720px) {
    .tt-month { grid-template-columns: 1.6fr 1fr; }
    .tt-month__head { grid-column: 1 / -1; }
}.tt-month__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--tt-border);
    font-size: .82rem;
}
.tt-month__title {
    text-align: center;
    font-weight: 700;
    color: #4338ca;
    font-size: 1.05rem;
}
.tt-month__title small { color: var(--tt-ink-soft); font-weight: 500; }
.tt-month__person { text-align: right; font-size: .82rem; }

.tt-month__body { padding: .5rem .75rem; overflow-x: auto; }
.tt-month__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .76rem;
}
.tt-month__table th, .tt-month__table td {
    padding: .35rem .45rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    white-space: nowrap;
}
.tt-month__table th {
    background: #1e293b;
    color: #fff;
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
}
.tt-month__table td { color: var(--tt-ink); }
.tt-month__table .is-pos { color: #16a34a; font-weight: 700; }
.tt-month__table .is-neg { color: #dc2626; font-weight: 700; }
.tt-month__table tr.is-feiertag td { background: #fff7ed; color: #9a3412; }
.tt-month__table tr.is-ferien td   { background: #eff6ff; }
.tt-month__table tr.is-total td {
    background: #4338ca;
    color: #fff;
    font-weight: 800;
    border-bottom: 0;
}
.tt-month__table tr.is-total td.is-pos { color: #bbf7d0; }

.tt-fpill {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    border-radius: 4px;
    padding: .05rem .35rem;
    font-size: .7rem;
    font-weight: 700;
}

.tt-month__side {
    background: #f8fafc;
    border-left: 1px solid var(--tt-border);
    padding: .85rem;
    display: grid;
    gap: .65rem;
    align-content: start;
}
.tt-month__box {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 8px;
    padding: .65rem .8rem;
}
.tt-month__box h4 {
    margin: 0 0 .4rem;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #4338ca;
}
.tt-month__box ul {
    margin: 0; padding: 0; list-style: none;
    display: grid; gap: .25rem;
    font-size: .78rem;
}
.tt-month__box li {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
}
.tt-month__box li span { color: var(--tt-ink-soft); }
.tt-month__box li strong { color: var(--tt-ink); font-variant-numeric: tabular-nums; }
.tt-month__box li strong.is-pos { color: #16a34a; }

/* =============================== BEXIO BLOCK ============================== */
.tt-bexio {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, #f5f3ff 0%, #ecfeff 100%);
    border: 1px solid #c7d2fe;
    border-radius: 18px;
    padding: 1.75rem;
}
.tt-bexio__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}
@media (min-width: 900px) {
    .tt-bexio__inner { grid-template-columns: 1.5fr 1fr; }
}
.tt-bexio h3 { margin: .5rem 0; font-size: 1.4rem; }
.tt-bexio__pill {
    background: #fff;
    border: 1px solid #c7d2fe;
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 12px 24px rgba(67,56,202,.12);
    display: grid;
    gap: .35rem;
}
.tt-bexio__pill span:first-child {
    font-size: 1.1rem; font-weight: 700; color: #4338ca;
}
.tt-bexio__pill em {
    font-size: 1.5rem; color: #64748b; font-style: normal;
}
.tt-bexio__pill span:nth-child(3) {
    font-size: 1.1rem; font-weight: 700; color: #16a34a;
}
.tt-bexio__pill small {
    margin-top: .35rem;
    background: #dcfce7;
    color: #166534;
    border-radius: 999px;
    padding: .25rem .65rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    justify-self: center;
}

/* ===================== MONATSÜBERSICHT - WIDE VARIANTE ==================== */
.tt-month-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 2.5rem;
    margin: 1.5rem 0 2rem;
}
@media (min-width: 760px) {
    .tt-month-benefits { grid-template-columns: 1fr 1fr; }
}
.tt-month-benefits .tt-check li strong { color: var(--tt-ink); }

.tt-month--wide {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.tt-month__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: space-between;
    align-items: center;
    padding: .65rem .9rem;
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: #fff;
}
.tt-month__nav, .tt-month__viewbtns {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}
.tt-month__nav span,
.tt-month__viewbtns span {
    background: rgba(255,255,255,.18);
    color: #fff;
    border-radius: 8px;
    padding: .35rem .7rem;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
}
.tt-month__viewbtns span { background: #fff; color: #4338ca; }
.tt-month__viewbtns span.is-active { background: #fff; color: #4338ca; }
.tt-month__viewbtns span:not(.is-active) { background: rgba(255,255,255,.18); color: #fff; }

/* Header über volle Breite */
.tt-month--wide .tt-month__head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: #f1f5f9;
    border-bottom: 1px solid var(--tt-border);
    padding: .85rem 1.25rem;
    gap: 1rem;
    font-size: .82rem;
}
.tt-month--wide .tt-month__head > div:first-child { display: flex; flex-direction: column; }
.tt-month--wide .tt-month__head > div:first-child small { color: var(--tt-ink-soft); }
.tt-month--wide .tt-month__person { text-align: right; }

/* Layout: Tabelle + Sidebar */
.tt-month__layout {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 980px) {
    .tt-month__layout { grid-template-columns: minmax(0, 1fr) 280px; }
}

.tt-month--wide .tt-month__body {
    padding: 0;
    overflow: visible;
}
@media (max-width: 720px) {
    .tt-month--wide .tt-month__body { overflow-x: auto; }
}
.tt-month--wide .tt-month__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}
.tt-month--wide .tt-month__table th,
.tt-month--wide .tt-month__table td {
    padding: .42rem .75rem;
    border-bottom: 1px solid #f1f5f9;
    white-space: nowrap;
}
.tt-month--wide .tt-month__table th {
    background: #1e293b;
    color: #fff;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: left;
    font-weight: 700;
    position: sticky;
    top: 0;
}
.tt-month--wide .tt-month__table td.is-num,
.tt-month--wide .tt-month__table th.is-num { text-align: right; font-variant-numeric: tabular-nums; }
.tt-month--wide .tt-month__table td:first-child { color: var(--tt-ink); font-weight: 600; }

.tt-month--wide tr.is-frei td {
    background: repeating-linear-gradient(135deg, #f8fafc 0 6px, #f1f5f9 6px 12px);
    color: #94a3b8;
}
.tt-month--wide tr.is-feiertag td { background: #fff7ed; color: #9a3412; }
.tt-month--wide tr.is-feiertag td:last-child { color: #9a3412; font-style: italic; }
.tt-month--wide tr.is-ferien td   { background: #eff6ff; }
.tt-month--wide tr.is-kw td {
    background: #c7d2fe;
    color: #1e1b4b;
    font-weight: 700;
    font-size: .78rem;
}
.tt-month--wide tr.is-total td {
    background: #4338ca;
    color: #fff;
    font-weight: 800;
    border-bottom: 0;
    font-size: .9rem;
}
.tt-month--wide tr.is-subline td {
    background: #f8fafc;
    color: var(--tt-ink-soft);
    font-weight: 600;
    border-bottom: 0;
}
.tt-month--wide tr.is-subline td:first-child { text-align: right; }

.tt-month--wide tr td.is-pos { color: #16a34a; font-weight: 700; }
.tt-month--wide tr td.is-neg { color: #dc2626; font-weight: 700; }
.tt-month--wide tr.is-total td.is-pos { color: #bbf7d0; }
.tt-month--wide .tt-month__faded td { opacity: .85; }

.tt-saldo-pill {
    display: inline-block;
    background: #22c55e;
    color: #022c14;
    border-radius: 4px;
    padding: .15rem .55rem;
    font-weight: 800;
}

.tt-fpill.is-orange { background: #f59e0b; color: #1f1300; }
.tt-fpill.is-orange-soft { background: #fed7aa; color: #9a3412; }

/* Sidebar */
.tt-month--wide .tt-month__side {
    background: #f8fafc;
    border-left: 1px solid var(--tt-border);
    padding: 1rem;
    display: grid;
    gap: .75rem;
    align-content: start;
    font-size: .8rem;
}
@media (max-width: 979px) {
    .tt-month--wide .tt-month__side {
        border-left: 0;
        border-top: 1px solid var(--tt-border);
    }
}
.tt-month--wide .tt-month__box h4 {
    margin: 0 0 .5rem;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #4338ca;
    font-weight: 800;
}
.tt-month--wide .tt-month__box ul { gap: .3rem; }
.tt-month--wide .tt-month__box li { font-size: .8rem; }

/* Legende rechts */
.tt-month__legend {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 8px;
    padding: .65rem .8rem;
    display: grid;
    gap: .3rem;
    font-size: .75rem;
    color: var(--tt-ink-soft);
}
.tt-month__legend strong {
    color: #4338ca;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}
.tt-month__legend span { display: flex; align-items: center; gap: .5rem; }
.tt-month__legend i {
    width: 12px; height: 12px;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,.05);
    display: inline-block;
}
.tt-month__legend i.is-feiertag      { background: #f59e0b; }
.tt-month__legend i.is-feiertag-soft { background: #fed7aa; }
.tt-month__legend i.is-weekend       { background: #cbd5e1; }
.tt-month__legend i.is-fer           { background: #2563eb; }
.tt-month__legend i.is-frei          { background: repeating-linear-gradient(135deg, #f8fafc 0 4px, #e2e8f0 4px 8px); }
.tt-month__legend i.is-krank         { background: #c026d3; }

/* Footer */
.tt-month__foot {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    padding: .6rem 1.1rem;
    background: #f8fafc;
    border-top: 1px solid var(--tt-border);
    font-size: .72rem;
    color: var(--tt-ink-soft);
}

/* ============================== HOVER POPS =============================== */
.tt-month-hint {
    margin: -1rem 0 1.25rem;
    padding: .8rem 1rem;
    background: #ecfeff;
    border: 1px solid #a5f3fc;
    border-radius: 10px;
    font-size: .9rem;
    color: #155e75;
}
.tt-month-hint__pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    padding: .1rem .5rem;
    border-radius: 999px;
    font-weight: 700;
}
.tt-month-hint__pill::before {
    content: "";
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
}

.tt-hover {
    position: relative;
    cursor: help;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    outline: none;
}
.tt-hover--inline { gap: .25rem; }

.tt-hover__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,.2);
    transition: transform .15s ease;
}
.tt-hover:hover .tt-hover__dot,
.tt-hover:focus-visible .tt-hover__dot {
    transform: scale(1.2);
}

.tt-hover__pop {
    position: absolute;
    z-index: 20;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, 6px);
    min-width: 240px;
    max-width: 320px;
    background: #1e293b;
    color: #f8fafc;
    border-radius: 10px;
    padding: .75rem .9rem;
    box-shadow: 0 18px 40px rgba(15,23,42,.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    font-size: .8rem;
    text-align: left;
    white-space: normal;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}
.tt-hover__pop::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #1e293b;
}

.tt-hover:hover .tt-hover__pop,
.tt-hover:focus-visible .tt-hover__pop,
.tt-hover:focus-within .tt-hover__pop {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

/* Inline-Variante (rechts in Sidebar) - Pop links neben dem Wert */
.tt-hover--inline .tt-hover__pop {
    left: auto;
    right: calc(100% + 12px);
    bottom: 50%;
    transform: translate(-6px, 50%);
    min-width: 180px;
}
.tt-hover--inline .tt-hover__pop::after {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left-color: #1e293b;
    border-top-color: transparent;
}
.tt-hover--inline:hover .tt-hover__pop,
.tt-hover--inline:focus-visible .tt-hover__pop,
.tt-hover--inline:focus-within .tt-hover__pop {
    transform: translate(0, 50%);
}

.tt-hover__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
}
.tt-hover__head em {
    font-style: normal;
    background: #334155;
    color: #e2e8f0;
    border-radius: 6px;
    padding: .15rem .4rem;
    font-size: .85rem;
}

.tt-hover__pop ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .35rem;
}
.tt-hover__pop--leistungen li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .15rem .75rem;
    align-items: baseline;
}
.tt-hover__pop--leistungen li strong {
    color: #fff;
    grid-column: 1;
}
.tt-hover__pop--leistungen li span {
    grid-column: 1;
    color: #94a3b8;
    font-size: .72rem;
}
.tt-hover__pop--leistungen li em {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    font-style: normal;
    color: #fff;
    font-weight: 700;
}

.tt-hover__pop--spesen strong {
    color: #fff;
    display: block;
    margin-bottom: .25rem;
}
.tt-hover__pop--spesen small {
    color: #cbd5e1;
    font-size: .78rem;
}
.tt-hover__pop--spesen .is-pos { color: #4ade80; font-weight: 800; }

.tt-hover__pop--ferien {
    min-width: 160px;
}
.tt-hover__pop--ferien ul { gap: .2rem; }
.tt-hover__pop--ferien li {
    color: #f8fafc;
    padding: .15rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.tt-hover__pop--ferien li:last-child { border-bottom: 0; }

/* Touch-Geräte: Pop bleibt sichtbar bei Tap dank :focus-within */
@media (hover: none) {
    .tt-hover__dot { box-shadow: 0 0 0 4px rgba(34,197,94,.3); }
}

/* ===================== JAHRES-ABWESENHEITSPLAN BREIT ====================== */
.tt-yearplan-mini {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: var(--tt-shadow-1);
    color: var(--tt-ink);
    text-align: left;
    display: block;
    font-size: .85rem;
}
.tt-yearplan-mini strong { color: #4338ca; font-size: 1rem; display: block; margin-bottom: .35rem; }
.tt-yearplan-mini p { margin: 0 0 .6rem; color: var(--tt-ink-soft); }
.tt-yearplan-mini__legend {
    display: flex; flex-wrap: wrap; gap: .35rem .75rem;
    font-size: .72rem; color: var(--tt-ink-soft);
}
.tt-yearplan-mini__legend span { display: inline-flex; align-items: center; gap: .35rem; }
.tt-yearplan-mini__legend i {
    width: 12px; height: 12px; border-radius: 2px; display: inline-block;
}

.tt-yearplan--wide {
    margin: 1.5rem 0 0;
    padding: 0;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    box-shadow: var(--tt-shadow-1);
    overflow: hidden;
    font-size: .8rem;
    display: block;
}
.tt-yearplan__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: .8rem 1.25rem;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
}
.tt-yearplan__bar a {
    color: #e0e7ff;
    text-decoration: underline;
    font-size: .8rem;
    margin-right: .75rem;
}
.tt-yearplan__bar-left { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.tt-yearplan__years { font-size: .8rem; color: #e0e7ff; }
.tt-yearplan__years em { color: #fff; font-weight: 700; font-style: normal; padding: .1rem .45rem; background: rgba(255,255,255,.18); border-radius: 4px; }
.tt-yearplan__title { font-size: 1rem; text-align: center; letter-spacing: .02em; }
.tt-yearplan__bar-right { text-align: right; }

.tt-yearplan__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    background: #fff;
}
.tt-yearplan__scroll::-webkit-scrollbar { height: 10px; }
.tt-yearplan__scroll::-webkit-scrollbar-thumb { background: #c7d2fe; border-radius: 6px; }
.tt-yearplan__scroll::-webkit-scrollbar-track { background: #f1f5f9; }

.tt-yearplan__grid {
    min-width: 1700px;
    display: block;
    padding: 0;
}
.tt-yearplan--wide .tt-yearplan__row {
    display: grid;
    grid-template-columns: 130px repeat(90, minmax(16px, 1fr));
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid #f1f5f9;
}
.tt-yearplan__row--days {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.tt-yearplan__row--days span {
    text-align: center;
    font-size: .6rem;
    color: #64748b;
    font-weight: 600;
    padding: .2rem 0;
    border-right: 1px solid #f1f5f9;
}
.tt-yearplan__row--days span.is-we {
    background: #e2e8f0;
    color: #475569;
}
.tt-yearplan__row--days span.is-current {
    background: #fef3c7;
    color: #92400e;
    box-shadow: inset 0 0 0 2px #f59e0b;
    border-radius: 3px;
    font-weight: 700;
}
.tt-yearplan--wide .tt-yearplan__row:last-child { border-bottom: 0; }

.tt-yearplan__row--months {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.tt-yearplan__row--months .tt-yearplan__month {
    text-align: center;
    font-weight: 700;
    color: #1e293b;
    font-size: .78rem;
    padding: .35rem 0;
    border-right: 1px solid #e2e8f0;
}
.tt-yearplan__row--weeks {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}
.tt-yearplan__row--weeks span {
    text-align: center;
    font-size: .65rem;
    color: #475569;
    font-weight: 600;
    padding: .25rem 0;
    border-right: 1px solid #f1f5f9;
}
.tt-yearplan__row--weeks span.is-current {
    background: #fef3c7;
    color: #92400e;
    border: 2px solid #f59e0b;
    border-radius: 3px;
}
.tt-yearplan__name--head {
    background: #1e293b !important;
    color: #fff !important;
    font-weight: 700;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    justify-content: center;
}
.tt-yearplan--wide .tt-yearplan__name {
    font-size: .72rem;
    color: var(--tt-ink);
    font-weight: 600;
    padding: .2rem .5rem;
    background: #eff6ff;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    border-radius: 0;
    position: sticky;
    left: 0;
    z-index: 2;
}
.tt-yearplan--wide .tt-yearplan__row i {
    background: #fff;
    border: 0;
    border-right: 1px solid #f1f5f9;
    border-radius: 0;
    height: 22px;
    display: block;
}
.tt-yearplan--wide .tt-yearplan__row i.is-we { background: #e2e8f0; }
.tt-yearplan--wide .tt-yearplan__row i.is-fer       { background: #2563eb; }
.tt-yearplan--wide .tt-yearplan__row i.is-fer-soft  { background: #93c5fd; }
.tt-yearplan--wide .tt-yearplan__row i.is-krank     { background: #c026d3; }
.tt-yearplan--wide .tt-yearplan__row i.is-unfall    { background: #dc2626; }
.tt-yearplan--wide .tt-yearplan__row i.is-mil       { background: #16a34a; }
.tt-yearplan--wide .tt-yearplan__row i.is-komp      { background: #a3a635; }
.tt-yearplan--wide .tt-yearplan__row i.is-feiertag  { background: #f59e0b; }
.tt-yearplan--wide .tt-yearplan__row i.is-feiertag-soft { background: #fed7aa; }

.tt-yearplan--wide .tt-yearplan__legend {
    background: #f8fafc;
    border-top: 1px solid var(--tt-border);
    padding: .65rem 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    font-size: .72rem;
    color: var(--tt-ink-soft);
    align-items: center;
    margin-top: 0;
}
.tt-yearplan--wide .tt-yearplan__legend strong {
    color: #4338ca;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-right: .5rem;
}
.tt-yearplan--wide .tt-yearplan__legend i {
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 2px;
    margin-right: .35rem;
    vertical-align: middle;
    border: 1px solid rgba(0,0,0,.05);
}
.tt-yearplan--wide .tt-yearplan__legend i.is-feiertag      { background: #f59e0b; }
.tt-yearplan--wide .tt-yearplan__legend i.is-feiertag-soft { background: #fed7aa; }
.tt-yearplan--wide .tt-yearplan__legend i.is-weekend       { background: #cbd5e1; }
.tt-yearplan--wide .tt-yearplan__legend i.is-fer           { background: #2563eb; }
.tt-yearplan--wide .tt-yearplan__legend i.is-fer-soft      { background: #93c5fd; }
.tt-yearplan--wide .tt-yearplan__legend i.is-krank         { background: #c026d3; }
.tt-yearplan--wide .tt-yearplan__legend i.is-unfall        { background: #dc2626; }
.tt-yearplan--wide .tt-yearplan__legend i.is-mil           { background: #16a34a; }
.tt-yearplan--wide .tt-yearplan__legend i.is-komp          { background: #a3a635; }

/* ========================== PHONE CAROUSEL ================================ */
.tt-phone--carousel { position: relative; }
.tt-phone__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
}
.tt-phone__screen--carousel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events: none;
    padding: 1rem 1rem 1.25rem;
    overflow-y: auto;
}
.tt-phone__screen--carousel.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Mindesthöhe damit der Telefonrahmen stabil bleibt */
.tt-phone--carousel .tt-phone__viewport { min-height: 580px; }

.tt-phone__progress.is-over span { background: #f59e0b; }
.tt-phone__progress.is-over {
    position: relative;
}
.tt-phone__progress.is-over em {
    position: absolute;
    inset: 0;
    text-align: center;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    font-size: .7rem;
    line-height: 14px;
}
.tt-phone__progress { height: 14px; }

.tt-phone__list {
    display: grid; gap: .35rem;
    margin: .6rem 0;
}
.tt-phone__item {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: .5rem;
    padding: .4rem .55rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: .78rem;
}
.tt-phone__item em {
    background: #4338ca; color: #fff;
    border-radius: 5px;
    font-style: normal; font-weight: 700;
    font-size: .7rem;
    text-align: center;
    padding: .15rem 0;
}
.tt-phone__item strong { font-weight: 600; color: var(--tt-ink); }
.tt-phone__item span { color: var(--tt-ink-soft); font-variant-numeric: tabular-nums; }
.tt-phone__item.is-muted { opacity: .6; }
.tt-phone__item.is-muted em { background: #cbd5e1; }

.tt-phone__cta {
    margin-top: .75rem;
    background: #eef2ff;
    color: #4338ca;
    border: 1px dashed #c7d2fe;
    border-radius: 10px;
    padding: .55rem .75rem;
    text-align: center;
    font-weight: 700;
    font-size: .82rem;
}
.tt-phone__cta.is-primary {
    background: #4338ca;
    color: #fff;
    border-style: solid;
    border-color: #4338ca;
}

.tt-phone__chip.is-green {
    background: #16a34a;
    color: #fff;
}

.tt-phone__hintbox {
    margin-top: .5rem;
    padding: .55rem .7rem;
    background: #ecfdf5;
    border: 1px solid #86efac;
    border-radius: 8px;
    font-size: .75rem;
    display: grid; gap: .15rem;
}
.tt-phone__hintbox strong { color: #166534; }
.tt-phone__hintbox span { color: #065f46; }

.tt-phone__kpis strong.is-pos { color: #16a34a; }
.tt-phone__kpis strong.is-neg { color: #dc2626; }

/* Tabs */
.tt-phone--carousel .tt-phone__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #1e293b;
    color: #94a3b8;
    padding: .5rem 0;
    font-size: .65rem;
}
.tt-phone--carousel .tt-phone__tabs span {
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    transition: color .25s ease;
}
.tt-phone--carousel .tt-phone__tabs span em {
    font-style: normal;
    font-size: .6rem;
    color: inherit;
}
.tt-phone--carousel .tt-phone__tabs span.is-active {
    color: #fff;
}
.tt-phone--carousel .tt-phone__tabs span.is-active::before {
    /* dezenter Indikator über Tab */
}

/* ========================== PERSONAS „WIR DENKEN AN ALLE" ================ */
.tt-personas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.tt-persona {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1.4rem;
    box-shadow: var(--tt-shadow-1);
    display: flex;
    flex-direction: column;
    gap: .65rem;
    position: relative;
    overflow: hidden;
}
.tt-persona::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4338ca, #6366f1);
}
.tt-persona:nth-child(2)::before { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.tt-persona:nth-child(3)::before { background: linear-gradient(90deg, #16a34a, #4ade80); }
.tt-persona:nth-child(4)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }

.tt-persona header h3 {
    margin: .25rem 0 .15rem;
    font-size: 1.45rem;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -.01em;
    color: var(--tt-ink);
}
.tt-persona__sub {
    margin: 0;
    color: var(--tt-ink-soft);
    font-size: .85rem;
    font-style: italic;
}
.tt-persona h4 {
    margin: .35rem 0 .25rem;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #4338ca;
    font-weight: 800;
}
.tt-persona ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .35rem;
    font-size: .85rem;
    color: var(--tt-ink);
}
.tt-persona ul li {
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.35;
}
.tt-persona ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-weight: 700;
}
.tt-persona__result li::before {
    content: "✓";
    color: #16a34a;
}
.tt-persona__result {
    background: #f8fafc;
    border-radius: 10px;
    padding: .65rem .8rem !important;
    margin-top: .15rem !important;
}

/* ========================== APP-MOCKUP (dunkler Shell) ==================== */
.tt-phone--app .tt-phone__viewport {
    background: #0f172a;
    border-radius: 26px;
    padding: 0;
    overflow: hidden;
    min-height: 660px;
    display: flex;
    flex-direction: column;
}

/* App-Header */
.tt-app__header {
    background: #0f172a;
    color: #fff;
    padding: 12px 14px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    flex-shrink: 0;
}
.tt-app__logo {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: #fff;
    text-decoration: none;
}
.tt-app__logo img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}
.tt-app__logo span {
    font-size: .9rem;
    letter-spacing: .01em;
}
.tt-app__logo span b {
    font-weight: 800;
}
.tt-app__header-icons {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.tt-app__icon {
    background: transparent;
    border: 0;
    color: #fbbf24;
    padding: 4px;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.tt-app__icon:nth-of-type(2) { color: #cbd5e1; }
.tt-app__icon[aria-label="Menü"] { color: #cbd5e1; }
.tt-app__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 999px;
    padding: 1px 4px;
    font-style: normal;
    line-height: 1.2;
}
.tt-app__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
    color: #0f172a;
    font-weight: 700;
    font-size: .65rem;
    display: grid;
    place-items: center;
    position: relative;
    border: 2px solid #fff;
}
.tt-app__avatar-status {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 9px;
    height: 9px;
    background: #22c55e;
    border: 2px solid #0f172a;
    border-radius: 50%;
}

/* Bühne (scrollbarer Inhalt zwischen Header und Bottom-Nav) */
.tt-app__screen {
    display: none;
    flex: 1;
    overflow-y: auto;
    padding: 0 12px 12px;
    background: #0f172a;
    color: #e2e8f0;
}
.tt-app__screen.is-active { display: block; }

.tt-app__pageTitle {
    background: #1e293b;
    color: #fff;
    padding: 14px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    margin: 0 0 .65rem;
}

.tt-app__card {
    background: #fff;
    color: var(--tt-ink);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: .65rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.tt-app__cardlabel {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #475569;
    font-weight: 700;
    margin-bottom: .55rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: .45rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}
.tt-app__cardicon { color: #64748b; }

/* Datums-Switcher */
.tt-app__dateswitch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    margin-bottom: .35rem;
}
.tt-app__navbtn {
    background: transparent;
    border: 0;
    font-size: 1.3rem;
    color: #475569;
    cursor: pointer;
    padding: 4px 10px;
}
.tt-app__dateinfo {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    flex-wrap: wrap;
    justify-content: center;
}
.tt-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .6rem;
    letter-spacing: .1em;
    font-weight: 700;
    background: #e2e8f0;
    color: #475569;
}
.tt-tag--past { background: #1e293b; color: #fff; }
.tt-app__hours.is-pos { color: #16a34a; font-weight: 700; }

/* Buttons */
.tt-app__btn {
    width: 100%;
    border: 0;
    border-radius: 6px;
    padding: 10px 12px;
    font-weight: 600;
    font-size: .82rem;
    cursor: pointer;
    margin-bottom: .65rem;
    text-align: center;
}
.tt-app__btn--primary {
    background: #1e293b;
    color: #fff;
}
.tt-app__btn--primary:hover { background: #0f172a; }
.tt-app__qstack { display: grid; gap: .45rem; }
.tt-app__qstack .tt-app__btn { margin: 0; }

/* Saldi-Karte */
.tt-app__balgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}
.tt-app__balgrid > div {
    background: #f8fafc;
    border-radius: 8px;
    padding: .5rem .55rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    text-align: center;
}
.tt-app__balgrid small {
    font-size: .58rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    font-weight: 600;
}
.tt-app__balgrid strong {
    font-size: .85rem;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}
.tt-app__balgrid strong.is-pos { color: #16a34a; }

/* Soll/Ist */
.tt-app__sollist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    margin-bottom: .35rem;
}
.tt-app__check {
    background: #16a34a;
    color: #fff;
    font-style: normal;
    border-radius: 4px;
    padding: 1px 5px;
    margin-left: .25rem;
    font-size: .7rem;
}
.tt-app__sollgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .35rem;
    margin-bottom: .55rem;
}
.tt-app__sollgrid small {
    font-size: .65rem;
    color: #475569;
    font-weight: 600;
}
.tt-app__sollgrid strong {
    font-size: .82rem;
    display: block;
}
.tt-app__sollnote {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    margin: .35rem 0 .55rem;
}
.tt-app__sollnote .is-pos { color: #16a34a; font-weight: 600; }
.tt-app__sollnote .is-soft { color: #64748b; }

.tt-app__bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    margin-bottom: .55rem;
}
.tt-app__bar span {
    display: block;
    height: 100%;
    background: #4338ca;
}
.tt-app__bar--full span { background: #16a34a; }
.tt-app__bar em {
    position: absolute;
    inset: 0;
    text-align: center;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    font-size: .68rem;
    line-height: 8px;
}

/* Eintrag (Zeitbuchung) */
.tt-app__entry {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: .55rem;
    align-items: start;
    background: #f8fafc;
    border-radius: 8px;
    padding: .55rem .65rem;
    font-size: .76rem;
}
.tt-app__entryHrs {
    background: #c7d2fe;
    color: #3730a3;
    border-radius: 6px;
    padding: .35rem .25rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
}
.tt-app__entryHrs small {
    display: block;
    font-size: .58rem;
    font-weight: 600;
    color: #4338ca;
    margin-top: .15rem;
}
.tt-app__entryBody { display: grid; gap: .15rem; }
.tt-app__entryBody strong { font-size: .8rem; }
.tt-app__entryBody span { color: #475569; }
.tt-app__tasktag {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: .65rem;
    width: fit-content;
}
.tt-app__entryBody em { font-style: normal; color: #0f172a; font-weight: 500; }
.tt-app__edit {
    background: transparent;
    border: 0;
    color: #ec4899;
    cursor: pointer;
    font-size: 1rem;
    align-self: start;
}

/* Felder im Erfassungs-/Ferien-Screen */
.tt-app__row { font-size: .82rem; margin-bottom: .35rem; }
.tt-app__row small { color: #64748b; }
.tt-app__field { display: grid; gap: .25rem; margin-bottom: .55rem; }
.tt-app__field label {
    font-size: .7rem;
    color: #475569;
    font-weight: 600;
}
.tt-app__date {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: .55rem .65rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .82rem;
    font-weight: 600;
}
.tt-app__day {
    background: #38bdf8;
    color: #fff;
    padding: .2rem .45rem;
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 700;
}
.tt-app__select, .tt-app__input {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: .55rem .65rem;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    min-height: 38px;
}
.tt-app__select.is-filled, .tt-app__input.is-filled {
    color: var(--tt-ink);
    font-weight: 600;
}
.tt-app__select.is-primary {
    background: #4338ca;
    color: #fff;
    border-color: #4338ca;
}
.tt-app__sectionhead {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #4338ca;
    font-weight: 700;
    border-top: 1px solid #e5e7eb;
    padding-top: .55rem;
    margin: .25rem 0 .45rem;
}
.tt-app__chip {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    border-radius: 999px;
    padding: .25rem .65rem;
    font-size: .72rem;
    font-weight: 600;
    margin-bottom: .55rem;
}
.tt-app__lead { font-size: .78rem; margin: .25rem 0 .65rem; color: #334155; }
.tt-app__muted { color: #94a3b8; font-size: .82rem; margin: .15rem 0 0; }

/* Bottom-Nav (echte App: 5 Icons, Mittelpunkt aktiv hervorgehoben) */
.tt-app__nav {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 14px 8px 16px;
    gap: 0;
    flex-shrink: 0;
    position: relative;
}
.tt-app__navitem {
    background: transparent;
    border: 0;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    cursor: pointer;
    padding: 4px 2px;
    transition: color .25s ease, transform .25s ease;
    position: relative;
}
.tt-app__navitem em {
    font-style: normal;
    font-size: .58rem;
    font-weight: 600;
    color: #cbd5e1;
}
.tt-app__navitem:hover { color: #e2e8f0; }
.tt-app__navitem.is-active {
    color: #fff;
}
.tt-app__navitem.is-active::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 46px;
    background: #1e293b;
    border: 4px solid #0f172a;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(0,0,0,.35);
    z-index: 0;
}
.tt-app__navitem.is-active svg,
.tt-app__navitem.is-active em {
    position: relative;
    z-index: 1;
}
.tt-app__navitem.is-active em {
    color: #fff;
    margin-top: .15rem;
}

/* ========================== PHONE: BRAND + SAAS-NAV ====================== */
/* Brand mit echtem TT-Symbol */
.tt-phone__brand {
    display: flex;
    align-items: center;
    gap: .4rem;
    text-decoration: none;
    color: var(--tt-ink);
    font-size: .9rem;
}
.tt-phone__brand b { font-weight: 800; }
.tt-phone__brandmark {
    width: 20px;
    height: 20px;
    display: block;
}
/* Top-Icons rechts (Glocke + Avatar) */
.tt-phone__topicons {
    display: flex;
    align-items: center;
    gap: .55rem;
}
.tt-phone__topicon {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #475569;
    display: grid;
    place-items: center;
}
.tt-phone__badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ef4444;
    color: #fff;
    font-style: normal;
    font-size: 9px;
    font-weight: 700;
    border-radius: 999px;
    padding: 1px 4px;
    line-height: 1.2;
    border: 1.5px solid #fff;
}
.tt-phone__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4338ca);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: .62rem;
    font-weight: 700;
    position: relative;
}
.tt-phone__avatar-dot {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 9px;
    height: 9px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

/* "Soll erreicht"-Bar grün */
.tt-phone__progress.is-full span { background: #16a34a; }
.tt-phone__progress.is-full {
    position: relative;
    height: 14px;
}
.tt-phone__progress.is-full em {
    position: absolute;
    inset: 0;
    text-align: center;
    color: #fff;
    font-style: normal;
    font-weight: 700;
    font-size: .7rem;
    line-height: 14px;
}
.tt-phone__kpis strong.is-pos { color: #16a34a; }

/* SaaS-Bottom-Nav: hell, abgesetzt, abgerundet, mit aktivem Pill-Indikator */
.tt-phone--carousel .tt-phone__tabs.tt-phone__tabs--saas {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12), 0 2px 6px rgba(15, 23, 42, .06);
    padding: .35rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .25rem;
    color: #64748b;
    font-size: .65rem;
    backdrop-filter: blur(6px);
}
.tt-phone__tabs--saas button {
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .15rem;
    padding: .45rem .25rem;
    border-radius: 12px;
    font: inherit;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.tt-phone__tabs--saas button em {
    font-style: normal;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .01em;
}
.tt-phone__tabs--saas button:hover {
    color: #0f172a;
    background: #f8fafc;
}
.tt-phone--carousel .tt-phone__tabs--saas button.is-active {
    background: #eef2ff !important;
    color: #4338ca !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    border-radius: 12px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .15rem !important;
    padding: .45rem .25rem !important;
    place-items: initial !important;
    position: relative !important;
    text-align: center !important;
}
.tt-phone--carousel .tt-phone__tabs--saas button.is-active svg {
    display: block !important;
    margin: 0 auto !important;
}
.tt-phone--carousel .tt-phone__tabs--saas button.is-active em {
    color: #4338ca !important;
    position: static !important;
    inset: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    text-align: center !important;
}
.tt-phone--carousel .tt-phone__tabs--saas button.is-active::before {
    content: none !important;
}
.tt-phone--carousel .tt-phone__tabs--saas button.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    border-radius: 999px;
    background: #4338ca;
}

/* ========================== RAPPORT-HUB (Zentrum + Spokes) =============== */
.tt-rapporthub { background: #f8fafc; }
.tt-hub {
    position: relative;
    margin: 2rem auto 0;
    max-width: 1080px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2.5rem 14rem;
    padding: 1rem 0;
}
.tt-hub__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.tt-hub__lines line {
    stroke: #c7d2fe;
    stroke-width: 2;
    stroke-dasharray: 6 6;
    opacity: .8;
}
.tt-hub__core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
    border-radius: 18px;
    padding: 1.1rem 1.1rem 1.25rem;
    text-align: center;
    box-shadow: 0 18px 40px rgba(67, 56, 202, .35);
    z-index: 2;
    display: grid;
    gap: .35rem;
    justify-items: center;
}
.tt-hub__core-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    margin-bottom: .15rem;
    color: #fff;
}
.tt-hub__core strong {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .01em;
}
.tt-hub__core span {
    font-size: .8rem;
    line-height: 1.4;
    opacity: .9;
}
.tt-hub__corebtn {
    margin-top: .5rem;
    background: #fff;
    color: #4338ca;
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
}
.tt-hub__corebtn:hover { background: #eef2ff; }

.tt-hub__node {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    padding: 1.1rem 1.2rem 1.1rem;
    box-shadow: var(--tt-shadow-1);
    position: relative;
    z-index: 1;
    display: grid;
    gap: .45rem;
    align-content: start;
}
.tt-hub__node header {
    display: flex;
    align-items: center;
    gap: .55rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: .55rem;
    margin-bottom: .15rem;
}
.tt-hub__node h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--tt-ink);
}
.tt-hub__node p {
    margin: 0;
    font-size: .88rem;
    line-height: 1.55;
    color: var(--tt-ink-soft);
}
.tt-hub__num {
    background: #4338ca;
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    font-size: .75rem;
    font-weight: 800;
    flex-shrink: 0;
}
.tt-hub__example {
    background: #f8fafc;
    border-left: 3px solid #6366f1;
    border-radius: 6px;
    padding: .55rem .7rem;
    font-size: .82rem;
    color: #334155;
}
.tt-hub__example em {
    font-style: normal;
    font-weight: 700;
    color: #4338ca;
}
.tt-hub__more {
    color: #4338ca;
    font-weight: 700;
    text-decoration: none;
    font-size: .85rem;
    margin-top: .15rem;
}
.tt-hub__more:hover { text-decoration: underline; }

.tt-hub__node--tl { grid-column: 1; grid-row: 1; }
.tt-hub__node--tr { grid-column: 2; grid-row: 1; }
.tt-hub__node--bl { grid-column: 1; grid-row: 2; }
.tt-hub__node--br { grid-column: 2; grid-row: 2; }

@media (max-width: 880px) {
    .tt-hub {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .tt-hub__core {
        position: static;
        transform: none;
        width: 100%;
        margin: 0 auto 1rem;
    }
    .tt-hub__lines { display: none; }
    .tt-hub__node--tl,
    .tt-hub__node--tr,
    .tt-hub__node--bl,
    .tt-hub__node--br {
        grid-column: 1;
        grid-row: auto;
    }
}

/* ========================== PAIN-VERGLEICH =============================== */
.tt-pain {
    margin-top: 3rem;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 16px;
    padding: 1.75rem 1.75rem 2rem;
    box-shadow: var(--tt-shadow-1);
}
.tt-pain__head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.tt-pain__head h3 {
    font-size: 1.35rem;
    line-height: 1.35;
    margin: .35rem auto 0;
    max-width: 800px;
    color: var(--tt-ink);
}
.tt-pain__head h3 strong { color: #dc2626; }
.tt-pain__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 760px) {
    .tt-pain__grid { grid-template-columns: 1fr; }
}
.tt-pain__col {
    border-radius: 14px;
    padding: 1.25rem 1.4rem 1.4rem;
    border: 1px solid var(--tt-border);
}
.tt-pain__col h4 {
    margin: 0 0 .65rem;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.tt-pain__col h4::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tt-pain__col--bad {
    background: #fef2f2;
    border-color: #fecaca;
}
.tt-pain__col--bad h4 { color: #b91c1c; }
.tt-pain__col--bad h4::before { background: #dc2626; }
.tt-pain__col--good {
    background: #ecfdf5;
    border-color: #bbf7d0;
}
.tt-pain__col--good h4 { color: #166534; }
.tt-pain__col--good h4::before { background: #16a34a; }
.tt-pain__col ol {
    margin: 0 0 .85rem;
    padding-left: 1.2rem;
    display: grid;
    gap: .35rem;
    font-size: .9rem;
    line-height: 1.5;
    color: #334155;
}
.tt-pain__col ol li::marker { font-weight: 800; }
.tt-pain__cost {
    margin: 0;
    font-size: .9rem;
    background: #fff;
    border-radius: 8px;
    padding: .65rem .8rem;
    border: 1px dashed currentColor;
    line-height: 1.5;
}
.tt-pain__col--bad .tt-pain__cost { color: #b91c1c; border-color: #fecaca; }
.tt-pain__col--good .tt-pain__cost { color: #166534; border-color: #bbf7d0; }

/* ========================== ARBEITSZEIT-MODELLE ========================== */
.tt-azmodels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.tt-azmodel {
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1.4rem;
    box-shadow: var(--tt-shadow-1);
    display: flex;
    flex-direction: column;
    gap: .65rem;
    position: relative;
    overflow: hidden;
}
.tt-azmodel header {
    display: grid;
    gap: .35rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: .55rem;
}
.tt-azmodel header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--tt-ink);
}
.tt-azmodel__badge {
    display: inline-block;
    background: #eef2ff;
    color: #4338ca;
    padding: .15rem .55rem;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    width: fit-content;
}
.tt-azmodel__badge--alt {
    background: #ecfdf5;
    color: #166534;
}
.tt-azmodel--primary {
    border-color: #c7d2fe;
    box-shadow: 0 14px 30px rgba(67, 56, 202, .12);
}
.tt-azmodel--primary::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4338ca, #6366f1);
}
.tt-azmodel p { margin: 0; font-size: .9rem; line-height: 1.55; color: var(--tt-ink-soft); }
.tt-azmodel ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: .25rem;
    font-size: .85rem;
    color: #334155;
}
.tt-azmodel ul li::marker { color: #4338ca; }
.tt-azmodel code {
    background: #f1f5f9;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: .8rem;
}
.tt-azmodel__example {
    background: #f8fafc;
    border-left: 3px solid #6366f1;
    border-radius: 6px;
    padding: .55rem .7rem;
    font-size: .82rem;
    color: #334155;
}
.tt-azmodel__example em {
    font-style: normal;
    font-weight: 700;
    color: #4338ca;
}
.tt-azmodels__hint {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .9rem;
    color: var(--tt-ink-soft);
}
.tt-azmodels__hint a { color: #4338ca; font-weight: 700; }

/* ===========================================================================
   RECHNUNGS-WORKFLOW (#rechnungen)
   ========================================================================== */

/* Hauptlayout: links Cards, rechts Vorschau */
.tt-bill-layout {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    margin-top: 1rem;
}
@media (max-width: 980px) {
    .tt-bill-layout { grid-template-columns: 1fr; }
}

/* === LINKE SPALTE: CARDS === */
.tt-bill-cards-col {
    display: grid; gap: .7rem;
    position: sticky; top: 1rem;
    align-self: start;
}
@media (max-width: 980px) { .tt-bill-cards-col { position: static; } }
.tt-bill-cards-col__head {
    display: flex; align-items: flex-start; gap: .7rem;
    padding-bottom: .25rem;
    margin-bottom: .25rem;
}
.tt-bill-cards-col__head h3 { margin: 0 0 .15rem; font-size: 1.05rem; }
.tt-bill-cards-col__head p { margin: 0; color: var(--tt-ink-soft); font-size: .82rem; }

.tt-bill-step__num {
    flex: 0 0 auto;
    width: 1.85rem; height: 1.85rem; border-radius: 50%;
    background: #4338ca; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem;
}

/* Cards kompakt */
.tt-bill-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #3C6DF0;
    border-radius: 10px;
    padding: .65rem .8rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
    display: flex; flex-direction: column; gap: .35rem;
}
.tt-bill-card--ext { border-left-color: #8B5CF6; }
.tt-bill-card header {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .75rem; color: var(--tt-ink-soft);
}
.tt-bill-card__date { font-weight: 700; color: #1e293b; }
.tt-bill-card__user { font-size: .72rem; }
.tt-bill-card h4 { margin: 0; font-size: .9rem; color: #111827; line-height: 1.25; }
.tt-bill-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .15rem; }
.tt-bill-card li {
    display: flex; justify-content: space-between; gap: .5rem;
    font-size: .8rem; color: #374151;
    padding: .1rem 0;
    border-top: 1px dashed #eef2f7;
}
.tt-bill-card li:first-child { border-top: 0; }
.tt-bill-card li.is-muted { color: #9ca3af; font-style: italic; font-size: .72rem; }
.tt-bill-card li em { font-style: normal; font-weight: 600; color: #1e293b; }

.tt-bill-cards-col__total {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 10px;
    padding: .7rem .85rem;
    display: grid; gap: .15rem;
    margin-top: .25rem;
}
.tt-bill-cards-col__total strong { color: #312e81; font-size: .9rem; }
.tt-bill-cards-col__total span { font-size: .74rem; color: #475569; line-height: 1.35; }
.tt-bill-cards-col__total em {
    font-style: normal; font-weight: 700; color: #312e81;
    font-size: 1.05rem; font-variant-numeric: tabular-nums;
    margin-top: .15rem;
}

/* === RECHTE SPALTE: VORSCHAU === */
.tt-bill-preview-col { display: grid; gap: .9rem; min-width: 0; }

.tt-bill-toggle {
    display: grid; gap: .5rem;
    grid-template-columns: repeat(3, 1fr);
    background: #f1f5f9;
    border-radius: 12px;
    padding: .4rem;
}
@media (max-width: 700px) { .tt-bill-toggle { grid-template-columns: 1fr; } }
.tt-bill-toggle__btn {
    cursor: pointer;
    border: 2px solid transparent;
    background: #fff;
    border-radius: 8px;
    padding: .55rem .75rem;
    text-align: left;
    display: flex; flex-direction: column; gap: .1rem;
    color: #1e293b;
    transition: border-color .15s, box-shadow .15s;
}
.tt-bill-toggle__btn:hover { border-color: #c7d2fe; }
.tt-bill-toggle__btn.is-active {
    border-color: #4338ca;
    box-shadow: 0 4px 14px -6px rgba(67,56,202,.45);
}
.tt-bill-toggle__btn strong { font-size: .9rem; line-height: 1.2; }
.tt-bill-toggle__btn span { font-size: .75rem; color: var(--tt-ink-soft); }

.tt-bill-attach {
    display: flex; align-items: flex-start; gap: .5rem;
    padding: .55rem .8rem;
    background: #fff7ed;
    border: 1px dashed #fdba74;
    border-radius: 8px;
    font-size: .82rem; color: #7c2d12;
    cursor: pointer;
    transition: opacity .15s;
}
.tt-bill-attach input { margin-top: .15rem; }

/* Rechnungs-Vorschau (vertikal: Rechnung → Rapport-Beilage → QR-EZ) */
.tt-bill-preview-wrap { position: relative; min-width: 0; }
.tt-bill-preview {
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0;
}
.tt-bill-preview.is-active { display: grid; }

.tt-bill-doc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 8px 24px -14px rgba(15,23,42,.25);
    color: #1f2937;
    font-size: .82rem;
    line-height: 1.4;
    min-width: 0;
}
.tt-bill-doc__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: .85rem; }
.tt-bill-doc__logo {
    font-weight: 800; font-size: .9rem; color: #1e3a8a; line-height: 1.1;
    border-left: 4px solid #1e3a8a; padding-left: .5rem;
}
.tt-bill-doc__logo--alt { color: #111827; border-left-color: #ca8a04; }
.tt-bill-doc__logo small { font-weight: 600; font-size: .65rem; color: #475569; letter-spacing: .04em; display: block; }
.tt-bill-doc__meta { display: grid; gap: .1rem; font-size: .78rem; }
.tt-bill-doc__meta div { display: flex; gap: .5rem; justify-content: flex-end; }
.tt-bill-doc__meta span { color: #64748b; }
.tt-bill-doc__meta strong { color: #0f172a; min-width: 60px; text-align: right; }
.tt-bill-doc__addr { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: .8rem; font-size: .78rem; }
.tt-bill-doc__city { color: #475569; margin: 0 0 .25rem; font-size: .78rem; }
.tt-bill-doc__title { font-size: 1.25rem; margin: .1rem 0 .2rem; color: #0f172a; }
.tt-bill-doc__sub { font-weight: 700; margin: 0 0 .5rem; }
.tt-bill-doc__intro { margin: 0 0 .65rem; color: #334155; font-size: .8rem; }
.tt-bill-doc__table {
    width: 100%; border-collapse: collapse; font-size: .78rem;
    margin-bottom: .65rem;
}
.tt-bill-doc__table thead th {
    background: #1e3a8a; color: #fff;
    text-align: left; padding: .35rem .5rem;
    font-weight: 600; font-size: .72rem;
}
.tt-bill-doc__table thead th.is-num { text-align: right; }
.tt-bill-doc__table--alt thead th { background: #111827; }
.tt-bill-doc__table tbody td { padding: .25rem .5rem; border-bottom: 1px solid #f1f5f9; }
.tt-bill-doc__table td.is-num { text-align: right; font-variant-numeric: tabular-nums; }
.tt-bill-doc__table tr.is-group td {
    background: #f8fafc; font-weight: 700; color: #1e293b;
    padding-top: .35rem; padding-bottom: .25rem; font-size: .76rem;
}
.tt-bill-doc__sum { display: grid; gap: .15rem; margin: .4rem 0 .65rem; font-size: .82rem; }
.tt-bill-doc__sum > div { display: flex; justify-content: space-between; gap: 1rem; padding: .2rem 0; border-bottom: 1px dashed #e5e7eb; }
.tt-bill-doc__sum > div em { font-style: normal; font-variant-numeric: tabular-nums; }
.tt-bill-doc__sum .is-akonto { color: #b91c1c; }
.tt-bill-doc__sum .is-akonto::after {
    content: 'AUTO ABZUG';
    font-size: .6rem; font-weight: 700;
    background: #fee2e2; color: #b91c1c;
    padding: .05rem .35rem; border-radius: 4px;
    margin-left: .35rem; align-self: center;
}
.tt-bill-doc__sum .is-total {
    border-top: 2px solid #0f172a; border-bottom: 0;
    padding-top: .4rem; margin-top: .2rem;
    font-weight: 700; font-size: .95rem; color: #0f172a;
}
.tt-bill-doc__attach {
    margin: .35rem 0 0;
    padding: .45rem .65rem;
    background: #eef2ff; border-radius: 6px;
    font-size: .76rem; color: #3730a3;
}
.tt-bill-doc__attach.is-muted { background: #f1f5f9; color: #64748b; }

/* Rapport-Variante */
.tt-bill-doc--rapport {
    font-size: .8rem;
    max-width: 650px;
    margin: 0 auto;
}
.tt-bill-rapport__section {
    margin: .5rem 0 .4rem;
    font-size: .9rem; color: #0f172a;
    border-bottom: 1px solid #cbd5e1; padding-bottom: .25rem;
}
.tt-bill-rapport__table { width: 100%; border-collapse: collapse; font-size: .78rem; table-layout: fixed; }
.tt-bill-rapport__table td { padding: .22rem .4rem; vertical-align: top; word-wrap: break-word; overflow-wrap: anywhere; }
.tt-bill-rapport__table tr + tr td { border-top: 1px dotted #eef2f7; }
.tt-bill-rapport__table .is-date { color: #475569; white-space: nowrap; width: 90px; }
.tt-bill-rapport__table .is-task { font-weight: 600; color: #0f172a; width: 200px; }
.tt-bill-rapport__table .is-num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; color: #1e293b; width: 80px; }

/* Mobile: Rapport-Mockup kompakter, kein horizontaler Scroll */
@media (max-width: 640px) {
    .tt-bill-doc--rapport { padding: .85rem .8rem; font-size: .72rem; }
    .tt-bill-doc--rapport .tt-bill-doc__top { gap: .5rem; }
    .tt-bill-doc--rapport .tt-bill-doc__addr { grid-template-columns: 1fr; gap: .4rem; }
    .tt-bill-doc--rapport .tt-bill-doc__title { font-size: 1rem; }
    .tt-bill-rapport__table { font-size: .7rem; }
    .tt-bill-rapport__table td { padding: .2rem .25rem; }
    .tt-bill-rapport__table .is-date { width: 64px; font-size: .65rem; }
    .tt-bill-rapport__table .is-task { width: auto; }
    .tt-bill-rapport__table .is-num { width: 58px; }
}

/* Inline-Checkbox in der kumulierten Rechnung */
.tt-bill-attach--inline {
    margin-top: .25rem;
}

/* Angehängter Projektrapport unter der Rechnung */
.tt-bill-doc--attached {
    border-left: 4px solid #4338ca;
    background: #fdfdff;
    position: relative;
}
.tt-bill-doc__attach-tag {
    display: inline-block;
    margin: -.5rem 0 .8rem;
    padding: .25rem .55rem;
    background: #4338ca; color: #fff;
    font-size: .7rem; font-weight: 700;
    border-radius: 0 0 6px 6px;
    letter-spacing: .02em;
}

/* QR-Zahlteil als SVG */
.tt-bill-qrez {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: .9rem 1rem 1rem;
    box-shadow: 0 8px 24px -14px rgba(15,23,42,.2);
}
.tt-bill-qrez__head {
    display: flex; flex-direction: column; gap: .15rem;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: .5rem; margin-bottom: .65rem;
}
.tt-bill-qrez__head strong { color: #0f172a; font-size: .9rem; }
.tt-bill-qrez__head span { color: var(--tt-ink-soft); font-size: .78rem; }
.tt-bill-qrez__img {
    display: block;
    width: 100%; height: auto; max-width: 100%;
    border-top: 2px dashed #cbd5e1;
    padding-top: .55rem;
}

/* Mehrwerte unten */
.tt-bill-perks {
    margin-top: 2rem;
    display: grid; gap: .8rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.tt-bill-perks > div {
    background: #fff; border: 1px solid #e5e7eb; border-radius: 10px;
    padding: .75rem .9rem;
    display: grid; gap: .2rem;
}
.tt-bill-perks strong { color: #0f172a; }
.tt-bill-perks span { color: var(--tt-ink-soft); font-size: .85rem; }


/* =========================================================================
   CTA-Modul: Rückruf-Anfrage (zentral, niederschwellig)
   - Verwendung: <section class="tt-cta-callback"> ... </section>
   - Primär: Mini-Formular (Name + Handy)
   - Sekundär: Calendly-Button
   - Tertiär: Direktwahl + Mail
   ======================================================================= */
.tt-cta-callback {
    position: relative;
    background: linear-gradient(160deg, #5B2BE5 0%, #3A1AA8 100%);
    color: #fff;
    border-radius: var(--tt-r-xl);
    padding: 2.25rem 2rem;
    box-shadow: 0 18px 40px -18px rgba(58, 26, 168, .55);
    overflow: hidden;
}
.tt-cta-callback::before {
    content: "";
    position: absolute;
    inset: auto -40% -60% auto;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
    pointer-events: none;
}
.tt-cta-callback__grid {
    position: relative;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    align-items: center;
}
@media (min-width: 900px) {
    .tt-cta-callback__grid { grid-template-columns: 1.05fr .95fr; gap: 2.5rem; }
}
.tt-cta-callback__eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255,255,255,.15);
    padding: .35rem .7rem;
    border-radius: 999px;
    margin-bottom: .9rem;
}
.tt-cta-callback__title {
    margin: 0 0 .6rem;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.2;
    color: #fff;
}
.tt-cta-callback__lead {
    margin: 0 0 1.2rem;
    color: rgba(255,255,255,.88);
    font-size: 1rem;
    line-height: 1.55;
}
.tt-cta-callback__bullets {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
    display: grid;
    gap: .45rem;
}
.tt-cta-callback__bullets li {
    position: relative;
    padding-left: 1.4rem;
    color: rgba(255,255,255,.92);
    font-size: .95rem;
}
.tt-cta-callback__bullets li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    color: #B7FFB1;
    font-weight: 700;
}
.tt-cta-callback__alt {
    margin: 1.25rem 0 0;
    font-size: .88rem;
    color: rgba(255,255,255,.78);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .6rem;
}
.tt-cta-callback__alt-label {
    font-weight: 600;
    color: rgba(255,255,255,.85);
}
.tt-cta-callback__alt a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}
.tt-cta-callback__alt a.tt-cta-callback__chip {
    text-decoration: none;
}
.tt-cta-callback__chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-weight: 600;
    line-height: 1;
    transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.tt-cta-callback__chip:hover,
.tt-cta-callback__chip:focus-visible {
    background: rgba(255,255,255,.22);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-1px);
}
.tt-cta-callback__chip-icon {
    flex-shrink: 0;
    opacity: .9;
}

/* Formular-Karte rechts */
.tt-cta-callback__form {
    background: #fff;
    color: var(--tt-ink);
    border-radius: var(--tt-r-lg, 14px);
    padding: 1.5rem;
    display: grid;
    gap: .8rem;
    box-shadow: 0 10px 30px -12px rgba(0,0,0,.35);
}
.tt-cta-callback__form label {
    display: grid;
    gap: .3rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--tt-ink);
}
.tt-cta-callback__form input,
.tt-cta-callback__form select {
    font: inherit;
    padding: .7rem .85rem;
    border-radius: var(--tt-r-sm, 8px);
    border: 1px solid var(--tt-border);
    background: #FBFAFF;
    color: var(--tt-ink);
}
.tt-cta-callback__form input:focus,
.tt-cta-callback__form select:focus {
    outline: none;
    border-color: var(--tt-violet);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(91,43,229,.12);
}
.tt-cta-callback__form button {
    margin-top: .35rem;
}
.tt-cta-callback__form-hint {
    margin: .1rem 0 0;
    font-size: .78rem;
    color: var(--tt-muted);
    line-height: 1.4;
}
.tt-cta-callback__divider {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: .25rem 0;
    color: var(--tt-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.tt-cta-callback__divider::before,
.tt-cta-callback__divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--tt-border);
}
.tt-cta-callback__calendly {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1rem;
    border-radius: var(--tt-r-sm, 8px);
    background: #0f172a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: background .15s, transform .15s;
}
.tt-cta-callback__calendly:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

/* Kompakte Variante für Inline-Einbindung am Ende einer Detailseite */
.tt-cta-callback--compact {
    padding: 1.6rem 1.4rem;
}
.tt-cta-callback--compact .tt-cta-callback__title {
    font-size: 1.25rem;
}

/* =========================================================================
   Funktions-Hub: Cluster-Cards
   ======================================================================= */
.tt-feature-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    margin-top: 1rem;
}
@media (min-width: 700px) {
    .tt-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .tt-feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.tt-feature-grid--2 {
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .tt-feature-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 1100px) {
    .tt-feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
.tt-feature-card {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: var(--tt-r-xl);
    padding: 1.6rem 1.5rem 1.4rem;
    text-decoration: none;
    color: var(--tt-ink);
    box-shadow: 0 1px 2px rgba(15,23,42,.04);
    transition: transform .15s, box-shadow .15s, border-color .15s;
    position: relative;
}
.tt-feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--tt-violet);
    box-shadow: 0 18px 32px -20px rgba(91,43,229,.45);
}
.tt-feature-card__num {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--tt-violet);
    text-transform: uppercase;
}
.tt-feature-card h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.3;
    color: var(--tt-ink);
}
.tt-feature-card p {
    margin: 0;
    color: var(--tt-ink-soft, #475569);
    font-size: .95rem;
    line-height: 1.55;
}
.tt-feature-card__more {
    margin-top: auto;
    padding-top: .6rem;
    color: var(--tt-violet);
    font-weight: 600;
    font-size: .92rem;
}
.tt-feature-card--accent {
    background: linear-gradient(160deg, #F3F0FF 0%, #EEF2FF 100%);
    border-color: #D8D2F5;
}

/* ============================================================
   HEADER XL · MEGA MENU · FOOTER XL  (MultiPageHome ausbau)
   ============================================================ */

/* --- Logo grösser ----------------------------------------- */
.tt-logo--xl img { height: 56px; }
@media (min-width: 1100px) {
    .tt-logo--xl img { height: 64px; }
}
@media (max-width: 899px) {
    .tt-logo--xl img {
        height: 58px;
        padding-top: 7px;
        padding-bottom: 7px;
    }
}
@media (max-width: 599px) {
    .tt-logo--xl img {
        height: 58px;
        padding-top: 7px;
        padding-bottom: 7px;
    }
}

/* --- Header XL: mehr Luft, sticky bleibt ------------------- */
.tt-header--xl .tt-header__inner { padding: 1.15rem 1rem; gap: 1.5rem; }
@media (min-width: 600px) {
    .tt-header--xl .tt-header__inner { padding: 1.15rem 1.25rem; }
}
@media (min-width: 960px) {
    .tt-header--xl .tt-header__inner { padding: 1.15rem 0; }
}
/* Mobile-Override muss NACH den min-width-Regeln stehen, sonst gewinnt
   bei Viewports zwischen 600 und 899 px die größere Padding-Variante.
   Header-Padding 0, weil das Logo selbst über padding-top/-bottom seine
   Höhe (58px + 2x7px = 72px) mitbringt. */
@media (max-width: 899px) {
    .tt-header--xl .tt-header__inner { padding: 0 .9rem; gap: .75rem; }
}
@media (max-width: 599px) {
    .tt-header--xl .tt-header__inner { padding: 0 .75rem; gap: .5rem; }
}

/* --- Nav-Items mit Mega-Anker ------------------------------ */
.tt-header--xl .tt-nav__list { gap: 1.4rem; align-items: center; }
.tt-nav__item { position: static; }
.tt-nav__link--has-mega { display: inline-flex; align-items: center; gap: .35rem; }
.tt-nav__chev { width: 10px; height: 7px; transition: transform .2s ease; opacity: .7; }
.tt-nav__item--mega:hover .tt-nav__chev,
.tt-nav__item--mega:focus-within .tt-nav__chev { transform: rotate(180deg); opacity: 1; }

/* --- Mega Menu --------------------------------------------- */
.tt-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 1px solid var(--tt-border);
    border-bottom: 1px solid var(--tt-border);
    box-shadow: 0 24px 48px -24px rgba(60, 40, 120, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
    z-index: 50;
}
.tt-nav__item--mega:hover > .tt-mega,
.tt-nav__item--mega:focus-within > .tt-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .15s ease, transform .15s ease, visibility 0s linear 0s;
}

.tt-mega__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1.75rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
}

.tt-mega__col--lead h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin: .35rem 0 .6rem;
    color: var(--tt-ink);
}
.tt-mega__col--lead p {
    color: var(--tt-ink-soft);
    margin: 0 0 1rem;
    font-size: .95rem;
}
.tt-mega__lead-link {
    font-weight: 600;
    color: var(--tt-violet);
}

.tt-mega__group {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--tt-ink-soft);
    margin: 0 0 .9rem;
    font-weight: 600;
}

.tt-mega__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .15rem;
}
.tt-mega__col ul a {
    display: block;
    padding: .55rem .65rem;
    border-radius: 10px;
    color: var(--tt-ink);
    transition: background .12s ease;
}
.tt-mega__col ul a:hover {
    background: var(--tt-bg-soft);
    color: var(--tt-violet);
}
.tt-mega__col ul a strong { display: block; font-weight: 600; font-size: .98rem; }
.tt-mega__col ul a em {
    display: block;
    font-style: normal;
    color: var(--tt-ink-soft);
    font-size: .82rem;
    margin-top: .1rem;
}

/* Hervorgehobene Branchen-Einträge (z.B. Tiefbau & Bagger / Lohnunternehmen) */
.tt-mega__col ul li.tt-mega__item--featured > a {
    position: relative;
    padding-left: .9rem;
}
.tt-mega__col ul li.tt-mega__item--featured > a::before {
    content: "";
    position: absolute;
    left: .35rem; top: 10px; bottom: 10px;
    width: 2px;
    border-radius: 2px;
    background: var(--tt-violet);
    opacity: .55;
}
.tt-mega__col ul li.tt-mega__item--featured > a:hover::before {
    opacity: 1;
}
.tt-mega__pill {
    display: inline-block;
    margin-left: .5rem;
    padding: .05rem .45rem;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.10);
    color: var(--tt-violet);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    vertical-align: middle;
    transform: translateY(-1px);
    border: 1px solid rgba(139, 92, 246, 0.20);
}

/* Mobile-Nav: Featured-Markierung */
.tt-mobilenav__sub li.tt-mobilenav__item--featured > a {
    border-left: 2px solid var(--tt-violet);
    padding-left: .85rem;
    font-weight: 600;
}
.tt-mobilenav__sub li.tt-mobilenav__item--featured .tt-mega__pill {
    font-size: .56rem;
}

.tt-mega__foot {
    background: var(--tt-bg-soft);
    border-top: 1px solid var(--tt-border);
    padding: .85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: .92rem;
    color: var(--tt-ink-soft);
}

@media (max-width: 1099px) {
    .tt-mega__inner { grid-template-columns: 1fr 1fr; }
    .tt-mega__col--lead { grid-column: 1 / -1; }
}

/* --- Mobilenav: Submenüs via <details> --------------------- */
.tt-mobilenav details > summary {
    display: block;
    padding: .8rem 1.25rem;
    color: var(--tt-ink);
    font-weight: 600;
    border-bottom: 1px solid var(--tt-bg-soft);
    cursor: pointer;
    list-style: none;
    position: relative;
}
.tt-mobilenav details > summary::-webkit-details-marker { display: none; }
.tt-mobilenav details > summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    color: var(--tt-ink-soft);
}
.tt-mobilenav details[open] > summary::after { content: "−"; }
.tt-mobilenav__sub {
    background: var(--tt-bg-soft);
    padding: .25rem 0 .5rem !important;
}
.tt-mobilenav__sub a {
    padding-left: 2.25rem !important;
    font-weight: 500 !important;
    color: var(--tt-ink-soft) !important;
}

/* ============================================================
   FOOTER XL
   ============================================================ */
.tt-footer--xl { padding: 4.5rem 0 2rem; }
.tt-footer--xl .tt-footer__top {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .tt-footer--xl .tt-footer__top { grid-template-columns: 1.2fr 2fr; }
}
.tt-footer--xl .tt-footer__cols {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .tt-footer--xl .tt-footer__cols { grid-template-columns: repeat(3, 1fr); }
}

.tt-footer--xl .tt-footer__brand .tt-logo--xl img { height: 64px; filter: brightness(0) invert(1); }
.tt-footer--xl .tt-footer__brand p { max-width: 360px; line-height: 1.55; margin: 1rem 0 1.25rem; }

.tt-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 0 0 1.25rem;
}

.tt-badge-swiss {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #fff;
    color: #111;
    padding: .35rem .65rem .35rem .4rem;
    border-radius: 4px;
    font-size: .82rem;
    line-height: 1;
    box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.tt-badge-swiss__cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #d8232a;
    color: #fff;
    font-weight: 700;
    border-radius: 2px;
    font-size: 1.1rem;
    line-height: 1;
}
.tt-badge-swiss__txt { display: inline-flex; flex-direction: column; gap: 1px; }
.tt-badge-swiss__txt strong { font-weight: 700; letter-spacing: .02em; }
.tt-badge-swiss__txt em { font-style: normal; color: #555; font-size: .72rem; }

.tt-badge-soft {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255,255,255,.07);
    color: #E5DFF5;
    padding: .4rem .7rem;
    border-radius: 999px;
    font-size: .8rem;
    border: 1px solid rgba(255,255,255,.08);
}

.tt-swiss-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    line-height: 0;
}

.tt-swiss-cross svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tt-footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem 1.25rem;
    font-size: .92rem;
}
.tt-footer__contact a { color: #fff; }

.tt-footer--xl .tt-footer__col h4 { margin-bottom: .9rem; }
.tt-footer--xl .tt-footer__col ul { gap: .55rem; font-size: .92rem; }

.tt-footer__bottom-meta { color: #BDB4D6; }

/* --- Mega Menu Hover-Bridge (gegen abbrechenden Hover) --- */
.tt-nav__item--mega > .tt-nav__link--has-mega {
    position: relative;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    margin-top: -1.1rem;
    margin-bottom: -1.1rem;
}
.tt-mega { padding-top: .25rem; }
.tt-mega::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
    background: transparent;
}
.tt-nav__item--mega:hover > .tt-mega,
.tt-nav__item--mega:focus-within > .tt-mega {
    transition-delay: 0s;
}
.tt-nav__item--mega > .tt-mega {
    transition: opacity .18s ease .12s, transform .18s ease .12s, visibility 0s linear .3s;
}

/* ===== Fallstudien-Card (Referenzen-Highlight) ====================== */
.tt-casestudy-card{
  display:grid;
  grid-template-columns:1.4fr .9fr;
  gap:2rem;
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:1.25rem;
  padding:2rem 2.25rem;
  box-shadow:0 12px 40px -20px rgba(60,40,160,.25);
  align-items:center;
}
.tt-casestudy-card__body blockquote{
  margin:.75rem 0 1rem;
  font-size:1.18rem;
  line-height:1.55;
  color:#1f2937;
  font-weight:500;
}
.tt-casestudy-card__kpis{
  display:grid;
  grid-template-columns:1fr;
  gap:.85rem;
  background:linear-gradient(160deg,#eef0ff 0%,#f7f3ff 100%);
  border-radius:1rem;
  padding:1.25rem 1.4rem;
}
.tt-casestudy-card__kpis > div{
  display:flex;
  flex-direction:column;
  gap:.15rem;
}
.tt-casestudy-card__kpis strong{
  font-size:1.9rem;
  font-weight:700;
  color:#4f46e5;
  line-height:1.1;
}
.tt-casestudy-card__kpis span{
  color:#4b5563;
  font-size:.92rem;
  line-height:1.35;
}
.tt-casestudy-card__cta{
  grid-column:1 / -1;
  text-align:center;
  margin-top:.5rem;
}
@media (max-width:880px){
  .tt-casestudy-card{ grid-template-columns:1fr; padding:1.5rem; }
}

/* Featured-Variante in der Stimmen-Liste */
.tt-testimonial.tt-testimonial--featured{
  border:1px solid #c7c2f5;
  background:linear-gradient(180deg,#fbfaff 0%,#fff 60%);
  box-shadow:0 10px 30px -18px rgba(79,70,229,.35);
}

/* ===== Fallstudie-Detailseite ======================================= */
.tt-cs-hero{
  background:linear-gradient(160deg,#eef0ff 0%,#f4f1ff 60%,#ffffff 100%);
  padding:4rem 0 3rem;
}
.tt-cs-hero__layout{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:2.5rem;
  align-items:center;
}
.tt-cs-hero__kpis{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.85rem;
  margin-top:1.5rem;
}
.tt-cs-hero__kpis > div{
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:.85rem;
  padding:.9rem 1rem;
  text-align:center;
}
.tt-cs-hero__kpis strong{
  display:block;
  font-size:1.6rem;
  font-weight:700;
  color:#4f46e5;
}
.tt-cs-hero__kpis span{
  color:#4b5563;
  font-size:.85rem;
}
.tt-cs-hero__visual{
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:1rem;
  padding:1rem;
  box-shadow:0 12px 40px -20px rgba(60,40,160,.25);
  font-size:.95rem;
  color:#374151;
}
.tt-cs-hero__visual h3{ margin:.25rem 0 .5rem; font-size:1.05rem; }
@media (max-width:880px){
  .tt-cs-hero__layout{ grid-template-columns:1fr; }
  .tt-cs-hero__kpis{ grid-template-columns:repeat(3,1fr); }
}

.tt-cs-quote{
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:1rem;
  padding:1.5rem 1.75rem;
  margin:1.25rem 0;
}
.tt-cs-quote--after{
  background:linear-gradient(160deg,#4f46e5 0%,#6d28d9 100%);
  color:#fff;
  border:none;
}
.tt-cs-quote--after blockquote, .tt-cs-quote--after p{ color:#fff; }
.tt-cs-quote__author{ font-size:.9rem; opacity:.85; margin-top:.5rem; }
.tt-cs-quote__metrics{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
  margin-top:1rem;
}
.tt-cs-quote__metrics div{ text-align:center; }
.tt-cs-quote__metrics strong{ display:block; font-size:1.8rem; font-weight:700; }

.tt-cs-steps{ display:grid; gap:1.25rem; margin:1.5rem 0; }
.tt-cs-step{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:1.25rem;
  align-items:start;
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:1rem;
  padding:1.5rem;
}
.tt-cs-step__num{
  font-size:1.4rem;
  font-weight:700;
  color:#4f46e5;
  background:#eef0ff;
  border-radius:.6rem;
  padding:.4rem .8rem;
  min-width:3rem;
  text-align:center;
}
.tt-cs-step h3{ margin:0 0 .4rem; font-size:1.15rem; }
.tt-cs-step p{ margin:0; color:#4b5563; }

.tt-cs-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  text-align:center;
  margin:2rem 0;
}
.tt-cs-facts strong{ display:block; font-size:2rem; font-weight:700; color:#4f46e5; }
.tt-cs-facts span{ color:#4b5563; }
@media (max-width:700px){ .tt-cs-facts{ grid-template-columns:1fr; } }

/* ===== Fallstudien-Grid auf Referenzen ============================= */
.tt-casestudy-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:1.5rem;
}
.tt-casestudy-card--link{
  display:flex;
  flex-direction:column;
  gap:.75rem;
  text-decoration:none;
  color:inherit;
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:1.1rem;
  padding:1.75rem;
  box-shadow:0 12px 36px -22px rgba(60,40,160,.3);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  grid-template-columns:none;
  align-items:stretch;
}
.tt-casestudy-card--link:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 48px -22px rgba(60,40,160,.45);
  border-color:#c7c2f5;
}
.tt-casestudy-card__head{
  display:flex;
  align-items:center;
  gap:1rem;
  justify-content:space-between;
}
.tt-casestudy-card__logo{
  height:44px;
  width:auto;
  object-fit:contain;
}
.tt-casestudy-card__logo--text{
  height:auto;
  font-weight:700;
  color:#4f46e5;
  font-size:1.05rem;
  line-height:1.1;
}
.tt-casestudy-card__logo--text small{
  font-size:.75rem;
  font-weight:500;
  color:#6b7280;
}
.tt-casestudy-card--link h3{ margin:.25rem 0 .25rem; font-size:1.2rem; }
.tt-casestudy-card--link p{ color:#4b5563; margin:0; }
.tt-casestudy-card--link .tt-casestudy-card__kpis{
  grid-template-columns:repeat(3,1fr);
  margin-top:.5rem;
}
.tt-casestudy-card--link .tt-casestudy-card__kpis strong{ font-size:1.4rem; }
.tt-casestudy-card__more{
  margin-top:auto;
  font-weight:600;
  color:#4f46e5;
}

/* ===== Detail-Pullquote ============================================ */
.tt-cs-pullquote{
  max-width:880px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:1.25rem;
  padding:2rem 2.25rem;
  box-shadow:0 12px 40px -22px rgba(60,40,160,.25);
  text-align:center;
}
.tt-cs-pullquote blockquote{
  margin:.75rem 0 1.25rem;
  font-size:1.35rem;
  line-height:1.55;
  color:#1f2937;
  font-weight:500;
  font-style:italic;
}
.tt-cs-pullquote figcaption{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.85rem;
  text-align:left;
  color:#4b5563;
}
.tt-cs-pullquote figcaption strong{ color:#1f2937; }
.tt-cs-pullquote--alt{
  background:linear-gradient(160deg,#4f46e5 0%,#6d28d9 100%);
  border:none;
  color:#fff;
}
.tt-cs-pullquote--alt blockquote{ color:#fff; }
.tt-cs-pullquote--alt figcaption,
.tt-cs-pullquote--alt figcaption strong{ color:#fff; }

/* ===== Detail-Twocol Ausgangslage ================================== */
.tt-cs-twocol{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:2.5rem;
  align-items:start;
}
@media (max-width:880px){ .tt-cs-twocol{ grid-template-columns:1fr; } }

.tt-cs-painlist{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.75rem;
}
.tt-cs-painlist li{
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:.85rem;
  padding:.85rem 1rem;
  display:flex;
  flex-direction:column;
  gap:.15rem;
}
.tt-cs-painlist strong{ color:#1f2937; }
.tt-cs-painlist span{ color:#6b7280; font-size:.92rem; }

/* ===== Ziele Cards ================================================= */
.tt-cs-goals{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.25rem;
}
.tt-cs-goals article{
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:1rem;
  padding:1.5rem;
}
.tt-cs-goals h3{ margin:.1rem 0 .5rem; font-size:1.1rem; color:#1f2937; }
.tt-cs-goals p{ color:#4b5563; margin:0; }

/* ===== Step-Resultzeile ============================================ */
.tt-cs-step__result{
  display:inline-block;
  margin-top:.6rem;
  font-size:.88rem;
  font-weight:600;
  color:#4f46e5;
  background:#eef0ff;
  padding:.3rem .65rem;
  border-radius:.5rem;
}

/* ===== Resultate-Band ============================================== */
.tt-cs-results{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:1rem;
}
.tt-cs-results > div{
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:1rem;
  padding:1.25rem;
  text-align:center;
}
.tt-cs-results strong{
  display:block;
  font-size:2rem;
  font-weight:700;
  color:#4f46e5;
  line-height:1.1;
}
.tt-cs-results > div > span{
  display:block;
  font-weight:600;
  color:#1f2937;
  margin-top:.25rem;
}
.tt-cs-results small{
  display:block;
  margin-top:.5rem;
  color:#6b7280;
  font-size:.85rem;
  line-height:1.4;
}

/* ===== Hero-Meta-DL ================================================ */
.tt-cs-meta{ display:grid; gap:.5rem; margin:.5rem 0 0; }
.tt-cs-meta > div{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:.75rem;
  font-size:.92rem;
  color:#4b5563;
  border-top:1px solid var(--tt-border,#e5e7eb);
  padding-top:.5rem;
}
.tt-cs-meta dt{ font-weight:600; color:#1f2937; min-width:120px; }
.tt-cs-meta dd{ margin:0; }

/* ===== Ueber uns: Founder-Stage mit dezent überlappenden Foto-Chips === */
.tt-founder__grid{ display:grid; grid-template-columns:minmax(280px,420px) 1fr; gap:3rem; align-items:center; }
@media (max-width:880px){ .tt-founder__grid{ grid-template-columns:1fr; gap:2rem; } }
.tt-founder__stage{ position:relative; padding:2.25rem 2.25rem; }
.tt-founder__img{
  position:relative; z-index:1;
  aspect-ratio:4/5; width:100%;
  border-radius:1.1rem;
  background:linear-gradient(160deg,#eef0ff 0%,#e9e4ff 100%);
  display:flex; align-items:center; justify-content:center;
  color:#4f46e5; font-weight:600; text-align:center;
  box-shadow:0 22px 60px -30px rgba(60,40,160,.45);
  overflow:hidden;
}
.tt-founder__img > img{
  width:100%; height:100%; object-fit:cover; display:block; border-radius:inherit;
}
.tt-founder__chip{
  position:absolute; z-index:2; margin:0;
  width:34%; max-width:148px;
  background:#fff;
  border:1px solid rgba(255,255,255,.9);
  border-radius:.85rem;
  padding:.4rem .45rem .55rem;
  box-shadow:0 10px 24px -14px rgba(60,40,160,.3), 0 1px 4px rgba(15,23,42,.06);
  opacity:.96;
  transition:transform .25s ease, opacity .25s ease;
}
.tt-founder__chip:hover{ transform:translateY(-2px); opacity:1; }
.tt-founder__chip--tl{ top:-.5rem; left:-.5rem; transform:rotate(-3deg); }
.tt-founder__chip--br{ bottom:-.5rem; right:-.5rem; transform:rotate(2.5deg); }
.tt-founder__chip-img{
  aspect-ratio:1/1; width:100%; border-radius:.6rem;
  background:linear-gradient(140deg,#fef3c7 0%,#fde68a 100%);
  display:flex; align-items:center; justify-content:center;
  color:#92400e; font-weight:600; font-size:.8rem; text-align:center; padding:.4rem;
  overflow:hidden;
}
.tt-founder__chip-img > img{
  width:100%; height:100%; object-fit:cover; display:block; border-radius:.6rem;
}
.tt-founder__chip--br .tt-founder__chip-img{
  background:linear-gradient(140deg,#fee2e2 0%,#fecaca 100%);
  color:#991b1b;
}
.tt-founder__chip figcaption{ padding:.5rem .25rem 0; line-height:1.25; }
.tt-founder__chip figcaption strong{ display:block; color:#1f2937; font-size:.78rem; }
.tt-founder__chip figcaption span{ color:#6b7280; font-size:.68rem; }
@media (max-width:520px){
  .tt-founder__stage{ padding:1.75rem 1.5rem; }
  .tt-founder__chip{ width:32%; }
}

/* Play-Button auf dem Jodel-Chip */
.tt-founder__chip--video{ position:absolute; }
.tt-founder__play{
  position:absolute;
  right:.45rem; bottom:.45rem;
  display:inline-flex; align-items:center; gap:.3rem;
  padding:.2rem .5rem .2rem .42rem;
  background:#dc2626; color:#fff;
  border:0; border-radius:999px; cursor:pointer;
  font:600 .68rem/1 inherit;
  letter-spacing:.02em;
  box-shadow:0 4px 10px -2px rgba(220,38,38,.5), 0 1px 2px rgba(15,23,42,.15);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.tt-founder__play svg{ display:block; }
.tt-founder__play:hover{ background:#b91c1c; transform:translateY(-1px); }
.tt-founder__play:focus-visible{ outline:2px solid #facc15; outline-offset:2px; }

/* Video-Modal */
.tt-video-modal[hidden]{ display:none; }
.tt-video-modal{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  padding:1rem;
}
.tt-video-modal__backdrop{
  position:absolute; inset:0;
  background:rgba(15,13,34,.78);
  backdrop-filter:blur(2px);
  cursor:pointer;
}
.tt-video-modal__dialog{
  position:relative; z-index:1;
  width:min(960px, 100%);
  background:#000; border-radius:14px; overflow:hidden;
  box-shadow:0 30px 80px -20px rgba(0,0,0,.6);
}
.tt-video-modal__frame{
  position:relative; padding-top:56.25%; background:#000;
}
.tt-video-modal__frame iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0;
}
.tt-video-modal__close{
  position:absolute; top:-.5rem; right:-.5rem;
  width:36px; height:36px; border-radius:50%; border:0;
  background:#fff; color:#0f0d22;
  font-size:1.4rem; line-height:1; cursor:pointer;
  box-shadow:0 6px 16px -4px rgba(0,0,0,.4);
  z-index:2;
}
.tt-video-modal__close:hover{ background:#f1f5f9; }
@media (max-width:520px){
  .tt-video-modal__close{ top:.5rem; right:.5rem; }
}

.tt-portrait-note{ margin-top:2.5rem; padding:1rem 1.25rem; background:#f7f3ff; border-left:3px solid #4f46e5; border-radius:.5rem; color:#374151; font-size:.95rem; }

/* ===== Timeline (Rail mit Cards) ==================================== */
.tt-tl{ list-style:none; margin:0; padding:0; position:relative; display:flex; flex-direction:column; gap:1.25rem; }
.tt-tl::before{
  content:""; position:absolute; left:1.1rem; top:.6rem; bottom:.6rem;
  width:2px; background:linear-gradient(180deg,#c7d2fe 0%,#a78bfa 50%,#c7d2fe 100%);
  border-radius:2px;
}
.tt-tl__item{ position:relative; display:grid; grid-template-columns:2.6rem 1fr; gap:1rem; align-items:start; }
.tt-tl__marker{ position:relative; display:flex; justify-content:center; padding-top:1.1rem; }
.tt-tl__dot{
  width:14px; height:14px; border-radius:50%;
  background:#fff; border:3px solid #4f46e5;
  box-shadow:0 0 0 4px rgba(79,70,229,.12);
  z-index:1;
}
.tt-tl__card{
  background:#fff;
  border:1px solid var(--tt-border,#e5e7eb);
  border-radius:.9rem;
  padding:1.1rem 1.4rem;
  box-shadow:0 8px 24px -18px rgba(60,40,160,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}
.tt-tl__card:hover{ transform:translateY(-1px); box-shadow:0 14px 30px -18px rgba(60,40,160,.4); }
.tt-tl__year{
  display:inline-block;
  font-size:.78rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  color:#4f46e5; background:#eef0ff;
  padding:.2rem .55rem; border-radius:999px; margin-bottom:.4rem;
}
.tt-tl__card h3{ margin:0 0 .3rem; font-size:1.05rem; color:#1f2937; }
.tt-tl__card p{ margin:0; color:#4b5563; font-size:.95rem; line-height:1.55; }

.tt-tl__item--highlight .tt-tl__dot{ background:#4f46e5; border-color:#fff; box-shadow:0 0 0 4px rgba(79,70,229,.25); }
.tt-tl__item--highlight .tt-tl__card{
  background:linear-gradient(160deg,#4f46e5 0%,#6d28d9 100%);
  border-color:transparent; color:#fff;
  box-shadow:0 18px 40px -18px rgba(79,70,229,.6);
}
.tt-tl__item--highlight .tt-tl__card h3,
.tt-tl__item--highlight .tt-tl__card p{ color:#fff; }
.tt-tl__item--highlight .tt-tl__year{ background:rgba(255,255,255,.18); color:#fff; }

/* ===== Job-Layout ================================================== */
.tt-job{ display:grid; grid-template-columns:1.4fr .9fr; gap:2rem; background:#fff; border:1px solid var(--tt-border,#e5e7eb); border-radius:1.1rem; padding:2rem; box-shadow:0 12px 36px -22px rgba(60,40,160,.25); }
@media (max-width:880px){ .tt-job{ grid-template-columns:1fr; } }
.tt-job__main h3{ margin:1.5rem 0 .5rem; font-size:1.05rem; color:#1f2937; }
.tt-job__main h3:first-child{ margin-top:0; }
.tt-job__side{ background:#f7f3ff; border-radius:.85rem; padding:1.5rem; }
.tt-job__side h3{ margin:0 0 .75rem; color:#1f2937; font-size:1.05rem; }

/* ===== Roadmap (Vorgehen / Onboarding) ============================== */
.tt-roadmap{
  list-style:none; margin:2.5rem 0 0; padding:0;
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem;
  counter-reset:roadmap;
}
@media (max-width:1100px){ .tt-roadmap{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .tt-roadmap{ grid-template-columns:1fr; } }

.tt-roadmap__item{
  position:relative;
  background:#fff;
  border:1px solid rgba(255,255,255,.6);
  border-radius:1rem;
  padding:1.4rem 1.4rem 1.6rem;
  box-shadow:0 18px 36px -22px rgba(15,23,42,.35);
  display:flex; flex-direction:column; gap:.75rem;
}
.tt-roadmap__item::before{
  content:""; position:absolute; left:0; right:0; top:0; height:4px;
  background:linear-gradient(90deg,#4f46e5,#7c3aed);
  border-radius:1rem 1rem 0 0;
}
.tt-roadmap__head{ display:flex; align-items:center; justify-content:space-between; gap:.5rem; }
.tt-roadmap__phase{
  display:inline-block;
  background:#4f46e5; color:#fff;
  font-size:.78rem; font-weight:600; letter-spacing:.02em;
  padding:.3rem .65rem; border-radius:.4rem;
}
.tt-roadmap__num{
  font-size:.85rem; font-weight:700; color:#a5b4fc;
  font-variant-numeric:tabular-nums;
}
.tt-roadmap__item h3{
  margin:0; font-size:1.35rem; line-height:1.15;
  letter-spacing:.01em; text-transform:uppercase; color:#0f172a;
}
.tt-roadmap__lead{ margin:0; color:#374151; font-size:.95rem; }
.tt-roadmap__meta{
  margin:0; font-size:.82rem; font-weight:600; color:#4f46e5;
}
.tt-roadmap__item p{ margin:0; color:#4b5563; font-size:.92rem; line-height:1.5; }
.tt-roadmap__item ul,
.tt-roadmap__item ol{ margin:.25rem 0 0; padding-left:1.1rem; color:#4b5563; font-size:.92rem; line-height:1.55; }
.tt-roadmap__bullets{ list-style:none; padding-left:0; }
.tt-roadmap__bullets li{ position:relative; padding-left:1.4rem; }
.tt-roadmap__bullets li::before{
  content:"✓"; position:absolute; left:0; top:0; color:#16a34a; font-weight:700;
}
.tt-roadmap__bullets a{ color:inherit; text-decoration:underline; text-decoration-color:rgba(79,70,229,.4); text-underline-offset:2px; }
.tt-roadmap__bullets a:hover{ color:#4f46e5; text-decoration-color:#4f46e5; }
.tt-roadmap__numlist{ counter-reset:rstep; list-style:none; padding-left:0; }
.tt-roadmap__numlist li{ position:relative; padding-left:1.6rem; counter-increment:rstep; margin-bottom:.2rem; }
.tt-roadmap__numlist li::before{
  content:counter(rstep) ".";
  position:absolute; left:0; color:#4f46e5; font-weight:700;
}
.tt-roadmap__block{
  margin-top:.25rem;
  background:#f7f3ff;
  border-radius:.6rem;
  padding:.85rem 1rem;
}
.tt-roadmap__label{
  display:inline-block;
  font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:#4f46e5; background:#eef0ff;
  padding:.2rem .55rem; border-radius:.35rem; margin-bottom:.5rem;
}
.tt-roadmap__success{
  margin-top:auto; padding:.6rem .8rem;
  background:#ecfdf5; color:#047857;
  border-radius:.5rem; font-size:.92rem;
}
.tt-roadmap__rating{
  margin-top:auto;
  font-size:1.4rem; color:#f59e0b; letter-spacing:.2rem;
  text-align:center;
}
.tt-roadmap__cta{
  margin-top:2rem; display:flex; gap:.75rem; flex-wrap:wrap; justify-content:center;
}

/* ===== Fair-Teaser (auf Startseite) ================================= */
.tt-fair--teaser{ background:#f7f3ff; }
.tt-fair-teaser{
  display:grid; grid-template-columns:1.1fr 1fr; gap:2.5rem; align-items:center;
}
@media (max-width:880px){ .tt-fair-teaser{ grid-template-columns:1fr; gap:1.75rem; } }
.tt-fair-teaser__intro h2{ margin:.4rem 0 .75rem; }
.tt-fair-teaser__intro p{ color:#374151; }
.tt-fair-teaser__cta{ margin-top:1.25rem; display:flex; gap:.6rem; flex-wrap:wrap; }
.tt-fair-teaser__points{
  list-style:none; margin:0; padding:0;
  display:grid; gap:.85rem;
}
.tt-fair-teaser__points li{
  background:#fff; border-radius:.85rem;
  padding:1rem 1.2rem;
  border-left:4px solid #4f46e5;
  box-shadow:0 10px 28px -22px rgba(60,40,160,.4);
}
.tt-fair-teaser__points strong{ display:block; color:#1f2937; margin-bottom:.2rem; }
.tt-fair-teaser__points span{ color:#4b5563; font-size:.93rem; line-height:1.5; }

/* ===== Related / Cross-Linking-Block ================================ */
.tt-related{
  background:#f8fafc;
  border-top:1px solid #eef2f7;
  border-bottom:1px solid #eef2f7;
  padding:3rem 0;
}
.tt-related__head{ max-width:780px; margin:0 0 1.75rem; }
.tt-related__head h2{ font-size:1.5rem; margin:.4rem 0 .35rem; color:#0f172a; }
.tt-related__head p{ margin:0; color:#475569; }
.tt-related__grid{
  display:grid; gap:1rem;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.tt-related__card{
  display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--tt-border,#e5e7eb);
  border-radius:.85rem; padding:1.1rem 1.2rem 1rem;
  text-decoration:none; color:inherit;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow:0 8px 22px -20px rgba(15,23,42,.4);
}
.tt-related__card:hover{
  transform:translateY(-2px);
  border-color:#c7d2fe;
  box-shadow:0 14px 30px -18px rgba(79,70,229,.35);
}
.tt-related__eyebrow{
  font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:#4f46e5; margin-bottom:.35rem;
}
.tt-related__card strong{ font-size:1.02rem; color:#0f172a; margin-bottom:.3rem; }
.tt-related__card p{ margin:0 0 .85rem; color:#475569; font-size:.92rem; line-height:1.5; }
.tt-related__more{
  margin-top:auto; font-size:.85rem; font-weight:600; color:#4f46e5;
}
.tt-related__more::after{ content:" ›"; }

/* Rapport-Cases (Praxis-Szenarien) ----------------------------------------- */
.tt-rapport-cases .tt-section__header { max-width: 760px; margin: 0 auto 2rem; }
.tt-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.tt-case {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.tt-case:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.tt-case--highlight {
  border-color: var(--tt-accent, #16a34a);
  box-shadow: 0 6px 24px rgba(22,163,74,.10);
}
.tt-case__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #4b5563;
  background: #f3f4f6;
  border-radius: 999px;
  padding: .25rem .65rem;
}
.tt-case--highlight .tt-case__tag {
  color: #166534;
  background: #dcfce7;
}
.tt-case__row {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: start;
  gap: .65rem;
  padding: .75rem .9rem;
  border-radius: 10px;
  font-size: .95rem;
  line-height: 1.45;
}
.tt-case__row p { margin: 0; }
.tt-case__row--before {
  background: #fef3f2;
  color: #7f1d1d;
}
.tt-case__row--after {
  background: #ecfdf5;
  color: #065f46;
  font-weight: 500;
}
.tt-case__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1rem;
  line-height: 1;
}
.tt-case__row--after .tt-case__icon { color: #16a34a; font-weight: 700; }
.tt-rapport-cases__note {
  margin-top: 2rem;
  text-align: center;
  color: #4b5563;
  font-size: 1rem;
}
.tt-rapport-cases__note a {
  color: var(--tt-accent, #16a34a);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.tt-rapport-cases__note a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .tt-case { padding: 1.25rem; }
  .tt-rapport-cases__note a { display: inline-block; margin-top: .25rem; }
}

/* ===== Blog: Übersicht & Detail (CMS-Templates BlogIndexPage / BlogPost) === */
.tt-blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.tt-blog__card {
    background: #fff;
    border: 1px solid var(--tt-border, #e5e7eb);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tt-blog__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 58, 46, .10);
    border-color: rgba(15, 58, 46, .25);
}
.tt-blog__cardLink {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: inherit;
    text-decoration: none;
    height: 100%;
}
.tt-blog__cover {
    display: block;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #e6f1eb;
}
.tt-blog__cover--gradient {
    background: linear-gradient(135deg, #0f3a2e 0%, #16a34a 100%);
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.25;
    padding: 1.5rem;
    display: flex;
    align-items: flex-end;
}
.tt-blog__cardBody {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
}
.tt-blog__date {
    font-size: .85rem;
    color: var(--tt-ink-soft, #6b7280);
    letter-spacing: .02em;
}
.tt-blog__cardTitle {
    font-size: 1.35rem;
    line-height: 1.25;
    margin: 0;
    color: var(--tt-ink, #0f3a2e);
}
.tt-blog__cardLead {
    margin: 0;
    color: var(--tt-ink-soft, #4b5563);
    line-height: 1.55;
}
.tt-blog__cardMore {
    margin-top: auto;
    color: var(--tt-accent, #16a34a);
    font-weight: 600;
    transition: transform .2s ease;
}
.tt-blog__card:hover .tt-blog__cardMore { transform: translateX(3px); }

/* Detail-Seite */
.tt-prose {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.075rem;
    line-height: 1.75;
    color: #1f2937;
}
.tt-prose > * + * { margin-top: 1.1em; }
.tt-prose h2 {
    margin-top: 2.4em;
    font-size: 1.7rem;
    line-height: 1.25;
    color: var(--tt-ink, #0f3a2e);
}
.tt-prose h3 {
    margin-top: 1.8em;
    font-size: 1.3rem;
    color: var(--tt-ink, #0f3a2e);
}
.tt-prose p { margin: 0; }
.tt-prose ul,
.tt-prose ol { padding-left: 1.4em; }
.tt-prose li + li { margin-top: .35em; }
.tt-prose blockquote {
    border-left: 4px solid var(--tt-accent, #16a34a);
    padding: .75em 1.25em;
    margin: 1.6em 0;
    background: #f5fbf7;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #134e3a;
}
.tt-prose a {
    color: var(--tt-accent, #16a34a);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.tt-prose a:hover { text-decoration-thickness: 2px; }
.tt-prose strong { color: var(--tt-ink, #0f3a2e); }
.tt-prose hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d1d5db, transparent);
    margin: 2.4em 0;
}
.tt-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 1.4em 0;
}

/* Artikel-Hero Bild & Footer-CTA */
.tt-article__hero {
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
}
.tt-article__hero img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(15, 58, 46, .12);
}
.tt-article__footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: #f5fbf7;
    border: 1px solid rgba(15, 58, 46, .08);
    border-radius: 18px;
}
@media (max-width: 600px) {
    .tt-article__footer-cta { justify-content: center; text-align: center; }
}

/* ========================== PRAXIS-SZENARIEN ============================ */
.tt-scenarios__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.tt-scenario {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 16px;
    padding: 1.5rem 1.4rem;
    box-shadow: var(--tt-shadow-1);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tt-scenario:hover {
    transform: translateY(-2px);
    border-color: rgba(91, 43, 229, .35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}
.tt-scenario__head { display: flex; flex-direction: column; gap: .5rem; }
.tt-scenario__tag {
    align-self: flex-start;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #4338ca;
    background: rgba(91, 43, 229, .08);
    border: 1px solid rgba(91, 43, 229, .18);
    border-radius: 999px;
    padding: .25rem .65rem;
}
.tt-scenario__head h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--tt-ink);
}
.tt-scenario__body { margin: 0; display: grid; gap: .15rem; }
.tt-scenario__body dt {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .55rem;
}
.tt-scenario__body dt:first-child { margin-top: 0; }
.tt-scenario__body dd {
    margin: 0 0 .15rem;
    font-size: .92rem;
    line-height: 1.45;
    color: var(--tt-ink);
}
.tt-scenario__label--problem { color: #b91c1c; }
.tt-scenario__label--solution { color: #4338ca; }
.tt-scenario__label--result { color: #15803d; }

.tt-scenario--featured {
    background: linear-gradient(160deg, #ffffff 0%, #f7f4ff 100%);
    border-color: rgba(91, 43, 229, .35);
    box-shadow: 0 22px 50px rgba(91, 43, 229, .12);
}
.tt-scenario--featured::before {
    content: "Typischer Fall";
    position: absolute;
    top: -.7rem;
    right: 1rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--tt-grad-cta, linear-gradient(135deg, #5B2BE5, #3C6DF0));
    border-radius: 999px;
    padding: .25rem .7rem;
}

/* =============================================================
   Demo-Video Page (/demo-video) – polished styles
   Namespaced (.tt-demo*, .ttdv-*) – beeinflusst keine anderen Seiten.
   ============================================================= */
.tt-demo-hero {
    --ttdv-ink:        #0f172a;
    --ttdv-ink-soft:   #5b5870;
    --ttdv-accent:     #5b50b2;
    --ttdv-accent-2:   #7c3aed;
    --ttdv-accent-3:   #ec4899;
    --ttdv-bg-soft:    #f6f5fb;
    --ttdv-card:       #ffffff;
    --ttdv-border:     rgba(15, 23, 42, .08);
    --ttdv-shadow-sm:  0 6px 18px -10px rgba(15, 23, 42, .25);
    --ttdv-shadow-md:  0 14px 40px -22px rgba(15, 23, 42, .35);
    --ttdv-shadow-lg:  0 35px 80px -30px rgba(76, 29, 149, .35), 0 18px 50px -18px rgba(15, 23, 42, .35);
}

/* Variablen auch auf Geschwister-Sections der Demo-Seite verfügbar machen */
.tt-demo-hero ~ .ttdv-section,
.tt-demo-hero ~ .tt-demo,
.tt-demo,
.tt-demo-faq,
.tt-demo__cards,
.ttdv-section {
    --ttdv-ink:        #0f172a;
    --ttdv-ink-soft:   #5b5870;
    --ttdv-accent:     #5b50b2;
    --ttdv-accent-2:   #7c3aed;
    --ttdv-accent-3:   #ec4899;
    --ttdv-bg-soft:    #f6f5fb;
    --ttdv-card:       #ffffff;
    --ttdv-border:     rgba(15, 23, 42, .08);
    --ttdv-shadow-sm:  0 6px 18px -10px rgba(15, 23, 42, .25);
    --ttdv-shadow-md:  0 14px 40px -22px rgba(15, 23, 42, .35);
    --ttdv-shadow-lg:  0 35px 80px -30px rgba(76, 29, 149, .35), 0 18px 50px -18px rgba(15, 23, 42, .35);
}

/* ---------- Hero ---------- */
.tt-demo-hero {
    position: relative;
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
    background:
        radial-gradient(900px 480px at 80% -10%, rgba(124, 58, 237, .18), transparent 70%),
        radial-gradient(700px 500px at 0% 110%, rgba(236, 72, 153, .12), transparent 70%),
        linear-gradient(180deg, #faf9ff 0%, #f3f1fb 100%);
    border-bottom: 1px solid var(--ttdv-border);
    overflow: hidden;
}

.tt-demo-hero__inner { max-width: 60rem; }

.tt-demo-hero .tt-breadcrumb a { color: var(--ttdv-ink-soft); }

.tt-demo-hero h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.1;
    margin: .6rem 0 .9rem;
    letter-spacing: -0.01em;
}

.tt-demo-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #5b50b2 0%, #7c3aed 60%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tt-demo-hero p.lead {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--ttdv-ink-soft);
    max-width: 44rem;
    margin: 0;
    line-height: 1.5;
}

/* ---------- Layout ---------- */
.tt-demo {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* ---------- Player ---------- */
.tt-demo__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0f1d;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--ttdv-shadow-lg);
    isolation: isolate;
}

.tt-demo__player::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .55), rgba(236, 72, 153, .35), rgba(91, 80, 178, .35));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.tt-demo__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 0;
}

/* ---------- Meta-Pills ---------- */
.tt-demo__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.25rem 0 0;
}

.tt-demo__meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: #3f3590;
    background: #fff;
    border: 1px solid rgba(91, 80, 178, .22);
    border-radius: 999px;
    padding: .4rem .85rem;
    box-shadow: var(--ttdv-shadow-sm);
}

/* ---------- Next-Step-Karte unter Player ---------- */
.tt-demo__nextbox {
    margin-top: 1.5rem;
    position: relative;
    background:
        radial-gradient(220px 160px at 100% 0%, rgba(255,255,255,.18), transparent 70%),
        linear-gradient(135deg, #4c1fcb 0%, #7c3aed 50%, #ec4899 110%);
    color: #fff;
    border-radius: 22px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem;
    align-items: center;
    box-shadow: 0 30px 60px -30px rgba(124, 58, 237, .55);
    overflow: hidden;
}

.tt-demo__nextbox::after {
    content: "";
    position: absolute;
    right: -40px; bottom: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent 70%);
    pointer-events: none;
}

.tt-demo__nextbox h3 {
    margin: 0 0 .4rem;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.25;
}

.tt-demo__nextbox p {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
    line-height: 1.45;
    max-width: 36rem;
}

.tt-demo__nextbox .tt-btn {
    background: #fff !important;
    color: #4c1fcb !important;
    border: 0 !important;
    white-space: nowrap;
    box-shadow: 0 12px 28px -10px rgba(0, 0, 0, .35);
}

.tt-demo__nextbox .tt-btn:hover {
    transform: translateY(-1px);
}

/* ---------- Kapitel-Sidebar ---------- */
.tt-demo__chapters {
    background: var(--ttdv-card);
    border: 1px solid var(--ttdv-border);
    border-radius: 22px;
    padding: 1.4rem 1.4rem 1.25rem;
    box-shadow: var(--ttdv-shadow-md);
    position: sticky;
    top: 1.5rem;
}

.tt-demo__chapters h3 {
    margin: 0 0 .35rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.tt-demo__chapters h3::before {
    content: "▶";
    color: var(--ttdv-accent);
    font-size: .7rem;
    transform: translateY(-1px);
}

.tt-demo__chapters > p {
    margin: 0 0 1rem;
    font-size: .85rem;
    color: var(--ttdv-ink-soft);
}

.tt-demo__chapters ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .4rem;
    counter-reset: chapter;
}

.tt-demo__chapters li { counter-increment: chapter; }

.tt-demo__chapters button {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: .9rem;
    row-gap: .15rem;
    align-items: start;
    width: 100%;
    background: #fafaff;
    border: 1px solid rgba(91, 80, 178, .14);
    border-radius: 14px;
    padding: .85rem .95rem .8rem;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.tt-demo__chapters button > strong {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.tt-demo__chapters button > small {
    grid-column: 2 / -1;
    grid-row: 2;
    margin-top: .15rem;
}

.tt-demo__chapters button > .tt-demo__time {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
}

.tt-demo__chapters button::before {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
}

.tt-demo__chapters button:hover {
    background: #f1eefb;
    border-color: rgba(91, 80, 178, .35);
    transform: translateX(2px);
}

.tt-demo__chapters button.is-active {
    background: linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(236, 72, 153, .08));
    border-color: rgba(124, 58, 237, .55);
    box-shadow: 0 8px 24px -16px rgba(124, 58, 237, .55);
}

.tt-demo__chapters button::before {
    content: counter(chapter, decimal-leading-zero);
    font-size: .72rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #5b50b2, #7c3aed);
    border-radius: 9px;
    padding: .35rem .5rem;
    min-width: 2.1rem;
    text-align: center;
    letter-spacing: .02em;
    box-shadow: 0 4px 10px -4px rgba(91, 80, 178, .55);
}

.tt-demo__chapters strong {
    font-size: .92rem;
    line-height: 1.3;
    display: block;
}

.tt-demo__chapters small {
    display: block;
    font-size: .78rem;
    color: var(--ttdv-ink-soft);
    margin-top: .15rem;
    line-height: 1.35;
}

.tt-demo__chapters .tt-demo__time {
    font-size: .78rem;
    font-weight: 800;
    color: var(--ttdv-accent);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    background: #fff;
    border-radius: 7px;
    padding: .2rem .45rem;
    border: 1px solid rgba(91, 80, 178, .2);
}

/* ---------- Highlights / „Was du im Video siehst" ---------- */
.tt-demo__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tt-demo__highlights li {
    position: relative;
    background: var(--ttdv-card);
    border: 1px solid var(--ttdv-border);
    border-radius: 18px;
    padding: 1.4rem 1.3rem 1.2rem;
    display: grid;
    gap: .35rem;
    box-shadow: var(--ttdv-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.tt-demo__highlights li:hover {
    transform: translateY(-3px);
    box-shadow: var(--ttdv-shadow-md);
}

.tt-demo__highlights .ttdv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .15), rgba(236, 72, 153, .12));
    color: var(--ttdv-accent);
    font-size: 1.35rem;
    margin-bottom: .35rem;
}

.tt-demo__highlights strong {
    font-size: 1rem;
    color: var(--ttdv-ink);
}

.tt-demo__highlights small {
    font-size: .88rem;
    color: var(--ttdv-ink-soft);
    line-height: 1.5;
}

/* ---------- FAQ ---------- */
.tt-demo-faq {
    max-width: 56rem;
    margin: 2rem auto 0;
    display: grid;
    gap: .65rem;
}

.tt-demo-faq details {
    background: var(--ttdv-card);
    border: 1px solid var(--ttdv-border);
    border-radius: 14px;
    padding: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tt-demo-faq details[open] {
    border-color: rgba(91, 80, 178, .35);
    box-shadow: var(--ttdv-shadow-sm);
}

.tt-demo-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ttdv-ink);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.tt-demo-faq summary::-webkit-details-marker { display: none; }

.tt-demo-faq summary::after {
    content: "+";
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--ttdv-accent);
    transition: transform .2s ease;
    line-height: 1;
}

.tt-demo-faq details[open] summary::after { content: "−"; }

.tt-demo-faq p {
    margin: 0;
    padding: 0 1.25rem 1.1rem;
    color: var(--ttdv-ink-soft);
    font-size: .95rem;
    line-height: 1.6;
}

.tt-demo-faq a { color: var(--ttdv-accent); }

/* ---------- Next-Step-Karten unten ---------- */
.tt-demo__cards {
    margin-top: 2.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.tt-demo__card {
    display: grid;
    gap: .35rem;
    background: var(--ttdv-card);
    border: 1px solid var(--ttdv-border);
    border-radius: 18px;
    padding: 1.35rem 1.4rem 1.5rem;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--ttdv-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
}

.tt-demo__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ttdv-shadow-md);
    border-color: rgba(91, 80, 178, .35);
}

.tt-demo__card .eyebrow {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ttdv-accent);
}

.tt-demo__card strong {
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--ttdv-ink);
}

.tt-demo__card p {
    margin: .15rem 0 0;
    color: var(--ttdv-ink-soft);
    font-size: .92rem;
    line-height: 1.45;
}

.tt-demo__card .more {
    margin-top: .65rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--ttdv-accent);
}

.tt-demo__card .more::after {
    content: " →";
    transition: transform .2s ease;
    display: inline-block;
}

.tt-demo__card:hover .more::after {
    transform: translateX(3px);
}

/* ---------- Section Header lokal ---------- */
.ttdv-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.ttdv-section--soft { background: var(--ttdv-bg-soft); }

.ttdv-section__header {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 2rem;
}

.ttdv-section__header .eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ttdv-accent);
    margin-bottom: .6rem;
}

.ttdv-section__header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    line-height: 1.15;
    margin: 0 0 .6rem;
    letter-spacing: -0.01em;
}

.ttdv-section__header p {
    margin: 0;
    color: var(--ttdv-ink-soft);
    font-size: 1rem;
    line-height: 1.55;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .tt-demo {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .tt-demo__chapters {
        position: static;
    }

    .tt-demo__nextbox {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .tt-demo__nextbox .tt-btn { justify-self: start; }
}

@media (max-width: 560px) {
    .tt-demo__player { border-radius: 16px; }
    .tt-demo__nextbox { border-radius: 18px; padding: 1.25rem; }
}

}

/* ===================================================================
   Fallstudie · Distel Lohnarbeiten · Hero (content-driven, viewport-safe)
   - Mobile: Bild oben gestapelt mit fixem Seitenverhältnis, Text darunter.
   - Desktop (>=960px): Bild absolut rechts (~55%), Text links.
   - Höhe = reine Inhaltshöhe. Kein min-height, kein vh.
   =================================================================== */
.tt-cs-hero--distel {
    position: relative;
    background: #0a0f1d;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}
.tt-cs-hero--distel .tt-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Media-Wrapper – mobiles Default: im Fluss, festes Aspect-Ratio */
.tt-cs-hero--distel__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    z-index: 0;
}
.tt-cs-hero--distel__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: saturate(1.05) contrast(1.05) brightness(.9);
    display: block;
}
/* Übergang Bild -> dunkler Textbereich (mobil) */
.tt-cs-hero--distel__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(10,15,29,0)   0%,
        rgba(10,15,29,.25) 55%,
        rgba(10,15,29,.85) 90%,
        #0a0f1d            100%);
    pointer-events: none;
}

/* Inhalt – mobil voller Breite, Padding = Höhe der Sektion */
.tt-cs-hero--distel__inner {
    padding: clamp(2rem, 6vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
    max-width: 40rem;
}

/* === Desktop ab 960px: Bild rechts absolut, Text links === */
@media (min-width: 960px) {
    .tt-cs-hero--distel__media {
        position: absolute;
        inset: 0 0 0 auto;
        width: 58%;
        aspect-ratio: auto;       /* Höhe = Sektion = Texthöhe */
        height: 100%;
    }
    .tt-cs-hero--distel__media img {
        object-position: center center;
    }
    /* Vertikaler-/horizontaler Verlauf: links voll dunkel, rechts klar */
    .tt-cs-hero--distel__media::after {
        background: linear-gradient(90deg,
            #0a0f1d            0%,
            rgba(10,15,29,.85) 18%,
            rgba(10,15,29,.45) 55%,
            rgba(10,15,29,.15) 100%);
    }
    /* Zusätzlicher Wash über die ganze Sektion für nahtlosen Übergang */
    .tt-cs-hero--distel::before {
        content: "";
        position: absolute; inset: 0;
        z-index: 1;
        background: linear-gradient(90deg,
            #0a0f1d            0%,
            #0a0f1d            38%,
            rgba(10,15,29,.0)  60%);
        pointer-events: none;
    }
    .tt-cs-hero--distel__inner {
        padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
        max-width: 38rem;
    }
}

@media (min-width: 1280px) {
    .tt-cs-hero--distel__media { width: 55%; }
    .tt-cs-hero--distel__inner { max-width: 40rem; }
}
.tt-cs-hero--distel .tt-breadcrumb,
.tt-cs-hero--distel .tt-breadcrumb a { color: rgba(255,255,255,.7); }
.tt-cs-hero--distel .tt-breadcrumb a:hover { color: #fff; }
.tt-cs-hero--distel__eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    color: #fff; font-size: .72rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: .35rem .8rem; border-radius: 999px;
}
.tt-cs-hero--distel__eyebrow::before {
    content: ""; width: 8px; height: 8px;
    background: #22c55e; border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
}
.tt-cs-hero--distel__title {
    font-size: clamp(2.1rem, 3.4vw + 1rem, 3.8rem);
    line-height: 1.08; font-weight: 800; letter-spacing: -.02em;
    margin: 1rem 0 1rem; color: #fff; text-wrap: balance;
}
.tt-cs-hero--distel__title em {
    font-style: normal;
    background: linear-gradient(120deg, #c4b5fd 0%, #a78bfa 50%, #f0abfc 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tt-cs-hero--distel__lead {
    font-size: clamp(1.05rem, .5vw + .9rem, 1.2rem);
    line-height: 1.55; color: rgba(255,255,255,.85);
    margin: 0 0 1.6rem; max-width: 36rem;
}
.tt-cs-hero--distel__lead b { color: #fff; font-weight: 700; }
.tt-cs-hero--distel__kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: clamp(.85rem, 2vw, 1.6rem);
    margin: 1.4rem 0 1.6rem;
    max-width: 36rem;
}
.tt-cs-hero--distel__kpi {
    display: flex; flex-direction: column; gap: .15rem;
    padding: .15rem 0 .15rem .9rem;
    border-left: 3px solid #5b2be5;
}
.tt-cs-hero--distel__kpi strong {
    font-size: clamp(1.7rem, 1.5vw + 1rem, 2.4rem);
    font-weight: 800; letter-spacing: -.02em; line-height: 1;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(120deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tt-cs-hero--distel__kpi span {
    font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.35;
}
.tt-cs-hero--distel__customer {
    display: flex; align-items: center; gap: .85rem;
    font-size: .88rem; color: rgba(255,255,255,.85);
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1rem; margin-top: .6rem;
}
.tt-cs-hero--distel__customer img {
    height: 36px; width: auto;
    background: #fff; padding: 4px 8px;
    border-radius: 8px;
}
.tt-cs-hero--distel__customer b { color: #fff; font-weight: 700; }
@media (max-width: 720px) {
    .tt-cs-hero--distel__kpis {
        grid-template-columns: 1fr; gap: .7rem;
    }
}

/* Fallstudie · Pain-/Fix-Strip */
.tt-cs-painfix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 0 0 1.5rem;
}
.tt-cs-painfix__col {
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
}
.tt-cs-painfix__col--pain { background: #fff7ed; border-color: #fed7aa; }
.tt-cs-painfix__col--fix  { background: #f5f3ff; border-color: #c4b5fd; }
.tt-cs-painfix__head {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: #92400e;
    margin-bottom: .65rem;
}
.tt-cs-painfix__col--fix .tt-cs-painfix__head { color: #5b2be5; }
.tt-cs-painfix__list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: .5rem;
}
.tt-cs-painfix__list li {
    font-size: .95rem; line-height: 1.5; color: #1f2937;
    display: flex; gap: .55rem; align-items: flex-start;
}
.tt-cs-painfix__list li::before {
    content: "—"; flex-shrink: 0; color: #c2410c; font-weight: 700;
}
.tt-cs-painfix__col--fix .tt-cs-painfix__list li::before {
    content: "✓"; color: #16a34a;
}
@media (max-width: 760px) {
    .tt-cs-painfix { grid-template-columns: 1fr; }
}

/* ============================================================
   REFERENZEN-PAGE
   ============================================================ */
.tt-ref-hero {
    background: linear-gradient(180deg, #f4f1ff 0%, #ffffff 100%);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.tt-ref-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}
@media (max-width: 960px) {
    .tt-ref-hero__inner { grid-template-columns: 1fr; }
}
.tt-ref-hero__copy h1 {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 800;
    margin: 1rem 0 1.25rem;
    color: #0f172a;
    text-wrap: balance;
}
.tt-ref-hero__copy h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #7c3aed 0%, #f59e0b 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.tt-ref-hero__copy p {
    font-size: clamp(1.05rem, 1vw + .65rem, 1.2rem);
    line-height: 1.6;
    color: #475569;
    max-width: 32rem;
    margin: 0 0 1.4rem;
}
.tt-ref-hero__rating {
    display: inline-flex; align-items: center; gap: .75rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: .55rem 1.1rem .55rem .65rem;
    box-shadow: 0 8px 24px -16px rgba(15,23,42,.18);
    font-size: .92rem;
}
.tt-ref-hero__rating .tt-stars { color: #f59e0b; letter-spacing: .12em; }
.tt-ref-hero__rating b { color: #0f172a; }
.tt-ref-hero__rating span { color: #64748b; }

.tt-ref-hero__visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    perspective: 1200px;
}
.tt-ref-cs-tile {
    position: relative;
    display: block;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #0f172a;
    box-shadow: 0 30px 60px -30px rgba(15,23,42,.45);
    text-decoration: none;
    transition: transform .35s ease, box-shadow .35s ease;
    isolation: isolate;
}
.tt-ref-cs-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px -30px rgba(15,23,42,.55);
}
.tt-ref-cs-tile:nth-child(1) { transform: rotate(-1.5deg); }
.tt-ref-cs-tile:nth-child(2) { transform: rotate(1.5deg) translateY(1.5rem); }
.tt-ref-cs-tile:nth-child(1):hover { transform: rotate(-1.5deg) translateY(-6px); }
.tt-ref-cs-tile:nth-child(2):hover { transform: rotate(1.5deg) translateY(calc(1.5rem - 6px)); }

.tt-ref-cs-tile__img {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.tt-ref-cs-tile::after {
    content: "";
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg,
        rgba(15,23,42,.0) 0%,
        rgba(15,23,42,.15) 45%,
        rgba(15,23,42,.85) 100%);
}
.tt-ref-cs-tile__body {
    position: absolute; left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 1.1rem 1.2rem 1.2rem;
    color: #fff;
}
.tt-ref-cs-tile__eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .25rem .65rem;
    border-radius: 999px;
    margin-bottom: .55rem;
}
.tt-ref-cs-tile__title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .35rem;
    color: #fff;
    text-wrap: balance;
}
.tt-ref-cs-tile__kpi {
    display: inline-block;
    background: linear-gradient(90deg, #7c3aed 0%, #f59e0b 100%);
    color: #fff;
    font-weight: 800;
    font-size: .8rem;
    padding: .2rem .6rem;
    border-radius: 6px;
    letter-spacing: .02em;
    margin-top: .25rem;
}
.tt-ref-cs-tile__more {
    display: inline-flex; align-items: center; gap: .35rem;
    margin-top: .65rem;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    border-bottom: 1px dashed rgba(255,255,255,.4);
    padding-bottom: 1px;
}
@media (max-width: 540px) {
    .tt-ref-hero__visual { grid-template-columns: 1fr; }
    .tt-ref-cs-tile:nth-child(1),
    .tt-ref-cs-tile:nth-child(2) { transform: none; }
    .tt-ref-cs-tile { aspect-ratio: 16/10; }
}

/* Logo-Wall · Partnerschaften */
.tt-ref-partners {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.tt-ref-partners__head {
    max-width: 44rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}
.tt-ref-partners__head h2 {
    font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem);
    line-height: 1.18;
    letter-spacing: -0.01em;
    color: #0f172a;
    margin: .5rem 0 .75rem;
    text-wrap: balance;
}
.tt-ref-partners__head p {
    color: #475569;
    line-height: 1.6;
}
.tt-ref-wall {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: center;
}
@media (max-width: 960px) { .tt-ref-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .tt-ref-wall { grid-template-columns: repeat(3, 1fr); gap: .75rem; } }
.tt-ref-wall__cell {
    aspect-ratio: 16 / 10;
    display: grid; place-items: center;
    padding: .85rem;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.tt-ref-wall__cell:hover {
    border-color: rgba(124,58,237,.35);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -16px rgba(15,23,42,.18);
}
.tt-ref-wall__cell img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(.6);
    transition: filter .25s ease;
}
.tt-ref-wall__cell:hover img { filter: none; }

.tt-logo-chip--dark,
.tt-ref-wall__cell.tt-logo-chip--dark {
    background: #0f172a;
    border-color: #0f172a;
}
.tt-ref-wall__cell.tt-logo-chip--dark img { filter: grayscale(1) opacity(.85) brightness(1.1); }
.tt-ref-wall__cell.tt-logo-chip--dark:hover img { filter: brightness(1.1); }

/* ===== Flow-Steps (1-2-3 mit gestrichelten Verbindungslinien) ========= */
.tt-flowsteps {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}
.tt-flowsteps__item {
    position: relative;
    background: #fff;
    border: 1px solid var(--tt-border);
    border-radius: 16px;
    padding: 2.25rem 1.4rem 1.4rem;
    box-shadow: var(--tt-shadow-1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    align-items: center;
}
.tt-flowsteps__num {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(67, 56, 202, .35);
    z-index: 2;
}
.tt-flowsteps__title {
    margin: .25rem 0 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--tt-ink);
    text-transform: uppercase;
    letter-spacing: .02em;
}
.tt-flowsteps__meta {
    margin: 0;
    font-size: .82rem;
    font-weight: 600;
    color: #4338ca;
}
.tt-flowsteps__text {
    margin: .25rem 0 0;
    color: var(--tt-ink-soft);
    font-size: .92rem;
    line-height: 1.55;
}
/* Gestrichelte Verbindungslinie zwischen den Karten (wie Funktionen-Hub) */
.tt-flowsteps__item + .tt-flowsteps__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1.5rem;
    width: 1.5rem;
    height: 2px;
    border-top: 2px dashed #c7d2fe;
    transform: translateY(-1px);
    z-index: 0;
}
@media (max-width: 880px) {
    .tt-flowsteps {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
    .tt-flowsteps__item + .tt-flowsteps__item::before {
        top: -1.5rem;
        left: 50%;
        width: 2px;
        height: 1.5rem;
        border-top: none;
        border-left: 2px dashed #c7d2fe;
        transform: translateX(-1px);
    }
}


/* =====================================================================
   Pricing 2025+ — Toolbar, FTE-Stufen, Billing-Toggle, Vergleichstabelle
   ===================================================================== */

.tt-pricing__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    justify-content: space-between;
    align-items: flex-end;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem;
}

.tt-pricing__fte {
    border: 0;
    padding: 0;
    margin: 0;
    flex: 1 1 60%;
}

.tt-pricing__fte legend {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: .6rem;
}

.tt-pricing__fte legend small {
    font-weight: 400;
    color: #64748b;
}

.tt-pricing__fte-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.tt-pricing__fte-buttons label {
    position: relative;
}

.tt-pricing__fte-buttons input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tt-pricing__fte-buttons span {
    display: inline-block;
    padding: .45rem .85rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #fff;
    font-size: .9rem;
    color: #334155;
    cursor: pointer;
    transition: all .15s ease;
}

.tt-pricing__fte-buttons input:checked + span {
    background: #1e293b;
    color: #fff;
    border-color: #1e293b;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .18);
}

.tt-pricing__fte-buttons input:focus-visible + span {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

.tt-pricing__billing {
    display: inline-flex;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 3px;
    flex: 0 0 auto;
}

.tt-pricing__billing-btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: .45rem 1rem;
    border-radius: 999px;
    color: #334155;
    font-size: .9rem;
    cursor: pointer;
}

.tt-pricing__billing-btn em {
    font-style: normal;
    font-weight: 600;
    color: #16a34a;
}

.tt-pricing__billing-btn.is-active {
    background: #1e293b;
    color: #fff;
}

.tt-pricing__billing-btn.is-active em {
    color: #4ade80;
}

.tt-pricing__grid--3 {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .tt-pricing__grid--3 {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.tt-plan__tagline {
    margin: -.25rem 0 .5rem;
    color: #475569;
    font-size: .95rem;
    font-style: italic;
}

.tt-plan--highlight .tt-plan__tagline {
    color: rgba(255, 255, 255, .85);
}

.tt-plan__price strong em {
    font-style: normal;
    font-weight: 600;
    color: #16a34a;
    font-size: .55em;
    margin-left: .25rem;
}

.tt-plan__badge--muted {
    background: #e2e8f0;
    color: #475569;
}

.tt-plan__price span small {
    color: inherit;
    opacity: .8;
    font-size: .85em;
}

/* Vergleichstabelle */
.tt-compare-wrap {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.tt-compare {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.tt-compare th,
.tt-compare td {
    padding: .85rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
    font-size: .95rem;
}

.tt-compare thead th {
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
}

.tt-compare tbody th {
    text-align: left;
    font-weight: 500;
    color: #1e293b;
    background: #fff;
}

.tt-compare__hi {
    background: #eef2ff !important;
}

.tt-compare thead .tt-compare__hi {
    background: #1e293b !important;
    color: #fff;
}

.tt-compare__addon {
    background: #fefce8 !important;
    color: #713f12;
    font-weight: 500;
    text-align: center;
}

.tt-compare tr:last-child th,
.tt-compare tr:last-child td {
    border-bottom: 0;
}

/* ===== Preis-Kalkulator (Stellenprozent + Branche) ============== */
.tt-calc{
  max-width:880px;margin:2rem auto 0;background:#fff;border:1px solid #e6e8ef;
  border-radius:18px;padding:1.75rem 1.75rem 1.5rem;box-shadow:0 8px 28px rgba(20,30,60,.06);
}
.tt-calc__form{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem 1.5rem;margin-bottom:1.5rem;}
@media (max-width:640px){.tt-calc__form{grid-template-columns:1fr;}}
.tt-calc__field label{display:block;font-weight:600;margin-bottom:.4rem;color:#1c2540;}
.tt-calc__field select,
.tt-calc__field input[type=number]{
  width:100%;padding:.7rem .9rem;border:1px solid #d4d8e3;border-radius:10px;
  font-size:1.05rem;background:#fafbff;color:#1c2540;
}
.tt-calc__field select:focus,
.tt-calc__field input[type=number]:focus{outline:none;border-color:#4f5dff;background:#fff;}
.tt-calc__sp{position:relative;display:flex;align-items:center;}
.tt-calc__sp input{padding-right:2.4rem;}
.tt-calc__suffix{position:absolute;right:.9rem;color:#5c647a;font-weight:600;pointer-events:none;}
.tt-calc__hint{font-size:.85rem;color:#5c647a;margin:.45rem 0 0;}
.tt-calc__hint strong{color:#1c2540;}
.tt-calc__result{display:grid;grid-template-columns:1.4fr 1fr;gap:1rem;margin-bottom:1rem;}
@media (max-width:640px){.tt-calc__result{grid-template-columns:1fr;}}
.tt-calc__result-card{
  background:#f5f7ff;border:1px solid #e0e4f5;border-radius:14px;padding:1.1rem 1.2rem;
  display:flex;flex-direction:column;gap:.35rem;
}
.tt-calc__result-card--primary{background:linear-gradient(135deg,#1c2540 0%,#2c3a73 100%);color:#fff;border-color:transparent;}
.tt-calc__result-card--primary .tt-eyebrow{color:#a9b3ff;}
.tt-calc__result-card strong{font-size:1.9rem;line-height:1.1;font-weight:700;}
.tt-calc__result-sub{font-size:.85rem;opacity:.8;}
.tt-calc__breakdown{font-size:.85rem;margin:.5rem 0 0;opacity:.85;line-height:1.5;}
.tt-calc__disclaimer{font-size:.8rem;color:#5c647a;text-align:center;margin:.25rem 0 1.25rem;}
.tt-calc__cta{border-top:1px dashed #d4d8e3;padding-top:1.25rem;text-align:center;}
.tt-calc__cta-text{margin:0 0 .9rem;color:#1c2540;}

/* ===== Kalkulator: Erweiterungen für Module + Lehrlings-Feld ====== */
.tt-calc__row{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem 1.5rem;margin-bottom:1.25rem;}
@media (max-width:640px){.tt-calc__row{grid-template-columns:1fr;}}
.tt-calc__hint--accent{color:#0f5132;background:#e8f6ee;border-left:3px solid #22c55e;
  padding:.45rem .6rem;border-radius:6px;margin-top:.5rem;}
.tt-calc__hint--accent strong{color:#0f5132;}
.tt-calc__hint--free{color:#1f3a8a;background:#eef2ff;border-left:3px solid #6c5ce7;
  padding:.45rem .6rem;border-radius:6px;margin-top:.5rem;font-size:.86rem;}
.tt-calc__hint--free strong{color:#1f1d33;}

.tt-calc__modules{margin:1.25rem 0 1.5rem;border:1px solid #e6e8ef;border-radius:12px;
  padding:1rem 1.1rem;background:#fafbff;}
.tt-calc__modules legend{font-weight:600;color:#1c2540;padding:0 .35rem;}
.tt-calc__legend-hint{font-weight:400;font-size:.85rem;color:#5c647a;}
.tt-calc__modgrid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-top:.6rem;}
@media (max-width:640px){.tt-calc__modgrid{grid-template-columns:1fr;}}
.tt-calc__modgroup h4{margin:0 0 .35rem;font-size:.78rem;letter-spacing:.05em;
  text-transform:uppercase;color:#6c5ce7;font-weight:700;}
.tt-calc__modlist{display:flex;flex-direction:column;gap:.3rem;}
.tt-calc__mod{display:flex;align-items:flex-start;gap:.55rem;padding:.4rem .55rem;
  border-radius:8px;cursor:pointer;font-size:.95rem;color:#1c2540;
  transition:background .15s ease;}
.tt-calc__mod:hover{background:#eef1ff;}
.tt-calc__mod input{margin-top:.2rem;accent-color:#4f5dff;}
.tt-calc__modprice{color:#5c647a;font-size:.82rem;font-weight:600;white-space:nowrap;}



/* ===========================================================
   Pricing-Kalkulator – helles Design (Section tt-section--soft)
   =========================================================== */

.tt-calc {
  display: flex; flex-direction: column; gap: 22px;
  background: #ffffff;
  border: 1px solid #e6e8ee;
  border-radius: 18px;
  padding: 28px clamp(20px, 3vw, 36px);
  box-shadow: 0 12px 40px rgba(20, 28, 60, 0.06);
  color: #1f2530;
}

.tt-calc__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.tt-calc__field { display: flex; flex-direction: column; gap: 6px; }
.tt-calc__field > label,
.tt-calc__field > legend {
  font-weight: 600;
  font-size: 0.95rem;
  color: #2a3142;
  margin: 0;
  padding: 0;
}
.tt-calc__field input[type="number"],
.tt-calc__field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6dae3;
  background: #fff;
  color: #1f2530;
  font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.tt-calc__field input[type="number"]:focus,
.tt-calc__field select:focus {
  outline: none;
  border-color: #5a6cff;
  box-shadow: 0 0 0 3px rgba(90, 108, 255, 0.18);
}

.tt-calc__sp {
  position: relative;
  display: flex; align-items: center;
}
.tt-calc__sp input { padding-right: 40px; }
.tt-calc__suffix {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: #6b7280; font-weight: 600; pointer-events: none;
}
.tt-calc__suffix--prefix { left: 14px; right: auto; }
.tt-calc__sp input:has(+ .tt-calc__suffix.tt-calc__suffix--prefix),
.tt-calc__sp .tt-calc__suffix--prefix ~ input { padding-left: 50px; }

.tt-calc__hint {
  margin: 0;
  font-size: 0.85rem;
  color: #5b6472;
  line-height: 1.4;
}
.tt-calc__hint--accent {
  background: #e8f7ee;
  border: 1px solid #b9e6c8;
  color: #1f5d35;
  padding: 10px 12px;
  border-radius: 10px;
}

/* Ergebnis-Kacheln */
.tt-calc__result {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.tt-calc__result-card {
  background: #f6f7fb;
  border: 1px solid #e6e8ee;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  color: #1f2530;
}
.tt-calc__result-card .tt-eyebrow {
  display: inline-block;
  background: #ece9ff;
  color: #4a3fdc;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: flex-start;
}
.tt-calc__result-card strong {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #131826;
}
.tt-calc__result-sub { font-size: 0.9rem; color: #5b6472; }

.tt-calc__result-card--primary {
  background: linear-gradient(135deg, #1a2244 0%, #2a3aa0 100%);
  border-color: transparent;
  color: #fff;
}
.tt-calc__result-card--primary strong { color: #fff; }
.tt-calc__result-card--primary .tt-calc__result-sub { color: #c3cdf7; }
.tt-calc__result-card--primary .tt-eyebrow {
  background: rgba(255,255,255,0.16);
  color: #e6ecff;
}

.tt-calc__breakdown {
  margin: 8px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #d8def0;
}
.tt-calc__result-card:not(.tt-calc__result-card--primary) .tt-calc__breakdown { color: #4a5364; }
.tt-calc__discount { color: #6dd393; font-weight: 600; }

/* Standard-Funktionen */
.tt-calc__included {
  background: #f1f7f3;
  border: 1px solid #c8e3d3;
  border-radius: 14px;
  padding: 18px 22px;
}
.tt-calc__included h4 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f5d35;
}
.tt-calc__included ul {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 18px;
}
.tt-calc__included li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: #1f2530;
  line-height: 1.35;
}
.tt-calc__included li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #2f9d5b;
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 1px;
}
.tt-calc__included-hint {
  margin: 12px 0 0;
  font-size: 0.88rem;
  color: #3d6a4d;
}

/* Modul-Bereiche */
.tt-calc__modules legend {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #1f2530;
}
.tt-calc__legend-hint {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.85rem;
}

.tt-calc__details {
  border: 1px solid #e0e3ec;
  border-radius: 14px;
  background: #fafbff;
  padding: 0;
  overflow: hidden;
}
.tt-calc__details > summary {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-weight: 600;
  color: #1f2530;
  background: #fafbff;
  transition: background .15s ease;
}
.tt-calc__details > summary::-webkit-details-marker { display: none; }
.tt-calc__details > summary:hover { background: #f3f5fc; }
.tt-calc__details-title { font-size: 1rem; }
.tt-calc__details-count {
  margin-left: auto;
  background: #ece9ff;
  color: #4a3fdc;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}
.tt-calc__details-chev {
  transition: transform .2s ease;
  font-size: 1rem;
  color: #4a5364;
}
.tt-calc__details[open] .tt-calc__details-chev { transform: rotate(180deg); }
.tt-calc__details > .tt-calc__modlist { padding: 4px 16px 16px; }

.tt-calc__modlist {
  display: flex; flex-direction: column; gap: 10px;
}

/* Modul-Kachel */
.tt-mod {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  border: 1.5px solid #e1e4ec;
  cursor: pointer;
  color: #1f2530;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}
.tt-mod:hover {
  border-color: #5fd38d;
  box-shadow: 0 4px 14px rgba(47, 157, 91, 0.10);
}
.tt-mod input[type="checkbox"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.tt-mod__check {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: #ffffff;
  border: 2px solid #c4cad6;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s ease, border-color .18s ease;
}
.tt-mod__check::after {
  content: "";
  width: 6px; height: 11px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .18s ease;
  margin-bottom: 2px;
}
.tt-mod__body {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}
.tt-mod__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  color: #131826;
}
.tt-mod__desc {
  font-size: 0.86rem;
  color: #5b6472;
  line-height: 1.4;
}
.tt-mod__price {
  font-weight: 700;
  font-size: 0.98rem;
  color: #1f5d35;
  white-space: nowrap;
  text-align: right;
}
.tt-mod__price small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: #6b7280;
  margin-top: 2px;
}

.tt-mod.is-on {
  background: linear-gradient(135deg, #2f9d5b 0%, #46c177 100%);
  border-color: #2f9d5b;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(47, 157, 91, 0.28);
}
.tt-mod.is-on .tt-mod__title,
.tt-mod.is-on .tt-mod__desc,
.tt-mod.is-on .tt-mod__price,
.tt-mod.is-on .tt-mod__price small { color: #ffffff; }
.tt-mod.is-on .tt-mod__desc { color: rgba(255,255,255,0.92); }
.tt-mod.is-on .tt-mod__price small { color: rgba(255,255,255,0.85); }
.tt-mod.is-on .tt-mod__check {
  background: #ffffff;
  border-color: #ffffff;
}
.tt-mod.is-on .tt-mod__check::after {
  border-color: #2f9d5b;
  transform: rotate(45deg) scale(1);
}

@media (max-width: 540px) {
  .tt-calc__result { grid-template-columns: 1fr; }
  .tt-mod { grid-template-columns: 24px 1fr; }
  .tt-mod__price { grid-column: 2; padding-top: 4px; text-align: left; }
}

.tt-calc__disclaimer {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

.tt-calc__cta { margin-top: 6px; }
.tt-calc__cta-text {
  text-align: center;
  font-size: 0.95rem;
  color: #4a5364;
  margin: 0 0 12px;
}

/* ===========================================================
   ROI-Rechner
   =========================================================== */
.tt-roi {
  margin-top: 28px;
  background: linear-gradient(135deg, #fff8e6 0%, #fff3d1 100%);
  border: 1px solid #f1d97a;
  border-radius: 18px;
  padding: 28px clamp(20px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
  color: #1f2530;
}
.tt-roi__head { text-align: center; }
.tt-roi__title {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  margin: 6px 0 8px;
  color: #131826;
}
.tt-roi__lead {
  font-size: 0.98rem;
  color: #4a4226;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}
.tt-roi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.tt-roi__field {
  display: flex; flex-direction: column; gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #4a4226;
}
.tt-roi__field input[type="number"] {
  width: 100%;
  padding: 12px 50px 12px 50px;
  border-radius: 10px;
  border: 1px solid #e3cf7f;
  background: #fffdf6;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2530;
}
.tt-roi__field input:focus {
  outline: none;
  border-color: #d4a92b;
  box-shadow: 0 0 0 3px rgba(212, 169, 43, 0.22);
}

.tt-roi__result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}
.tt-roi__card {
  background: #fffdf6;
  border: 1px solid #f1d97a;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.tt-roi__card .tt-eyebrow {
  display: inline-block;
  background: #f6e6a0;
  color: #6b4d00;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  align-self: flex-start;
}
.tt-roi__card strong {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: #131826;
  line-height: 1.05;
}
.tt-roi__sub { font-size: 0.85rem; color: #6b6240; line-height: 1.4; }

.tt-roi__card--save {
  background: linear-gradient(135deg, #1a7f3f 0%, #2eb160 100%);
  border-color: transparent;
  color: #ffffff;
}
.tt-roi__card--save strong { color: #ffffff; }
.tt-roi__card--save .tt-eyebrow {
  background: rgba(255,255,255,0.22);
  color: #ffffff;
}
.tt-roi__card--save .tt-roi__sub { color: #d6f0df; }

.tt-roi__hint {
  text-align: center;
  margin: 0;
  font-size: 1rem;
  color: #4a4226;
}

/* ========================================================================
   Pricing-Refinement: Monatsäquivalent, Startpaket, Fair-Block (Drin/Out)
   ======================================================================== */
.tt-calc__monthly{
  display:block;
  margin-top:.35rem;
  font-size:.92rem;
  color:rgba(255,255,255,.78);
  letter-spacing:.01em;
}
.tt-calc__result-card--setup{
  background:#fff8e6;
  border:1px solid #f3d77a;
  color:#3a2c00;
}
.tt-calc__result-card--setup .tt-eyebrow{ color:#8a6a00; }
.tt-calc__result-card--setup strong{ color:#1f1500; }
.tt-eyebrow--accent{ color:#8a6a00 !important; }
.tt-calc__setup-list{
  margin:.75rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.25rem;
  font-size:.88rem;
  color:#5a4400;
}
.tt-calc__setup-list span{ display:block; }

.tt-calc__setup-estimate{
  display:inline-block;
  margin:.1rem 0 .35rem;
  padding:.12rem .55rem;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#7a5a00;
  background:#fde9a8;
  border:1px solid #f3d77a;
  border-radius:999px;
}
.tt-calc__setup-note{
  margin:.85rem 0 0;
  padding:.6rem .75rem;
  font-size:.82rem;
  line-height:1.45;
  color:#4a3700;
  background:rgba(255,255,255,.55);
  border:1px dashed #e6c873;
  border-radius:8px;
}
.tt-calc__setup-note strong{ color:#3a2c00; }

/* ----- Startpaket-Details & Konditionen (ausklappbar) ---------------- */
.tt-calc__details{
  margin:1.25rem 0 .25rem;
  display:grid;
  gap:.55rem;
}
.tt-calc__details-item{
  border:1px solid rgba(15,23,42,.10);
  border-radius:10px;
  background:#fff;
  overflow:hidden;
}
.tt-calc__details-item > summary{
  list-style:none;
  cursor:pointer;
  padding:.75rem .95rem;
  display:flex;
  align-items:center;
  gap:.6rem;
  font-size:.95rem;
  color:#1f1d33;
  transition:background .15s ease;
}
.tt-calc__details-item > summary::-webkit-details-marker{ display:none; }
.tt-calc__details-item > summary::after{
  content:"+";
  margin-left:auto;
  font-weight:700;
  color:#6c5ce7;
  font-size:1.1rem;
  line-height:1;
}
.tt-calc__details-item[open] > summary::after{ content:"–"; }
.tt-calc__details-item > summary:hover{ background:#fafaff; }
.tt-calc__details-ico{
  display:inline-flex; width:1.4rem; justify-content:center;
  font-size:1.05rem;
}
.tt-calc__details-body{
  padding:.25rem 1rem 1rem 2.4rem;
  font-size:.92rem;
  color:#3b3856;
  line-height:1.5;
}
.tt-calc__details-list{
  margin:.25rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.4rem;
}
.tt-calc__details-list li{
  position:relative;
  padding-left:1.1rem;
}
.tt-calc__details-list li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:#22c55e; font-weight:700;
}
.tt-calc__details-foot{
  margin:.85rem 0 0;
  padding-top:.65rem;
  border-top:1px dashed rgba(15,23,42,.12);
  font-size:.86rem;
  color:#5b5878;
  font-style:italic;
}

.tt-billfair{
  margin:1.75rem 0 .25rem;
  padding:1.25rem 1.25rem 1rem;
  border-radius:14px;
  background:#f7faf7;
  border:1px solid #d8e6d8;
}
.tt-billfair__title{
  margin:0 0 1rem;
  font-size:1.05rem;
  font-weight:700;
  color:#1f3a1f;
}
.tt-billfair__grid{
  display:grid;
  gap:1rem;
  grid-template-columns:1fr;
}
@media (min-width:760px){
  .tt-billfair__grid{ grid-template-columns:1fr 1fr; }
}
.tt-billfair__col{
  padding:1rem 1.1rem;
  border-radius:12px;
  background:#fff;
  border:1px solid #e1ecdf;
}
.tt-billfair__col--out{ background:#fffaf3; border-color:#f0e0c2; }
.tt-billfair__badge{
  display:inline-block;
  margin-bottom:.6rem;
  padding:.2rem .6rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.tt-billfair__badge--in{  background:#e6f4e6; color:#1a6b1a; }
.tt-billfair__badge--out{ background:#fbe9c8; color:#7a5300; }
.tt-billfair__col ul{
  margin:0;
  padding-left:1.1rem;
  display:grid;
  gap:.4rem;
  font-size:.94rem;
  line-height:1.45;
  color:#2a3a2a;
}
.tt-billfair__col--out ul{ color:#3a2e16; }
.tt-billfair__note{
  margin:.7rem 0 0;
  font-size:.85rem;
  color:#7a5300;
  font-style:italic;
}

/* ========================================================================
   Branchen-Empfehlungs-Badges
   ======================================================================== */
.tt-recobadges{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  margin-top:.55rem;
}
.tt-recobadges__empty{
  font-size:.85rem;
  color:#6b7280;
  font-style:italic;
}
.tt-recobadge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.3rem .65rem .3rem .55rem;
  border-radius:999px;
  background:#eef4ff;
  border:1px solid #c9d8f4;
  color:#1e3a8a;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.01em;
  transition:background .15s,border-color .15s,color .15s,opacity .15s;
}
.tt-recobadge__dot{
  width:.5rem;height:.5rem;border-radius:50%;
  background:#3b82f6;
  box-shadow:0 0 0 3px rgba(59,130,246,.18);
}
.tt-recobadge__tag{
  margin-left:.2rem;
  padding:.05rem .45rem;
  border-radius:999px;
  background:#fff;
  border:1px solid currentColor;
  font-size:.7rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.tt-recobadge.is-removed{
  background:#fef2f2;
  border-color:#fbcaca;
  color:#9a2929;
  text-decoration:line-through;
  text-decoration-color:rgba(154,41,41,.55);
  opacity:.92;
}
.tt-recobadge.is-removed .tt-recobadge__dot{
  background:#dc2626;
  box-shadow:0 0 0 3px rgba(220,38,38,.18);
}
.tt-recobadge.is-removed .tt-recobadge__label{ text-decoration:inherit; }
.tt-recobadge.is-removed .tt-recobadge__tag{
  text-decoration:none;
  background:#dc2626;color:#fff;border-color:#dc2626;
}

/* ========================================================================
   ROI-Rechner v2 – Slider links, dunkles Result-Panel rechts
   ======================================================================== */
.tt-roi2{
  margin-top:2.5rem;
}
.tt-roi2__head{
  text-align:left;
  margin-bottom:1.25rem;
  max-width:60ch;
}
.tt-roi2__title{
  margin:.35rem 0 .5rem;
  font-size:clamp(1.5rem,2.4vw,2rem);
  font-weight:800;
  color:#0f172a;
  line-height:1.15;
}
.tt-roi2__lead{
  margin:0;
  color:#475569;
  font-size:1rem;
  line-height:1.5;
}
.tt-roi2__split{
  display:grid;
  grid-template-columns:1fr;
  gap:1.25rem;
  align-items:start;
}
@media (min-width:920px){
  /* Auf Desktop: ROI ist ein 2-Spalten-Grid mit Header + Inputs links
     und dem Result-Panel rechts, das ueber beide Zeilen geht und damit
     bereits oben neben dem Header startet. */
  .tt-roi2{
    display:grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
    align-items: start;
  }
  .tt-roi2__head{
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 1.25rem;
  }
  .tt-roi2__split{
    display: contents;
  }
  .tt-roi2__panel--inputs{
    grid-column: 1;
    grid-row: 2;
  }
  .tt-roi2__panel--result{
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
  }
}
.tt-roi2__panel{
  border-radius:18px;
  padding:1.5rem 1.5rem;
}
.tt-roi2__panel--inputs{
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 1px 2px rgba(15,23,42,.04);
}
.tt-roi2__panel--result{
  background:linear-gradient(160deg,#1e1b4b 0%,#312e81 60%,#3730a3 100%);
  color:#e9e8ff;
  border:1px solid #2e2a6b;
  box-shadow:0 18px 40px -16px rgba(49,46,129,.55);
}

/* Slider */
.tt-roi2__slider{ padding:.85rem 0; border-top:1px solid #f1f5f9; }
.tt-roi2__slider:first-child{ border-top:0; padding-top:0; }
.tt-roi2__slider-head{
  display:flex;align-items:baseline;justify-content:space-between;gap:1rem;
  margin-bottom:.4rem;
}
.tt-roi2__slider-head label{
  font-size:.95rem;font-weight:600;color:#0f172a;
}
.tt-roi2__value{
  font-weight:700;color:#4f46e5;font-variant-numeric:tabular-nums;
  font-size:1rem;
}
.tt-roi2__hint{
  margin:.4rem 0 0;font-size:.8rem;color:#64748b;line-height:1.45;
}
.tt-roi2__slider input[type="range"]{
  --tt-range-pct:0%;
  -webkit-appearance:none;appearance:none;
  width:100%;height:6px;border-radius:999px;
  background:linear-gradient(to right,#4f46e5 0,#4f46e5 var(--tt-range-pct),#e5e7eb var(--tt-range-pct),#e5e7eb 100%);
  outline:none;cursor:pointer;
}
.tt-roi2__slider input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;appearance:none;
  width:20px;height:20px;border-radius:50%;
  background:#fff;border:2px solid #4f46e5;
  box-shadow:0 2px 6px rgba(79,70,229,.35);
  cursor:pointer;transition:transform .1s;
}
.tt-roi2__slider input[type="range"]::-webkit-slider-thumb:hover{ transform:scale(1.1); }
.tt-roi2__slider input[type="range"]::-moz-range-thumb{
  width:20px;height:20px;border-radius:50%;
  background:#fff;border:2px solid #4f46e5;
  box-shadow:0 2px 6px rgba(79,70,229,.35);cursor:pointer;
}

/* Result-Linien */
.tt-roi2__line{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:.95rem 0;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.tt-roi2__line:first-child{ padding-top:0; }
.tt-roi2__line-label{
  font-size:.95rem;color:rgba(255,255,255,.78);
  display:flex;flex-direction:column;line-height:1.2;
}
.tt-roi2__line-sub{
  font-size:.72rem;color:rgba(255,255,255,.5);
  margin-top:.15rem;font-weight:400;
}
.tt-roi2__line-value{
  display:flex;align-items:baseline;gap:.4rem;
  font-variant-numeric:tabular-nums;
  text-align:right;
}
.tt-roi2__line-value small{
  font-size:.78rem;color:rgba(255,255,255,.55);font-weight:600;letter-spacing:.04em;
}
.tt-roi2__line-value strong{
  font-size:1.4rem;font-weight:800;color:#fff;
}
.tt-roi2__line--net{ border-bottom:0; padding:1rem 0 .75rem; }
.tt-roi2__line--net .tt-roi2__line-label{ color:#fff; font-weight:700; font-size:1rem; }
.tt-roi2__line-value--accent strong{
  font-size:1.85rem;color:#a5f3d0;
}
.tt-roi2__line-value--accent small{ color:#a5f3d0; }

/* Faktor-Block */
.tt-roi2__factor{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:.4rem 1rem;
  margin:.5rem 0 1rem;
  padding:1rem 1.1rem;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.tt-roi2__factor-label{
  font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.65);font-weight:700;
}
.tt-roi2__factor-value{
  display:flex;align-items:baseline;gap:.1rem;
  justify-self:end;
}
.tt-roi2__factor-value strong{
  font-size:2rem;font-weight:800;color:#fff;font-variant-numeric:tabular-nums;
}
.tt-roi2__factor-value em{
  font-style:normal;font-size:1.4rem;color:#fbbf24;font-weight:700;margin-left:.1rem;
}
.tt-roi2__factor-text{
  grid-column:1 / -1;
  margin:0;font-size:.85rem;color:rgba(255,255,255,.78);line-height:1.45;
}
.tt-roi2__factor-text strong{ color:#fff; }

.tt-roi2__alt{
  display:block;width:100%;text-align:center;margin:0 0 1rem;
}
.tt-btn--ghost-light{
  background:rgba(255,255,255,.06);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  padding:.7rem 1rem;border-radius:12px;font-weight:600;
  text-decoration:none;
}
.tt-btn--ghost-light:hover{ background:rgba(255,255,255,.12); }

/* Mini-Kontaktformular im Result-Panel */
.tt-roi2__form{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:1rem 1.1rem 1.15rem;
  display:grid;gap:.7rem;
}
.tt-roi2__form-lead{
  margin:0 0 .15rem;font-size:.88rem;color:rgba(255,255,255,.85);line-height:1.45;
  text-align:center;
}
.tt-roi2__form-lead strong{ color:#fff; }
.tt-roi2__field{ display:grid; gap:.25rem; }
.tt-roi2__field > span{
  font-size:.78rem;color:rgba(255,255,255,.7);font-weight:600;letter-spacing:.02em;
}
.tt-roi2__field em{ font-style:normal;color:rgba(255,255,255,.5);font-weight:400; }
.tt-roi2__field > span small{
  font-weight:400;color:rgba(255,255,255,.45);font-size:.72rem;margin-left:.25rem;
}
.tt-roi2__field input,
.tt-roi2__field textarea{
  width:100%;
  padding:.6rem .75rem;
  border-radius:10px;
  background:rgba(15,23,42,.45);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;font-size:.95rem;
  font-family:inherit;
  transition:border-color .15s,background .15s;
}
.tt-roi2__field textarea{
  resize:vertical;
  min-height:5.5rem;
  line-height:1.45;
}
.tt-roi2__field textarea::placeholder,
.tt-roi2__field input::placeholder{
  color:rgba(226,232,240,.45);
}
.tt-roi2__field input:focus,
.tt-roi2__field textarea:focus{
  outline:none;border-color:#a5b4fc;background:rgba(15,23,42,.65);
}
.tt-roi2__submit{ width:100%; margin-top:.25rem; }
.tt-roi2__form-foot{
  margin:.25rem 0 0;font-size:.75rem;color:rgba(255,255,255,.55);
  line-height:1.45;text-align:center;
}

/* ========================================================================
   Preis-Kalkulator – Polish v2 (Conversion-Layer über bestehende Styles)
   ======================================================================== */

/* Result-Card: kräftigeres, aber freundliches Visual; hebt sich klarer ab */
.tt-calc__result-card.tt-calc__result-card--primary{
  position:relative;
  background:linear-gradient(155deg,#eef2ff 0%,#e0e7ff 55%,#f5f3ff 100%);
  border:1px solid #c7d2fe;
  box-shadow:0 14px 32px -16px rgba(79,70,229,.35);
  overflow:hidden;
}
.tt-calc__result-card.tt-calc__result-card--primary::before{
  content:"";
  position:absolute; inset:auto -40% -60% auto;
  width:280px;height:280px;
  background:radial-gradient(circle,rgba(99,102,241,.18) 0%,transparent 70%);
  pointer-events:none;
}
.tt-calc__result-card.tt-calc__result-card--primary > strong{
  font-variant-numeric:tabular-nums;
  letter-spacing:-.01em;
}

/* Spar-Banner (Loss-Aversion in positiver Form) */
.tt-calc__savings{
  display:flex; align-items:flex-start; gap:.65rem;
  margin:.85rem 0 .25rem;
  padding:.75rem .9rem;
  border-radius:12px;
  background:linear-gradient(120deg,#ecfdf5 0%,#d1fae5 100%);
  border:1px solid #a7f3d0;
  color:#065f46;
  font-size:.92rem; line-height:1.45;
  box-shadow:0 1px 2px rgba(6,95,70,.08);
  animation:tt-savings-pop .35s ease-out both;
}
.tt-calc__savings[hidden]{ display:none; }
.tt-calc__savings-icon{
  font-size:1.15rem; line-height:1; margin-top:.05rem;
  filter:drop-shadow(0 1px 0 rgba(255,255,255,.6));
}
.tt-calc__savings-text strong{ color:#064e3b; font-weight:800; }
@keyframes tt-savings-pop{
  from{ opacity:0; transform:translateY(4px) scale(.985); }
  to  { opacity:1; transform:translateY(0) scale(1); }
}

/* Bundle-Hinweis innerhalb der Modul-Tile */
.tt-mod__bundle{
  display:inline-flex; align-items:center; gap:.3rem;
  margin-top:.4rem;
  padding:.18rem .5rem;
  border-radius:999px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
  font-size:.72rem; font-weight:700; letter-spacing:.02em;
  text-transform:uppercase;
  width:max-content;
}
.tt-mod__bundle::before{
  content:""; width:.4rem; height:.4rem; border-radius:50%;
  background:#f97316; box-shadow:0 0 0 3px rgba(249,115,22,.18);
}

/* Tile-Highlight, wenn Modul Teil eines AKTIVEN Bundles ist */
.tt-mod.is-bundle{
  border-color:#fdba74 !important;
  background:linear-gradient(160deg,#fffbeb 0%,#fff 70%) !important;
  box-shadow:0 6px 18px -10px rgba(249,115,22,.45);
}
.tt-mod.is-bundle .tt-mod__price{ color:#9a3412; }

/* Bundle-Badge in der Branchen-Empfehlungsleiste */
.tt-recobadge.is-bundle{
  background:linear-gradient(120deg,#fff7ed 0%,#ffedd5 100%);
  border-color:#fdba74;
  color:#9a3412;
}
.tt-recobadge.is-bundle .tt-recobadge__dot{
  background:#f97316; box-shadow:0 0 0 3px rgba(249,115,22,.22);
}
.tt-recobadge__tag--bundle{
  background:#9a3412 !important; color:#fff !important; border-color:#9a3412 !important;
}

/* Discount-Inline (Bundle-Zeile im Breakdown) */
.tt-calc__breakdown .tt-calc__discount{
  color:#047857; font-weight:600;
}

/* Lebendigere Module-Tile-Hover/Selected (sanftes Lift) */
.tt-mod{
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.tt-mod:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 22px -14px rgba(15,23,42,.25);
}
.tt-mod.is-on{
  border-color:#4f46e5 !important;
  box-shadow:0 8px 22px -12px rgba(79,70,229,.45);
}

/* Sticky Result auf grossen Screens – Preis bleibt im Blick beim Scrollen */
@media (min-width:1024px){
  .tt-calc__result{
    position:sticky; top:1rem; z-index:2;
  }
}

/* Number-Spinner-Buttons hübscher (browserübergreifend) */
.tt-calc__sp input[type="number"]{
  font-variant-numeric:tabular-nums;
  font-weight:700;
}

/* „Live updated“-Pulse auf dem Preis bei Änderungen */
.tt-calc__result-card--primary > strong{
  transition:color .15s, transform .15s;
}
.tt-calc__result-card--primary.is-pulse > strong{
  animation:tt-pulse .35s ease-out;
}
@keyframes tt-pulse{
  0%  { transform:scale(1);    color:#1e1b4b; }
  40% { transform:scale(1.04); color:#4f46e5; }
  100%{ transform:scale(1);    color:#1e1b4b; }
}

/* ==========================================================================
   PREIS-KALKULATOR · Redesign v3
   - Schlanker, ruhiger, premium statt überwältigend
   - Indigo als Leitfarbe statt knalligem Grün
   - Mehr Whitespace, weniger Border-Lärm, klare Hierarchie
   - Überschreibt frühere Styles am Ende der Datei
   ========================================================================== */

/* --- Section-Wrapper: zentrierter, fokussierter Container ---------------- */
.tt-section--soft #kalkulator,
#kalkulator{ scroll-margin-top:80px; }

#kalkulator .tt-section__header{ margin-bottom:1.75rem; }
#kalkulator .tt-section__title{
  font-size:clamp(1.65rem,2.6vw,2.25rem);
  font-weight:800; letter-spacing:-.01em; color:#0f172a;
}
#kalkulator .tt-section__lead{
  max-width:58ch; margin-left:auto; margin-right:auto;
  color:#475569; font-size:1.02rem; line-height:1.55;
}

/* --- Calc-Karte: ein einziger ruhiger Frame ------------------------------ */
.tt-calc{
  max-width:880px; margin:0 auto;
  background:#fff;
  border:1px solid #e7e9f1;
  border-radius:22px;
  padding:clamp(1.25rem,2.5vw,2.25rem);
  box-shadow:
    0 1px 0 rgba(15,23,42,.02),
    0 30px 60px -40px rgba(15,23,42,.18);
  display:grid; gap:1.5rem;
}

/* Felder: dezenter, mehr Atem */
.tt-calc__row{
  display:grid; grid-template-columns:1fr 1fr; gap:1rem;
}
@media (max-width:640px){ .tt-calc__row{ grid-template-columns:1fr; } }

.tt-calc__field > label,
.tt-calc__field > legend{
  font-size:.82rem; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; color:#64748b;
  margin-bottom:.4rem; display:block;
}

.tt-calc__field input[type="number"],
.tt-calc__field select,
.tt-calc__sp input{
  width:100%;
  padding:.85rem 1rem;
  border-radius:12px;
  border:1.5px solid #e2e8f0;
  background:#fff;
  font-size:1rem; font-weight:600; color:#0f172a;
  font-variant-numeric:tabular-nums;
  transition:border-color .15s, box-shadow .15s, background .15s;
}
.tt-calc__field input[type="number"]:focus,
.tt-calc__field select:focus,
.tt-calc__sp input:focus{
  outline:none; border-color:#6366f1;
  box-shadow:0 0 0 4px rgba(99,102,241,.14);
}
.tt-calc__sp{ position:relative; }
.tt-calc__sp .tt-calc__suffix{
  position:absolute; right:1rem; top:50%; transform:translateY(-50%);
  font-weight:700; color:#94a3b8; pointer-events:none;
}

.tt-calc__hint{
  margin:.45rem 0 0; font-size:.82rem; color:#64748b; line-height:1.5;
}
.tt-calc__hint--accent{
  margin-top:.5rem;
  padding:.65rem .8rem; border-radius:10px;
  background:#ecfdf5; border:1px solid #a7f3d0; color:#065f46;
}
.tt-calc__hint--accent strong{ color:#064e3b; }

/* --- Branchen-Empfehlung dezent ----------------------------------------- */
[data-tt-calc-recommend]{
  margin-top:.55rem; font-size:.88rem; color:#475569; line-height:1.5;
}
.tt-recobadges{ margin-top:.65rem; gap:.4rem; }
.tt-recobadge{
  background:#eef2ff; border-color:#dbe2fe; color:#3730a3;
  font-size:.78rem; padding:.28rem .6rem .28rem .5rem;
}
.tt-recobadge__dot{ background:#6366f1; box-shadow:0 0 0 3px rgba(99,102,241,.18); }

/* --- Ergebnis: zwei nebeneinander, Hero links, Setup-Begleiter rechts --- */
.tt-calc__result{
  display:grid; grid-template-columns:1.45fr 1fr; gap:1rem;
  margin-top:.5rem;
}
@media (max-width:780px){ .tt-calc__result{ grid-template-columns:1fr; } }

.tt-calc__result-card{
  position:relative;
  border-radius:18px;
  padding:1.4rem 1.5rem 1.5rem;
  display:flex; flex-direction:column; gap:.45rem;
  overflow:hidden;
}

/* Primary – dunkles, edles Indigo-Panel */
.tt-calc__result-card--primary{
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(129,140,248,.30) 0%, transparent 60%),
    linear-gradient(160deg,#1e1b4b 0%, #312e81 55%, #4338ca 100%);
  color:#fff;
  border:1px solid #2e2a6b;
  box-shadow:0 24px 50px -28px rgba(49,46,129,.55);
}
.tt-calc__result-card--primary .tt-eyebrow{
  color:rgba(255,255,255,.72); letter-spacing:.12em; font-weight:700;
}
.tt-calc__result-card--primary > strong{
  font-size:clamp(2.1rem, 4.5vw, 2.9rem);
  font-weight:800; letter-spacing:-.02em; color:#fff;
  font-variant-numeric:tabular-nums;
  line-height:1.05; margin-top:.1rem;
}
.tt-calc__result-card--primary .tt-calc__result-sub{
  color:rgba(255,255,255,.78); font-size:.88rem; margin-top:.05rem;
}
.tt-calc__monthly{
  display:inline-block; margin-top:.35rem;
  padding:.3rem .65rem; border-radius:999px;
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.18);
  color:#e9e8ff; font-size:.8rem; font-weight:600;
}
.tt-calc__breakdown{
  margin:.85rem 0 0; padding-top:.85rem;
  border-top:1px solid rgba(255,255,255,.14);
  font-size:.82rem; color:rgba(255,255,255,.78); line-height:1.6;
  /* Platz für ~6 Zeilen reservieren, damit die Card beim Hinzufügen/Entfernen
     von Modulen nicht "springt" */
  min-height:calc(.82rem * 1.6 * 6);
}
.tt-calc__breakdown .tt-calc__discount{ color:#a5f3d0; font-weight:600; }

/* Setup – ruhige helle Karte, kein hartes Gelb */
.tt-calc__result-card--setup{
  background:#fafbfd;
  border:1px solid #e7e9f1;
}
.tt-calc__result-card--setup .tt-eyebrow{
  color:#7c3aed; font-weight:700; letter-spacing:.12em;
}
.tt-calc__result-card--setup > strong{
  font-size:clamp(1.6rem, 3vw, 2rem);
  font-weight:800; color:#0f172a; font-variant-numeric:tabular-nums;
}
.tt-calc__result-card--setup .tt-calc__result-sub{
  font-size:.85rem; color:#64748b; margin-bottom:.4rem;
}
.tt-calc__setup-list{
  margin:.4rem 0 0; padding:0; list-style:none;
  display:flex; flex-direction:column; gap:.3rem;
  font-size:.84rem; color:#334155;
}
.tt-calc__setup-list span{ display:flex; gap:.4rem; align-items:flex-start; }

/* Spar-Banner inside primary card – freundlich, nicht laut */
.tt-calc__savings{
  margin-top:.85rem !important;
  background:rgba(167,243,208,.18);
  border:1px solid rgba(167,243,208,.45);
  color:#d1fae5;
  padding:.7rem .85rem; border-radius:12px;
  font-size:.86rem; line-height:1.45;
}
.tt-calc__savings-text strong{ color:#fff; }

/* --- "Standardmässig mit dabei" – schlankes Info-Panel ------------------ */
.tt-calc__included{
  background:#fafbfd;
  border:1px solid #e7e9f1;
  border-radius:16px;
  padding:1.1rem 1.25rem;
}
.tt-calc__included h4{
  margin:0 0 .65rem; font-size:.78rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; color:#6366f1;
}
.tt-calc__included ul{
  margin:0; padding:0; list-style:none;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:.5rem .9rem;
}
.tt-calc__included li{
  position:relative; padding-left:1.5rem;
  font-size:.92rem; color:#1e293b; line-height:1.45;
}
.tt-calc__included li::before{
  content:""; position:absolute; left:0; top:.35rem;
  width:1.05rem; height:1.05rem; border-radius:50%;
  background:#10b981 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='white' d='M4.6 8.6 2.3 6.3l-.9.9 3.2 3.2 6.6-6.6-.9-.9z'/></svg>") center/70% no-repeat;
}
.tt-calc__included-hint{
  margin:.85rem 0 0; padding-top:.85rem;
  border-top:1px dashed #e2e8f0;
  font-size:.85rem; color:#64748b; line-height:1.5;
}
.tt-calc__included-hint strong{ color:#1e293b; }

/* --- Module-Listen ------------------------------------------------------ */
.tt-calc__modules legend{
  font-size:.82rem; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; color:#64748b;
  padding:0 0 .55rem;
}
.tt-calc__legend-hint{
  display:block; font-size:.78rem; font-weight:500;
  text-transform:none; letter-spacing:0; color:#94a3b8;
  margin-top:.15rem;
}
.tt-calc__modlist{
  display:grid; gap:.6rem;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}

/* Modul-Tile – ruhig, weiß, mit klarem Aktiv-State (Indigo) */
.tt-mod{
  position:relative;
  display:grid; grid-template-columns:22px 1fr auto;
  align-items:flex-start; gap:.85rem;
  padding:.95rem 1.1rem;
  border-radius:14px;
  background:#fff;
  border:1.5px solid #e7e9f1;
  cursor:pointer; color:#0f172a;
  transition:border-color .15s, box-shadow .15s, transform .12s, background .15s;
}
.tt-mod:hover{
  border-color:#c7d2fe;
  box-shadow:0 8px 22px -14px rgba(99,102,241,.35);
  transform:translateY(-1px);
}
.tt-mod input[type="checkbox"]{ position:absolute; opacity:0; pointer-events:none; }

.tt-mod__check{
  width:22px; height:22px; border-radius:7px;
  background:#fff; border:1.5px solid #cbd5e1;
  display:inline-flex; align-items:center; justify-content:center;
  flex:none; margin-top:1px;
  transition:background .15s, border-color .15s;
}
.tt-mod__check::after{
  content:""; width:6px; height:10px;
  border:solid #fff; border-width:0 2px 2px 0;
  transform:rotate(45deg) scale(0);
  transition:transform .15s; margin-bottom:2px;
}
.tt-mod__body{ display:flex; flex-direction:column; gap:.2rem; min-width:0; }
.tt-mod__title{
  font-weight:700; font-size:.98rem; line-height:1.25; color:#0f172a;
}
.tt-mod__desc{
  font-size:.85rem; color:#64748b; line-height:1.45;
}
.tt-mod__price{
  font-weight:700; font-size:.95rem; color:#4f46e5;
  white-space:nowrap; text-align:right; padding-top:1px;
  font-variant-numeric:tabular-nums;
}
.tt-mod__price small{
  display:block; font-size:.7rem; font-weight:500;
  color:#94a3b8; margin-top:2px;
}

/* Aktiv-State – kein voller Farbflash, sondern klarer Indigo-Rahmen */
.tt-mod.is-on{
  background:linear-gradient(160deg,#eef2ff 0%, #ffffff 65%);
  border-color:#6366f1;
  box-shadow:0 8px 24px -14px rgba(79,70,229,.4);
}
.tt-mod.is-on .tt-mod__check{
  background:#4f46e5; border-color:#4f46e5;
}
.tt-mod.is-on .tt-mod__check::after{
  border-color:#fff; transform:rotate(45deg) scale(1);
}
.tt-mod.is-on .tt-mod__title{ color:#1e1b4b; }

/* Bundle-Hinweis & Bundle-Aktiv */
.tt-mod__bundle{
  margin-top:.4rem; padding:.15rem .5rem;
  border-radius:999px; background:#fff7ed; border:1px solid #fed7aa;
  color:#9a3412; font-size:.68rem; font-weight:700;
  letter-spacing:.04em; text-transform:uppercase; width:max-content;
  display:inline-flex; align-items:center; gap:.3rem;
}
.tt-mod__bundle::before{
  content:""; width:.4rem; height:.4rem; border-radius:50%;
  background:#f97316; box-shadow:0 0 0 3px rgba(249,115,22,.18);
}
.tt-mod.is-bundle{
  background:linear-gradient(160deg,#fff7ed 0%, #ffffff 70%) !important;
  border-color:#fdba74 !important;
  box-shadow:0 8px 22px -14px rgba(249,115,22,.45) !important;
}
.tt-mod.is-bundle .tt-mod__check{
  background:#ea580c; border-color:#ea580c;
}
.tt-mod.is-bundle .tt-mod__price{ color:#9a3412; }

@media (max-width:540px){
  .tt-mod{ grid-template-columns:22px 1fr; }
  .tt-mod__price{ grid-column:2; text-align:left; padding-top:.25rem; }
}

/* --- Zusatzmodule-Akkordeon, ruhig --------------------------------------- */
.tt-calc__details{
  border:1.5px solid #e7e9f1;
  border-radius:14px;
  background:#fff;
  padding:0;
}
.tt-calc__details > summary{
  list-style:none; cursor:pointer;
  padding:1rem 1.1rem;
  display:grid; grid-template-columns:1fr auto auto;
  align-items:center; gap:.6rem;
  border-radius:14px;
  transition:background .15s;
}
.tt-calc__details > summary::-webkit-details-marker{ display:none; }
.tt-calc__details > summary:hover{ background:#fafbfd; }
.tt-calc__details-title{ font-weight:700; color:#0f172a; }
.tt-calc__details-count{
  font-size:.78rem; font-weight:700; color:#4f46e5;
  background:#eef2ff; padding:.2rem .55rem; border-radius:999px;
}
.tt-calc__details-chev{
  font-size:1rem; color:#94a3b8; transition:transform .2s;
}
.tt-calc__details[open] .tt-calc__details-chev{ transform:rotate(180deg); }
.tt-calc__details[open] > summary{ border-bottom:1px solid #f1f5f9; border-radius:14px 14px 0 0; }
.tt-calc__details > .tt-calc__modlist{ padding:1rem 1.1rem 1.2rem; }

/* --- Disclaimer / Fair-Block / CTA -------------------------------------- */
.tt-calc__disclaimer{
  font-size:.82rem; color:#94a3b8; text-align:center;
  margin:.25rem 0 0; line-height:1.55;
}

.tt-billfair{
  background:#fafbfd;
  border:1px solid #e7e9f1;
  border-radius:16px;
  padding:1.25rem 1.4rem;
  margin-top:.25rem;
}
.tt-billfair__title{
  margin:0 0 .9rem;
  font-size:1rem; font-weight:800; color:#0f172a;
}
.tt-billfair__grid{
  display:grid; grid-template-columns:1fr 1fr; gap:1rem;
}
@media (max-width:680px){ .tt-billfair__grid{ grid-template-columns:1fr; } }
.tt-billfair__col{
  background:#fff;
  border:1px solid #eef0f5;
  border-radius:12px;
  padding:.95rem 1rem 1.05rem;
}
.tt-billfair__col--in{ border-color:#a7f3d0; background:linear-gradient(160deg,#f0fdf4 0%, #fff 60%); }
.tt-billfair__col--out{ border-color:#fed7aa; background:linear-gradient(160deg,#fff7ed 0%, #fff 60%); }
.tt-billfair__badge{
  display:inline-block; padding:.2rem .55rem;
  border-radius:999px; font-size:.7rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase;
  margin-bottom:.55rem;
}
.tt-billfair__badge--in{ background:#10b981; color:#fff; }
.tt-billfair__badge--out{ background:#f97316; color:#fff; }
.tt-billfair__col ul{
  margin:0; padding:0; list-style:none;
  display:flex; flex-direction:column; gap:.45rem;
  font-size:.88rem; color:#334155; line-height:1.5;
}
.tt-billfair__col li strong{ color:#0f172a; }
.tt-billfair__note{
  margin:.7rem 0 0; padding-top:.6rem;
  border-top:1px dashed #e2e8f0;
  font-size:.8rem; color:#64748b; font-style:italic;
}

.tt-calc__cta{
  border-top:1px dashed #e2e8f0;
  padding-top:1.25rem;
  text-align:center;
}
.tt-calc__cta-text{
  margin:0 auto .75rem; max-width:52ch;
  font-size:.92rem; color:#475569; line-height:1.5;
}

/* Pulse: dezent, kein nerviger Farbflash */
.tt-calc__result-card--primary > strong{ transition:transform .2s; }
.tt-calc__result-card--primary.is-pulse > strong{
  animation:tt-pulse-soft .4s ease-out;
}
@keyframes tt-pulse-soft{
  0%  { transform:scale(1); }
  45% { transform:scale(1.035); }
  100%{ transform:scale(1); }
}

/* Sticky nur ab Desktop – DEAKTIVIERT: die schmale TopBar übernimmt das */
@media (min-width:1024px){
  .tt-calc__result{ position:static; top:auto; z-index:auto; }
}

/* ==========================================================================
   PREIS-KALKULATOR · Redesign v4 (LIGHT, im Stil der Webseite)
   - Hell wie der Rest der Site, Indigo nur als Akzent
   - Behebt unleserliche weisse Texte aus früheren is-on / dark-Regeln
   ========================================================================== */

/* Result – jetzt zwei helle Karten, kein dark hero mehr ------------------ */
.tt-calc__result-card--primary{
  background:linear-gradient(160deg,#f5f7ff 0%, #ffffff 60%) !important;
  border:1.5px solid #c7d2fe !important;
  color:#0f172a !important;
  box-shadow:0 14px 32px -18px rgba(79,70,229,.30) !important;
}
.tt-calc__result-card--primary::before{ content:none !important; }
.tt-calc__result-card--primary .tt-eyebrow{
  color:#4f46e5 !important; letter-spacing:.12em; font-weight:700;
}
.tt-calc__result-card--primary > strong{
  font-size:clamp(2.1rem, 4.5vw, 2.9rem) !important;
  font-weight:800 !important; letter-spacing:-.02em;
  color:#1e1b4b !important;
  font-variant-numeric:tabular-nums; line-height:1.05; margin-top:.1rem;
}
.tt-calc__result-card--primary .tt-calc__result-sub{
  color:#64748b !important; font-size:.88rem;
}
.tt-calc__monthly{
  display:inline-block; margin-top:.4rem;
  padding:.3rem .7rem; border-radius:999px;
  background:#eef2ff !important;
  border:1px solid #c7d2fe !important;
  color:#3730a3 !important;
  font-size:.82rem; font-weight:600;
}
.tt-calc__breakdown{
  margin:.85rem 0 0 !important; padding-top:.85rem !important;
  border-top:1px dashed #e2e8f0 !important;
  font-size:.82rem !important; color:#64748b !important; line-height:1.6;
}
.tt-calc__breakdown .tt-calc__discount{ color:#047857 !important; font-weight:600; }

/* Spar-Banner: hell, freundlich -------------------------------------------- */
.tt-calc__savings{
  background:#ecfdf5 !important;
  border:1px solid #a7f3d0 !important;
  color:#065f46 !important;
}
.tt-calc__savings-text strong{ color:#064e3b !important; }

/* Modul-Tiles: hellen Aktiv-State erzwingen, Texte wieder lesbar --------- */
.tt-mod.is-on{
  background:linear-gradient(160deg,#eef2ff 0%, #ffffff 70%) !important;
  border-color:#6366f1 !important;
  color:#0f172a !important;
  box-shadow:0 8px 24px -14px rgba(79,70,229,.40) !important;
}
.tt-mod.is-on .tt-mod__title{ color:#1e1b4b !important; }
.tt-mod.is-on .tt-mod__desc{ color:#475569 !important; }
.tt-mod.is-on .tt-mod__price{ color:#4f46e5 !important; }
.tt-mod.is-on .tt-mod__price small{ color:#64748b !important; }
.tt-mod.is-on .tt-mod__check{
  background:#4f46e5 !important; border-color:#4f46e5 !important;
}
.tt-mod.is-on .tt-mod__check::after{
  border-color:#fff !important; transform:rotate(45deg) scale(1) !important;
}

/* Bundle-Aktiv – warmes Orange, lesbar */
.tt-mod.is-bundle{
  background:linear-gradient(160deg,#fff7ed 0%, #ffffff 70%) !important;
  border-color:#fdba74 !important;
  color:#0f172a !important;
}
.tt-mod.is-bundle .tt-mod__title{ color:#7c2d12 !important; }
.tt-mod.is-bundle .tt-mod__desc{ color:#475569 !important; }
.tt-mod.is-bundle .tt-mod__price{ color:#9a3412 !important; }
.tt-mod.is-bundle .tt-mod__check{
  background:#ea580c !important; border-color:#ea580c !important;
}
.tt-mod.is-bundle .tt-mod__check::after{
  border-color:#fff !important;
}

/* ==========================================================================
   PREIS-KALKULATOR · Redesign v5
   - Dunkler Indigo-Hintergrund für die ganze Kalkulator-Section
   - Dunkle Input-Stylings im Stil des ROI-Result-Panels
   - Schlanker Sticky-Modus für die Ergebnis-Karten beim Scrollen
   ========================================================================== */

/* Section-Hintergrund nur dort, wo der Kalkulator drin lebt */
section#kalkulator.tt-section.tt-section--soft{
  background:linear-gradient(160deg,#1e1b4b 0%, #312e81 55%, #3730a3 100%) !important;
  color:#e9e8ff;
  position:relative;
}
section#kalkulator .tt-section__title{ color:#fff !important; }
section#kalkulator .tt-section__lead{  color:rgba(255,255,255,.78) !important; }
section#kalkulator .tt-eyebrow--indigo{
  color:#a5b4fc !important;
}

/* Form-Container – dezente "Karte" auf dem dunklen Untergrund */
section#kalkulator .tt-calc{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:1.75rem;
  box-shadow:0 18px 40px -16px rgba(15,15,40,.55);
  color:#e9e8ff;
}
@media (max-width:640px){
  section#kalkulator .tt-calc{ padding:1.1rem; border-radius:16px; }
}

/* Labels, Hints, Legenden auf hell */
section#kalkulator .tt-calc__field > label,
section#kalkulator .tt-calc__field > legend,
section#kalkulator .tt-calc__modules legend,
section#kalkulator .tt-calc__included h4,
section#kalkulator .tt-billfair__title{
  color:#fff !important;
}
section#kalkulator .tt-calc__hint,
section#kalkulator .tt-calc__legend-hint,
section#kalkulator .tt-calc__included-hint,
section#kalkulator .tt-calc__disclaimer,
section#kalkulator .tt-calc__cta-text{
  color:rgba(255,255,255,.72) !important;
}
section#kalkulator .tt-calc__hint strong,
section#kalkulator .tt-calc__included-hint strong{
  color:#fff !important;
}
section#kalkulator .tt-calc__hint--accent{
  background:rgba(165,180,252,.10) !important;
  border:1px solid rgba(165,180,252,.30) !important;
  color:#e0e7ff !important;
}

/* Inputs & Selects – dunkle Pills im ROI-Result-Stil */
section#kalkulator .tt-calc__field input[type="number"],
section#kalkulator .tt-calc__field input[type="text"],
section#kalkulator .tt-calc__field input[type="email"],
section#kalkulator .tt-calc__field input[type="tel"],
section#kalkulator .tt-calc__field select,
section#kalkulator .tt-calc__sp input{
  background:#0f0d2e !important;
  border:1px solid rgba(255,255,255,.14) !important;
  color:#fff !important;
  border-radius:12px !important;
  font-variant-numeric:tabular-nums;
  transition:border-color .15s, box-shadow .15s, background .15s;
}
section#kalkulator .tt-calc__field input::placeholder{
  color:rgba(255,255,255,.40) !important;
}
section#kalkulator .tt-calc__field input:focus,
section#kalkulator .tt-calc__field select:focus,
section#kalkulator .tt-calc__sp input:focus{
  outline:none !important;
  border-color:#a5b4fc !important;
  box-shadow:0 0 0 3px rgba(165,180,252,.25) !important;
  background:#161337 !important;
}
section#kalkulator .tt-calc__field select{
  background-image:linear-gradient(45deg,transparent 50%,#a5b4fc 50%),linear-gradient(135deg,#a5b4fc 50%,transparent 50%) !important;
  background-position:calc(100% - 18px) 55%, calc(100% - 13px) 55% !important;
  background-size:5px 5px, 5px 5px !important;
  background-repeat:no-repeat !important;
  -webkit-appearance:none; appearance:none;
  padding-right:2.25rem !important;
}
section#kalkulator .tt-calc__suffix{
  color:rgba(255,255,255,.65) !important;
}

/* Standard-Funktionen-Block */
section#kalkulator .tt-calc__included{
  background:rgba(255,255,255,.05) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  color:#e9e8ff !important;
}
section#kalkulator .tt-calc__included li{
  color:rgba(255,255,255,.85) !important;
}
section#kalkulator .tt-calc__included li::before{
  color:#86efac !important;
}

/* Modul-Tiles – Default-Zustand passt sich dem dunklen Background an */
section#kalkulator .tt-mod{
  background:rgba(255,255,255,.04) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  color:#e9e8ff !important;
}
section#kalkulator .tt-mod:hover{
  background:rgba(255,255,255,.07) !important;
  border-color:rgba(165,180,252,.35) !important;
}
section#kalkulator .tt-mod .tt-mod__title{ color:#fff !important; }
section#kalkulator .tt-mod .tt-mod__desc{  color:rgba(255,255,255,.70) !important; }
section#kalkulator .tt-mod .tt-mod__price{ color:#a5b4fc !important; }
section#kalkulator .tt-mod .tt-mod__price small{ color:rgba(255,255,255,.55) !important; }
section#kalkulator .tt-mod .tt-mod__check{
  background:transparent !important;
  border-color:rgba(255,255,255,.35) !important;
}
/* Aktiver Zustand bleibt hell-Indigo, gut lesbar auf Dark */
section#kalkulator .tt-mod.is-on{
  background:linear-gradient(160deg,#eef2ff 0%, #ffffff 70%) !important;
  border-color:#c7d2fe !important;
  color:#0f172a !important;
}
section#kalkulator .tt-mod.is-on .tt-mod__title{ color:#1e1b4b !important; }
section#kalkulator .tt-mod.is-on .tt-mod__desc{  color:#475569 !important; }
section#kalkulator .tt-mod.is-on .tt-mod__price{ color:#4f46e5 !important; }
section#kalkulator .tt-mod.is-on .tt-mod__price small{ color:#64748b !important; }

/* Details/Accordion */
section#kalkulator .tt-calc__details > summary{
  background:rgba(255,255,255,.05) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  color:#fff !important;
  /* 4 Kinder: Title · Legend-Hint · Count · Chevron */
  grid-template-columns:auto 1fr auto auto !important;
}
section#kalkulator .tt-calc__details-title{ color:#fff !important; }
section#kalkulator .tt-calc__details .tt-calc__legend-hint{
  color:rgba(255,255,255,.65) !important;
}
section#kalkulator .tt-calc__details-chev{
  color:#a5b4fc !important;
}
section#kalkulator .tt-calc__details-count{
  background:rgba(165,180,252,.18) !important;
  color:#e0e7ff !important;
  border:1px solid rgba(165,180,252,.30) !important;
}

/* Billfair-Block */
section#kalkulator .tt-billfair{
  background:rgba(255,255,255,.04) !important;
  border:1px solid rgba(255,255,255,.10) !important;
}
section#kalkulator .tt-billfair li,
section#kalkulator .tt-billfair__note{ color:rgba(255,255,255,.78) !important; }
section#kalkulator .tt-billfair li strong{ color:#fff !important; }
section#kalkulator .tt-billfair__badge--in{
  background:rgba(167,243,208,.15) !important;
  color:#a7f3d0 !important;
  border:1px solid rgba(167,243,208,.35) !important;
}
section#kalkulator .tt-billfair__badge--out{
  background:rgba(253,186,116,.15) !important;
  color:#fed7aa !important;
  border:1px solid rgba(253,186,116,.35) !important;
}

/* CTA-Trenner an Dark anpassen */
section#kalkulator .tt-calc__cta{
  border-top:1px dashed rgba(255,255,255,.20) !important;
}

/* Recommendation-Badges leichter sichtbar */
section#kalkulator .tt-recobadges .tt-recobadge,
section#kalkulator [data-tt-calc-badges] > *{
  background:rgba(165,180,252,.15) !important;
  border:1px solid rgba(165,180,252,.35) !important;
  color:#e0e7ff !important;
}

/* Ergebnis-Karten: bleiben hell, sind so der starke Kontrastpunkt --------- */
section#kalkulator .tt-calc__result-card--primary{
  background:linear-gradient(160deg,#ffffff 0%, #f5f7ff 100%) !important;
  border:1px solid #c7d2fe !important;
  box-shadow:0 22px 48px -22px rgba(0,0,0,.45) !important;
}
section#kalkulator .tt-calc__result-card--setup{
  background:#ffffff !important;
  border:1px solid #e2e8f0 !important;
  box-shadow:0 18px 36px -22px rgba(0,0,0,.40) !important;
}

/* ROI-Section danach wieder auf hellem Untergrund (Kontrast-Reset) -------- */
section#kalkulator .tt-roi2{
  margin-top:3rem;
  padding:2rem 1.5rem;
  background:#f8fafc;
  border-radius:20px;
}
section#kalkulator .tt-roi2__title{ color:#0f172a !important; }
section#kalkulator .tt-roi2__lead{  color:#475569 !important; }
section#kalkulator .tt-roi2__head .tt-eyebrow--indigo{ color:#4f46e5 !important; }

/* ==========================================================================
   STICKY-SCHLANK-MODUS für die Ergebnis-Karten
   - Vor dem Scroll: gross & ausführlich (wie bisher)
   - Nach dem Scroll (.is-stuck): kompakt, nur Kernzahl + Setup-Zahl
   ========================================================================== */
.tt-calc__result-sentinel{ height:1px; }

@media (min-width:1024px){
  /* Beim Scrollen "andocken" und Inhalt stark verschlanken */
  .tt-calc__result.is-stuck{
    grid-template-columns:1fr 1fr !important;
    gap:.6rem !important;
    padding:.5rem;
    margin:0 -.5rem;
    background:rgba(255,255,255,.92);
    backdrop-filter:saturate(140%) blur(8px);
    border-radius:14px;
    box-shadow:0 10px 30px -18px rgba(15,23,42,.45);
    transition:padding .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .tt-calc__result.is-stuck .tt-calc__result-card{
    padding:.6rem .9rem !important;
    border-radius:12px !important;
    box-shadow:none !important;
    display:grid !important;
    grid-template-columns:auto 1fr !important;
    grid-template-areas:"eyebrow value" "sub     value" !important;
    column-gap:.75rem !important;
    row-gap:0 !important;
    align-items:center !important;
  }
  .tt-calc__result.is-stuck .tt-eyebrow{
    grid-area:eyebrow;
    font-size:.65rem !important;
    letter-spacing:.10em !important;
    margin:0 !important;
  }
  .tt-calc__result.is-stuck .tt-calc__result-card > strong{
    grid-area:value;
    font-size:1.25rem !important;
    margin:0 !important;
    text-align:right;
    justify-self:end;
    line-height:1.1 !important;
  }
  .tt-calc__result.is-stuck .tt-calc__result-sub{
    grid-area:sub;
    font-size:.72rem !important;
    margin:0 !important;
  }
  /* Im Sticky-Modus alle Detail-Elemente verbergen */
  .tt-calc__result.is-stuck .tt-calc__monthly,
  .tt-calc__result.is-stuck .tt-calc__breakdown,
  .tt-calc__result.is-stuck .tt-calc__savings,
  .tt-calc__result.is-stuck .tt-calc__setup-list{
    display:none !important;
  }
}
@media (max-width:1023px){
  /* Auf Mobile gibt es keinen Sticky-Modus – Klasse ignorieren */
  .tt-calc__result.is-stuck{ }
}

/* ==========================================================================
   PREIS-KALKULATOR · Redesign v6  (Korrektur)
   - Section-Hintergrund wieder hell (Standard der Webseite)
   - Dunkler Indigo-Look NUR auf der Form-Card selbst
   - Innere Sub-Karten (Standardmässig dabei, Hauptmodule, Zusatzmodule, Billfair)
     bekommen einen dunkleren, satteren Indigo-Ton statt fast-weiss
   - Sticky-Modus radikal verschlankt: einzige Mini-Zeile, kompakter Schatten
   ========================================================================== */

/* Section-Hintergrund zurück auf den Standard "soft" */
section#kalkulator.tt-section.tt-section--soft{
  background:#f8fafc !important;
  color:inherit;
}
section#kalkulator .tt-section__title{ color:#0f172a !important; }
section#kalkulator .tt-section__lead{  color:#475569 !important; }
section#kalkulator .tt-eyebrow--indigo{ color:#4f46e5 !important; }

/* Die ganze Form-Card ist jetzt das dunkle Indigo-Panel */
section#kalkulator .tt-calc{
  background:linear-gradient(165deg,#1e1b4b 0%, #2a2772 55%, #312e81 100%) !important;
  border:1px solid #2e2a6b !important;
  border-radius:22px;
  padding:1.75rem;
  box-shadow:0 24px 56px -22px rgba(15,15,40,.55);
  color:#e9e8ff;
}

/* Innere Sub-Karten – satter Indigo-Ton, nicht mehr fast-weiss */
section#kalkulator .tt-calc__included,
section#kalkulator .tt-calc__details > summary,
section#kalkulator .tt-calc__modules,
section#kalkulator .tt-billfair{
  background:rgba(15,12,46,.55) !important;
  border:1px solid rgba(165,180,252,.18) !important;
  color:#e9e8ff !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
section#kalkulator .tt-calc__details[open] > summary{
  border-radius:14px 14px 0 0 !important;
}
section#kalkulator .tt-calc__details > .tt-calc__modlist,
section#kalkulator .tt-calc__details[open]{
  background:transparent !important;
}

/* "Standardmässig dabei" - Trenner an Dark anpassen */
section#kalkulator .tt-calc__included li::before{ color:#34d399 !important; }
section#kalkulator .tt-calc__included-hint{
  border-top-color:rgba(255,255,255,.10) !important;
}

/* Modul-Tiles innerhalb der Sub-Karten: noch dunkler, klar abgegrenzt */
section#kalkulator .tt-mod{
  background:rgba(15,12,46,.55) !important;
  border:1px solid rgba(165,180,252,.20) !important;
}
section#kalkulator .tt-mod:hover{
  background:rgba(165,180,252,.10) !important;
  border-color:rgba(165,180,252,.45) !important;
}

/* Empfohlen-Marker (z.B. Tiefbau -> Controlling) */
.tt-mod__reco{
  display:inline-block;
  margin-top:.4rem;
  font-size:.7rem; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase;
  padding:.18rem .55rem;
  border-radius:999px;
  background:rgba(253,224,71,.15);
  color:#fde68a;
  border:1px solid rgba(253,224,71,.35);
}
.tt-mod:not(.is-recommended) .tt-mod__reco{ display:none; }
.tt-mod.is-on .tt-mod__reco{ display:none; } /* aktiv? dann nicht mehr "empfohlen" zeigen */

/* Ergebnis-Karten: bleiben hell, kontrastieren stark gegen die dunkle Form */
section#kalkulator .tt-calc__result-card--primary,
section#kalkulator .tt-calc__result-card--setup{
  background:#ffffff !important;
}

/* ==========================================================================
   FIX v10 – Ergebnis-Karten in die dunkle Form integriert
   - Karten in einem etwas helleren Indigo statt weiss
   - Zahlen warm-gelb hervorgehoben
   - Monats- und Setup-Werte in runden Badges
   - dezente blaue Scrollbar innerhalb des Kalkulators
   ========================================================================== */

/* Karten: heller Glas-Layer ueber dem dunklen Calculator-Hintergrund.
   Hebt sich klar ab, bleibt aber im Indigo-Spektrum der Site. */
section#kalkulator .tt-calc__result-card--primary,
section#kalkulator .tt-calc__result-card--setup{
  background:linear-gradient(160deg, rgba(99,102,241,.18) 0%, rgba(67,56,202,.10) 100%) !important;
  border:1px solid rgba(165,180,252,.28) !important;
  box-shadow:0 14px 32px -20px rgba(15,12,46,.65),
             inset 0 1px 0 rgba(255,255,255,.07) !important;
  color:#e9e8ff !important;
}

/* Eyebrow: konsistente Indigo-Pill in beiden Karten */
section#kalkulator .tt-calc__result-card--primary .tt-eyebrow,
section#kalkulator .tt-calc__result-card--setup .tt-eyebrow{
  display:inline-block;
  background:rgba(165,180,252,.18) !important;
  color:#c7d2fe !important;
  border:1px solid rgba(165,180,252,.32) !important;
  padding:.25rem .7rem !important;
  border-radius:999px !important;
  font-size:.7rem !important;
  letter-spacing:.10em !important;
  font-weight:700 !important;
  text-transform:uppercase !important;
}

section#kalkulator .tt-calc__result-sub,
section#kalkulator .tt-calc__breakdown,
section#kalkulator .tt-calc__setup-list{
  color:rgba(226,228,255,.78) !important;
}
section#kalkulator .tt-calc__breakdown .tt-calc__discount{
  color:#86efac !important;
}

/* Zahlen: klares Weiss, ruhig und dominant */
section#kalkulator .tt-calc__result-card--primary > strong,
section#kalkulator .tt-calc__result-card--setup > strong{
  color:#ffffff !important;
  letter-spacing:-.015em;
  text-shadow:0 1px 0 rgba(0,0,0,.18);
}

/* Monatsaequivalent als rundes Badge */
section#kalkulator .tt-calc__monthly{
  display:inline-block;
  margin-top:.6rem !important;
  padding:.4rem .85rem;
  background:rgba(165,180,252,.14) !important;
  border:1px solid rgba(165,180,252,.30) !important;
  border-radius:999px;
  color:#e0e7ff !important;
  font-size:.82rem;
}
section#kalkulator .tt-calc__monthly strong{ color:#ffffff !important; }

/* Setup-Liste als feine Pills */
section#kalkulator .tt-calc__setup-list{
  display:flex !important;
  flex-wrap:wrap;
  gap:.35rem .4rem;
  margin-top:.6rem !important;
}
section#kalkulator .tt-calc__setup-list span{
  padding:.25rem .7rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(165,180,252,.22);
  border-radius:999px;
  font-size:.78rem;
  color:#e9e8ff !important;
}

/* Sanfte Trennlinie über dem Breakdown */
section#kalkulator .tt-calc__breakdown{
  margin-top:.85rem !important;
  padding-top:.85rem !important;
  border-top:1px dashed rgba(165,180,252,.22) !important;
  font-size:.82rem;
  line-height:1.55;
}

/* Spar-Banner darin: an den dunklen Look anpassen */
section#kalkulator .tt-calc__savings{
  background:rgba(34,197,94,.12) !important;
  border:1px solid rgba(134,239,172,.35) !important;
  color:#dcfce7 !important;
}
section#kalkulator .tt-calc__savings strong{ color:#fde68a !important; }

/* Spar-Banner – ruhige, strukturierte Darstellung (statt riesige <strong>s) */
section#kalkulator .tt-calc__savings{
  align-items:flex-start !important;
  gap:.75rem !important;
  padding:.85rem 1rem !important;
  border-radius:14px !important;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-icon{
  font-size:1.1rem !important;
  margin-top:.15rem !important;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-body{
  display:flex; flex-direction:column; gap:.45rem;
  min-width:0; flex:1;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-headline{
  font-size:.95rem; font-weight:700; letter-spacing:.005em;
  color:#fde68a !important;
  line-height:1.25;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-sub{
  font-size:.82rem; line-height:1.45;
  color:rgba(220,252,231,.85) !important;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-prices{
  display:flex; flex-wrap:wrap; align-items:baseline;
  gap:.4rem .65rem;
  margin-top:.15rem;
  font-variant-numeric:tabular-nums;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-now{
  font-size:1.15rem; font-weight:800;
  color:#fff !important;
  letter-spacing:-.005em;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-was{
  font-size:.82rem; font-weight:500;
  color:rgba(220,252,231,.65) !important;
  text-decoration:line-through;
  text-decoration-color:rgba(220,252,231,.45);
}
section#kalkulator .tt-calc__savings .tt-calc__savings-save{
  display:inline-flex; align-items:center;
  padding:.18rem .55rem;
  border-radius:999px;
  background:rgba(134,239,172,.18);
  border:1px solid rgba(134,239,172,.45);
  color:#bbf7d0 !important;
  font-size:.75rem; font-weight:700;
  letter-spacing:.01em;
  white-space:nowrap;
}

/* Dezente blaue Scrollbar im Kalkulator-Bereich (Firefox + WebKit) */
section#kalkulator{
  scrollbar-color:#6366f1 rgba(255,255,255,.06);
  scrollbar-width:thin;
}
section#kalkulator *::-webkit-scrollbar{ width:10px; height:10px; }
section#kalkulator *::-webkit-scrollbar-track{
  background:rgba(255,255,255,.04);
  border-radius:999px;
}
section#kalkulator *::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,#818cf8 0%, #6366f1 100%);
  border-radius:999px;
  border:2px solid transparent;
  background-clip:padding-box;
}
section#kalkulator *::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg,#a5b4fc 0%, #818cf8 100%);
  background-clip:padding-box;
}

/* ROI-Section auf hellem Hintergrund (eigene helle Karte unter der dunklen Form) */
section#kalkulator .tt-roi2{
  margin-top:2rem;
  padding:2rem 1.5rem;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  box-shadow:0 1px 2px rgba(15,23,42,.04);
}

/* ==========================================================================
   STICKY-SCHLANK-MODUS v2 – wirklich klein
   - Eine einzige Zeile: "Jahrespreis CHF X · Setup CHF Y"
   - Maximale Höhe ~52px, kompakter Pill-Look
   ========================================================================== */
@media (min-width:1024px){
  .tt-calc__result.is-stuck{
    display:flex !important;
    flex-direction:row !important;
    align-items:stretch !important;
    gap:.5rem !important;
    padding:.35rem !important;
    margin:0 !important;
    background:rgba(255,255,255,.96) !important;
    backdrop-filter:saturate(160%) blur(10px);
    border:1px solid #e2e8f0 !important;
    border-radius:999px !important;
    box-shadow:0 8px 24px -14px rgba(15,23,42,.45) !important;
    transition:padding .15s ease, border-radius .15s ease, box-shadow .15s ease;
  }
  .tt-calc__result.is-stuck .tt-calc__result-card{
    flex:1 1 0 !important;
    padding:.35rem .85rem !important;
    border:0 !important;
    border-radius:999px !important;
    box-shadow:none !important;
    background:transparent !important;
    display:flex !important;
    align-items:baseline !important;
    justify-content:space-between !important;
    gap:.6rem !important;
    min-width:0;
    overflow:hidden;
  }
  .tt-calc__result.is-stuck .tt-calc__result-card + .tt-calc__result-card{
    border-left:1px solid #e2e8f0 !important;
    border-radius:0 999px 999px 0 !important;
  }
  .tt-calc__result.is-stuck .tt-calc__result-card:first-child{
    border-radius:999px 0 0 999px !important;
  }
  /* nur kompaktes Label + Zahl */
  .tt-calc__result.is-stuck .tt-eyebrow{
    font-size:.62rem !important;
    letter-spacing:.10em !important;
    margin:0 !important;
    color:#6366f1 !important;
    white-space:nowrap;
    flex:0 0 auto;
  }
  .tt-calc__result.is-stuck .tt-eyebrow--accent{ color:#9a3412 !important; }
  .tt-calc__result.is-stuck .tt-calc__result-card > strong{
    font-size:1rem !important;
    font-weight:800 !important;
    margin:0 !important;
    line-height:1 !important;
    white-space:nowrap;
    flex:0 0 auto;
  }
  /* alles andere weg */
  .tt-calc__result.is-stuck .tt-calc__result-sub,
  .tt-calc__result.is-stuck .tt-calc__monthly,
  .tt-calc__result.is-stuck .tt-calc__breakdown,
  .tt-calc__result.is-stuck .tt-calc__savings,
  .tt-calc__result.is-stuck .tt-calc__setup-list{
    display:none !important;
  }
}

/* ==========================================================================
   PREIS-KALKULATOR · Redesign v7
   - Aktive Module im dunklen Indigo-Look (statt fast-weiss)
   - Sticky komplett ersetzt: schmale FIXED TopBar oben, NUR Jahrespreis
   ========================================================================== */

/* Aktive Module: dunkle Indigo-Pill, hell-Indigo Akzente, weisser Text */
section#kalkulator .tt-mod.is-on{
  background:linear-gradient(160deg,#3730a3 0%, #4338ca 100%) !important;
  border:1px solid #818cf8 !important;
  color:#fff !important;
  box-shadow:0 10px 24px -16px rgba(99,102,241,.65),
             inset 0 1px 0 rgba(255,255,255,.08) !important;
}
section#kalkulator .tt-mod.is-on .tt-mod__title{ color:#ffffff !important; }
section#kalkulator .tt-mod.is-on .tt-mod__desc{  color:#dbeafe !important; }
section#kalkulator .tt-mod.is-on .tt-mod__price{ color:#a5b4fc !important; }
section#kalkulator .tt-mod.is-on .tt-mod__price small{ color:rgba(255,255,255,.65) !important; }
section#kalkulator .tt-mod.is-on .tt-mod__check{
  background:#a5b4fc !important;
  border-color:#a5b4fc !important;
}
section#kalkulator .tt-mod.is-on .tt-mod__check::after{
  border-color:#1e1b4b !important;
}

/* Bundle-Aktiv – warmer Akzent, ebenfalls dunkel */
section#kalkulator .tt-mod.is-bundle{
  background:linear-gradient(160deg,#7c2d12 0%, #9a3412 100%) !important;
  border-color:#fdba74 !important;
  color:#fff !important;
}
section#kalkulator .tt-mod.is-bundle .tt-mod__title{ color:#fff !important; }
section#kalkulator .tt-mod.is-bundle .tt-mod__desc{ color:#fed7aa !important; }
section#kalkulator .tt-mod.is-bundle .tt-mod__price{ color:#fdba74 !important; }
section#kalkulator .tt-mod.is-bundle .tt-mod__check{
  background:#fdba74 !important;
  border-color:#fdba74 !important;
}
section#kalkulator .tt-mod.is-bundle .tt-mod__check::after{ border-color:#7c2d12 !important; }

/* ==========================================================================
   STICKY v3: schmale fixed TopBar mit nur dem Jahrespreis
   - Bisherige Result-Card bleibt unverändert im Layout
   - Eine separate Bar (.tt-calc__topbar) erscheint nur im Sticky-Zustand
   ========================================================================== */

/* Sticky-Overrides aus v5/v6 deaktivieren - kein Layout-Umbau mehr */
.tt-calc__result.is-stuck{
  /* keine spezielle Behandlung mehr - die TopBar zeigt den Preis */
  position:static !important;
}

/* Schmale fixed Bar, die nur im Sticky-Zustand sichtbar ist
   – Stil orientiert sich an der "bottomNav" der Rechnungsansicht:
     hell, dezent, schlank, mit Label-Wert-Pärchen und Pipe-Trennern */
.tt-calc__topbar{
  position:fixed;
  top:var(--tt-header-h, 101px);
  left:0; right:0;
  z-index:50;
  background:linear-gradient(180deg, rgba(30,27,75,.96) 0%, rgba(49,46,129,.94) 100%);
  -webkit-backdrop-filter:saturate(160%) blur(10px);
  backdrop-filter:saturate(160%) blur(10px);
  color:#e9e8ff;
  border-bottom:1px solid rgba(165,180,252,.30);
  box-shadow:0 8px 22px -12px rgba(15,12,46,.55);
  font-variant-numeric:tabular-nums;
  /* Im "unsichtbaren" Zustand komplett aus dem Viewport schieben, nicht
     nur hinter den Header – sonst sieht man durch den Glass/Backdrop-Blur
     des Headers den oberen Rand der Topbar durchschimmern. */
  transform:translateY(calc(-100% - var(--tt-header-h, 101px) - 20px));
  opacity:0;
  visibility:hidden;
  transition:transform .25s ease, opacity .2s ease, visibility 0s linear .25s;
  pointer-events:none;
}
.tt-calc__topbar.is-visible{
  transform:translateY(0);
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transition:transform .25s ease, opacity .2s ease, visibility 0s linear 0s;
}
.tt-calc__topbar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:.7rem 1.25rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.25rem;
}
.tt-calc__topbar-stats{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:.4rem 1rem;
  flex:1 1 auto;
  justify-content:center;
}
.tt-calc__topbar-item{
  display:inline-flex;
  align-items:baseline;
  gap:.45rem;
  white-space:nowrap;
}
.tt-calc__topbar-label{
  font-size:.86rem;
  font-weight:400;
  color:#a5b4fc;
  letter-spacing:0;
  text-transform:none;
}
.tt-calc__topbar-value{
  font-size:1rem;
  font-weight:700;
  color:#ffffff;
  letter-spacing:-.005em;
}
.tt-calc__topbar-pipe{
  color:rgba(165,180,252,.45);
  font-weight:400;
  font-size:1rem;
  user-select:none;
}
.tt-calc__topbar-cta{
  flex:0 0 auto;
  padding:.45rem 1rem;
  font-size:.82rem;
  font-weight:700;
  border-radius:999px;
  background:#4f46e5;
  color:#fff !important;
  border:0;
  text-decoration:none;
  cursor:pointer;
  transition:background .15s, transform .1s;
  white-space:nowrap;
}
.tt-calc__topbar-cta:hover{ background:#4338ca; }
.tt-calc__topbar-cta:active{ transform:translateY(1px); }
@media (max-width:720px){
  .tt-calc__topbar{ top:var(--tt-header-h, 58px); }
  /* Inner-Padding/-Gap und Stats werden im unteren Mobile-Block gesetzt,
     damit alles einzeilig bleibt. Hier nur noch der Top-Offset. */
}
@media (max-width:520px){
  /* Auf kleinen Screens nur das Wesentliche zeigen: Jahr + Monat dominieren.
     Stellen-% (neues Item links) und Startpaket werden ausgeblendet,
     samt zugehörigem Pipe-Trenner. */
  .tt-calc__topbar-item--sp,
  .tt-calc__topbar-item--sp + .tt-calc__topbar-pipe,
  .tt-calc__topbar-stats > .tt-calc__topbar-item:has([data-tt-topbar-setup]),
  .tt-calc__topbar-stats > .tt-calc__topbar-pipe:nth-last-of-type(1){ display:none; }
}

/* ==========================================================================
   PREIS-KALKULATOR · Fix v8
   - "Was ist im Preis drin – und was nicht?": helle Sub-Karten haben
     dunklen, lesbaren Text (frühere v6-Regeln machten alles weiss/transparent)
   ========================================================================== */
section#kalkulator .tt-billfair__col{
  background:#ffffff !important;
}
section#kalkulator .tt-billfair__col--in{
  background:linear-gradient(160deg,#f0fdf4 0%, #ffffff 60%) !important;
  border-color:#a7f3d0 !important;
}
section#kalkulator .tt-billfair__col--out{
  background:linear-gradient(160deg,#fff7ed 0%, #ffffff 60%) !important;
  border-color:#fed7aa !important;
}
section#kalkulator .tt-billfair__col,
section#kalkulator .tt-billfair__col ul,
section#kalkulator .tt-billfair__col li{
  color:#1e293b !important;
}
section#kalkulator .tt-billfair__col li strong{ color:#0f172a !important; }
section#kalkulator .tt-billfair__note{
  color:#64748b !important;
  border-top:1px dashed #e2e8f0 !important;
}
section#kalkulator .tt-billfair__badge--in{
  background:#10b981 !important; color:#ffffff !important;
}
section#kalkulator .tt-billfair__badge--out{
  background:#f97316 !important; color:#ffffff !important;
}

/* ==========================================================================
   FIX v9 – Result-Karten NICHT mehr sticky.
   Eine ältere Regel (.tt-calc__result { position:sticky; top:90px; }) hat
   die kompletten Ergebnis-Karten beim Scrollen oben festgepinnt. Genau das
   ist NICHT gewollt: die schmale .tt-calc__topbar übernimmt diesen Job.
   ========================================================================== */
.tt-calc__result,
section#kalkulator .tt-calc__result{
  position:static !important;
  top:auto !important;
  z-index:auto !important;
}

/* ==========================================================================
   No-Brainer-Check: Spiegel der oberen Kalkulationszahlen
   Zeigt Jahrespreis, Monatsäquivalent und Startpaket auch direkt im
   Header des ROI-Blocks an – im selben Indigo-Stil wie die Sticky-TopBar.
   ========================================================================== */
.tt-roi2__mirror{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem .75rem;
  margin-top:1rem;
  padding:.65rem .85rem;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(79,70,229,0.08), rgba(79,70,229,0.04));
  border:1px solid rgba(79,70,229,0.18);
}
.tt-roi2__mirror-item{
  display:flex;
  align-items:baseline;
  gap:.45rem;
  padding:.15rem .25rem;
}
.tt-roi2__mirror-item + .tt-roi2__mirror-item{
  border-left:1px solid rgba(79,70,229,0.18);
  padding-left:.85rem;
}
.tt-roi2__mirror-label{
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.02em;
  color:#64748b;
  text-transform:uppercase;
}
.tt-roi2__mirror-value{
  font-size:1.05rem;
  font-weight:700;
  color:#3730a3;
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}
@media (max-width: 640px){
  .tt-roi2__mirror-item + .tt-roi2__mirror-item{
    border-left:0;
    padding-left:.25rem;
  }
  .tt-roi2__mirror-item{ flex:1 1 100%; justify-content:space-between; }
}

/* ==========================================================================
   Klickbare Empfehlungs-Badges (oben unter der Branchenauswahl)
   ========================================================================== */
button.tt-recobadge{
  font: inherit;
  cursor: pointer;
  border: 1px solid rgba(79,70,229,0.20);
  background: rgba(79,70,229,0.06);
  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}
button.tt-recobadge:hover{
  background: rgba(79,70,229,0.12);
  border-color: rgba(79,70,229,0.40);
}
button.tt-recobadge:active{ transform: translateY(1px); }
button.tt-recobadge:focus-visible{
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}
button.tt-recobadge.is-removed{
  background: rgba(148,163,184,0.10);
  border-color: rgba(148,163,184,0.30);
  color:#64748b;
}
button.tt-recobadge.is-removed:hover{
  background: rgba(79,70,229,0.10);
  border-color: rgba(79,70,229,0.40);
  color:#3730a3;
}

/* Backlink im No-Brainer-Header zurück zum Rechner */
.tt-roi2__backlink{
  display:inline-block;
  margin-top:.45rem;
  margin-left:.25rem;
  font-size:.85rem;
  font-weight:600;
  color:#4f46e5;
  text-decoration:none;
  border-bottom:1px dashed rgba(79,70,229,0.4);
}
.tt-roi2__backlink:hover{
  color:#3730a3;
  border-bottom-color:#3730a3;
}

/* Forward-Link aus der Preis-Card hinunter zum No-Brainer-Check */
.tt-calc__roilink{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  margin-top:.7rem;
  padding:.4rem .75rem;
  border-radius:999px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.22);
  color:#e9e8ff;
  font-size:.82rem;
  font-weight:600;
  text-decoration:none;
  transition:background .15s ease, border-color .15s ease, transform .05s ease;
}
.tt-calc__roilink span{
  color:#ffffff;
  font-weight:700;
}
.tt-calc__roilink:hover{
  background:rgba(255,255,255,0.18);
  border-color:rgba(255,255,255,0.40);
  color:#ffffff;
}
.tt-calc__roilink:active{ transform:translateY(1px); }
.tt-calc__roilink:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
}

/* Schlanker weisser Link zwischen Preis-Cards und "Standardmässig mit dabei" */
.tt-calc__roibridge{
  margin: .35rem 0 1.1rem;
  text-align: center;
}
.tt-calc__roibridge a{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  color:#ffffff;
  font-size:.92rem;
  font-weight:500;
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,0.45);
  padding-bottom:1px;
  transition:border-color .15s ease, color .15s ease, opacity .15s ease;
  opacity:.92;
}
.tt-calc__roibridge a strong{ font-weight:700; }
.tt-calc__roibridge a:hover{
  opacity:1;
  border-bottom-color:#ffffff;
}
.tt-calc__roibridge a:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
  border-radius:4px;
}

/* === Preisrechner-Header (kleine Leiste über dem Calc) ================== */
.tt-calc__header{
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:.6rem;
  margin: 0 0 1.4rem;
  padding: .55rem .9rem;
  border-radius: 12px;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.22);
}
.tt-calc__header-title{
  display:inline-flex; align-items:center; gap:.5rem;
  font-weight:700; letter-spacing:.01em;
  color:#1e1b4b;
}
.tt-calc__header-title::before{
  content:""; width:8px; height:8px; border-radius:50%;
  background:linear-gradient(135deg,#6c5ce7,#22c55e);
  box-shadow:0 0 0 3px rgba(99,102,241,.18);
}
.tt-calc__header-sub{
  font-size:.82rem; color:#475569;
}
section#kalkulator .tt-calc__header{
  background: rgba(165,180,252,.10) !important;
  border:1px solid rgba(165,180,252,.30) !important;
}
section#kalkulator .tt-calc__header-title{ color:#fff !important; }
section#kalkulator .tt-calc__header-sub{ color:rgba(255,255,255,.72) !important; }

/* === Eingabe-Felder hervorheben (Stellenprozent / Lehrlinge / Branche) ==== */
.tt-calc__field--primary{
  position:relative;
  padding:1rem 1.1rem 1.05rem;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(165,180,252,.28);
  box-shadow: 0 16px 40px -28px rgba(60,40,140,.45);
}
.tt-calc__field--primary > label{
  display:inline-flex; align-items:center; gap:.5rem;
  font-weight:700;
}
.tt-calc__field--primary > label::before{
  content: attr(data-step);
  display:inline-flex; align-items:center; justify-content:center;
  min-width:22px; height:22px; padding:0 .45rem;
  border-radius:999px;
  background:linear-gradient(135deg,#6c5ce7,#22c55e);
  color:#fff; font-size:.72rem; font-weight:800; letter-spacing:.02em;
}
section#kalkulator .tt-calc__field--primary{
  background: rgba(99,102,241,.10) !important;
  border:1px solid rgba(165,180,252,.32) !important;
}

/* Soft-empfohlener Badge (optional empfohlen, nicht vorausgewählt) */
.tt-recobadge.is-soft{
  background:#fff7ed;
  border:1px dashed #fdba74;
  color:#9a3412;
}
.tt-recobadge.is-soft .tt-recobadge__dot{
  background:#f59e0b;
  box-shadow:0 0 0 3px rgba(245,158,11,.18);
}
.tt-recobadge__tag--soft{
  background:#fed7aa !important;
  color:#9a3412 !important;
  border-color:#fdba74 !important;
}
section#kalkulator .tt-recobadge.is-soft.is-removed{
  background:rgba(251,191,36,.10) !important;
  border:1px dashed rgba(251,191,36,.55) !important;
  color:#fde68a !important;
}
section#kalkulator .tt-recobadge.is-soft.is-removed .tt-recobadge__dot{
  background:#fbbf24 !important;
  box-shadow:0 0 0 3px rgba(251,191,36,.25) !important;
}
section#kalkulator .tt-recobadge__tag--soft{
  background:rgba(251,191,36,.20) !important;
  color:#fde68a !important;
  border-color:rgba(251,191,36,.55) !important;
}
/* Soft-Badge im AKTIVEN Zustand: ruhiger, im Indigo-Look der anderen aktiven Badges */
section#kalkulator .tt-recobadge.is-soft:not(.is-removed){
  background:rgba(99,102,241,.14) !important;
  border:1px solid rgba(165,180,252,.40) !important;
  color:#e0e7ff !important;
}
section#kalkulator .tt-recobadge.is-soft:not(.is-removed) .tt-recobadge__dot{
  background:#a5b4fc !important;
  box-shadow:0 0 0 3px rgba(99,102,241,.25) !important;
}
section#kalkulator .tt-recobadge.is-soft:not(.is-removed) .tt-recobadge__tag{
  background:rgba(255,255,255,.10) !important;
  color:#e0e7ff !important;
  border-color:rgba(255,255,255,.18) !important;
  letter-spacing:.04em;
}

/* Hinweistext unter dem Branchen-Select für Soft-Empfehlungen */
.tt-calc__recommend-soft{
  display:inline-block;
  margin-left:.25rem;
  font-style:italic;
  opacity:.85;
}

/* "Schritt für Schritt"-Hinweisbox unter den Zusatzmodulen */
.tt-calc__growthnote{
  margin-top:1rem;
  padding:.85rem 1rem;
  border-radius:12px;
  background:rgba(34,197,94,.10);
  border:1px solid rgba(134,239,172,.45);
  display:flex; align-items:flex-start; gap:.7rem;
  font-size:.9rem; line-height:1.5;
}
.tt-calc__growthnote-ico{
  flex:0 0 auto; font-size:1.1rem; line-height:1; margin-top:.1rem;
}
.tt-calc__growthnote strong{ color:#064e3b; }
section#kalkulator .tt-calc__growthnote{
  background:rgba(34,197,94,.12) !important;
  border:1px solid rgba(134,239,172,.35) !important;
  color:#dcfce7 !important;
}
section#kalkulator .tt-calc__growthnote strong{ color:#fde68a !important; }

/* === Kumulierte Preisvergleichs-Tabelle ============================== */
.tt-pricetable .tt-pricetable__wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid #e6e8f3;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 40px -28px rgba(30,41,98,.35), 0 2px 6px rgba(30,41,98,.06);
}
.tt-pricetable .tt-pricetable__table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  font-variant-numeric:tabular-nums;
  font-size:.95rem;
  min-width:1080px;
  color:#1f2547;
}
.tt-pricetable .tt-pricetable__table th,
.tt-pricetable .tt-pricetable__table td{
  padding:.75rem 1rem;
  text-align:right;
  border-bottom:1px solid #eef0f8;
  white-space:nowrap;
  vertical-align:middle;
}
.tt-pricetable .tt-pricetable__table thead th{
  position:sticky; top:0;
  background:linear-gradient(180deg,#eef0ff 0%, #e3e6ff 100%);
  color:#1f2547;
  font-weight:600;
  text-align:right;
  border-bottom:1px solid #d9dcf5;
  z-index:1;
  padding:.85rem 1rem;
}
.tt-pricetable .tt-pricetable__table thead th:first-child,
.tt-pricetable .tt-pricetable__table tbody th{
  text-align:left;
  font-weight:600;
}
.tt-pricetable .tt-pricetable__table tbody th{
  background:#fafbff;
  color:#b45309;
  font-weight:700;
  border-right:1px solid #eef0f8;
  position:sticky; left:0;
  z-index:1;
}
.tt-pricetable .tt-pricetable__table tbody tr:nth-child(even) td,
.tt-pricetable .tt-pricetable__table tbody tr:nth-child(even) th{
  background:#fafbff;
}
.tt-pricetable .tt-pricetable__table tbody tr:hover td,
.tt-pricetable .tt-pricetable__table tbody tr:hover th{
  background:#f1f3ff;
}
.tt-pricetable .tt-pricetable__hint{
  display:block;
  font-weight:400;
  font-size:.74rem;
  color:#6b7094;
  margin-top:2px;
}
.tt-pricetable .tt-pricetable__sp{ min-width:140px; }

/* Gruppierungsstreifen: Hauptmodule (indigo), Vergleich alt (rot), Zusatzmodule (gruen) */
.tt-pricetable .tt-pricetable__group-main{
  border-left:1px solid #d9dcf5;
}
.tt-pricetable .tt-pricetable__old{
  color:#b91c1c;
  background:#fff1f2 !important;
  border-left:1px solid #fecaca;
  border-right:1px solid #fecaca;
}
.tt-pricetable .tt-pricetable__table thead th.tt-pricetable__old{
  color:#9f1239;
  background:linear-gradient(180deg,#ffe4e6 0%, #fecdd3 100%);
  border-left:1px solid #fda4af;
  border-right:1px solid #fda4af;
}
.tt-pricetable .tt-pricetable__addon{
  background:#f0fdf4 !important;
  color:#15803d;
}
.tt-pricetable .tt-pricetable__table thead th.tt-pricetable__addon{
  background:linear-gradient(180deg,#dcfce7 0%, #bbf7d0 100%);
  color:#166534;
  border-bottom:1px solid #bbf7d0;
}
.tt-pricetable .tt-pricetable__group-addon{
  border-left:2px solid #86efac;
}
.tt-pricetable .tt-pricetable__foot{
  margin-top:.9rem;
  font-size:.85rem;
  color:#4b5170;
}
.tt-pricetable .tt-pricetable__legend{
  display:flex; flex-wrap:wrap; gap:.5rem .9rem;
  margin:.4rem 0 1rem;
  font-size:.82rem;
  color:#4b5170;
}
.tt-pricetable .tt-pricetable__legend span{
  display:inline-flex; align-items:center; gap:.4rem;
}
.tt-pricetable .tt-pricetable__legend i{
  width:.7rem; height:.7rem; border-radius:3px; display:inline-block;
}
.tt-pricetable .tt-pricetable__legend i.is-base{ background:#e3e6ff; }
.tt-pricetable .tt-pricetable__legend i.is-old{ background:#fecdd3; }
.tt-pricetable .tt-pricetable__legend i.is-addon{ background:#bbf7d0; }

/* Startpaket-Spalte */
.tt-pricetable .tt-pricetable__setup{
  background:#fffbeb !important;
  color:#92400e;
  border-left:1px solid #fde68a;
}
.tt-pricetable .tt-pricetable__table thead th.tt-pricetable__setup{
  background:linear-gradient(180deg,#fef3c7 0%, #fde68a 100%);
  color:#78350f;
  border-left:1px solid #fcd34d;
}
.tt-pricetable .tt-pricetable__legend i.is-setup{ background:#fde68a; }

/* === Topbar Pulse + ROI Modusbuttons + Growthnote CTA ================ */
.tt-calc__topbar-value{ transition:color .2s ease, transform .2s ease; }
.tt-calc__topbar-value.is-pulse{
  animation:tt-topbar-pulse .55s cubic-bezier(.2,.8,.2,1);
}
@keyframes tt-topbar-pulse{
  0%   { transform:translateY(0)     scale(1);     color:#ffffff; }
  35%  { transform:translateY(-2px)  scale(1.07);  color:#fde68a; text-shadow:0 0 14px rgba(253,230,138,.55); }
  100% { transform:translateY(0)     scale(1);     color:#ffffff; }
}

/* ROI: Vorauswahl Bueroangestellte vs. selber */
.tt-roi2__ratemode{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.5rem;
  margin-bottom:.9rem;
}
.tt-roi2__ratemode-btn{
  text-align:left;
  padding:.7rem .85rem;
  border-radius:12px;
  border:1px solid rgba(165,180,252,.35);
  background:rgba(255,255,255,.04);
  color:inherit;
  cursor:pointer;
  transition:background .15s, border-color .15s, transform .1s;
  display:flex; flex-direction:column; gap:.15rem;
  font:inherit;
}
.tt-roi2__ratemode-btn strong{ font-size:.92rem; line-height:1.2; }
.tt-roi2__ratemode-btn span{ font-size:.78rem; opacity:.78; line-height:1.3; }
.tt-roi2__ratemode-btn:hover{ background:rgba(255,255,255,.07); border-color:rgba(165,180,252,.6); }
.tt-roi2__ratemode-btn.is-active{
  background:linear-gradient(180deg, rgba(99,102,241,.28), rgba(79,70,229,.18));
  border-color:#a5b4fc;
  box-shadow:0 0 0 1px rgba(165,180,252,.4) inset;
}
@media (max-width:600px){
  .tt-roi2__ratemode{ grid-template-columns:1fr; }
}

/* "Unsicher?"-Hinweis: Telefon-CTA als dezenter Inline-Link */
.tt-calc__growthnote-cta{
  font-weight:700;
  color:#15803d;
  text-decoration:underline;
  text-underline-offset:2px;
}
.tt-calc__growthnote-cta:hover{ color:#166534; }

/* === Pro-Mitarbeiter-Hinweis (dezent, dritte Zeile) ================== */
.tt-calc__perhead{
  display:block;
  margin-top:.25rem;
  font-size:.82rem;
  color:#6b7094;
  font-variant-numeric:tabular-nums;
  letter-spacing:.01em;
}
.tt-calc__perhead small{
  font-size:.74rem;
  opacity:.75;
  margin-left:.25rem;
}

/* Topbar-Pill: dezenter Per-MA-Hinweis neben Monat */
.tt-calc__topbar-perhead{
  display:inline-flex;
  align-items:baseline;
  gap:.2rem;
  padding:.18rem .55rem;
  border-radius:999px;
  background:rgba(165,180,252,.14);
  border:1px solid rgba(165,180,252,.28);
  color:#cbd5ff;
  font-size:.78rem;
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}
.tt-calc__topbar-perhead strong{
  color:#fde68a;
  font-weight:700;
}
@media (max-width:720px){
  .tt-calc__topbar-perhead{ font-size:.72rem; padding:.14rem .45rem; }
}
@media (max-width:520px){
  /* auf sehr kleinen Screens nicht zwingend zeigen */
  .tt-calc__topbar-perhead{ display:none; }
}

/* ==========================================================================
   POLISH v11 – SP-Bereich, Richtwert-Box & Lohnarbeiter/Savings
   Ziel: bessere Hierarchie & Lesbarkeit im dunklen Kalkulator
   ========================================================================== */

/* --- 1) Stellenprozent-Bereich oben: ruhigeres Layout, klarere Hierarchie - */
section#kalkulator .tt-calc__field--primary{
  padding:1.1rem 1.15rem 1.15rem !important;
}
section#kalkulator .tt-calc__field--primary > label{
  font-size:.72rem !important;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#cbd5ff !important;
  margin-bottom:.55rem;
}
section#kalkulator .tt-calc__field--primary .tt-calc__sp input{
  font-size:1.4rem !important;
  font-weight:700;
  padding:.7rem .9rem !important;
  letter-spacing:-.005em;
}
section#kalkulator .tt-calc__field--primary .tt-calc__suffix{
  font-size:1rem;
  color:rgba(255,255,255,.55) !important;
  font-weight:600;
}
section#kalkulator .tt-calc__field--primary .tt-calc__hint{
  font-size:.8rem !important;
  line-height:1.5;
  margin-top:.55rem !important;
}

/* Free-Access-Hint im dunklen Kontext: weiche Indigo-Pille statt hellblauer Kasten */
section#kalkulator .tt-calc__hint--free{
  background:rgba(99,102,241,.14) !important;
  border:1px solid rgba(165,180,252,.28) !important;
  border-left:3px solid #a5b4fc !important;
  color:#e0e7ff !important;
  padding:.55rem .7rem !important;
  border-radius:8px !important;
  font-size:.78rem !important;
  line-height:1.5;
}
section#kalkulator .tt-calc__hint--free strong{
  color:#fff !important;
  font-weight:700;
}

/* Lehrlings-Hint im dunklen Kontext: ruhiges Grün, nicht knallig */
section#kalkulator .tt-calc__hint--accent{
  background:rgba(34,197,94,.12) !important;
  border:1px solid rgba(134,239,172,.30) !important;
  border-left:3px solid #4ade80 !important;
  color:#dcfce7 !important;
  padding:.55rem .7rem !important;
  border-radius:8px !important;
  font-size:.8rem !important;
  line-height:1.5;
}
section#kalkulator .tt-calc__hint--accent strong{
  color:#fde68a !important;
  font-weight:700;
}

/* --- 2) Richtwert-Box im Setup-Card: saubere Typo, keine Riesen-strongs ---- */
section#kalkulator .tt-calc__setup-note{
  margin-top:1rem !important;
  padding:.85rem 1rem !important;
  background:rgba(253,224,71,.08) !important;
  border:1px solid rgba(253,224,71,.28) !important;
  border-left:3px solid #fde68a !important;
  border-radius:10px !important;
  font-size:.82rem !important;
  line-height:1.55 !important;
  color:#fef3c7 !important;
  font-weight:400 !important;
  letter-spacing:0 !important;
}
/* WICHTIG: <strong>-Tags innerhalb der Note dürfen NICHT die riesige
   Result-Card-Strong-Größe erben (clamp 1.6rem-2rem). */
section#kalkulator .tt-calc__setup-note strong{
  display:inline !important;
  font-size:inherit !important;
  font-weight:700 !important;
  color:#fef9c3 !important;
  letter-spacing:0 !important;
  text-shadow:none !important;
  line-height:inherit !important;
}
section#kalkulator .tt-calc__setup-note em{
  font-style:italic;
  color:#fde68a !important;
}

/* Gleiches Problem wie bei der Setup-Note: <strong>-Tags innerhalb der
   Breakdown-Zeile (z.B. "Lohnarbeiter-Paket · CHF 580") dürfen NICHT die
   riesige Result-Card-Strong-Größe erben – sonst stehen sie als 2-rem-
   Schriftzug unter der ohnehin schon unauffälligen Breakdown-Liste. */
section#kalkulator .tt-calc__result-card .tt-calc__breakdown strong{
  display:inline !important;
  font-size:inherit !important;
  font-weight:700 !important;
  letter-spacing:0 !important;
  text-shadow:none !important;
  line-height:inherit !important;
}

/* "geschätzt"-Pill: präsenter, klarer als Mini-Badge oben rechts */
section#kalkulator .tt-calc__result-card--setup{
  position:relative;
}
section#kalkulator .tt-calc__setup-estimate{
  position:absolute;
  top:1rem;
  right:1rem;
  margin:0 !important;
  padding:.22rem .65rem !important;
  font-size:.66rem !important;
  font-weight:800 !important;
  letter-spacing:.10em !important;
  color:#78350f !important;
  background:linear-gradient(135deg,#fde68a 0%,#fbbf24 100%) !important;
  border:1px solid rgba(251,191,36,.6) !important;
  border-radius:999px !important;
  box-shadow:0 4px 12px -4px rgba(251,191,36,.45);
  text-transform:uppercase;
}

/* Setup-Liste: Häkchen explizit grün, mehr Atemraum */
section#kalkulator .tt-calc__setup-list span{
  font-size:.8rem !important;
  background:rgba(255,255,255,.05) !important;
  border:1px solid rgba(165,180,252,.18) !important;
  padding:.32rem .7rem !important;
  display:flex !important;
  align-items:center;
  gap:.4rem;
}

/* --- 3) Primary-Card unten: Bundle/Savings & Breakdown harmonisieren ------ */
section#kalkulator .tt-calc__result-card--primary .tt-calc__perhead{
  display:block;
  font-size:.78rem;
  color:rgba(226,228,255,.65) !important;
  margin-top:.35rem;
  font-variant-numeric:tabular-nums;
}

/* Savings-Banner: deutlich als „eigenes" Element absetzen */
section#kalkulator .tt-calc__savings{
  margin:1rem 0 .5rem !important;
  background:linear-gradient(135deg,rgba(34,197,94,.16) 0%,rgba(16,185,129,.10) 100%) !important;
  border:1px solid rgba(134,239,172,.40) !important;
  border-left:3px solid #4ade80 !important;
  border-radius:12px !important;
  box-shadow:0 8px 20px -12px rgba(16,185,129,.35);
}
section#kalkulator .tt-calc__savings .tt-calc__savings-icon{
  font-size:1.25rem !important;
  margin-top:.05rem !important;
  filter:drop-shadow(0 0 6px rgba(253,224,71,.35));
}
section#kalkulator .tt-calc__savings .tt-calc__savings-headline{
  font-size:.78rem !important;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#bbf7d0 !important;
  font-weight:800;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-headline::before{
  content:"";
  display:inline-block;
  width:6px; height:6px;
  margin-right:.5rem;
  border-radius:999px;
  background:#4ade80;
  box-shadow:0 0 0 3px rgba(74,222,128,.20);
  vertical-align:middle;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-sub{
  font-size:.83rem !important;
  color:rgba(220,252,231,.80) !important;
  margin-bottom:.15rem;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-now{
  font-size:1.25rem !important;
  font-weight:800;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-was{
  font-size:.8rem !important;
}
section#kalkulator .tt-calc__savings .tt-calc__savings-save{
  background:rgba(74,222,128,.22) !important;
  border-color:rgba(134,239,172,.55) !important;
  color:#dcfce7 !important;
  font-size:.74rem !important;
}

/* Breakdown: leichter, monospaceartiger Block - klar abgesetzt */
section#kalkulator .tt-calc__result-card--primary .tt-calc__breakdown{
  font-size:.78rem !important;
  line-height:1.65 !important;
  color:rgba(226,228,255,.72) !important;
  border-top:1px dashed rgba(165,180,252,.20) !important;
  margin-top:.85rem !important;
  padding-top:.85rem !important;
}

@media (max-width:640px){
  section#kalkulator .tt-calc__setup-estimate{
    position:static !important;
    display:inline-block !important;
    margin-bottom:.5rem !important;
  }
}

/* ==========================================================================
   GELD-ZURÜCK-GARANTIE – Brücke zwischen Kalkulator und ROI
   ========================================================================== */
.tt-guarantee{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:1.75rem;
  max-width:880px;
  margin:2.5rem auto;
  padding:1.75rem 2rem;
  background:linear-gradient(135deg,#fffbeb 0%, #fef3c7 100%);
  border:1px solid #fcd34d;
  border-radius:18px;
  box-shadow:0 18px 40px -22px rgba(146,64,14,.35),
             inset 0 1px 0 rgba(255,255,255,.6);
  color:#3a2c00;
}
.tt-guarantee__seal{
  flex:0 0 auto;
  width:130px;
  height:130px;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, #fff7d6 0%, #fde68a 55%, #f59e0b 100%);
  border:3px dashed #b45309;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  box-shadow:0 12px 28px -10px rgba(180,83,9,.45),
             inset 0 0 0 6px rgba(255,255,255,.45);
  transform:rotate(-6deg);
  transition:transform .25s ease;
}
.tt-guarantee__seal:hover{ transform:rotate(0deg) scale(1.03); }
.tt-guarantee__seal-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#7c2d12;
  text-shadow:0 1px 0 rgba(255,255,255,.5);
}
.tt-guarantee__seal-pct{
  font-size:1.85rem;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1;
}
.tt-guarantee__seal-sub{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-top:.2rem;
}
.tt-guarantee__body{ min-width:0; }
.tt-guarantee__body .tt-eyebrow--accent{
  color:#92400e !important;
  background:rgba(180,83,9,.10);
  padding:.2rem .6rem;
  border-radius:999px;
  font-size:.7rem;
  letter-spacing:.10em;
  font-weight:800;
  text-transform:uppercase;
  display:inline-block;
}
.tt-guarantee__title{
  margin:.55rem 0 .5rem;
  font-size:clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight:800;
  color:#3a2c00;
  line-height:1.2;
  letter-spacing:-.005em;
}
.tt-guarantee__lead{
  margin:0 0 .85rem;
  font-size:.97rem;
  line-height:1.55;
  color:#4a3700;
}
.tt-guarantee__lead strong{ color:#3a2c00; font-weight:800; }
.tt-guarantee__lead em{ color:#7c2d12; font-style:italic; }
.tt-guarantee__points{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.5rem;
}
.tt-guarantee__points li{
  display:flex;
  gap:.55rem;
  align-items:flex-start;
  font-size:.9rem;
  line-height:1.5;
  color:#4a3700;
}
.tt-guarantee__points strong{ color:#3a2c00; }
.tt-guarantee__ico{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  margin-top:.05rem;
  border-radius:999px;
  background:#16a34a;
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  box-shadow:0 0 0 3px rgba(22,163,74,.18);
}
.tt-guarantee__ico--star{
  background:linear-gradient(135deg,#fbbf24 0%,#d97706 100%);
  color:#fff;
  box-shadow:0 0 0 3px rgba(217,119,6,.22);
  font-size:.85rem;
}

@media (max-width:720px){
  .tt-guarantee{
    grid-template-columns:1fr;
    text-align:left;
    padding:1.5rem 1.25rem;
    gap:1.25rem;
  }
  .tt-guarantee__seal{
    width:110px;
    height:110px;
    justify-self:center;
  }
  .tt-guarantee__seal-pct{ font-size:1.55rem; }
}

/* ============================================================================
   BEISPIEL-OFFERTEN ("So sieht eine ehrliche Offerte aus")
   - Globaler Branchen-Switch (Pills + Mobile-Select)
   - Drei Beispielkarten (1 / 6 / 14 MA), live aus ttComputePrice befüllt
   - Lead-Modal "Unverbindliches Angebot"
   ========================================================================== */

.tt-cases{
  padding-top:2.8rem; padding-bottom:3.4rem;
  position:relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(108,92,231,.07), transparent 70%),
    linear-gradient(180deg,#f6f4fc 0%, #f1eef9 100%);
}
.tt-cases .tt-section__lead{ max-width:62ch; margin-left:auto; margin-right:auto; }
.tt-cases__intro{
  text-align:center;
  margin:0 auto .6rem;
  max-width:60ch;
}
.tt-cases__title{
  margin:0;
  font-size:clamp(1.05rem,1.7vw,1.25rem);
  line-height:1.25;
  font-weight:700;
  color:#1e1b4b;
  letter-spacing:-.005em;
}
.tt-cases__title-accent{
  color:#4c3fbf;
  font-weight:600;
  display:inline;
}
.tt-cases__eyebrow{
  margin:0 auto 1.4rem;
  text-align:center;
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  color:#6c5ce7;
}
@media (max-width: 720px){
  .tt-cases{ padding-top:1rem; padding-bottom:1.6rem; }
  .tt-cases__title{ font-size:1.05rem; line-height:1.3; }
  .tt-cases__intro{ margin-bottom:.7rem; }
  .tt-cases__eyebrow{ font-size:.74rem; margin-bottom:.55rem; }
}

/* --- Branchen-Switch ------------------------------------------------------- */
.tt-bswitch{
  margin: 1rem auto 2rem;
  display:flex; justify-content:center;
}
.tt-bswitch__pills{
  position:relative;
  display:inline-flex; flex-wrap:nowrap;
  gap:.15rem;
  padding:.3rem;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:999px;
  box-shadow: 0 18px 40px -28px rgba(60,40,140,.30);
  max-width:100%;
  overflow-x:auto;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.tt-bswitch__pills::-webkit-scrollbar{ display:none; }
.tt-bswitch__indicator{
  position:absolute; top:.3rem; bottom:.3rem; left:0;
  width:0; transform:translateX(0);
  background: linear-gradient(135deg,#1e1b4b 0%,#4c3fbf 55%,#6c5ce7 100%);
  border-radius:999px;
  transition: transform .42s cubic-bezier(.2,.8,.2,1), width .42s cubic-bezier(.2,.8,.2,1);
  box-shadow:
    0 14px 28px -12px rgba(30,27,75,.55),
    0 0 0 1px rgba(108,92,231,.25) inset;
  z-index:1;
}
.tt-bswitch__pill{
  position:relative; z-index:2;
  appearance:none; -webkit-appearance:none;
  border:0; background:transparent; cursor:pointer;
  padding:.5rem .85rem;
  border-radius:999px;
  font:inherit; font-weight:600; font-size:.88rem;
  color:#1f1d33;
  white-space:nowrap;
  flex:0 0 auto;
  transition: color .2s ease;
}
.tt-bswitch__pill:hover{ color:#6c5ce7; }
.tt-bswitch__pill.is-active{ color:#fff; }
.tt-bswitch__pill:focus-visible{
  outline:2px solid #6c5ce7; outline-offset:2px;
}
/* Hervorgehobene Kern-Branchen (Bau, Tiefbau, Lohnunternehmen)  */
.tt-bswitch__pill--primary{
  background:#eef0ff;
  color:#312e81;
  font-weight:700;
  box-shadow: inset 0 0 0 1px rgba(99,90,210,.25);
}
.tt-bswitch__pill--primary::before{
  content:"★";
  margin-right:.3rem;
  color:#6c5ce7;
  font-size:.78em;
  vertical-align:.05em;
}
.tt-bswitch__pill--primary:hover{ background:#e0e3ff; color:#312e81; }
.tt-bswitch__pill--primary.is-active{ color:#fff; background:transparent; box-shadow:none; }
.tt-bswitch__pill--primary.is-active::before{ color:#fff; }
/* Trennlinie zwischen Kern- und weiteren Branchen */
.tt-bswitch__divider{
  flex:0 0 auto;
  width:1px;
  align-self:stretch;
  margin:.2rem .35rem;
  background:linear-gradient(180deg, transparent 0%, rgba(15,23,42,.18) 25%, rgba(15,23,42,.18) 75%, transparent 100%);
  pointer-events:none;
}
.tt-bswitch__mobile{ display:none; }
.tt-bswitch__mobile-label{
  display:block; font-size:.8rem; color:#64748b;
  margin-bottom:.3rem; letter-spacing:.02em;
}
.tt-bswitch__mobile select{
  width:100%; padding:.7rem .9rem;
  border:1px solid rgba(15,23,42,.18);
  border-radius:12px;
  background:#fff;
  font:inherit; font-weight:600;
}

@media (max-width: 720px){
  .tt-bswitch{ display:block; max-width:480px; margin:.4rem auto 1rem; }
  .tt-bswitch__pills{ display:none; }
  .tt-bswitch__mobile{ display:block; }
  .tt-bswitch__mobile-label{ font-size:.78rem; margin-bottom:.3rem; }
  .tt-bswitch__mobile select{ padding:.65rem .8rem; font-size:.95rem; border-radius:12px; }
}

/* --- Karten-Grid ----------------------------------------------------------- */
.tt-cases__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:1.8rem;
  align-items:stretch;
}
@media (max-width: 980px){
  .tt-cases__grid{ grid-template-columns: 1fr; gap:1.1rem; }
}

.tt-case{
  position:relative;
  display:flex; flex-direction:column;
  background:#fff;
  border:1px solid rgba(108,92,231,.14);
  border-radius:18px;
  padding:1.5rem 1.4rem 1.3rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 2px 4px rgba(60,40,140,.06),
    0 28px 50px -22px rgba(60,40,140,.28);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tt-case:hover{
  transform: translateY(-3px);
  border-color: rgba(108,92,231,.30);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 2px 4px rgba(60,40,140,.08),
    0 36px 60px -22px rgba(60,40,140,.36);
}
.tt-case--featured{
  border-color:transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(150deg,#8b7cff 0%,#6c5ce7 45%,#1e1b4b 100%) border-box;
  border:1.5px solid transparent;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 36px 60px -20px rgba(60,40,140,.42);
}
.tt-case__badge{
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  display:inline-flex; align-items:center; gap:.35rem;
  background: linear-gradient(135deg,#1e1b4b 0%,#4c3fbf 55%,#6c5ce7 100%);
  color:#fff;
  font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; font-weight:700;
  padding:.4rem .85rem;
  border-radius:999px;
  box-shadow:
    0 18px 32px -14px rgba(30,27,75,.55),
    0 0 0 3px #fff,
    0 0 0 4px rgba(108,92,231,.25);
  white-space:nowrap;
}
.tt-case__badge span[aria-hidden]{
  font-size:.85rem; line-height:1;
  color:#fbbf24;
  text-shadow: 0 0 8px rgba(251,191,36,.7);
}
.tt-case__head{ margin-bottom:.9rem; }
.tt-case__stepper{
  display:flex; align-items:center; justify-content:center;
  gap:.6rem;
  margin-bottom:.6rem;
}
.tt-case__step{
  appearance:none; -webkit-appearance:none;
  flex:0 0 auto;
  width:32px; height:32px;
  padding:0;
  border-radius:50%;
  border:1px solid rgba(108,92,231,.30);
  background:#fff;
  color:#4c3fbf;
  font:inherit; line-height:0;
  cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 14px -10px rgba(60,40,140,.45);
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tt-case__step-ico{
  width:14px; height:14px;
  display:block;
  pointer-events:none;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
}
.tt-case__step:hover:not(:disabled){
  background: linear-gradient(135deg,#1e1b4b 0%,#4c3fbf 55%,#6c5ce7 100%);
  color:#fff;
  border-color:transparent;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(60,40,140,.55);
}
.tt-case__step:active:not(:disabled){ transform: translateY(0); }
.tt-case__step:focus-visible{ outline:2px solid #6c5ce7; outline-offset:2px; }
.tt-case__step:disabled{ opacity:.35; cursor:not-allowed; }
.tt-case--featured .tt-case__step{
  border-color: rgba(108,92,231,.45);
}
.tt-case__size{
  display:inline-flex; align-items:baseline; gap:.3rem;
  font-size:.78rem; letter-spacing:.04em; text-transform:uppercase; font-weight:700;
  color:#6c5ce7;
  background:rgba(108,92,231,.10);
  padding:.3rem .75rem; border-radius:999px;
  margin-bottom:0;
}
.tt-case__size strong{
  font-size:.95rem; font-weight:800; color:#1e1b4b;
}
.tt-case__title{
  margin:.1rem 0 .3rem;
  font-size:1.25rem; line-height:1.2; letter-spacing:-.01em;
  color:#1e1b4b;
}
.tt-case__sub{
  margin:0; font-size:.92rem; line-height:1.45; color:#475569;
  min-height:2.6em;
}
.tt-case__lines{
  list-style:none; margin:0 0 1rem; padding:0;
  border-top:1px dashed rgba(15,23,42,.12);
  font-size:.92rem;
}
.tt-case__lines li{
  display:flex; justify-content:space-between; gap:1rem;
  padding:.55rem 0;
  border-bottom:1px dashed rgba(15,23,42,.08);
}
.tt-case__lines li:last-child{ border-bottom:0; }
.tt-case__lines span{ color:#64748b; }
.tt-case__lines em{ font-style:normal; color:#1e1b4b; font-weight:600; text-align:right; }
.tt-case__lines strong{ color:#1e1b4b; font-weight:700; }

.tt-case__total{
  margin: auto 0 1rem;
  padding:.85rem 1rem;
  background:linear-gradient(135deg, rgba(108,92,231,.08), rgba(34,197,94,.08));
  border-radius:12px;
  display:grid; grid-template-columns:1fr auto; align-items:baseline;
  row-gap:.2rem;
}
.tt-case__total-label{ font-size:.8rem; color:#475569; letter-spacing:.02em; }
.tt-case__total-value{
  font-size:1.4rem; font-weight:800; letter-spacing:-.01em;
  background:linear-gradient(90deg,#6c5ce7,#22c55e);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-align:right;
}
.tt-case__total-sub{
  grid-column: 1 / -1;
  font-size:.78rem; color:#64748b;
}

.tt-case__cta{ display:grid; gap:.5rem; }
.tt-case__cta-primary{ width:100%; justify-content:center; }
.tt-case__cta-secondary{
  width:100%; justify-content:center;
  background:transparent; color:#6c5ce7;
  border:1px solid rgba(108,92,231,.35);
}
.tt-case__cta-secondary:hover{
  background:rgba(108,92,231,.06);
  border-color:rgba(108,92,231,.55);
}

.tt-cases__foot{
  margin: 1.6rem auto 0;
  text-align:center; max-width:62ch;
  font-size:.88rem; color:#475569;
}
.tt-cases__foot a{ color:#6c5ce7; text-decoration:none; font-weight:600; }
.tt-cases__foot a:hover{ text-decoration:underline; }

/* ============================================================================
   KALKULATOR ALS AUFKLAPPBARE VERTIEFUNG
   ========================================================================== */
.tt-calc-collapse{
  max-width:880px;
  margin-left:auto;
  margin-right:auto;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  box-shadow: 0 24px 50px -38px rgba(60,40,140,.30);
  overflow:hidden;
}
.tt-calc-collapse[open]{
  box-shadow: 0 30px 60px -30px rgba(60,40,140,.40);
}
.tt-calc-collapse__summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1.2rem 1.4rem;
  background:linear-gradient(135deg, rgba(108,92,231,.06), rgba(34,197,94,.06));
  transition: background .2s ease;
}
.tt-calc-collapse__summary::-webkit-details-marker{ display:none; }
.tt-calc-collapse__summary:hover{
  background:linear-gradient(135deg, rgba(108,92,231,.12), rgba(34,197,94,.12));
}
.tt-calc-collapse__head{
  display:flex; flex-direction:column; gap:.25rem;
}
.tt-calc-collapse__title{
  font-size:1.15rem; font-weight:700; color:#1e1b4b; letter-spacing:-.01em;
}
.tt-calc-collapse__sub{
  font-size:.88rem; color:#475569;
}
.tt-calc-collapse__chev{
  flex:0 0 auto;
  width:36px; height:36px; border-radius:50%;
  background:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:1rem; color:#6c5ce7;
  border:1px solid rgba(108,92,231,.25);
  transition: transform .3s ease;
}
.tt-calc-collapse[open] .tt-calc-collapse__chev{ transform: rotate(180deg); }

/* Form sitzt direkt unter dem Summary - die bestehende .tt-calc-Optik bleibt */
.tt-calc-collapse > .tt-calc{
  margin:0;
  max-width:none;
  width:100%;
  border-radius:0;
  border-left:0;
  border-right:0;
  border-bottom:0;
}

/* ============================================================================
   PREISTABELLE ALS ZUGEKLAPPTE VERTIEFUNG
   ========================================================================== */
.tt-pricetable__collapse{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  overflow:hidden;
}
.tt-pricetable__collapse > *:not(summary){ padding-left:1.4rem; padding-right:1.4rem; }
.tt-pricetable__collapse > .tt-section__header{ margin-top:1.4rem; }
.tt-pricetable__summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1rem 1.4rem;
  background:#f7f5ff;
  border-bottom:1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.tt-pricetable__summary::-webkit-details-marker{ display:none; }
.tt-pricetable__collapse[open] .tt-pricetable__summary{
  background:linear-gradient(135deg, rgba(108,92,231,.08), rgba(34,197,94,.06));
  border-bottom-color:rgba(15,23,42,.08);
}
.tt-pricetable__summary-title{
  display:block; font-weight:700; color:#1e1b4b;
  font-size:1.02rem; letter-spacing:-.005em;
  margin-top:.15rem;
}
.tt-pricetable__summary-chev{
  flex:0 0 auto;
  width:32px; height:32px; border-radius:50%;
  background:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:.95rem; color:#6c5ce7;
  border:1px solid rgba(108,92,231,.25);
  transition: transform .3s ease;
}
.tt-pricetable__collapse[open] .tt-pricetable__summary-chev{ transform: rotate(180deg); }

/* ============================================================================
   LEAD-MODAL "Unverbindliches Angebot"
   ========================================================================== */
.tt-leadmodal{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  padding:1rem;
  animation: ttLeadFadeIn .18s ease-out;
}
.tt-leadmodal[hidden]{ display:none; }
@keyframes ttLeadFadeIn{ from{opacity:0} to{opacity:1} }
.tt-leadmodal__backdrop{
  position:absolute; inset:0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
}
.tt-leadmodal__dialog{
  position:relative;
  width:100%; max-width:520px;
  background:#fff;
  border-radius:20px;
  box-shadow: 0 40px 80px -20px rgba(15,23,42,.55);
  padding:1.6rem 1.6rem 1.4rem;
  max-height: calc(100vh - 2rem); overflow:auto;
  animation: ttLeadSlide .22s cubic-bezier(.2,.8,.2,1);
}
@keyframes ttLeadSlide{
  from{ transform: translateY(12px); opacity:0; }
  to  { transform: translateY(0);    opacity:1; }
}
.tt-leadmodal__close{
  position:absolute; top:.7rem; right:.7rem;
  width:36px; height:36px; border-radius:50%;
  background:#f1f5f9; border:0; cursor:pointer;
  font-size:1.4rem; line-height:1; color:#475569;
}
.tt-leadmodal__close:hover{ background:#e2e8f0; color:#0f172a; }
.tt-leadmodal__head h2{
  margin:.3rem 0 .5rem;
  font-size:1.4rem; line-height:1.2; letter-spacing:-.01em;
  color:#1e1b4b;
}
.tt-leadmodal__lead{
  margin:0 0 1rem; color:#475569; font-size:.95rem; line-height:1.5;
}
.tt-leadmodal__form{
  display:grid; grid-template-columns:1fr 1fr; gap:.8rem;
}
.tt-leadmodal__field{ display:flex; flex-direction:column; gap:.3rem; }
.tt-leadmodal__field--full{ grid-column: 1 / -1; }
.tt-leadmodal__field span{ font-size:.85rem; color:#1e1b4b; font-weight:600; }
.tt-leadmodal__field span em{ color:#dc2626; font-style:normal; }
.tt-leadmodal__field span small{ color:#64748b; font-weight:500; }
.tt-leadmodal__field input,
.tt-leadmodal__field textarea{
  border:1px solid rgba(15,23,42,.18);
  border-radius:10px;
  padding:.6rem .75rem;
  font:inherit;
  background:#fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.tt-leadmodal__field input:focus,
.tt-leadmodal__field textarea:focus{
  outline:none;
  border-color:#6c5ce7;
  box-shadow: 0 0 0 3px rgba(108,92,231,.18);
}
.tt-leadmodal__trust{
  grid-column: 1 / -1;
  margin:.2rem 0 0;
  font-size:.8rem; color:#475569;
}
.tt-leadmodal__actions{
  grid-column: 1 / -1;
  display:flex; justify-content:flex-end; gap:.6rem;
  margin-top:.4rem;
}
.tt-leadmodal__success{
  grid-column: 1 / -1;
  margin:.6rem 0 0; padding:.85rem 1rem;
  background: rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.25);
  border-radius:12px;
  color:#166534; font-size:.95rem;
}

@media (max-width: 540px){
  .tt-leadmodal__form{ grid-template-columns: 1fr; }
  .tt-leadmodal__dialog{ padding:1.3rem 1.2rem 1.1rem; }
}

/* ============================================================
   PRICING-CASES v2 – getrennte Preis-Items, Typische Module,
   leiser ROI-Link + Lead-Modal Kontextkasten mit Live-Preisen
   ============================================================ */

/* Zwei klare Preisblöcke (Jahrespreis + Startpaket) */
.tt-case__price{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:.6rem;
  margin: .25rem 0 .9rem;
  padding: .85rem .85rem .8rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border:1px solid #e2e8f0;
  border-radius: 14px;
}
.tt-case--featured .tt-case__price{
  background: linear-gradient(180deg, rgba(108,92,231,.08) 0%, rgba(108,92,231,.04) 100%);
  border-color: rgba(108,92,231,.22);
}
.tt-case__price-item{
  display:flex; flex-direction:column; gap:.15rem;
  min-width:0;
}
.tt-case__price-item + .tt-case__price-item{
  border-left:1px solid #e2e8f0;
  padding-left:.75rem;
}
.tt-case--featured .tt-case__price-item + .tt-case__price-item{
  border-left-color: rgba(108,92,231,.22);
}
.tt-case__price-label{
  font-size:.78rem; color:#475569; letter-spacing:.02em; font-weight:600;
}
.tt-case__price-value{
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color:#1e1b4b; font-weight:800; line-height:1.05;
  white-space:nowrap;
}
.tt-case--featured .tt-case__price-value{ color:#4c3fbf; }
.tt-case__price-sub{
  font-size:.72rem; color:#64748b;
}

/* "Typische Module" – ruhige Zeile */
.tt-case__mods{
  display:flex; flex-wrap:wrap; gap:.35rem .65rem;
  align-items:baseline;
  margin-bottom:.9rem;
  padding-bottom:.7rem;
  border-bottom:1px dashed #e2e8f0;
  font-size:.86rem;
}
.tt-case__mods-label{
  color:#64748b; font-weight:600; letter-spacing:.01em;
}
.tt-case__mods-value{
  color:#1e1b4b; font-weight:600;
}

/* Modul-Chips */
.tt-case__mods-chips{
  display:flex; flex-wrap:wrap; gap:.3rem;
  flex:1 1 100%;
  margin-top:.35rem;
}
.tt-case__chip{
  display:inline-flex; align-items:center;
  font-size:.74rem; font-weight:600; letter-spacing:.01em;
  padding:.22rem .55rem;
  border-radius:999px;
  border:1px solid transparent;
  line-height:1.25;
  white-space:nowrap;
}
.tt-case__chip--main{
  background:rgba(108,92,231,.10); color:#4c3fbf; border-color:rgba(108,92,231,.22);
}
.tt-case__chip--add{
  background:rgba(30,27,75,.06); color:#1e1b4b; border-color:rgba(30,27,75,.16);
}
.tt-case__chip--muted{
  background:#f1f5f9; color:#475569; border-color:#e2e8f0;
}

/* Leiserer "Lohnt sich das?" / "Im Rechner feinjustieren"-Link statt zweitem Button */
.tt-case__cta-links{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:.35rem .9rem;
  padding-top:.35rem;
}
.tt-case__cta-link{
  appearance:none; background:transparent; border:0; padding:.25rem 0;
  text-align:center; cursor:pointer;
  font: inherit;
  color:#6c5ce7;
  font-size:.85rem; font-weight:600;
  letter-spacing:.01em;
  text-decoration: underline; text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.tt-case__cta-link:hover,
.tt-case__cta-link:focus-visible{
  color:#4c3fbf; text-decoration-color: currentColor; outline:none;
}

/* ROI-Hinweis direkt unter dem Preisblock – kleiner Call-to-Action zum ROI-Rechner. */
.tt-case__roi-hint{
  margin:.65rem 0 0;
  font-size:.85rem; color:#475569; text-align:center;
}
.tt-case__roi-link{
  appearance:none; background:transparent; border:0; padding:0;
  font: inherit; color:#6c5ce7; font-weight:600; cursor:pointer;
  text-decoration: underline; text-decoration-color: rgba(108,92,231,.35);
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.tt-case__roi-link:hover,
.tt-case__roi-link:focus-visible{
  color:#4c3fbf; text-decoration-color: currentColor; outline:none;
}

/* Alte Klassen (.tt-case__lines / .tt-case__total) bleiben in der CSS,
   werden aber nicht mehr im Markup verwendet – kein Cleanup nötig. */

/* ============================================================
   LEAD-MODAL – Kontextkasten mit Stellenprozent-Eingabe
   ============================================================ */
.tt-leadmodal__context{
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #faf9ff 0%, #f3f0ff 100%);
  border:1px solid rgba(108,92,231,.22);
  border-radius:14px;
  padding: .9rem 1rem .85rem;
  display:flex; flex-direction:column; gap:.55rem;
}
.tt-leadmodal__ctx-row{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items:end;
}
.tt-leadmodal__ctx-field{
  display:flex; flex-direction:column; gap:.3rem;
  min-width:0;
}
.tt-leadmodal__ctx-field > span{
  font-size:.82rem; color:#1e1b4b; font-weight:600;
}
.tt-leadmodal__ctx-spwrap{
  position:relative; display:flex; align-items:stretch;
}
.tt-leadmodal__ctx-spwrap input{
  width:100%; padding:.55rem .8rem; padding-right:2rem;
  border:1px solid #cbd5e1; border-radius:10px;
  background:#fff; color:#0f172a; font-size:1rem; font-weight:600;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.tt-leadmodal__ctx-spwrap input:focus{
  outline:none; border-color:#6c5ce7;
  box-shadow:0 0 0 3px rgba(108,92,231,.18);
}
.tt-leadmodal__ctx-suffix{
  position:absolute; right:.7rem; top:50%; transform:translateY(-50%);
  color:#64748b; font-weight:600; font-size:.95rem; pointer-events:none;
}
.tt-leadmodal__ctx-hint{
  font-size:.74rem; color:#64748b;
}
.tt-leadmodal__ctx-prices{
  display:grid; grid-template-columns: 1fr 1fr; gap:.5rem;
}
.tt-leadmodal__ctx-price{
  display:flex; flex-direction:column; gap:.1rem;
  background:#fff; border:1px solid #e2e8f0; border-radius:10px;
  padding:.5rem .65rem;
}
.tt-leadmodal__ctx-plabel{
  font-size:.7rem; color:#475569; font-weight:600; letter-spacing:.02em;
  text-transform:uppercase;
}
.tt-leadmodal__ctx-pvalue{
  font-size:1.15rem; color:#1e1b4b; font-weight:800; white-space:nowrap;
}
.tt-leadmodal__ctx-psub{
  font-size:.72rem; color:#64748b; line-height:1.35; margin-top:.1rem;
}
.tt-leadmodal__ctx-foot{
  font-size:.75rem; color:#475569;
  margin:0;
}
.tt-leadmodal__ctx-foot em{ color:#64748b; font-style:italic; }

@media (max-width: 540px){
  .tt-leadmodal__ctx-row{ grid-template-columns: 1fr; }
  .tt-case__price{ grid-template-columns: 1fr; }
  .tt-case__price-item + .tt-case__price-item{
    border-left:0; padding-left:0;
    border-top:1px dashed #e2e8f0; padding-top:.6rem;
  }
}

/* ---- Mobile-Feinschliff fuer die Beispielkarten -------------------------- */
@media (max-width: 720px){
  .tt-case{ padding:1.05rem 1rem 1rem; border-radius:14px; }
  .tt-case__head{ margin-bottom:.55rem; }
  .tt-case__stepper{ gap:.5rem; }
  .tt-case__step{ width:32px; height:32px; }
  .tt-case__title{ font-size:1.05rem; margin:.15rem 0 .2rem; }
  .tt-case__sub{ font-size:.85rem; line-height:1.35; min-height:0; }
  .tt-case__price{ margin-top:.35rem; }
  .tt-case__price-value{ font-size:1.25rem; }
  .tt-case__price-label{ font-size:.72rem; }
  .tt-case__price-sub{ font-size:.72rem; }
  .tt-case__mods{ margin:.65rem 0 .75rem; }
  .tt-case__mods-label{ margin-bottom:.3rem; font-size:.74rem; }
  .tt-case__chip{ font-size:.72rem; padding:.2rem .5rem; }
  .tt-case__cta-primary{ padding:.7rem .95rem; font-size:.95rem; }
  .tt-case__cta-link{ font-size:.82rem; }
  .tt-case__badge{ top:-11px; font-size:.66rem; padding:.32rem .7rem; }
  .tt-cases__foot{ font-size:.78rem; padding:0 .25rem; margin-top:.9rem; }
}

/* === MOBILE-OPTIMIERUNG PREIS-SEITE: untere Sections =================== */
@media (max-width: 720px){
  /* Generelle Section-Verdichtung auf der Preis-Seite */
  main#main .tt-section{ padding:1.6rem 0; }
  main#main .tt-section--sm{ padding:1.4rem 0; }
  main#main .tt-section__header{ margin:0 0 1rem; }
  main#main .tt-section__title{ font-size:1.35rem; line-height:1.2; margin:0 0 .5rem; }
  main#main .tt-section__lead{ font-size:.95rem; line-height:1.5; }

  /* Schutz gegen seitliches Ausbrechen */
  main#main, main#main .tt-container{ overflow-x:hidden; }
  .tt-roi2, .tt-roi2 *,
  .tt-calc-collapse, .tt-calc-collapse *,
  .tt-guarantee, .tt-guarantee *{ min-width:0; max-width:100%; box-sizing:border-box; }

  /* Topbar-Container sicherstellen */
  .tt-calc__topbar-inner{ flex-wrap:nowrap; padding:.5rem .7rem; gap:.5rem; }
  .tt-calc__topbar-stats{
    flex:1 1 auto;
    min-width:0;
    flex-wrap:nowrap;
    overflow:hidden;
    gap:.2rem .5rem;
    justify-content:flex-start;
  }
  .tt-calc__topbar-item{ flex:0 1 auto; min-width:0; gap:.3rem; }
  .tt-calc__topbar-label{ font-size:.72rem; }
  .tt-calc__topbar-value{ font-size:.86rem; }
  .tt-calc__topbar-cta{ flex:0 0 auto; padding:.35rem .65rem; font-size:.72rem; }

  /* iOS Safari: kein Auto-Zoom auf Eingabefelder
     (passiert bei font-size < 16px). Wir setzen die Felder auf 16px
     und entzerren das Submit-Verhalten beim Klick auf required ohne
     Eingabe. */
  input:not([type=hidden]):not([type=submit]):not([type=button]):not([type=checkbox]):not([type=radio]),
  select,
  textarea{
    font-size:16px;
  }

  /* Kalkulator-Collapse */
  .tt-calc-collapse{ border-radius:14px; }
  .tt-calc-collapse__summary{ padding:.85rem 1rem; gap:.6rem; }
  .tt-calc-collapse__title{ font-size:1rem; }
  .tt-calc-collapse__sub{ font-size:.82rem; }
  .tt-calc-collapse > .tt-calc{ padding:1rem; }

  /* Geld-zurueck-Garantie */
  .tt-guarantee{ padding:1.1rem 1rem; gap:.9rem; grid-template-columns:1fr; text-align:center; margin:1.4rem auto; }
  .tt-guarantee__seal{ margin:0 auto; width:96px; height:96px; }
  .tt-guarantee__seal-pct{ font-size:1.4rem; }
  .tt-guarantee__title{ font-size:1.1rem; line-height:1.25; }
  .tt-guarantee__lead{ font-size:.9rem; line-height:1.5; text-align:left; }
  .tt-guarantee__points{ text-align:left; }
  .tt-guarantee__points li{ font-size:.88rem; line-height:1.45; }

  /* ROI-Section */
  .tt-roi2{ margin-top:1.2rem; }
  .tt-roi2__head{ margin-bottom:.8rem; }
  .tt-roi2__title{ font-size:1.25rem; line-height:1.2; }
  .tt-roi2__lead{ font-size:.92rem; line-height:1.45; }
  .tt-roi2__mirror{ flex-wrap:wrap; gap:.4rem .8rem; }
  .tt-roi2__split{ gap:.85rem; }
  .tt-roi2__panel{ padding:1rem 1rem; border-radius:14px; }
  .tt-roi2__slider{ padding:.65rem 0; }
  .tt-roi2__slider-head{ flex-wrap:wrap; gap:.3rem .6rem; }

  /* ROI Result-Lines: Label oben, Wert unten - kein Abschneiden */
  .tt-roi2__line{ flex-direction:column; align-items:stretch; gap:.25rem; padding:.7rem 0; }
  .tt-roi2__line-label{ font-size:.85rem; }
  .tt-roi2__line-value{ justify-content:flex-end; }
  .tt-roi2__line-value strong{ font-size:1.2rem; }
  .tt-roi2__line-value--accent strong{ font-size:1.55rem; }
  .tt-roi2__line--net{ padding:.85rem 0 .65rem; }

  .tt-roi2__factor{ grid-template-columns:1fr; gap:.35rem; padding:.85rem .9rem; }
  .tt-roi2__factor-value{ justify-self:flex-start; }
  .tt-roi2__factor-value strong{ font-size:1.6rem; }
  .tt-roi2__factor-value em{ font-size:1.15rem; }
  .tt-roi2__factor-text{ font-size:.82rem; }

  .tt-roi2__form{ padding:.85rem .9rem 1rem; }
  .tt-roi2__form-lead{ font-size:.85rem; }
  .tt-roi2__form input[type="text"],
  .tt-roi2__form input[type="tel"],
  .tt-roi2__form input[type="email"],
  .tt-roi2__form textarea{ width:100%; min-width:0; }

  /* Preistabelle (collapse) */
  .tt-pricetable__collapse > *:not(summary){ padding-left:.9rem; padding-right:.9rem; }
  .tt-pricetable__summary{ padding:.85rem 1rem; }
  .tt-pricetable__summary-title{ font-size:1rem; }

  /* Fair-Section / Final / Related */
  .tt-fair{ padding:1.4rem 0; }
  .tt-final{ padding:1.6rem 0; }
  .tt-related{ padding:1.4rem 0; }
  .tt-related h2{ font-size:1.2rem; line-height:1.25; }
}


/* === Form-Banner / Pricing-CTA / Anfrage-Section ====================== */

/* Validierung – rote Markierung für leer/ungültig gelassene Pflichtfelder */
.tt-invalid,
.tt-calc__leadfield input.tt-invalid,
.tt-calc__leadfield textarea.tt-invalid,
.tt-final2__field input.tt-invalid,
.tt-final2__field select.tt-invalid,
.tt-final2__field textarea.tt-invalid,
.tt-roi2__form input.tt-invalid,
.tt-roi2__form textarea.tt-invalid,
.tt-leadmodal__form input.tt-invalid,
.tt-leadmodal__form textarea.tt-invalid{
  border-color:#e0524a !important;
  box-shadow:0 0 0 3px rgba(224,82,74,.22) !important;
  background:#fff5f4;
}
.tt-invalid:focus{ outline:none; }

.tt-formbanner{
  position:sticky; top:0; z-index:60;
  background:#e7f7ec; border-bottom:1px solid #b7e1c2;
  color:#0d3a1d; box-shadow:0 2px 12px rgba(0,0,0,.06);
}
.tt-formbanner--error{ background:#fdecec; border-bottom-color:#f1b6b6; color:#5a1717; }
.tt-formbanner__inner{
  display:flex; align-items:flex-start; gap:.75rem;
  padding:.75rem 1rem;
}
.tt-formbanner__ico{ flex:0 0 auto; width:1.4rem; height:1.4rem; border-radius:50%;
  background:#1f9d55; color:#fff; display:inline-flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.95rem;
}
.tt-formbanner--ok    .tt-formbanner__ico::before{ content:'\2713'; }
.tt-formbanner--error .tt-formbanner__ico{ background:#c0392b; }
.tt-formbanner--error .tt-formbanner__ico::before{ content:'\21'; }
.tt-formbanner__body{ flex:1 1 auto; line-height:1.35; }
.tt-formbanner__body strong{ display:block; font-size:1.02rem; }
.tt-formbanner__close{
  background:transparent; border:0; color:inherit; cursor:pointer;
  font-size:1.5rem; line-height:1; padding:.1rem .35rem; border-radius:.4rem;
}
.tt-formbanner__close:hover{ background:rgba(0,0,0,.06); }

/* Kalkulator-Lead-Felder direkt im Submit-Block (dunkler Hintergrund) */
.tt-calc__cta{ color:#eef0ff; }
.tt-calc__cta .tt-calc__cta-text{ color:#eef0ff; }
.tt-calc__leadgrid{
  display:grid; grid-template-columns:1fr 1fr; gap:.7rem .9rem;
  margin:.9rem auto .4rem;
  max-width:760px;
  text-align:left;
}
.tt-calc__leadfield{ display:flex; flex-direction:column; gap:.3rem; min-width:0; }
.tt-calc__leadfield--full{ grid-column:1 / -1; }
.tt-calc__leadfield > span{
  font-size:.85rem; font-weight:600;
  color:#cdd3ff;                 /* helles Indigo auf dunkel */
  letter-spacing:.01em;
}
.tt-calc__leadfield > span em{
  color:#ff8a8a; font-style:normal; margin-left:.2rem;
}
.tt-calc__leadfield > span small{
  color:#9aa1c9; font-weight:400; margin-left:.25rem;
}
.tt-calc__leadfield input,
.tt-calc__leadfield textarea{
  width:100%; padding:.6rem .8rem;
  border:1px solid rgba(255,255,255,.18);
  border-radius:.6rem;
  font:inherit; background:#fff; color:#1a1f3a;
  box-shadow:0 1px 0 rgba(0,0,0,.15) inset;
  transition:border-color .15s, box-shadow .15s;
}
.tt-calc__leadfield input:focus,
.tt-calc__leadfield textarea:focus{
  outline:none;
  border-color:#9d8bff;
  box-shadow:0 0 0 3px rgba(157,139,255,.35);
}
.tt-calc__leadfield textarea{ resize:vertical; min-height:2.8rem; }
.tt-calc__leadfield input::placeholder,
.tt-calc__leadfield textarea::placeholder{ color:#8a90a8; }

.tt-calc__leadtrust{
  font-size:.85rem; color:#b9c0e6; text-align:center;
  margin:.6rem 0 .8rem;
}
.tt-calc__leadfoot{
  font-size:.85rem; color:#b9c0e6; text-align:center; margin-top:.8rem;
}
.tt-calc__leadfoot a{ color:#c6bdff; font-weight:600; }
.tt-calc__leadfoot a:hover{ color:#ffffff; }

/* Anfrage-Section am Seitenende */
.tt-final2{ padding:2.2rem 0 2.6rem; }
.tt-final2__grid{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.1fr); gap:1.6rem 2rem;
  align-items:start;
}
.tt-final2__intro h2{ margin:.4rem 0 .65rem; }
.tt-final2__intro p{ color:#444; line-height:1.5; }
.tt-final2__bullets{ list-style:none; padding:0; margin:.6rem 0 .8rem;
  display:flex; flex-direction:column; gap:.25rem; color:#1f3a2c; font-size:.95rem; }
.tt-final2__phone{ font-size:.95rem; color:#333; }
.tt-final2__phone a{ color:#5b4cdb; font-weight:700; }
.tt-final2__form{
  background:#fff; border:1px solid #e2e5ec; border-radius:1rem;
  padding:1.1rem 1.15rem 1.2rem; box-shadow:0 6px 22px rgba(20,30,55,.06);
  display:flex; flex-direction:column; gap:.7rem;
  position:relative;
}
.tt-final2__row{ display:grid; grid-template-columns:1fr 1fr; gap:.6rem .8rem; }
.tt-final2__field{ display:flex; flex-direction:column; gap:.25rem; min-width:0; }
.tt-final2__field > span{ font-size:.85rem; color:#444; font-weight:600; }
.tt-final2__field > span em{ color:#c0392b; font-style:normal; margin-left:.15rem; }
.tt-final2__field > span small{ color:#777; font-weight:400; }
.tt-final2__field input,
.tt-final2__field select,
.tt-final2__field textarea{
  width:100%; padding:.55rem .7rem; border:1px solid #d0d4dc; border-radius:.55rem;
  font:inherit; background:#fff;
}
.tt-final2__field textarea{ resize:vertical; min-height:3.2rem; }
.tt-final2__trust{ font-size:.82rem; color:#555; margin:.1rem 0 .15rem; }

@media (max-width:780px){
  .tt-final2__grid{ grid-template-columns:1fr; }
  .tt-final2__row{ grid-template-columns:1fr; }
  .tt-calc__leadgrid{ grid-template-columns:1fr; }
}
