@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* =========================================================
   TRIFORMANCE 2.0
   Grunddesign
   ========================================================= */

:root {
    --tf-blue: #07345C;
    --tf-blue-light: #0D4D82;

    --tf-bordeaux: #9D173B;
    --tf-bordeaux-light: #B21E48;

    --tf-white: #FFFFFF;
    --tf-offwhite: #FAFBFC;

    --tf-text: #17324A;
    --tf-text-light: #5B6B79;

    --tf-radius: 8px;
    --tf-max-width: 1180px;
}


/* =========================================================
   SCHRIFTEN
   ========================================================= */

html,
body {
    font-family: 'Manrope', sans-serif;
    color: var(--tf-text);
    background: var(--tf-white);
}


/* =========================================================
   GRUNDRESET
   ========================================================= */

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

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}


/* =========================================================
   TRIFORMANCE – EIGENES SEITENLAYOUT
   Cassiopeia Grid vollständig neutralisieren
   ========================================================= */

.site-grid {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.grid-child {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.container-top-a,
.container-top-b,
.container-bottom-a,
.container-bottom-b,
.container-component,
.container-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   TRIFORMANCE CONTENT-BREITE
   ========================================================= */

.tf-container {
    width: min(1180px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   ÜBERSCHRIFTEN
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--tf-blue);
    font-weight: 800;
    line-height: 1.12;
    margin-top: 0;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}


/* =========================================================
   HANDGESCHRIEBENER AKZENT
   ========================================================= */

.tf-script {
    font-family: "Kalam", cursive !important;
    font-weight: 400;
    letter-spacing: 0;
    display: block;
    margin-top: 18px !important;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn,
button,
input[type="submit"] {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    border-radius: var(--tf-radius);
}

.tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 13px 24px;

    border: 2px solid var(--tf-bordeaux);
    border-radius: var(--tf-radius);

    background: var(--tf-bordeaux);
    color: var(--tf-white);

    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.tf-btn:hover {
    background: var(--tf-bordeaux-light);
    border-color: var(--tf-bordeaux-light);
    color: var(--tf-white);
    transform: translateY(-2px);
}


/* =========================================================
   WEISSE KAPITEL
   ========================================================= */

.tf-section-white {
    background: var(--tf-white);
    color: var(--tf-text);
    padding: 110px 0;
}


/* =========================================================
   DUNKELBLAUE KAPITEL
   ========================================================= */

.tf-section-blue {
    background: var(--tf-blue);
    color: var(--tf-white);
    padding: 110px 0;
}

.tf-section-blue h1,
.tf-section-blue h2,
.tf-section-blue h3,
.tf-section-blue h4 {
    color: var(--tf-white);
}

.tf-section-blue .tf-script {
    color: #E5A2B3;
}


/* =========================================================
   EYEBROW / KLEINE ÜBERSCHRIFT
   ========================================================= */

.tf-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--tf-bordeaux);
}

.tf-section-blue .tf-eyebrow {
    color: #E5A2B3;
}

/* =========================================================
   TEXT
   ========================================================= */

.tf-lead {
    max-width: 680px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--tf-text-light);
}

.tf-section-blue .tf-lead {
    color: rgba(255,255,255,0.82);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .tf-container {
        width: min(100% - 32px, 1180px);
    }

    .tf-section-white,
    .tf-section-blue {
        padding: 75px 0;
    }

    h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .tf-lead {
        font-size: 1.05rem;
    }

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

/* =========================================================
   TRIFORMANCE – CASSIOPEIA STANDARD-ELEMENTE AUSBLENDEN
   ========================================================= */

/* Cassiopeia Header */
.container-header {
    display: none !important;
}

/* Breadcrumbs / "Aktuelle Seite: Startseite" */
.container-breadcrumbs {
    display: none !important;
}

/* Seiten-/Komponentenüberschrift "Home" */
.page-header {
    display: none !important;
}

/* Cassiopeia Standard-Menü */
.container-nav {
    display: none !important;
}

/* Login-Modul */
.mod-login {
    display: none !important;
}

/* Falls das Login-Modul über einen Modul-Container kommt */
.mod-login-logout {
    display: none !important;
}

/* Standard-Cassiopeia-Module, die wir aktuell nicht brauchen */
.moduletable {
    /* Noch NICHT generell ausblenden! */
}

/* Standard-Abstände des Cassiopeia-Hauptbereichs entfernen */
.container-component {
    margin: 0 !important;
    padding: 0 !important;
}

.container-main {
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================
   TRIFORMANCE – CASSIOPEIA SEITENLEISTEN / DEMO-MODULE
   ========================================================= */

/* Linke und rechte Cassiopeia-Seitenbereiche entfernen */
.container-sidebar-left,
.container-sidebar-right {
    display: none !important;
}

/* Falls Cassiopeia die Module direkt in einem Grid-Bereich ausgibt */
.sidebar-left,
.sidebar-right {
    display: none !important;
}

/* =========================================================
   TRIFORMANCE – BREADCRUMBS KOMPLETT AUSBLENDEN
   ========================================================= */

.breadcrumb,
.breadcrumbs,
.container-breadcrumbs,
#breadcrumbs {
    display: none !important;
}

/* =========================================================
   TRIFORMANCE – HEADER
   ========================================================= */

.tf-header {
    width: 100%;
    background: var(--tf-blue);
    position: relative;
    z-index: 100;
}

.tf-header-inner {
    width: min(var(--tf-max-width), calc(100% - 48px));
    min-height: 88px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* LOGO */

.tf-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.tf-logo img {
    display: block;
    width: 235px;
    height: auto;
}


/* NAVIGATION */

.tf-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.tf-nav a {
    color: var(--tf-white);
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    transition: color 0.2s ease;
}

.tf-nav a:hover {
    color: #E5A2B3;
}


/* CTA */

.tf-nav .tf-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    min-height: 46px;
    padding: 11px 19px;

    background: var(--tf-bordeaux);
    border: 2px solid var(--tf-bordeaux);
    border-radius: 8px;

    color: var(--tf-white);
    font-weight: 800;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.tf-nav .tf-header-cta:hover {
    background: var(--tf-bordeaux-light);
    border-color: var(--tf-bordeaux-light);
    color: var(--tf-white);
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 900px) {

    .tf-header-inner {
        min-height: 76px;
        gap: 20px;
    }

    .tf-logo img {
        width: 190px;
    }

    .tf-nav {
        gap: 16px;
    }

    .tf-nav a:not(.tf-header-cta) {
        display: none;
    }
}

@media (max-width: 500px) {

    .tf-header-inner {
        width: calc(100% - 32px);
    }

    .tf-logo img {
        width: 165px;
    }

    .tf-nav .tf-header-cta {
        min-height: 42px;
        padding: 9px 14px;
        font-size: 0.82rem;
    }
}

/* =========================================================
   TRIFORMANCE – TOP-A VOLLFLÄCHIG
   ========================================================= */

.container-top-a {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

.container-top-a .moduletable {
    margin: 0 !important;
    padding: 0 !important;
}

.container-top-a .tf-header {
    margin: 0 !important;
}

/* =========================================================
   TRIFORMANCE HERO
   ========================================================= */

.tf-hero {
    position: relative;
    width: 100%;
    min-height: 750px;

    overflow: hidden;

    background: var(--tf-white);
    color: var(--tf-text);
}


/* =========================================================
   STARTSEITEN-BILD
   Das JPG enthält den organischen weißen Übergang bereits.
   ========================================================= */

.tf-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;
}

.tf-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.tf-hero-inner {
    position: relative;
    z-index: 3;

    min-height: 750px;

    display: flex;
    align-items: center;

    padding-top: 65px;
    padding-bottom: 65px;
}

.tf-hero-content {
    width: 62%;
    max-width: 900px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.tf-hero .tf-eyebrow {
    display: inline-block;

    margin-bottom: 23px;

    color: var(--tf-bordeaux);

    font-size: .82rem;
    font-weight: 800;

    letter-spacing: .11em;
    text-transform: uppercase;
}


/* =========================================================
   HEADLINE
   ========================================================= */

.tf-hero h1 {
    max-width: 850px;

    margin: 0 0 29px;

    color: var(--tf-blue);

    font-size: clamp(3.3rem, 5.2vw, 5.35rem);
    line-height: .98;

    letter-spacing: -.055em;
    font-weight: 800;
}

.tf-hero h1 .tf-script {
    display: block;

    margin-top: 10px;

    color: var(--tf-bordeaux);

    font-size: .82em;
    line-height: 1.04;
}


/* =========================================================
   BESCHREIBUNG
   ========================================================= */

.tf-hero-lead {
    max-width: 710px;

    margin: 0 0 34px;

    color: var(--tf-text-light);

    font-size: 1.15rem;
    line-height: 1.68;
}


/* =========================================================
   CTA
   ========================================================= */

/*.tf-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 22px;
}*/

.tf-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.tf-hero-actions .tf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 58px;

    padding: 15px 27px;

    background: var(--tf-bordeaux);
    border: 2px solid var(--tf-bordeaux);
    border-radius: 8px;

    color: var(--tf-white);

    font-size: .95rem;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.tf-hero-actions .tf-btn:hover {
    transform: translateY(-2px);

    background: var(--tf-bordeaux-light);
    border-color: var(--tf-bordeaux-light);

    color: var(--tf-white);
}

.tf-hero-actions .tf-btn span {
    font-size: 1.15rem;
}

.tf-hero-note {
    color: var(--tf-text-light);

    font-size: .87rem;
    font-weight: 600;
}


/* =========================================================
   1.000-DINGE-BOTSCHAFT
   ========================================================= */

.tf-family-note {
    position: relative;

    display: flex;
    align-items: flex-start;

    width: fit-content;

    margin-top: 42px;
    margin-left: 28px;

    color: var(--tf-bordeaux);

    transform: rotate(-2deg);
}

.tf-family-text {
    max-width: 430px;

    font-family: "Kalam", cursive !important;

    font-size: 1.42rem;
    font-weight: 400;

    line-height: 1.22;
}

.tf-family-text strong {
    font-weight: 700;
}


/* =========================================================
   GESCHWUNGENER PFEIL
   ========================================================= */

.tf-family-arrow {
    display: inline-block;

    margin-left: 8px;

    color: var(--tf-bordeaux);

    font-family: "Manrope", sans-serif !important;

    font-size: 1.8rem;
    font-weight: 700;

    transform: translateY(2px) rotate(-5deg);

    transition: transform .2s ease;
}
.tf-family-line {
    white-space: nowrap;
}

.tf-arrow-text {
    display: inline-block !important;

    margin-left: 10px !important;
    padding: 0 !important;

    color: var(--tf-bordeaux) !important;

    font-family: "Manrope", sans-serif !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;

    line-height: 1 !important;

    vertical-align: 2px;

    position: static !important;

    transform: rotate(-5deg) !important;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .tf-hero {
        min-height: 680px;
    }

    .tf-hero-inner {
        min-height: 680px;
    }

    .tf-hero-content {
        width: 64%;
    }

    .tf-hero h1 {
        font-size: clamp(3rem, 5vw, 4.7rem);
    }

    .tf-family-text {
        font-size: 1.25rem;
    }

    .tf-family-arrow {
        width: 125px;
    }

    .tf-family-arrow::before {
        width: 105px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 750px) {
    /* Schreibtext ausblenden */
    .tf-family-note {
        display: none !important;
    }

    /* HERO wirklich über die komplette Bildschirmbreite */
    .tf-hero {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* TEXT NACH OBEN */
    .tf-hero-inner {
        order: 1;
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto;
        display: block;
        padding: 55px 24px 50px;
        padding-bottom: 25px !important;
        box-sizing: border-box;
    }

    .tf-hero-content {
        width: 100%;
        max-width: 100%;
    }

    /* BILD NACH UNTEN */

    .tf-hero-image {
        order: 2;
        position: relative;
        inset: auto;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        flex-shrink: 0;
    }

    .tf-hero-image picture {
        display: block !important;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .tf-hero-image img {
        display: block !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .tf-hero h1 {
        font-size: clamp(3rem, 13vw, 4.2rem);
        line-height: .98;
    }

    .tf-hero h1 .tf-script {
        margin-top: 8px;
    }

    .tf-hero-lead {
        font-size: 1.05rem;
    }

    .tf-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .tf-hero-actions .tf-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .tf-family-note {
        margin-top: 38px;
        margin-left: 5px;
    }

    .tf-family-text {
        max-width: 330px;
        font-size: 1.3rem;
    }

    .tf-family-line {
        white-space: nowrap;
    }
}

/* =========================================================
   TRIFORMANCE – AUFRÄUMEN / SPAREN / ABSICHERN
   ========================================================= */

.tf-tri {
    width: 100%;
    background: var(--tf-blue);
    color: var(--tf-white);
    padding: 115px 0 125px;
}

.tf-tri-intro {
    max-width: 900px;
}

.tf-tri h2 {
    margin: 0 0 28px;
    color: var(--tf-white);

    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.tf-tri h2 .tf-script {
    display: block;
    margin-top: 2px;
    color: #E5A2B3;
    font-size: 0.88em;
    line-height: 1.05;
}

.tf-tri-intro > p {
    max-width: 680px;
    margin: 0;

    color: rgba(255,255,255,0.82);
    font-size: 1.15rem;
    line-height: 1.7;
}

.tf-tri-explanation {
    margin-top: 28px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.tf-tri-explanation strong {
    color: #F19AB0;
    font-weight: 800;
    letter-spacing: .03em;
}

/* =========================================================
   DIE DREI SCHRITTE
   ========================================================= */

.tf-tri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;

    margin-top: 85px;
}

.tf-tri-item {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.tf-tri-number {
    display: block;
    margin-bottom: 22px;

    color: #E5A2B3;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.tf-tri-item h3 {
    margin: 0 0 16px;

    color: var(--tf-white);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tf-tri-item p {
    max-width: 320px;
    margin: 0;

    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
}

.tf-tri .tf-eyebrow,
.tf-process .tf-eyebrow {
    display: inline-block;
    padding: 7px 13px;
    background: #FFFFFF;
    color: var(--tf-bordeaux);
    border-radius: 7px;
    font-weight: 800;
    letter-spacing: .08em;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 750px) {

    .tf-tri {
        padding: 80px 0 90px;
    }

    .tf-tri-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 60px;
    }

    .tf-tri-item p {
        max-width: none;
    }
}

.tf-tri .tf-eyebrow {
    display: inline-block;
    padding: 7px 13px;
    background: #FFFFFF;
    color: var(--tf-bordeaux);
    border-radius: 7px;
    font-weight: 800;
    letter-spacing: .08em;
}

/* =========================================================
   TF 02 – MEHR HERAUSHOLEN / ERSPARNIS
   ========================================================= */

.tf-saving {
    width: 100%;
    background: var(--tf-white);
    color: var(--tf-text);
    padding: 120px 0 125px;
}

.tf-saving-intro {
    max-width: 900px;
}

.tf-saving h2 {
    margin: 0 0 28px;
    color: var(--tf-blue);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.tf-saving h2 .tf-script {
    display: block;
    margin-top: 4px;
    color: var(--tf-bordeaux);
}

.tf-saving-intro > p {
    max-width: 1100px;
    margin: 0;
    color: var(--tf-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   VERGLEICH
   --------------------------------------------------------- */

.tf-saving-example {
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr;
    align-items: center;
    gap: 45px;

    margin-top: 75px;
    padding: 55px 0;

    border-top: 1px solid #D9E0E6;
    border-bottom: 1px solid #D9E0E6;
}

.tf-saving-old,
.tf-saving-new {
    color: var(--tf-blue);
    font-size: .9rem;
}

.tf-saving-label {
    display: block;
    margin-bottom: 12px;

    color: var(--tf-text-light);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tf-saving-old strong,
.tf-saving-new strong {
    display: block;

    color: var(--tf-blue);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.045em;
}

/* Pfeil */

.tf-saving-arrow {
    color: var(--tf-bordeaux);
    font-size: 2rem;
    font-weight: 800;
}


/* ---------------------------------------------------------
   ERSPARNIS-HIGHLIGHT
   --------------------------------------------------------- */

.tf-saving-result {
    width: 100%;
    min-height: 190px;

    padding: 28px 35px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #18A844 !important;
    border-radius: var(--tf-radius);

    color: #FFFFFF !important;
    text-align: center;
}

.tf-saving-result > strong {
    display: block;
    margin: 8px 0 0;

    color: #FFFFFF !important;
    font-size: clamp(3rem, 5vw, 4.2rem);
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.045em;
    text-align: center;
}

.tf-saving-result > p {
    margin: 10px 0 0;

    color: #FFFFFF !important;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.tf-saving-note {
    margin: 28px 0 0;

    color: var(--tf-text-light);
    font-size: .78rem;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 750px) {

    .tf-saving {
        padding: 80px 0 85px;
    }

    .tf-saving-example {
        grid-template-columns: 1fr;
        gap: 35px;

        margin-top: 55px;
        padding: 40px 0;
    }

    .tf-saving-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }

    .tf-saving-result {
        width: 100%;
        min-height: 170px;
        padding: 28px 24px;
    }

    .tf-saving-old strong,
    .tf-saving-new strong {
        font-size: 3.4rem;
    }

    .tf-saving-result > strong {
        font-size: 3.6rem;
    }

}

/* =========================================
   TF 03 – SO EINFACH GEHT'S
   ========================================= */

.tf-process {
    width: 100%;
    background: var(--tf-blue);
    color: var(--tf-white);
    padding: 120px 0 125px;
}

.tf-process-intro {
    max-width: 850px;
}

.tf-process h2 {
    margin: 0 0 28px;
    color: var(--tf-white);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.tf-process h2 .tf-script {
    display: block;
    margin-top: 10px;
    color: #F19AB0;
}

.tf-process-intro > p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: 1.12rem;
    line-height: 1.7;
}


/* Die drei Schritte */

.tf-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    margin-top: 90px;
}

.tf-process-item {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.3);
}

.tf-process-number {
    display: block;
    margin-bottom: 22px;
    color: #F19AB0;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.tf-process-item h3 {
    margin: 0 0 16px;
    color: var(--tf-white);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.tf-process-item p {
    max-width: 320px;
    margin: 0;
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    line-height: 1.7;
}


/* Abschlusszeile */

.tf-process-bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 75px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.72);
    font-size: .9rem;
    font-weight: 600;
}

.tf-process-arrow {
    color: #F19AB0;
    font-size: 1.7rem;
}


/* Mobil */

@media (max-width: 750px) {

    .tf-process {
        padding: 80px 0 85px;
    }

    .tf-process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-top: 60px;
    }

    .tf-process-bottom {
        align-items: flex-start;
        margin-top: 55px;
    }
}

/* =========================================
   TF 04 – ÜBER MICH
   ========================================= */

.tf-about {
    width: 100%;
    background: var(--tf-white);
    color: var(--tf-text);
    padding: 120px 0 125px;
}


/* =========================================
   LAYOUT
   ========================================= */

.tf-about-grid {
    display: grid;
    grid-template-columns: minmax(430px, 560px) 1fr;
    gap: 55px;
    align-items: center;
}


/* =========================================
   BILD
   ========================================= */

.tf-about-image {
    position: relative;
    width: calc(100% + 120px);
    margin-left: -120px;
    z-index: 1;
}

.tf-about-image img {
    display: block;
    width: 100%;
    height: auto;

    /*
       Organischer, fließender Ausschnitt
       statt einer harten rechteckigen Kante
    */
    border-radius: 0 52% 48% 0 / 0 38% 62% 0;

    /*
       Leichte Überlappung Richtung Text
    */
    transform: translateX(20px);
}


/* =========================================
   BORDEAUX-BOGEN
   ========================================= */

.tf-about-image::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 520px;

    right: -35px;
    bottom: -80px;

    border-right: 5px solid var(--tf-bordeaux);
    border-bottom: 5px solid var(--tf-bordeaux);

    border-radius: 0 0 100% 0;

    transform: rotate(-18deg);

    pointer-events: none;
    z-index: 2;
}


/* =========================================
   TEXTBEREICH
   ========================================= */

.tf-about-content {
    max-width: 720px;
    position: relative;
    z-index: 3;
}


/* Überschrift */

.tf-about h2 {
    margin: 0 0 30px;

    color: var(--tf-blue);

    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;

    letter-spacing: -.045em;
}


/* Handschrift */

.tf-about h2 .tf-script {
    display: block;
    margin-top: 4px;
    color: var(--tf-bordeaux);
    font-size: 0.78em;
    line-height: 1.08;
}


/* =========================================
   EINLEITUNG
   ========================================= */

.tf-about-lead {
    max-width: 620px;

    margin: 0 0 24px;

    color: var(--tf-blue);

    font-size: 1.25rem;
    line-height: 1.6;

    font-weight: 700;
}


/* Fließtext */

.tf-about-content > p:not(.tf-about-lead) {
    max-width: 650px;

    margin: 0 0 20px;

    color: var(--tf-text-light);

    font-size: 1rem;
    line-height: 1.75;
}


/* =========================================
   DIE DREI PUNKTE
   ========================================= */

.tf-about-points {
    display: flex;
    flex-wrap: wrap;

    gap: 35px;

    margin-top: 42px;
    padding-top: 25px;

    border-top: 1px solid #D9E0E6;
}


.tf-about-points div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}


.tf-about-points strong {
    color: var(--tf-bordeaux);

    font-size: .78rem;

    letter-spacing: .12em;
}


.tf-about-points span {
    color: var(--tf-blue);

    font-size: .9rem;

    font-weight: 700;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

    .tf-about {
        padding: 80px 0 85px;
    }


    .tf-about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .tf-about-image {
        width: 100%;
        margin-left: 0;
    }


    .tf-about-image img {
        transform: none;
    }


    .tf-about-image::after {
        width: 220px;
        height: 320px;

        right: -20px;
        bottom: -50px;
    }


    .tf-about-content {
        max-width: 100%;
    }


    .tf-about-points {
        gap: 25px;
    }

}

/* =========================================
   TF 05 – FOOTER
   ========================================= */

.tf-footer {
    width: 100%;
    background: var(--tf-blue);
    color: var(--tf-white);
}

.tf-footer-inner {
    width: min(var(--tf-max-width), calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================
   OBERER BEREICH
   ========================================= */

.tf-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 70px 0 60px;
}


/* Marke */

.tf-footer-brand img {
    display: block;
    width: 235px;
    height: auto;
    margin-bottom: 25px;
}

.tf-footer-brand p {
    margin: 0;

    color: rgba(255,255,255,.7);

    font-size: .95rem;
    line-height: 1.6;
}


/* Links */

.tf-footer-links {
    display: flex;
    gap: 100px;
}

.tf-footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 160px;
}

.tf-footer-title {
    margin-bottom: 8px;

    color: #F19AB0;

    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.tf-footer-column a {
    color: rgba(255,255,255,.78);

    font-size: .9rem;
    font-weight: 600;

    text-decoration: none;

    transition: color .2s ease;
}

.tf-footer-column a:hover {
    color: #FFFFFF;
}


/* =========================================
   UNTERER BEREICH
   ========================================= */

.tf-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;

    padding: 25px 0 30px;

    border-top: 1px solid rgba(255,255,255,.18);

    color: rgba(255,255,255,.5);

    font-size: .75rem;
}


.tf-footer-bottom > div {
    display: flex;
    gap: 25px;
}

.tf-footer-bottom a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
}

.tf-footer-bottom a:hover {
    color: #FFFFFF;
}

.tf-footer-signature {
    justify-self: end;

    color: #F19AB0;

    font-family: "Kalam", cursive;
    font-size: 1rem;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 750px) {

    .tf-footer-top {
        flex-direction: column;
        gap: 55px;

        padding: 65px 0 55px;
    }

    .tf-footer-links {
        flex-wrap: wrap;
        gap: 45px;
    }

    .tf-footer-bottom {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .tf-footer-signature {
        justify-self: start;
    }

}

/* =========================================
   TF FOOTER – VOLLE BROWSERBREITE
   ========================================= */

body:has(.tf-footer) .container-footer {
    width: 100vw !important;
    max-width: 100vw !important;

    grid-column: 1 / -1 !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    padding: 0 !important;
}


/* Footer selbst über die komplette Breite */

body:has(.tf-footer) .tf-footer {
    width: 100vw !important;
    max-width: 100vw !important;
}

/* =========================================
   CASSIOPEIA ABSTÄNDE AUFHEBEN
   TriFormance Startseite
   ========================================= */

/* 0.5em Abstand der Modulpositionen */
.container-top-a > *,
.container-top-b > *,
.container-bottom-a > *,
.container-bottom-b > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 1em Abstand im Component-/Sidebar-Bereich */
.container-component > :first-child,
.container-sidebar-left > :first-child,
.container-sidebar-right > :first-child,
.container-component > * + *,
.container-sidebar-left > * + *,
.container-sidebar-right > * + * {
    margin-top: 0 !important;
}

/* =========================================================
   TRIFORMANCE – IMPRESSUM / RECHTLICHE SEITEN
   ========================================================= */

.tf-legal {
    width: min(900px, calc(100% - 48px));
    margin: 0 auto;
    padding: 110px 0 120px;
    color: var(--tf-text);
}

/* Hauptüberschrift */
.tf-legal h1 {
    margin: 0 0 55px;
    color: var(--tf-blue);
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 800;
}

/* Einleitung */
.tf-legal-intro {
    margin: -25px 0 70px;
    color: var(--tf-bordeaux);
    font-family: "Kalam", cursive !important;
    font-size: 1.35rem;
    line-height: 1.4;
}

/* Abschnittsüberschriften */
.tf-legal h2 {
    margin: 58px 0 18px;
    color: var(--tf-blue);
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
}

/* Text */
.tf-legal p {
    max-width: 760px;
    margin: 0 0 20px;
    color: var(--tf-text-light);
    font-size: 1rem;
    line-height: 1.75;
}

/* Hervorgehobene Angaben */
.tf-legal strong {
    color: var(--tf-blue);
    font-weight: 800;
}

/* Links */
.tf-legal a {
    color: var(--tf-bordeaux);
    font-weight: 700;
    text-decoration: none;
}

.tf-legal a:hover {
    color: var(--tf-bordeaux-light);
    text-decoration: underline;
}

/* Dezente Trennung zwischen Themenblöcken */
.tf-legal h2:not(:first-of-type) {
    padding-top: 25px;
    border-top: 1px solid #D9E0E6;
}

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

    .tf-legal {
        width: calc(100% - 40px);
        padding: 75px 0 85px;
    }

    .tf-legal h1 {
        margin-bottom: 45px;
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .tf-legal-intro {
        margin-top: -18px;
        margin-bottom: 55px;
        font-size: 1.2rem;
    }

    .tf-legal h2 {
        margin-top: 45px;
        font-size: 1.3rem;
    }

    .tf-legal p {
        font-size: .95rem;
        line-height: 1.7;
    }
}

/* -----------------------------------------
   ÜBER MICH – HERO
   ----------------------------------------- */

.tf-about-hero {
    position: relative;
    width: 100%;
    background: var(--tf-white);
    padding: 0;
    overflow: hidden;
}

.tf-about-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 54% 46%;
    align-items: stretch;
    min-height: 820px;
}


/* -----------------------------------------
   TEXTBEREICH
   ----------------------------------------- */

.tf-about-hero-content {
    position: relative;
    z-index: 6;
    max-width: 680px;
    padding: 85px 0 95px;
}

.tf-about-hero h1 {
    margin: 0 0 30px;
    color: var(--tf-blue);
    font-size: clamp(3rem, 5.3vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: -.05em;
    font-weight: 800;
}

.tf-about-hero h1 .tf-script {
    display: block;
    margin-top: 8px;
    color: var(--tf-bordeaux);
}

.tf-about-hero-lead {
    margin: 0 0 30px;
    color: var(--tf-blue);
    font-size: 1.35rem;
    line-height: 1.55;
    font-weight: 700;
}

.tf-about-hero-content p:not(.tf-about-hero-lead) {
    max-width: 650px;
    margin: 0 0 20px;
    color: var(--tf-text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}


/* -----------------------------------------
   PORTRAIT
   ----------------------------------------- */

.tf-about-hero-image {
    position: absolute;
    z-index: 2;

    top: 0;
    right: calc((var(--tf-max-width) - 100vw) / 2);

    width: 50%;
    height: 100%;
}

.tf-about-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.08) 8%,
        rgba(0,0,0,.35) 18%,
        rgba(0,0,0,.75) 29%,
        #000 40%,
        #000 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        rgba(0,0,0,.08) 8%,
        rgba(0,0,0,.35) 18%,
        rgba(0,0,0,.75) 29%,
        #000 40%,
        #000 100%
    );
}


/* -----------------------------------------
   DER ROTE FADEN
   ----------------------------------------- */

.tf-red-thread {
    position: absolute;
    z-index: 10;

    left: -8%;
    bottom: 17%;

    width: 90%;
    height: 300px;

    overflow: visible;
    pointer-events: none;
}

.tf-red-thread path {
    fill: none;
    stroke: var(--tf-bordeaux);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 1;
}

/* -----------------------------------------
   MEIN ANSPRUCH
   ----------------------------------------- */

.tf-about-focus {
    width: 100%;
    background: var(--tf-blue);
    color: var(--tf-white);
    padding: 115px 0 125px;
}

.tf-about-focus .tf-eyebrow {
    color: var(--tf-bordeaux);
}

.tf-about-focus-intro {
    max-width: 980px;
}

.tf-about-focus h2 {
    margin: 0;
    color: var(--tf-white);
    font-size: clamp(3rem, 5.3vw, 5.1rem);
    line-height: 1.03;
    letter-spacing: -.05em;
    font-weight: 800;
}

.tf-about-focus h2 .tf-script {
    display: block;
    margin-top: 5px;
    color: #F19AB0;
}

.tf-about-focus-text {
    max-width: 780px;
    margin-left: 500px;
    margin-top: 65px;
}

.tf-about-focus-text p {
    margin: 0 0 28px;
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.tf-about-focus-text p:last-child {
    margin-bottom: 0;
}


/* -----------------------------------------
   ERFAHRUNG
   ----------------------------------------- */

.tf-about-experience {
    width: 100%;
    background: var(--tf-white);
    padding: 115px 0 125px;
}

.tf-about-experience-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 85px;
    align-items: start;
}

.tf-about-experience-number {
    padding-top: 8px;
}

.tf-about-experience-number span {
    display: block;
    color: var(--tf-blue);
    font-size: clamp(5rem, 8vw, 7rem);
    line-height: .85;
    font-weight: 800;
    letter-spacing: -.06em;
}

.tf-about-experience-number strong {
    display: block;
    margin-top: 25px;
    color: var(--tf-text-light);
    font-size: 1rem;
    letter-spacing: .12em;
}

.tf-about-experience-content {
    max-width: 850px;
}

.tf-about-experience-content .tf-eyebrow {
    color: var(--tf-bordeaux);
}

.tf-about-experience-content h2 {
    margin: 0 0 35px;
    color: var(--tf-blue);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 800;
}

.tf-about-experience-content p {
    max-width: 800px;
    margin: 0 0 25px;
    color: var(--tf-text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}

.tf-about-experience-content strong {
    color: var(--tf-blue);
    font-weight: 800;
}


/* -----------------------------------------
   WARUM TRIFORMANCE
   ----------------------------------------- */

.tf-about-focus-dark {
    background: var(--tf-blue);
}

.tf-about-statement {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.3);
    color: var(--tf-white);
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 800;
}


/* -----------------------------------------
   MEINE ART ZU ARBEITEN
   ----------------------------------------- */

.tf-about-way {
    width: 100%;
    background: var(--tf-white);
    padding: 115px 0 125px;
}

.tf-about-way-intro {
    max-width: 850px;
    margin-bottom: 75px;
}

.tf-about-way-intro .tf-eyebrow {
    color: var(--tf-bordeaux);
}

.tf-about-way-intro h2 {
    margin: 0;
    color: var(--tf-blue);
    font-size: clamp(3rem, 5.3vw, 5.1rem);
    line-height: 1.03;
    letter-spacing: -.05em;
    font-weight: 800;
}

.tf-about-way-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
}

.tf-about-way-item {
    padding-top: 25px;
    border-top: 1px solid #D9E0E6;
}

.tf-about-way-number {
    display: block;
    margin-bottom: 25px;
    color: var(--tf-bordeaux);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .14em;
}

.tf-about-way-item h3 {
    margin: 0 0 17px;
    color: var(--tf-blue);
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 800;
}

.tf-about-way-item p {
    max-width: 340px;
    margin: 0;
    color: var(--tf-text-light);
    font-size: 1rem;
    line-height: 1.7;
}


/* -----------------------------------------
   WARUM FAMILIEN
   ----------------------------------------- */

.tf-about-family {
    width: 100%;
    background: var(--tf-blue);
    color: var(--tf-white);
    padding: 115px 0 125px;
}

.tf-about-family-content {
    max-width: 1000px;
}

.tf-about-family .tf-eyebrow {
    color: #F19AB0;
}

.tf-about-family h2 {
    margin: 0 0 45px;
    color: var(--tf-white);
    font-size: clamp(3rem, 5.3vw, 5.1rem);
    line-height: 1.03;
    letter-spacing: -.05em;
    font-weight: 800;
}

.tf-about-family h2 .tf-script {
    display: block;
    margin-top: 5px;
    color: #F19AB0;
}

.tf-about-family-content > p {
    max-width: 820px;
    margin: 0 0 25px;
    color: rgba(255,255,255,.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.tf-about-family-note {
    max-width: 1000px;
    margin-top: 65px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.3);
}

.tf-about-family-note .tf-script {
    display: block;
    margin-bottom: 15px;
    color: #F19AB0;
    font-size: 1.45rem;
}

.tf-about-family-note strong {
    display: block;
    color: var(--tf-white);
    font-size: 1.05rem;
    font-weight: 800;
}


/* -----------------------------------------
   ISI-SAFE
   ----------------------------------------- */

.tf-about-isisafe {
    width: 100%;
    background: var(--tf-white);
    padding: 115px 0 125px;
}

.tf-about-isisafe-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 90px;
    align-items: start;
}

.tf-about-isisafe-content {
    max-width: 650px;
}

.tf-about-isisafe-content .tf-eyebrow {
    color: var(--tf-bordeaux);
}

.tf-about-isisafe-content h2 {
    margin: 0;
    color: var(--tf-blue);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.03;
    letter-spacing: -.05em;
    font-weight: 800;
}

.tf-about-isisafe-content h2 .tf-script {
    display: block;
    margin-top: 5px;
    color: var(--tf-bordeaux);
}

.tf-about-isisafe-text {
    max-width: 650px;
    padding-top: 65px;
}

.tf-about-isisafe-text p {
    margin: 0 0 25px;
    color: var(--tf-text-light);
    font-size: 1.05rem;
    line-height: 1.75;
}


/* -----------------------------------------
   ABSCHLUSS
   ----------------------------------------- */

.tf-about-final {
    width: 100%;
    background: var(--tf-blue);
    color: var(--tf-white);
    padding: 120px 0 135px;
}

.tf-about-final-content {
    max-width: 900px;
}

.tf-about-final .tf-eyebrow {
    color: #F19AB0;
}

.tf-about-final h2 {
    margin: 0 0 35px;
    color: var(--tf-white);
    font-size: clamp(3rem, 5.3vw, 5.1rem);
    line-height: 1.03;
    letter-spacing: -.05em;
    font-weight: 800;
}

.tf-about-final h2 .tf-script {
    display: block;
    margin-top: 5px;
    color: #F19AB0;
}

.tf-about-final p {
    max-width: 700px;
    margin: 0 0 40px;
    color: rgba(255,255,255,.82);
    font-size: 1.1rem;
    line-height: 1.75;
}


/* -----------------------------------------
   MOBILE
   ----------------------------------------- */

@media (max-width: 750px) {

    .tf-about-hero {
    padding: 0;
}

.tf-about-hero-grid {
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.tf-about-hero-content {
    max-width: none;
    padding: 75px 0 55px;
}

.tf-about-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
}

.tf-about-hero-lead {
    font-size: 1.15rem;
}

.tf-about-hero-image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;

    width: 100%;
    height: 600px;
    min-height: 600px;
}

.tf-about-hero-image img {
    object-position: center top;

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,.35) 8%,
        #000 20%,
        #000 100%
    );

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,.35) 8%,
        #000 20%,
        #000 100%
    );
}

.tf-red-thread {
    width: 145%;
    height: 180px;
    left: -25%;
    bottom: 35%;
}

.tf-red-thread path {
    stroke-width: 4;
}

    .tf-about-focus,
    .tf-about-experience,
    .tf-about-way,
    .tf-about-family,
    .tf-about-isisafe,
    .tf-about-final {
        padding: 80px 0 85px;
    }

    .tf-about-focus h2,
    .tf-about-family h2,
    .tf-about-isisafe-content h2,
    .tf-about-final h2 {
        font-size: clamp(2.6rem, 11vw, 4rem);
    }

    .tf-about-focus-text {
        margin-left: 0;
        margin-top: 40px;
    }

    .tf-about-experience-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tf-about-experience-number span {
        font-size: 5.5rem;
    }

    .tf-about-way-intro {
        margin-bottom: 50px;
    }

    .tf-about-way-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tf-about-family h2 {
        margin-bottom: 35px;
    }

    .tf-about-isisafe-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tf-about-isisafe-text {
        padding-top: 0;
    }

    .tf-about-family-note {
        margin-top: 40px;
    }

    .tf-about-final {
        padding-bottom: 95px;
    }
}