/*
Theme Name: TKC
Theme URI: https://www.thilo-koerner-consulting.de/
Author: Thilo-Körner-Consulting
Description: Individuelles WordPress-Theme für Thilo-Körner-Consulting.
Version: 3.3.1
Text Domain: tkc
*/

:root {
    --tkc-blue: #263d4f;
    --tkc-blue-dark: #102c43;
    --tkc-blue-mid: #153a56;
    --tkc-orange: #fc8007;
    --tkc-orange-hover: #ff8d20;
    --tkc-cream: #f4efe7;
    --tkc-cream-dark: #ece4d8;
    --tkc-white: #ffffff;
    --tkc-text: #183249;
    --tkc-muted: #637181;
    --tkc-border: rgba(38,61,79,.14);
    --tkc-container: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--tkc-text);
    background: var(--tkc-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.tkc-container {
    width: min(calc(100% - 48px), var(--tkc-container));
    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.tkc-header {
    position: relative;
    z-index: 1000;

    background: rgba(255,255,255,.98);

    border-bottom:
        1px solid var(--tkc-border);
}

.tkc-header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;

    gap: 34px;
}


/* =========================================================
   LOGO
========================================================= */

.tkc-logo {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-right: auto;

    color: var(--tkc-blue-dark);

    font-weight: 800;

    line-height: 1.05;
}

.tkc-logo-mark {
    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    border-radius: 7px;

    background: var(--tkc-orange);

    box-shadow:
        0 6px 17px rgba(252,128,7,.22);
}

.tkc-logo-text {
    white-space: nowrap;

    font-size: 14px;

    letter-spacing: -.015em;
}

.tkc-logo-text small {
    display: block;

    margin-top: 4px;

    color: var(--tkc-muted);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.tkc-navigation > ul {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 25px;

    margin: 0;
    padding: 0;
}

.tkc-navigation > ul > li {
    position: relative;
}

.tkc-navigation > ul > li > a {
    position: relative;

    display: flex;
    align-items: center;

    gap: 5px;

    padding: 29px 0 27px;

    color: var(--tkc-blue-dark);

    font-size: 12px;
    font-weight: 700;

    transition: color .2s ease;
}

.tkc-navigation > ul > li > a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: 20px;

    height: 2px;

    border-radius: 999px;

    background: var(--tkc-orange);

    transition: right .25s ease;
}

.tkc-navigation > ul > li:hover > a,
.tkc-navigation > ul > li:focus-within > a {
    color: var(--tkc-orange);
}

.tkc-navigation > ul > li:hover > a::after,
.tkc-navigation > ul > li:focus-within > a::after {
    right: 0;
}

.tkc-nav-arrow {
    position: relative;

    top: -1px;

    font-size: 11px;

    transition: transform .2s ease;
}

.tkc-nav-has-mega:hover .tkc-nav-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   MEGA MENÜ
========================================================= */

.tkc-mega-menu {
    position: absolute;

    top: calc(100% - 5px);

    left: 50%;

    width: 720px;

    padding-top: 16px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translate(-50%,8px);

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}

.tkc-nav-has-mega:hover > .tkc-mega-menu,
.tkc-nav-has-mega:focus-within > .tkc-mega-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%,0);
}


/* =========================================================
   LEISTUNGEN MEGA MENU
========================================================= */

.tkc-mega-menu-services {
    display: grid;

    grid-template-columns: 1.4fr .6fr;

    overflow: hidden;
}

.tkc-mega-menu-services::before {
    content: "";

    position: absolute;

    top: 16px;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: -1;

    border:
        1px solid rgba(38,61,79,.11);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(16,44,67,.16);
}

.tkc-mega-main {
    padding: 29px;
}

.tkc-mega-kicker {
    margin: 0 0 18px;

    color: var(--tkc-orange);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .11em;
}

.tkc-mega-links {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 5px;
}

.tkc-mega-links > a {
    display: grid;

    grid-template-columns: 30px 1fr;

    gap: 10px;

    padding: 14px;

    border-radius: 10px;

    transition: background .2s ease;
}

.tkc-mega-links > a:hover {
    background: #f7f4ef;
}

.tkc-mega-number {
    color: var(--tkc-orange);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 12px;
}

.tkc-mega-links strong {
    display: block;

    margin-bottom: 4px;

    color: var(--tkc-blue-dark);

    font-size: 11px;
}

.tkc-mega-links small {
    display: block;

    color: var(--tkc-muted);

    font-size: 9px;

    line-height: 1.5;
}


/* CTA IM MEGA MENÜ */

.tkc-mega-cta {
    margin: 16px 0 0;

    padding: 30px 25px;

    border-radius:
        0 18px 18px 0;

    background:
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );

    color: #fff;
}

.tkc-mega-cta p {
    margin: 0 0 8px;

    color: var(--tkc-orange);

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
}

.tkc-mega-cta strong {
    display: block;

    margin-bottom: 21px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.2;
}

.tkc-mega-cta a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding-top: 14px;

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

    color: #fff;

    font-size: 10px;
    font-weight: 800;
}

.tkc-mega-cta a span {
    color: var(--tkc-orange);

    font-size: 15px;
}


/* =========================================================
   ÜBER UNS MEGA MENU
========================================================= */

.tkc-mega-menu-about {
    width: 650px;

    padding: 17px;

    border:
        1px solid rgba(38,61,79,.11);

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(16,44,67,.16);
}

.tkc-mega-about-grid {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 9px;
}

.tkc-mega-about-card {
    padding: 20px;

    border:
        1px solid rgba(38,61,79,.09);

    border-radius: 12px;

    background: #faf9f7;

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

.tkc-mega-about-card:hover {
    transform: translateY(-2px);

    border-color:
        rgba(252,128,7,.25);

    background: #fff;
}

.tkc-mega-about-label {
    display: block;

    margin-bottom: 8px;

    color: var(--tkc-orange);

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;
}

.tkc-mega-about-card strong {
    display: block;

    margin-bottom: 7px;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1.12;
}

.tkc-mega-about-card small {
    display: block;

    min-height: 41px;

    color: var(--tkc-muted);

    font-size: 9px;

    line-height: 1.5;
}

.tkc-mega-about-link {
    display: block;

    margin-top: 15px;

    color: var(--tkc-orange);

    font-size: 9px;
    font-weight: 800;
}

.tkc-mega-about-card-memorial {
    background: #f5f0e8;
}

.tkc-mega-about-card-law {
    background:
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );
}

.tkc-mega-about-card-law strong {
    color: #fff;
}

.tkc-mega-about-card-law small {
    color:
        rgba(255,255,255,.61);
}


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

.tkc-header-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 46px;

    padding: 0 19px;

    border-radius: 9px;

    background: var(--tkc-orange);

    color: #fff;

    font-size: 12px;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 8px 22px rgba(252,128,7,.20);

    transition:
        background .2s ease,
        transform .2s ease;
}

.tkc-header-cta:hover {
    background: var(--tkc-orange-hover);

    transform: translateY(-1px);
}


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

.tkc-mobile-menu {
    display: none;

    position: relative;
}

.tkc-mobile-menu > summary {
    list-style: none;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    cursor: pointer;

    border:
        1px solid var(--tkc-border);

    border-radius: 10px;

    background: #fff;
}

.tkc-mobile-menu > summary::-webkit-details-marker {
    display: none;
}

.tkc-mobile-menu > summary::marker {
    content: "";
}

.tkc-mobile-menu-icon {
    width: 20px;

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.tkc-mobile-menu-icon i {
    display: block;

    width: 100%;
    height: 2px;

    border-radius: 999px;

    background: var(--tkc-blue-dark);

    transition:
        transform .25s ease,
        opacity .25s ease;
}

.tkc-mobile-menu[open]
.tkc-mobile-menu-icon i:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

.tkc-mobile-menu[open]
.tkc-mobile-menu-icon i:nth-child(2) {
    opacity: 0;
}

.tkc-mobile-menu[open]
.tkc-mobile-menu-icon i:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}


/* MOBILE PANEL */

.tkc-mobile-menu-panel {
    position: absolute;

    top: calc(100% + 13px);
    right: 0;

    width:
        min(380px,calc(100vw - 32px));

    overflow: hidden;

    border:
        1px solid rgba(38,61,79,.12);

    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 25px 70px rgba(16,44,67,.20);
}

.tkc-mobile-menu-scroll {
    max-height: 65vh;

    overflow-y: auto;

    padding: 10px 20px;
}

.tkc-mobile-submenu {
    border-bottom:
        1px solid rgba(38,61,79,.09);
}

.tkc-mobile-submenu > summary {
    list-style: none;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 3px;

    cursor: pointer;

    color: var(--tkc-blue-dark);

    font-size: 13px;
    font-weight: 800;
}

.tkc-mobile-submenu > summary::-webkit-details-marker {
    display: none;
}

.tkc-mobile-submenu > summary::marker {
    content: "";
}

.tkc-mobile-submenu > summary span:last-child {
    color: var(--tkc-orange);

    font-size: 18px;

    transition: transform .2s ease;
}

.tkc-mobile-submenu[open]
> summary span:last-child {
    transform: rotate(45deg);
}

.tkc-mobile-submenu-links {
    padding:
        0 3px 14px 14px;
}

.tkc-mobile-submenu-links a {
    display: block;

    padding: 8px 0;

    color: var(--tkc-muted);

    font-size: 11px;
}

.tkc-mobile-main-links > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 15px 3px;

    border-bottom:
        1px solid rgba(38,61,79,.08);

    color: var(--tkc-blue-dark);

    font-size: 13px;
    font-weight: 700;
}

.tkc-mobile-main-links > a:last-child {
    border-bottom: 0;
}

.tkc-mobile-main-links > a span:last-child {
    color: var(--tkc-orange);
}

.tkc-mobile-menu-bottom {
    padding: 20px;

    background:
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );
}

.tkc-mobile-menu-bottom p {
    margin: 0 0 13px;

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

    font-size: 10px;
}

.tkc-mobile-menu-bottom > a {
    min-height: 45px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 15px;

    border-radius: 8px;

    background: var(--tkc-orange);

    color: #fff;

    font-size: 11px;
    font-weight: 800;
}
/* =========================================================
   HERO
========================================================= */

.tkc-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 0;
    color: #fff;
    background:
        radial-gradient(
            circle at 84% 15%,
            rgba(252,128,7,.12),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--tkc-blue-dark),
            var(--tkc-blue-mid) 55%,
            var(--tkc-blue-dark)
        );
}

.tkc-hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255,255,255,.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.045) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
}

.tkc-hero-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
    gap: 76px;
    align-items: center;
}

.tkc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.88);
}

.tkc-hero-badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tkc-orange);
}

.tkc-hero h1 {
    max-width: 690px;
    margin: 0 0 20px;
    font-size: clamp(58px,5.7vw,92px);
    line-height: .94;
    letter-spacing: -.055em;
    color: #fff;
}

.tkc-hero h1 span {
    position: relative;
    display: inline-block;
    color: var(--tkc-orange);
}

.tkc-hero h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 4px;
    border-radius: 999px;
    background: var(--tkc-orange);
    transform: rotate(-1deg);
}

.tkc-lead {
    margin: 32px 0 10px;
    font-size: 22px;
    font-weight: 800;
}

.tkc-hero-text {
    max-width: 620px;
    margin: 0 0 30px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.76);
}

.tkc-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.tkc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
}

.tkc-button-primary {
    background: var(--tkc-orange);
    color: #fff;
}

.tkc-button-primary:hover {
    background: var(--tkc-orange-hover);
}

.tkc-button-secondary {
    border: 1px solid rgba(255,255,255,.40);
    background: rgba(255,255,255,.04);
    color: #fff;
}

.tkc-certificates {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================================================
   HERO – SIEGEL
========================================================= */

.tkc-hero-seals {
    margin-top: 28px;
}

.tkc-hero-seals-label {
    margin: 0 0 12px;
    color: rgba(255,255,255,.52);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.tkc-hero-seals-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.tkc-hero-seal {
    height: 74px;
    min-width: 76px;

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

    padding: 8px 11px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;

    background: rgba(255,255,255,.94);

    box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.tkc-hero-seal img {
    display: block;
    width: auto;
    max-width: 105px;
    height: 58px;
    object-fit: contain;
}

.tkc-cert-tags span {
    padding: 5px 9px;
    border-radius: 5px;
    background: rgba(255,255,255,.10);
    font-size: 11px;
    font-weight: 700;
}

.tkc-hero-visual,
.tkc-team-photo {
    position: relative;
}

.tkc-team-photo {
    min-height: 520px;
}

.tkc-hero-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
}

.tkc-photo-overlay {
    position: absolute;
    inset: 0;
    height: 520px;
    pointer-events: none;
    border-radius: 28px;
    background:
        linear-gradient(
            180deg,
            transparent 65%,
            rgba(16,44,67,.08)
        );
}

.tkc-experience-card {
    position: absolute;
    left: 28px;
    bottom: -30px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    min-width: 220px;
    background: #fff;
    color: var(--tkc-blue-dark);
    border-radius: 17px;
    box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

.tkc-experience-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--tkc-blue-dark);
    color: #fff;
}

.tkc-experience-card strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.tkc-experience-card span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #65717c;
}

@media (max-width: 760px) {

    .tkc-hero-seals-row {
        gap: 9px;
    }

    .tkc-hero-seal {
        height: 65px;
        min-width: 68px;
        padding: 7px 9px;
    }

    .tkc-hero-seal img {
        max-width: 88px;
        height: 49px;
    }

}

/* =========================================================
   TRUSTBAR
========================================================= */

.tkc-trustbar {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 85px;
    padding: 28px 0 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.tkc-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 25px;
    border-right: 1px solid rgba(255,255,255,.13);
}

.tkc-trust-item:last-child {
    border-right: 0;
}

.tkc-trust-marker {
    position: relative;
    min-width: 44px;
    padding-top: 11px;
    color: var(--tkc-orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.02em;
}

.tkc-trust-marker::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--tkc-orange);
}

.tkc-trust-item strong {
    display: block;
    font-size: 13px;
}

.tkc-trust-item span {
    font-size: 11px;
    color: rgba(255,255,255,.57);
}

.tkc-trust-item > div:last-child {
    padding-top: 1px;
}

.tkc-trust-item strong {
    letter-spacing: -.01em;
}



/* =========================================================
   ALLGEMEINE SECTION TYPO
========================================================= */

.tkc-section-kicker {
    margin: 0 0 10px;
    color: var(--tkc-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}


/* =========================================================
   LEISTUNGEN
========================================================= */

.tkc-services {
    padding: 100px 0 110px;
    background: var(--tkc-cream);
}

.tkc-services-head {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 52px;
}

.tkc-services h2,
.tkc-pricing h2,
.tkc-team h2,
.tkc-testimonials h2,
.tkc-home-knowledge h2,
.tkc-related-posts h2,
.tkc-knowledge-posts h2 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(44px,4vw,64px);
    line-height: 1.02;
    letter-spacing: -.04em;
    color: var(--tkc-blue-dark);
}

.tkc-services h2 span,
.tkc-team h2 span,
.tkc-testimonials h2 span,
.tkc-home-knowledge h2 span,
.tkc-related-posts h2 span,
.tkc-knowledge-posts h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-services-intro p {
    color: var(--tkc-muted);
    line-height: 1.75;
}

.tkc-services-intro a,
.tkc-text-link {
    color: var(--tkc-orange);
    font-weight: 800;
    font-size: 13px;
}

.tkc-services-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px;
}

.tkc-service-card,
.tkc-philosophy-card {
    min-width: 0;
    min-height: 390px;
    padding: 30px;
    border-radius: 18px;
}

.tkc-service-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.90);
    border: 1px solid rgba(38,61,79,.10);
}

.tkc-service-icon {
    position: relative;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 31px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(247,244,238,.96)
        );
    box-shadow:
        0 10px 28px rgba(38,61,79,.055),
        inset 0 1px 0 rgba(255,255,255,.85);
}

.tkc-service-icon::after {
    content: "";
    position: absolute;
    right: 7px;
    bottom: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tkc-orange);
    box-shadow: 0 0 0 4px rgba(252,128,7,.10);
}

.tkc-service-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: var(--tkc-blue-dark);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tkc-service-icon .tkc-service-icon-accent {
    fill: var(--tkc-orange);
    stroke: none;
}

.tkc-service-card h3 {
    margin: 0 0 15px;
    font-family: Georgia,serif;
    font-size: 22px;
    line-height: 1.12;
    color: var(--tkc-blue-dark);
    overflow-wrap: anywhere;
}

.tkc-service-card p {
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.7;
}

.tkc-service-card a {
    margin-top: auto;
    color: var(--tkc-orange);
    font-weight: 800;
    font-size: 13px;
}

.tkc-philosophy-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background:
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );
}

.tkc-philosophy-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
}

.tkc-philosophy-card > * {
    position: relative;
    z-index: 2;
}

.tkc-philosophy-line {
    width: 42px;
    height: 3px;
    margin-bottom: 24px;
    background: var(--tkc-orange);
}

.tkc-philosophy-kicker {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
}

.tkc-philosophy-card h3 {
    margin: 0 0 18px;
    font-family: Georgia,serif;
    font-size: 28px;
    line-height: 1.08;
}

.tkc-philosophy-card h3 span {
    color: var(--tkc-orange);
}

.tkc-philosophy-card > p:not(.tkc-philosophy-kicker) {
    color: rgba(255,255,255,.68);
    font-size: 14px;
}

.tkc-philosophy-card a {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   PREISE
========================================================= */

.tkc-pricing {
    padding: 110px 0;
    background: #fff;
}

.tkc-pricing-layout {
    display: grid;
    grid-template-columns: .72fr 1.65fr;
    gap: 70px;
}

.tkc-pricing-intro {
    padding-top: 18px;
}

.tkc-pricing-description {
    max-width: 370px;
    margin: 24px 0 20px;
    color: var(--tkc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.tkc-pricing-note {
    display: flex;
    gap: 14px;
    margin-top: 46px;
    padding: 20px;
    border: 1px solid var(--tkc-border);
    border-radius: 14px;
    background: #fafafa;
}

.tkc-pricing-note-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(252,128,7,.11);
    color: var(--tkc-orange);
    font-weight: 800;
}

.tkc-pricing-note p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.6;
}

.tkc-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
}

.tkc-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 30px 27px;
    border: 1px solid rgba(38,61,79,.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(38,61,79,.04);
}

.tkc-price-card-featured {
    transform: translateY(-12px);
    border-color: transparent;
    color: #fff;
    background:
        linear-gradient(
            145deg,
            #102c43,
            #173e5b
        );
    box-shadow: 0 25px 55px rgba(16,44,67,.22);
}

.tkc-price-label {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 11px;
    border-radius: 6px;
    background: var(--tkc-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.tkc-price-name {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 800;
}

.tkc-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.tkc-price span {
    font-size: 13px;
    color: var(--tkc-muted);
}

.tkc-price strong {
    font-family: Georgia,serif;
    font-size: 40px;
    line-height: 1;
    color: var(--tkc-blue-dark);
}

.tkc-price-card-featured .tkc-price strong {
    color: #fff;
}

.tkc-price-card-featured .tkc-price span,
.tkc-price-card-featured .tkc-price-meta {
    color: rgba(255,255,255,.60);
}

.tkc-price-meta {
    margin: 7px 0 0;
    color: var(--tkc-muted);
    font-size: 11px;
}

.tkc-price-divider {
    height: 1px;
    margin: 24px 0;
    background: rgba(38,61,79,.11);
}

.tkc-price-card-featured .tkc-price-divider {
    background: rgba(255,255,255,.14);
}

.tkc-price-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.tkc-price-features li {
    position: relative;
    margin: 0 0 13px;
    padding-left: 23px;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.5;
}

.tkc-price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tkc-orange);
    font-weight: 800;
}

.tkc-price-card-featured .tkc-price-features li {
    color: rgba(255,255,255,.73);
}

.tkc-price-button {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 15px;
    border: 1px solid rgba(38,61,79,.34);
    border-radius: 9px;
    color: var(--tkc-blue-dark);
    font-size: 12px;
    font-weight: 800;
}

.tkc-price-card-featured .tkc-price-button {
    border-color: rgba(255,255,255,.25);
    color: #fff;
}

.tkc-price-button-orange {
    border-color: var(--tkc-orange) !important;
    background: var(--tkc-orange);
    color: #fff !important;
}

.tkc-addons {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 26px;
    border: 1px solid var(--tkc-border);
    border-radius: 14px;
    background: #faf9f7;
}

.tkc-addons-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tkc-addons-title > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(252,128,7,.11);
    color: var(--tkc-orange);
    font-size: 20px;
}

.tkc-addons-title strong {
    display: block;
    font-size: 13px;
}

.tkc-addons-title p {
    margin: 3px 0 0;
    color: var(--tkc-muted);
    font-size: 11px;
}

.tkc-addon-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.tkc-addon-list span {
    padding: 6px 10px;
    border: 1px solid rgba(38,61,79,.11);
    border-radius: 999px;
    background: #fff;
    color: var(--tkc-muted);
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   KONTEXT
========================================================= */

.tkc-context {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(252,128,7,.08),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #102c43,
            #153a56
        );
    color: #fff;
}

.tkc-context-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.tkc-context-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 95px;
}

.tkc-context-kicker {
    margin: 0 0 12px;
    color: var(--tkc-orange);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.tkc-context-intro h2 {
    margin: 0;
    max-width: 500px;
    font-family: Georgia,serif;
    font-size: clamp(46px,4vw,66px);
    line-height: 1;
    letter-spacing: -.04em;
}

.tkc-context-intro h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-context-intro > p:not(.tkc-context-kicker) {
    max-width: 470px;
    margin: 25px 0 24px;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.75;
}

.tkc-context-intro a {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.tkc-context-items {
    border-top: 1px solid rgba(255,255,255,.15);
}

.tkc-context-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.tkc-context-number {
    padding-top: 4px;
    color: var(--tkc-orange);
    font-family: Georgia,serif;
    font-size: 18px;
}

.tkc-context-item h3 {
    margin: 0 0 8px;
    font-family: Georgia,serif;
    font-size: 25px;
    font-weight: 500;
}

.tkc-context-item p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TEAM
========================================================= */

.tkc-team {
    padding: 110px 0;
    background: #f7f4ee;
}

.tkc-team-head {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 55px;
}

.tkc-team-intro {
    max-width: 500px;
}

.tkc-team-intro p {
    margin: 0 0 18px;
    color: var(--tkc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.tkc-team-intro a {
    color: var(--tkc-orange);
    font-size: 13px;
    font-weight: 800;
}

.tkc-team-grid {
    display: grid;
    grid-template-columns: 1.28fr 1fr 1fr;
    grid-template-rows: repeat(2,290px);
    gap: 18px;
}

.tkc-team-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: var(--tkc-blue-dark);
    box-shadow: 0 15px 40px rgba(16,44,67,.08);
}

.tkc-team-card-featured {
    grid-row: 1 / 3;
}

.tkc-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .45s ease;
}

.tkc-team-card:hover img {
    transform: scale(1.025);
}

.tkc-team-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 42%,
            rgba(10,29,43,.16) 57%,
            rgba(10,29,43,.92) 100%
        );
}

.tkc-team-card-featured .tkc-team-shade {
    background:
        linear-gradient(
            180deg,
            transparent 38%,
            rgba(10,29,43,.14) 55%,
            rgba(10,29,43,.94) 100%
        );
}

.tkc-team-card-content {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: 22px;
    color: #fff;
}

.tkc-team-card-featured .tkc-team-card-content {
    left: 34px;
    right: 34px;
    bottom: 34px;
}

.tkc-team-role {
    margin: 0 0 7px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    line-height: 1.45;
}

.tkc-team-card h3 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.025em;
}

.tkc-team-card-featured h3 {
    font-size: 45px;
}

.tkc-team-featured-text {
    max-width: 390px;
    margin: 15px 0 0;
    color: rgba(255,255,255,.70);
    font-size: 13px;
    line-height: 1.65;
}

.tkc-team-featured-tag {
    position: absolute;
    z-index: 4;
    top: 20px;
    left: 20px;
    padding: 7px 11px;
    border-radius: 7px;
    background: rgba(255,255,255,.91);
    color: var(--tkc-blue-dark);
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.tkc-team-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid rgba(38,61,79,.12);
}

.tkc-team-bottom-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tkc-team-bottom-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--tkc-orange);
}

.tkc-team-bottom p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 12px;
}

.tkc-team-bottom p strong {
    color: var(--tkc-blue-dark);
}

.tkc-team-bottom > a {
    color: var(--tkc-orange);
    font-size: 12px;
    font-weight: 800;
}

/* =========================================================
   NETZWERK & RECHTLICHE EXPERTISE
========================================================= */

.tkc-network {
    position: relative;

    padding: 110px 0 80px;

    background: #f6f1e9;
}

.tkc-network-head {
    display: grid;

    grid-template-columns: 1.12fr .88fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 52px;
}

.tkc-network h2 {
    margin: 0;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(44px,4vw,64px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.04em;
}

.tkc-network h2 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-network-intro {
    max-width: 500px;
}

.tkc-network-intro p {
    margin: 0 0 18px;

    color: var(--tkc-muted);

    font-size: 15px;

    line-height: 1.75;
}

.tkc-network-intro > a {
    color: var(--tkc-orange);

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   NETWORK GRID
========================================================= */

.tkc-network-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1.55fr)
        minmax(300px,.65fr);

    gap: 20px;
}


/* =========================================================
   KANZLEI CARD
========================================================= */

.tkc-law-card {
    position: relative;

    overflow: hidden;

    min-height: 510px;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 85% 12%,
            rgba(252,128,7,.14),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );

    color: #fff;

    box-shadow:
        0 26px 65px rgba(16,44,67,.14);
}

.tkc-law-card-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 42px 42px;
}

.tkc-law-card-content {
    position: relative;

    z-index: 2;

    padding: 42px;
}

.tkc-law-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 40px;
}

.tkc-law-label,
.tkc-law-external {
    padding: 7px 10px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .07em;
}

.tkc-law-label {
    border:
        1px solid rgba(252,128,7,.34);

    background:
        rgba(252,128,7,.10);

    color: var(--tkc-orange);
}

.tkc-law-external {
    border:
        1px solid rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.62);
}


/* BRAND */

.tkc-law-brand {
    display: flex;
    align-items: center;

    margin-bottom: 25px;
}

.tkc-law-brand-logo {
    width: 260px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-bottom: 4px;

    overflow: visible;
}

.tkc-law-brand-logo img {
    display: block;

    width: 240px;
    height: auto;

    max-width: 100%;
    max-height: none;

    object-fit: contain;
    object-position: left center;

    transform: none;

    background: transparent;
}


/* TEXT */

.tkc-law-card h3 {
    max-width: 650px;

    margin: 0 0 19px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px,3.5vw,53px);

    font-weight: 500;

    line-height: 1.02;

    letter-spacing: -.035em;
}

.tkc-law-card h3 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-law-text {
    max-width: 650px;

    margin: 0 0 28px;

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

    font-size: 13px;

    line-height: 1.75;
}


/* PERSON */

.tkc-law-person {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}

.tkc-law-person-line {
    width: 34px;
    height: 2px;

    flex: 0 0 34px;

    background: var(--tkc-orange);
}

.tkc-law-person strong {
    display: block;

    font-size: 11px;
}

.tkc-law-person span {
    display: block;

    margin-top: 2px;

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

    font-size: 9px;
}


/* SERVICES */

.tkc-law-services {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 29px;
}

.tkc-law-services span {
    padding: 6px 10px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 999px;

    background:
        rgba(255,255,255,.05);

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

    font-size: 9px;
}


/* BUTTON */

.tkc-law-button {
    display: inline-flex;

    align-items: center;

    gap: 16px;

    min-height: 47px;

    padding: 0 17px;

    border-radius: 9px;

    background: var(--tkc-orange);

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.tkc-law-button:hover {
    background: var(--tkc-orange-hover);

    transform: translateY(-1px);
}

.tkc-law-button span {
    font-size: 15px;
}


/* =========================================================
   NETWORK CARD
========================================================= */

.tkc-network-card {
    min-height: 510px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 38px;

    border:
        1px solid rgba(38,61,79,.11);

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 14px 35px rgba(38,61,79,.035);
}

.tkc-network-card-kicker {
    margin: 0 0 13px !important;

    color: var(--tkc-orange) !important;

    font-size: 9px !important;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .1em;
}

.tkc-network-card h3 {
    margin: 0 0 22px;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -.03em;
}

.tkc-network-card h3 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-network-card p {
    color: var(--tkc-muted);

    font-size: 12px;

    line-height: 1.72;
}

.tkc-network-card-bottom {
    padding-top: 20px;

    border-top:
        1px solid rgba(38,61,79,.12);
}

.tkc-network-card-bottom a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: var(--tkc-blue-dark);

    font-size: 11px;
    font-weight: 800;
}

.tkc-network-card-bottom a span {
    color: var(--tkc-orange);

    font-size: 15px;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.tkc-network-disclaimer {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 18px;

    padding: 16px 19px;

    border:
        1px solid rgba(38,61,79,.10);

    border-radius: 11px;

    background: rgba(255,255,255,.72);
}

.tkc-network-disclaimer > span {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    flex: 0 0 27px;

    border-radius: 50%;

    background:
        rgba(252,128,7,.10);

    color: var(--tkc-orange);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 13px;
    font-style: italic;
}

.tkc-network-disclaimer p {
    margin: 0;

    color: var(--tkc-muted);

    font-size: 10px;

    line-height: 1.55;
}

.tkc-network-disclaimer strong {
    color: var(--tkc-blue-dark);
}

/* =========================================================
   KUNDENSTIMMEN
========================================================= */

.tkc-testimonials {
    padding: 95px 0 115px;
    background: #ffffff;
}

.tkc-testimonials-head {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 50px;
}

.tkc-testimonials-intro {
    max-width: 500px;
}

.tkc-testimonials-intro > p {
    margin: 0 0 20px;
    color: var(--tkc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.tkc-testimonial-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--tkc-blue-dark);
    font-size: 11px;
    font-weight: 700;
}
.tkc-testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--tkc-blue-dark);

    font-size: 11px;
    font-weight: 700;
}

.tkc-testimonial-rating-dot {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: var(--tkc-orange);
}


/* Kundenlogos */

.tkc-client-logos {
    display: grid;
    grid-template-columns: repeat(8,minmax(0,1fr));
    align-items: center;
    gap: 18px;
    margin-bottom: 42px;
    padding: 30px 0;
    border-top: 1px solid var(--tkc-border);
    border-bottom: 1px solid var(--tkc-border);
}

.tkc-client-logo {
    position: relative;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tkc-client-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    transform-origin: center;
}

.tkc-client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.tkc-client-logo:nth-child(1) img {
    transform: scale(1.55);
}

.tkc-client-logo:nth-child(2) img {
    transform: scale(1.85);
}

.tkc-client-logo:nth-child(3) img {
    transform: scale(1.75);
}

.tkc-client-logo:nth-child(4) img {
    transform: scale(1.65);
}

.tkc-client-logo:nth-child(5) img {
    transform: scale(1.65);
}

.tkc-client-logo:nth-child(6) img {
    transform: scale(1.85);
}

.tkc-client-logo:nth-child(7) img {
    transform: scale(1.85);
}

.tkc-client-logo:nth-child(8) img {
    transform: scale(1.10);
}


/* Testimonial Cards */

.tkc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 18px;
}

.tkc-testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 430px;
    padding: 29px;
    overflow: hidden;
    border: 1px solid rgba(38,61,79,.11);
    border-radius: 19px;
    background: #faf9f7;
    box-shadow: 0 12px 35px rgba(38,61,79,.035);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.tkc-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(252,128,7,.28);
    box-shadow: 0 20px 45px rgba(38,61,79,.07);
}

.tkc-quote-mark {
    position: absolute;
    top: 7px;
    right: 18px;
    color: rgba(252,128,7,.14);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 88px;
    line-height: 1;
}

.tkc-testimonial-logo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
    overflow: hidden;
}

.tkc-testimonial-logo img {
    display: block;
    width: 190px;
    height: 90px;
    object-fit: contain;
    transform-origin: left center;
}

.tkc-testimonial-card:nth-child(1) .tkc-testimonial-logo img {
    transform: scale(1.45);
}

.tkc-testimonial-card:nth-child(2) .tkc-testimonial-logo img {
    transform: scale(1.75);
}

.tkc-testimonial-card:nth-child(3) .tkc-testimonial-logo img {
    transform: scale(1.55);
}

.tkc-testimonial-card:nth-child(4) .tkc-testimonial-logo img {
    transform: scale(1.55);
}

.tkc-testimonial-card:nth-child(5) .tkc-testimonial-logo img {
    transform: scale(1.55);
}

.tkc-testimonial-card:nth-child(6) .tkc-testimonial-logo img {
    transform: scale(1.75);
}

.tkc-testimonial-card:nth-child(7) .tkc-testimonial-logo img {
    transform: scale(1.70);
}

.tkc-testimonial-card:nth-child(8) .tkc-testimonial-logo img {
    transform: scale(1.05);
}

.tkc-testimonial-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    line-height: 1.13;
    letter-spacing: -.02em;
}

.tkc-testimonial-text {
    position: relative;
    z-index: 2;
    margin: 0 0 30px;
    color: var(--tkc-muted);
    font-size: 13px;
    line-height: 1.72;
}

.tkc-testimonial-company {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(38,61,79,.10);
}

.tkc-testimonial-company strong {
    display: block;
    color: var(--tkc-blue-dark);
    font-size: 11px;
    line-height: 1.45;
}

.tkc-testimonial-company span {
    display: block;
    margin-top: 4px;
    color: var(--tkc-muted);
    font-size: 10px;
}

.tkc-testimonial-card-dark {
    border-color: transparent;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(252,128,7,.12),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );
}

.tkc-testimonial-card-dark .tkc-quote-mark {
    color: rgba(255,255,255,.08);
}

.tkc-testimonial-card-dark .tkc-testimonial-text {
    color: rgba(255,255,255,.70);
}

.tkc-testimonial-card-dark .tkc-testimonial-company {
    border-color: rgba(255,255,255,.13);
}

.tkc-testimonial-card-dark .tkc-testimonial-company strong {
    color: #fff;
}

.tkc-testimonial-card-dark .tkc-testimonial-company span {
    color: rgba(255,255,255,.55);
}

.tkc-testimonial-card-dark .tkc-testimonial-logo {
    width: 150px;
    height: 92px;
    padding: 8px;
    border-radius: 10px;
    background: #fff;
}

.tkc-testimonial-card-accent {
    border-color: rgba(252,128,7,.26);
    background: #fff8f1;
}

.tkc-testimonials-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 35px;
    padding: 25px 0 0;
    border-top: 1px solid var(--tkc-border);
}

.tkc-testimonials-bottom p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 12px;
}

.tkc-testimonials-bottom p strong {
    color: var(--tkc-blue-dark);
}

.tkc-testimonials-bottom > a {
    color: var(--tkc-orange);
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   STARTSEITE – WISSEN
========================================================= */

.tkc-home-knowledge {
    padding: 110px 0;
    background: var(--tkc-cream);
}

.tkc-home-knowledge-head {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 52px;
}

.tkc-home-knowledge-intro {
    max-width: 500px;
}

.tkc-home-knowledge-intro p {
    margin: 0 0 18px;
    color: var(--tkc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.tkc-home-knowledge-intro > a {
    color: var(--tkc-orange);
    font-size: 13px;
    font-weight: 800;
}

.tkc-home-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}

.tkc-home-knowledge-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(38,61,79,.045);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.tkc-home-knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(38,61,79,.09);
}

.tkc-home-knowledge-image {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background: #e6e1da;
}

.tkc-home-knowledge-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.tkc-home-knowledge-card:hover .tkc-home-knowledge-image img {
    transform: scale(1.035);
}

.tkc-home-knowledge-category {
    position: absolute;
    left: 18px;
    bottom: 17px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--tkc-blue-dark);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
}

.tkc-home-post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(252,128,7,.17),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );
    color: #fff;
}

.tkc-home-post-placeholder span {
    color: var(--tkc-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .18em;
}

.tkc-home-post-placeholder strong {
    margin-top: 6px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 28px;
    font-weight: 500;
}

.tkc-home-knowledge-content {
    padding: 28px;
}

.tkc-home-knowledge-date {
    margin: 0 0 10px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.tkc-home-knowledge-card h3 {
    margin: 0 0 14px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -.025em;
}

.tkc-home-knowledge-card h3 a:hover {
    color: var(--tkc-orange);
}

.tkc-home-knowledge-excerpt {
    margin: 0 0 23px;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.7;
}

.tkc-home-knowledge-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--tkc-orange);
    font-size: 11px;
    font-weight: 800;
}

.tkc-home-knowledge-link span {
    font-size: 16px;
}

.tkc-home-knowledge-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 34px;
    padding-top: 25px;
    border-top: 1px solid rgba(38,61,79,.12);
}

.tkc-home-knowledge-bottom > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tkc-home-knowledge-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--tkc-orange);
}

.tkc-home-knowledge-bottom p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 12px;
}

.tkc-home-knowledge-bottom p strong {
    color: var(--tkc-blue-dark);
}

.tkc-home-knowledge-bottom > a {
    flex: 0 0 auto;
    color: var(--tkc-orange);
    font-size: 12px;
    font-weight: 800;
}

.tkc-home-knowledge-empty {
    padding: 35px;
    border: 1px solid var(--tkc-border);
    border-radius: 16px;
    background: #fff;
    text-align: center;
}

.tkc-home-knowledge-empty p {
    margin: 0;
    color: var(--tkc-muted);
}


/* =========================================================
   FAQ
========================================================= */

.tkc-faq {
    padding: 110px 0;
    background: #fff;
}

.tkc-faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 95px;
    align-items: start;
}

.tkc-faq-intro {
    position: sticky;
    top: 30px;
}

.tkc-faq-intro h2 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(44px,4vw,64px);
    line-height: 1.02;
    letter-spacing: -.04em;
    font-weight: 500;
}

.tkc-faq-intro h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-faq-intro > p:not(.tkc-section-kicker) {
    max-width: 410px;
    margin: 25px 0 20px;
    color: var(--tkc-muted);
    font-size: 15px;
    line-height: 1.75;
}

.tkc-faq-intro > a {
    color: var(--tkc-orange);
    font-size: 12px;
    font-weight: 800;
}

.tkc-faq-list {
    border-top: 1px solid var(--tkc-border);
}

.tkc-faq-item {
    border-bottom: 1px solid var(--tkc-border);
}

.tkc-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    padding: 27px 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 500;
}

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

.tkc-faq-item summary::marker {
    content: "";
}

.tkc-faq-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(38,61,79,.18);
    border-radius: 50%;
    color: var(--tkc-orange);
    font-family: Arial,Helvetica,sans-serif;
    font-size: 21px;
    line-height: 1;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.tkc-faq-item[open] .tkc-faq-icon {
    transform: rotate(45deg);
    background: var(--tkc-orange);
    border-color: var(--tkc-orange);
    color: #fff;
}

.tkc-faq-answer {
    max-width: 720px;
    padding: 0 70px 30px 0;
}

.tkc-faq-answer p {
    margin: 0 0 14px;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-faq-answer p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   KONTAKT
========================================================= */

.tkc-contact {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(252,128,7,.11),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #102c43,
            #153a56
        );
    color: #fff;
}

.tkc-contact-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
}

.tkc-contact-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.tkc-contact-kicker {
    margin: 0 0 13px;
    color: var(--tkc-orange);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tkc-contact-content h2 {
    margin: 0;
    max-width: 650px;
    color: #fff;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(48px,4.5vw,68px);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 500;
}

.tkc-contact-content h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-contact-lead {
    max-width: 560px;
    margin: 27px 0 35px;
    color: rgba(255,255,255,.70);
    font-size: 15px;
    line-height: 1.8;
}

.tkc-contact-benefits {
    max-width: 560px;
    border-top: 1px solid rgba(255,255,255,.13);
}

.tkc-contact-benefit {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.tkc-contact-benefit > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(252,128,7,.13);
    color: var(--tkc-orange);
    font-size: 12px;
    font-weight: 800;
}

.tkc-contact-benefit strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
}

.tkc-contact-benefit p {
    margin: 0;
    color: rgba(255,255,255,.56);
    font-size: 11px;
    line-height: 1.55;
}


/* Kontaktbox */

.tkc-contact-box {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    color: var(--tkc-blue-dark);
    box-shadow: 0 35px 80px rgba(0,0,0,.20);
}

.tkc-contact-box-top {
    padding: 35px 38px 27px;
    border-bottom: 1px solid var(--tkc-border);
    background: #faf9f7;
}

.tkc-contact-box-top > p {
    margin: 0 0 8px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.tkc-contact-box-top h3 {
    margin: 0 0 10px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 500;
}

.tkc-contact-box-top > span {
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.65;
}


/* Formular */

.tkc-contact-form {
    padding: 32px 38px 37px;
}

.tkc-form-row {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 15px;
}

.tkc-form-field {
    margin-bottom: 17px;
}

.tkc-form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--tkc-blue-dark);
    font-size: 10px;
    font-weight: 800;
}

.tkc-form-field input,
.tkc-form-field select,
.tkc-form-field textarea {
    width: 100%;
    border: 1px solid rgba(38,61,79,.15);
    border-radius: 9px;
    background: #fff;
    color: var(--tkc-blue-dark);
    outline: none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.tkc-form-field input,
.tkc-form-field select {
    height: 47px;
    padding: 0 13px;
}

.tkc-form-field textarea {
    min-height: 125px;
    padding: 12px 13px;
    resize: vertical;
}

.tkc-form-field input::placeholder,
.tkc-form-field textarea::placeholder {
    color: #9aa2a9;
}

.tkc-form-field input:focus,
.tkc-form-field select:focus,
.tkc-form-field textarea:focus {
    border-color: rgba(252,128,7,.65);
    box-shadow: 0 0 0 3px rgba(252,128,7,.08);
}

.tkc-form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 3px 0 20px;
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.5;
}

.tkc-form-privacy input {
    margin-top: 2px;
}

.tkc-contact-submit {
    width: 100%;
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 9px;
    background: var(--tkc-orange);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(252,128,7,.20);
    transition:
        background .2s ease,
        transform .2s ease;
}

.tkc-contact-submit:hover {
    background: var(--tkc-orange-hover);
    transform: translateY(-1px);
}

.tkc-contact-submit span {
    font-size: 16px;
}

.tkc-form-note {
    margin: 13px 0 0;
    color: #8b969f;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}


/* =========================================================
   WISSENSSEITE / HOME.PHP
========================================================= */

.tkc-knowledge-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 82px;
    color: #fff;
    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(252,128,7,.12),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #102c43,
            #153a56
        );
}

.tkc-knowledge-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
}

.tkc-knowledge-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: end;
}

.tkc-knowledge-kicker {
    margin: 0 0 13px;
    color: var(--tkc-orange);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tkc-knowledge-hero h1 {
    margin: 0;
    max-width: 720px;
    color: #fff;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(54px,5.2vw,80px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 500;
}

.tkc-knowledge-hero h1 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-knowledge-hero-text {
    max-width: 480px;
}

.tkc-knowledge-hero-text > p {
    margin: 0 0 24px;
    color: rgba(255,255,255,.69);
    font-size: 15px;
    line-height: 1.8;
}

.tkc-knowledge-hero-note {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.88);
    font-size: 11px;
}

.tkc-knowledge-hero-note span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--tkc-orange);
}


/* Kategorie-Navigation */

.tkc-knowledge-categories {
    background: #fff;
    border-bottom: 1px solid var(--tkc-border);
}

.tkc-category-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 21px 0;
    overflow-x: auto;
}

.tkc-category-link {
    flex: 0 0 auto;
    padding: 8px 13px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--tkc-muted);
    font-size: 11px;
    font-weight: 700;
}

.tkc-category-link:hover {
    color: var(--tkc-orange);
    border-color: rgba(252,128,7,.25);
}

.tkc-category-link-active {
    background: var(--tkc-blue-dark);
    color: #fff;
}


/* Hauptbeitrag */

.tkc-featured-post {
    padding: 70px 0 35px;
    background: #fff;
}

.tkc-featured-post-card {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    overflow: hidden;
    min-height: 510px;
    border: 1px solid rgba(38,61,79,.11);
    border-radius: 24px;
    background: #faf9f7;
    box-shadow: 0 24px 60px rgba(38,61,79,.07);
}

.tkc-featured-post-image {
    display: block;
    min-height: 510px;
    overflow: hidden;
    background: var(--tkc-blue-dark);
}

.tkc-featured-post-image img {
    width: 100%;
    height: 100%;
    min-height: 510px;
    object-fit: cover;
}

.tkc-featured-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
}

.tkc-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tkc-post-category {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(252,128,7,.10);
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.tkc-post-date {
    color: var(--tkc-muted);
    font-size: 10px;
}

.tkc-featured-label {
    margin: 0 0 10px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.tkc-featured-post-content h2 {
    margin: 0 0 20px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(35px,3.2vw,50px);
    line-height: 1.06;
    letter-spacing: -.035em;
    font-weight: 500;
}

.tkc-featured-excerpt {
    margin: 0 0 28px;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.75;
}

.tkc-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    color: var(--tkc-blue-dark);
    font-size: 12px;
    font-weight: 800;
}

.tkc-featured-link span {
    color: var(--tkc-orange);
}


/* Blogkarten */

.tkc-knowledge-posts {
    padding: 70px 0 105px;
    background: #fff;
}

.tkc-knowledge-posts-head {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 43px;
}

.tkc-knowledge-posts-head > p {
    max-width: 470px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.75;
}

.tkc-knowledge-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}

.tkc-knowledge-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(38,61,79,.11);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(38,61,79,.04);
}

.tkc-knowledge-card-image {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background: #e9e5de;
}

.tkc-knowledge-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tkc-knowledge-image-category {
    position: absolute;
    left: 16px;
    bottom: 15px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--tkc-blue-dark);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.tkc-knowledge-card-content {
    padding: 26px;
}

.tkc-knowledge-date {
    margin: 0 0 9px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
}

.tkc-knowledge-card h3 {
    margin: 0 0 14px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 500;
}

.tkc-knowledge-excerpt {
    margin: 0 0 22px;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.7;
}

.tkc-knowledge-readmore {
    color: var(--tkc-orange);
    font-size: 11px;
    font-weight: 800;
}


/* Platzhalter */

.tkc-post-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );
    color: #fff;
}

.tkc-post-image-placeholder span {
    color: var(--tkc-orange);
    font-weight: 800;
}

.tkc-post-image-placeholder strong {
    font-family: Georgia,serif;
    font-size: 30px;
    font-weight: 500;
}


/* Pagination */

.tkc-pagination {
    margin-top: 55px;
}

.tkc-pagination ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
}

.tkc-pagination a,
.tkc-pagination span {
    min-width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--tkc-border);
    border-radius: 8px;
    background: #fff;
    color: var(--tkc-muted);
    font-size: 11px;
    font-weight: 800;
}

.tkc-pagination .current {
    background: var(--tkc-blue-dark);
    color: #fff;
}


/* Wissen CTA */

.tkc-knowledge-cta {
    padding: 82px 0;
    background: var(--tkc-cream);
}

.tkc-knowledge-cta-inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: center;
    padding: 55px;
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );
    color: #fff;
}

.tkc-knowledge-cta-kicker {
    margin: 0 0 10px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.tkc-knowledge-cta h2 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(38px,3.8vw,56px);
    line-height: 1.03;
    font-weight: 500;
}

.tkc-knowledge-cta h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-knowledge-cta-content p {
    color: rgba(255,255,255,.68);
    font-size: 14px;
}

.tkc-knowledge-cta-content a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 9px;
    background: var(--tkc-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   SINGLE POST
========================================================= */

.tkc-article-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 60px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #102c43,
            #153a56
        );
}

.tkc-article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );
    background-size: 52px 52px;
}

.tkc-article-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.tkc-article-breadcrumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
}

.tkc-article-category {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(252,128,7,.12);
    border: 1px solid rgba(252,128,7,.35);
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.tkc-article-hero h1 {
    max-width: 980px;
    margin: 0;
    color: #fff !important;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,4.3vw,62px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.035em;
}

.tkc-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 22px;
    color: rgba(255,255,255,.60);
    font-size: 11px;
}

.tkc-article {
    padding: 58px 0 90px;
}

.tkc-article-layout {
    display: grid;
    grid-template-columns: minmax(0,1.7fr) minmax(310px,.68fr);
    gap: 64px;
    align-items: start;
}

.tkc-article-featured-image {
    margin: 0 0 42px;
    overflow: hidden;
    border-radius: 20px;
}

.tkc-article-featured-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.tkc-article-body {
    max-width: 790px;
    color: #334b5e;
    font-size: 17px;
    line-height: 1.82;
}

.tkc-article-body p {
    margin: 0 0 24px;
}

.tkc-article-body h2,
.tkc-article-body h3,
.tkc-article-body h4 {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-weight: 500;
}

.tkc-article-body h2 {
    margin: 52px 0 18px;
    font-size: clamp(31px,3vw,42px);
}

.tkc-article-body h3 {
    margin: 40px 0 15px;
    font-size: 28px;
}

.tkc-article-body h4 {
    margin: 32px 0 13px;
    font-size: 22px;
}

.tkc-article-body a {
    color: var(--tkc-orange);
    text-decoration: underline;
}

.tkc-article-body ul,
.tkc-article-body ol {
    margin: 0 0 28px;
}

.tkc-article-body blockquote {
    margin: 38px 0;
    padding: 26px 30px;
    border-left: 4px solid var(--tkc-orange);
    background: var(--tkc-cream);
    font-family: Georgia,serif;
    font-size: 22px;
}

.tkc-article-body img {
    height: auto;
    border-radius: 14px;
}

.tkc-article-body table {
    width: 100%;
    border-collapse: collapse;
}

.tkc-article-body th,
.tkc-article-body td {
    padding: 14px 16px;
    border: 1px solid var(--tkc-border);
}

.tkc-article-body th {
    background: var(--tkc-blue-dark);
    color: #fff;
}


/* Sidebar */

.tkc-article-sidebar {
    position: sticky;
    top: 24px;
}

.tkc-sidebar-card {
    margin-bottom: 18px;
    padding: 27px;
    border: 1px solid var(--tkc-border);
    border-radius: 17px;
    background: #faf9f7;
}

.tkc-sidebar-card-highlight {
    background:
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );
    color: #fff;
}

.tkc-sidebar-kicker {
    margin: 0 0 10px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.tkc-sidebar-card h2 {
    margin: 0 0 16px;
    font-family: Georgia,serif;
    font-size: 30px;
    font-weight: 500;
}

.tkc-sidebar-card h3 {
    margin: 0 0 14px;
    font-family: Georgia,serif;
    font-size: 24px;
    font-weight: 500;
}

.tkc-sidebar-card p {
    color: var(--tkc-muted);
    font-size: 13px;
}

.tkc-sidebar-card-highlight p {
    color: rgba(255,255,255,.70);
}

.tkc-sidebar-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    padding: 0 17px;
    border-radius: 8px;
    background: var(--tkc-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.tkc-sidebar-facts {
    list-style: none;
    padding: 0;
}

.tkc-sidebar-facts li {
    padding: 9px 0;
    border-top: 1px solid rgba(38,61,79,.08);
    color: var(--tkc-muted);
    font-size: 12px;
}

.tkc-sidebar-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tkc-sidebar-categories li {
    border-top: 1px solid rgba(38,61,79,.08);
}

.tkc-sidebar-categories a {
    display: block;
    padding: 11px 0;
    color: var(--tkc-muted);
    font-size: 12px;
}


/* Tags */

.tkc-article-tags {
    display: flex;
    gap: 18px;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid var(--tkc-border);
}

.tkc-article-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tkc-article-tags-list a {
    padding: 6px 10px;
    border: 1px solid var(--tkc-border);
    border-radius: 999px;
    font-size: 10px;
}


/* Navigation */

.tkc-post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--tkc-border);
}

.tkc-post-navigation span {
    display: block;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
}

.tkc-post-navigation a {
    font-family: Georgia,serif;
    font-size: 19px;
}

.tkc-post-navigation-next {
    text-align: right;
}


/* Related Posts */

.tkc-related-posts {
    padding: 90px 0 100px;
    background: var(--tkc-cream);
}

.tkc-related-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 20px;
}

.tkc-related-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(38,61,79,.10);
}

.tkc-related-image {
    display: block;
    height: 220px;
    overflow: hidden;
}

.tkc-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tkc-related-content {
    padding: 25px;
}

.tkc-related-date {
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
}

.tkc-related-card h3 {
    font-family: Georgia,serif;
    font-size: 23px;
    font-weight: 500;
}

.tkc-related-link {
    color: var(--tkc-orange);
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   FOOTER
========================================================= */

.tkc-footer {
    padding: 78px 0 0;
    background: #0b2639;
    color: #fff;
}


/* Hauptbereich */

.tkc-footer-main {
    display: grid;

    grid-template-columns:
        1.25fr
        .82fr
        .82fr
        1.15fr;

    gap: 70px;

    align-items: start;

    padding-bottom: 68px;
}


/* =========================================================
   MARKE
========================================================= */

.tkc-footer-brand {
    max-width: 350px;
}

.tkc-footer-logo {
    display: block;

    width: 230px;
    height: 66px;

    margin-bottom: 26px;

    overflow: visible;
}

.tkc-footer-logo-image {
    display: block;

    width: 230px;
    height: 66px;

    object-fit: contain;
    object-position: left center;

    /*
     * Das Original-PNG besitzt viel transparenten Rand.
     * Deshalb vergrößern wir das eigentliche Logo optisch.
     */
    transform: scale(1.65);
    transform-origin: left center;

    filter: brightness(0) invert(1);
}

.tkc-footer-brand > p {
    max-width: 335px;

    margin: 0 0 26px;

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

    font-size: 12px;
    line-height: 1.75;
}


/* Trust-Tags */

.tkc-footer-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.tkc-footer-trust span {
    padding: 5px 9px;

    border:
        1px solid rgba(255,255,255,.14);

    border-radius: 5px;

    background:
        rgba(255,255,255,.045);

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

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   SPALTEN
========================================================= */

.tkc-footer-column {
    min-width: 0;
}

.tkc-footer-heading {
    margin: 0 0 22px !important;

    color: rgba(255,255,255,.82) !important;

    font-size: 13px !important;
    font-weight: 700;

    text-transform: none;

    letter-spacing: 0;
}

.tkc-footer-column nav {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 13px;
}

.tkc-footer-column nav a {
    display: block;

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

    font-size: 12px;
    line-height: 1.5;

    transition:
        color .2s ease,
        transform .2s ease;
}

.tkc-footer-column nav a:hover {
    color: var(--tkc-orange);

    transform: translateX(2px);
}


/* =========================================================
   KONTAKT
========================================================= */

.tkc-footer-contact h2 {
    max-width: 330px;

    margin: 0 0 17px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 31px;
    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -.025em;
}

.tkc-footer-contact h2 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-footer-contact > p:not(.tkc-footer-heading) {
    max-width: 330px;

    margin: 0 0 22px;

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

    font-size: 11px;
    line-height: 1.7;
}

.tkc-footer-contact-button {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 0 19px;

    border-radius: 9px;

    background: var(--tkc-orange);

    color: #fff;

    font-size: 11px;
    font-weight: 800;

    transition:
        background .2s ease,
        transform .2s ease;
}

.tkc-footer-contact-button:hover {
    background: var(--tkc-orange-hover);

    transform: translateY(-1px);
}


/* =========================================================
   FOOTER UNTEN
========================================================= */

.tkc-footer-bottom {
    min-height: 72px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

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

.tkc-footer-bottom > p {
    margin: 0;

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

    font-size: 10px;
}

.tkc-footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;
}

.tkc-footer-legal a {
    color:
        rgba(255,255,255,.48);

    font-size: 10px;

    transition: color .2s ease;
}

.tkc-footer-legal a:hover {
    color: var(--tkc-orange);
}


/* =========================================================
   FOOTER – TABLET
========================================================= */

@media (max-width: 1000px) {

    .tkc-footer-main {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 48px 65px;
    }

}


/* =========================================================
   FOOTER – MOBILE
========================================================= */

@media (max-width: 760px) {

    .tkc-footer {
        padding-top: 60px;
    }

    .tkc-footer-main {
        grid-template-columns: 1fr;

        gap: 42px;

        padding-bottom: 50px;
    }

    .tkc-footer-brand {
        max-width: none;
    }

    .tkc-footer-logo {
        width: 200px;
        height: 58px;
    }

    .tkc-footer-logo-image {
        width: 200px;
        height: 58px;

        transform: scale(1.55);
    }

    .tkc-footer-bottom {
        padding: 22px 0;

        flex-direction: column;

        align-items: flex-start;
    }

    .tkc-footer-legal {
        flex-wrap: wrap;
    }

}

/* =========================================================
   NETZWERK-SEITE
   Template: page-netzwerk.php
========================================================= */

.tkc-network-page {
    background: #fff;
    color: var(--tkc-text);
}


/* Hero */

.tkc-network-page-hero {
    position: relative;
    overflow: hidden;

    padding: 105px 0 94px;

    background:
        radial-gradient(
            circle at 84% 16%,
            rgba(252,128,7,.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #102c43,
            #153a56
        );

    color: #fff;
}

.tkc-network-page-hero-grid {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 52px 52px;
}

.tkc-network-page-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap: 90px;

    align-items: end;
}

.tkc-network-page-kicker {
    margin: 0 0 14px;

    color: var(--tkc-orange);

    font-size: 11px;
    font-weight: 800;

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

.tkc-network-page-hero h1 {
    max-width: 760px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(54px,5.2vw,82px);

    font-weight: 500;

    line-height: .98;
    letter-spacing: -.05em;
}

.tkc-network-page-hero h1 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-network-page-hero-copy {
    max-width: 520px;
}

.tkc-network-page-hero-copy p {
    margin: 0 0 20px;

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

    font-size: 15px;
    line-height: 1.8;
}

.tkc-network-page-hero-note {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-top: 18px;

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

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

    font-size: 11px;
    font-weight: 700;
}

.tkc-network-page-hero-note span {
    width: 8px;
    height: 8px;

    flex: 0 0 8px;

    border-radius: 50%;

    background: var(--tkc-orange);
}


/* Intro */

.tkc-network-page-intro {
    padding: 88px 0 74px;

    background: #fff;
}

.tkc-network-page-intro-grid {
    display: grid;

    grid-template-columns:
        .78fr
        1.22fr;

    gap: 90px;

    align-items: start;
}

.tkc-network-page-intro-label {
    color: var(--tkc-orange);

    font-size: 10px;
    font-weight: 800;

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

.tkc-network-page-intro h2 {
    max-width: 760px;

    margin: 0 0 22px;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(40px,3.7vw,58px);

    font-weight: 500;

    line-height: 1.04;
    letter-spacing: -.04em;
}

.tkc-network-page-intro h2 span {
    color: var(--tkc-orange);
}

.tkc-network-page-intro-copy p {
    max-width: 760px;

    margin: 0 0 15px;

    color: var(--tkc-muted);

    font-size: 14px;
    line-height: 1.8;
}


/* Partner */

.tkc-network-partners {
    padding: 0 0 110px;

    background: #fff;
}

.tkc-network-partners-head {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 34px;
    padding-top: 26px;

    border-top:
        1px solid var(--tkc-border);
}

.tkc-network-partners-head h2 {
    margin: 0;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(40px,3.7vw,58px);

    font-weight: 500;

    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-network-partners-head h2 span {
    color: var(--tkc-orange);
}

.tkc-network-partners-head p {
    max-width: 460px;

    margin: 0;

    color: var(--tkc-muted);

    font-size: 13px;
    line-height: 1.7;
}

.tkc-network-partner {
    display: grid;

    grid-template-columns:
        minmax(330px,.86fr)
        minmax(0,1.14fr);

    min-height: 465px;

    margin-top: 22px;

    overflow: hidden;

    border:
        1px solid rgba(38,61,79,.11);

    border-radius: 24px;

    background: #f8f5ef;

    box-shadow:
        0 16px 42px rgba(38,61,79,.045);
}

.tkc-network-partner:nth-of-type(even) {
    grid-template-columns:
        minmax(0,1.14fr)
        minmax(330px,.86fr);
}

.tkc-network-partner:nth-of-type(even)
.tkc-network-partner-media {
    order: 2;
}

.tkc-network-partner:nth-of-type(even)
.tkc-network-partner-body {
    order: 1;
}

.tkc-network-partner-media {
    position: relative;

    min-height: 465px;

    overflow: hidden;

    background: #d8dfe3;
}

.tkc-network-partner-media > img {
    width: 100%;
    height: 100%;

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

.tkc-network-partner-media::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(16,44,67,.18)
        );
}

.tkc-network-partner-logo {
    position: absolute;
    z-index: 3;

    left: 24px;
    bottom: 24px;

    width: 190px;
    min-height: 76px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 12px 15px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.94);

    box-shadow:
        0 12px 32px rgba(0,0,0,.14);

    backdrop-filter: blur(8px);
}

.tkc-network-partner-logo img {
    width: 100%;

    max-width: 155px;
    max-height: 52px;

    object-fit: contain;
}

.tkc-network-partner-body {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 48px 52px;
}

.tkc-network-partner-eyebrow {
    margin: 0 0 10px;

    color: var(--tkc-orange);

    font-size: 9px;
    font-weight: 800;

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

.tkc-network-partner h3 {
    margin: 0;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(34px,3.1vw,47px);

    font-weight: 500;

    line-height: 1.03;
    letter-spacing: -.035em;
}

.tkc-network-partner-company {
    margin: 9px 0 0;

    color: var(--tkc-muted);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.5;
}

.tkc-network-partner-quote {
    position: relative;

    margin: 28px 0 24px;
    padding: 19px 0 19px 25px;

    border-left:
        3px solid var(--tkc-orange);

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-style: italic;

    line-height: 1.45;
}

.tkc-network-partner-description {
    max-width: 700px;

    margin: 0 0 24px;

    color: var(--tkc-muted);

    font-size: 13px;
    line-height: 1.75;
}

.tkc-network-partner-focus {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin: 0 0 27px;
}

.tkc-network-partner-focus span {
    padding: 6px 10px;

    border:
        1px solid rgba(38,61,79,.11);

    border-radius: 999px;

    background:
        rgba(255,255,255,.75);

    color: var(--tkc-muted);

    font-size: 9px;
    font-weight: 700;
}

.tkc-network-partner-contact {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 9px 24px;

    margin-top: auto;
    padding-top: 22px;

    border-top:
        1px solid rgba(38,61,79,.11);
}

.tkc-network-partner-contact a,
.tkc-network-partner-contact span {
    min-width: 0;

    color: var(--tkc-muted);

    font-size: 10px;
    line-height: 1.5;

    overflow-wrap: anywhere;
}

.tkc-network-partner-contact strong {
    display: block;

    margin-bottom: 2px;

    color: var(--tkc-blue-dark);

    font-size: 8px;

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

.tkc-network-partner-contact a:hover {
    color: var(--tkc-orange);
}

.tkc-network-partner-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 24px;

    color: var(--tkc-orange);

    font-size: 11px;
    font-weight: 800;
}


/* Florian / featured */

.tkc-network-partner-featured {
    position: relative;

    grid-template-columns:
        minmax(360px,.92fr)
        minmax(0,1.08fr);

    min-height: 525px;

    border-color: transparent;

    background:
        radial-gradient(
            circle at 82% 14%,
            rgba(252,128,7,.13),
            transparent 26%
        ),
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );

    color: #fff;

    box-shadow:
        0 28px 70px rgba(16,44,67,.18);
}

.tkc-network-partner-featured
.tkc-network-partner-media {
    min-height: 525px;
}

.tkc-network-partner-featured
.tkc-network-partner-body {
    position: relative;

    color: #fff;
}

.tkc-network-partner-featured h3 {
    color: #fff;
}

.tkc-network-partner-featured
.tkc-network-partner-company {
    color:
        rgba(255,255,255,.58);
}

.tkc-network-partner-featured
.tkc-network-partner-description {
    color:
        rgba(255,255,255,.68);
}

.tkc-network-partner-featured
.tkc-network-partner-focus span {
    border-color:
        rgba(255,255,255,.14);

    background:
        rgba(255,255,255,.055);

    color:
        rgba(255,255,255,.70);
}

.tkc-network-partner-featured
.tkc-network-partner-link {
    color: #fff;
}

.tkc-network-featured-badge {
    display: inline-flex;

    align-items: center;
    align-self: flex-start;

    gap: 8px;

    margin-bottom: 18px;
    padding: 7px 11px;

    border:
        1px solid rgba(252,128,7,.35);

    border-radius: 999px;

    background:
        rgba(252,128,7,.09);

    color: var(--tkc-orange);

    font-size: 8px;
    font-weight: 800;

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

.tkc-network-featured-badge::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--tkc-orange);
}

.tkc-network-independent-note {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 20px;
    padding: 13px 14px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 10px;

    background:
        rgba(255,255,255,.045);

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

    font-size: 9px;
    line-height: 1.55;
}

.tkc-network-independent-note span {
    color: var(--tkc-orange);

    font-weight: 800;
}


/* Abschluss CTA */

.tkc-network-page-cta {
    position: relative;

    overflow: hidden;

    padding: 92px 0;

    background: #f6f1e9;
}

.tkc-network-page-cta-inner {
    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 80px;

    align-items: center;
}

.tkc-network-page-cta h2 {
    margin: 0;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(40px,3.8vw,58px);

    font-weight: 500;

    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-network-page-cta h2 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-network-page-cta-content p {
    max-width: 520px;

    margin: 0 0 22px;

    color: var(--tkc-muted);

    font-size: 14px;
    line-height: 1.75;
}

.tkc-network-page-cta-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.tkc-network-page-cta-button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 18px;

    border-radius: 9px;

    background: var(--tkc-orange);

    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.tkc-network-page-cta-button-secondary {
    border:
        1px solid rgba(38,61,79,.18);

    background: #fff;

    color: var(--tkc-blue-dark);
}


/* Netzwerk-Seite – responsive */

@media (max-width: 1100px) {

    .tkc-network-page-hero-inner,
    .tkc-network-page-intro-grid,
    .tkc-network-page-cta-inner {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .tkc-network-partner,
    .tkc-network-partner:nth-of-type(even),
    .tkc-network-partner-featured {
        grid-template-columns:
            .88fr
            1.12fr;
    }

    .tkc-network-partner:nth-of-type(even)
    .tkc-network-partner-media,
    .tkc-network-partner:nth-of-type(even)
    .tkc-network-partner-body {
        order: initial;
    }

    .tkc-network-partners-head {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }
}

@media (max-width: 820px) {

    .tkc-network-page-hero {
        padding: 72px 0;
    }

    .tkc-network-page-intro {
        padding: 70px 0 58px;
    }

    .tkc-network-partners {
        padding-bottom: 76px;
    }

    .tkc-network-partner,
    .tkc-network-partner:nth-of-type(even),
    .tkc-network-partner-featured {
        grid-template-columns: 1fr;

        min-height: 0;
    }

    .tkc-network-partner-media,
    .tkc-network-partner-featured
    .tkc-network-partner-media {
        min-height: 440px;
    }

    .tkc-network-partner:nth-of-type(even)
    .tkc-network-partner-media {
        order: 1;
    }

    .tkc-network-partner:nth-of-type(even)
    .tkc-network-partner-body {
        order: 2;
    }

    .tkc-network-partner-body {
        padding: 36px 32px;
    }
}

@media (max-width: 560px) {

    .tkc-network-page-hero h1 {
        font-size: 48px;
    }

    .tkc-network-partner {
        border-radius: 18px;
    }

    .tkc-network-partner-media,
    .tkc-network-partner-featured
    .tkc-network-partner-media {
        min-height: 360px;
    }

    .tkc-network-partner-logo {
        left: 18px;
        bottom: 18px;

        width: 165px;
        min-height: 68px;
    }

    .tkc-network-partner-body {
        padding: 30px 23px;
    }

    .tkc-network-partner h3 {
        font-size: 34px;
    }

    .tkc-network-partner-quote {
        font-size: 18px;
    }

    .tkc-network-partner-contact {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .tkc-network-page-cta {
        padding: 70px 0;
    }

    .tkc-network-page-cta-actions {
        flex-direction: column;
    }

    .tkc-network-page-cta-button {
        width: 100%;
    }
}

/* =========================================================
   GEDENKEN AN UNSEREN GRÜNDER
   Template: page-gedenken.php
========================================================= */

.tkc-memorial-page {
    background: #fff;
    color: var(--tkc-text);
}


/* Hero */

.tkc-memorial-hero {
    position: relative;
    overflow: hidden;

    min-height: 690px;

    display: flex;
    align-items: stretch;

    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(252,128,7,.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #102c43,
            #153a56
        );

    color: #fff;
}

.tkc-memorial-hero-grid {
    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );

    background-size: 52px 52px;
}

.tkc-memorial-hero .tkc-container {
    position: relative;
    z-index: 2;

    display: flex;
}

.tkc-memorial-hero-layout {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0,.93fr)
        minmax(420px,1.07fr);

    gap: 78px;

    align-items: center;

    padding: 82px 0;
}

.tkc-memorial-kicker {
    margin: 0 0 17px;

    color: var(--tkc-orange);

    font-size: 10px;
    font-weight: 800;

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

.tkc-memorial-hero h1 {
    max-width: 650px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(54px,5vw,80px);

    font-weight: 500;

    line-height: .98;
    letter-spacing: -.05em;
}

.tkc-memorial-hero h1 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-memorial-hero-lead {
    max-width: 560px;

    margin: 28px 0 0;

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

    font-size: 15px;
    line-height: 1.8;
}

.tkc-memorial-dates {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 30px;

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

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
}

.tkc-memorial-dates span {
    width: 34px;
    height: 1px;

    background:
        rgba(255,255,255,.26);
}

.tkc-memorial-portrait-wrap {
    position: relative;

    max-width: 600px;

    margin-left: auto;
}

.tkc-memorial-portrait {
    width: 100%;
    height: 540px;

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

    border-radius: 28px;

    box-shadow:
        0 32px 80px rgba(0,0,0,.28);
}

.tkc-memorial-portrait-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            transparent 68%,
            rgba(16,44,67,.15)
        );
}

.tkc-memorial-portrait-note {
    position: absolute;
    z-index: 3;

    left: 24px;
    bottom: 23px;

    padding: 10px 13px;

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

    border-radius: 9px;

    background:
        rgba(16,44,67,.72);

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

    font-size: 9px;
    font-weight: 700;

    backdrop-filter: blur(8px);
}


/* Intro / Vermächtnis */

.tkc-memorial-intro {
    padding: 105px 0 92px;

    background: #f7f4ee;
}

.tkc-memorial-intro-grid {
    display: grid;

    grid-template-columns:
        .78fr
        1.22fr;

    gap: 95px;

    align-items: start;
}

.tkc-memorial-section-label {
    display: block;

    color: var(--tkc-orange);

    font-size: 10px;
    font-weight: 800;

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

.tkc-memorial-intro h2,
.tkc-memorial-story h2,
.tkc-memorial-values h2 {
    margin: 0;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px,3.8vw,60px);

    font-weight: 500;

    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-memorial-intro h2 span,
.tkc-memorial-story h2 span,
.tkc-memorial-values h2 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-memorial-intro-copy {
    max-width: 760px;
}

.tkc-memorial-intro-copy p {
    margin: 0 0 17px;

    color: var(--tkc-muted);

    font-size: 14px;
    line-height: 1.85;
}

.tkc-memorial-intro-copy p:first-of-type {
    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 21px;
    line-height: 1.5;
}


/* Persönlicher Abschnitt */

.tkc-memorial-story {
    padding: 105px 0;

    background: #fff;
}

.tkc-memorial-story-head {
    display: grid;

    grid-template-columns:
        1fr
        .9fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 58px;
}

.tkc-memorial-story-intro {
    max-width: 530px;

    color: var(--tkc-muted);

    font-size: 14px;
    line-height: 1.8;
}

.tkc-memorial-story-intro p {
    margin: 0;
}

.tkc-memorial-story-card {
    display: grid;

    grid-template-columns:
        minmax(0,1.08fr)
        minmax(340px,.92fr);

    overflow: hidden;

    border:
        1px solid rgba(38,61,79,.10);

    border-radius: 24px;

    background: #faf8f4;

    box-shadow:
        0 18px 50px rgba(38,61,79,.055);
}

.tkc-memorial-story-content {
    padding: 52px 55px;
}

.tkc-memorial-story-content p {
    margin: 0 0 18px;

    color: var(--tkc-muted);

    font-size: 14px;
    line-height: 1.85;
}

.tkc-memorial-story-content p:last-child {
    margin-bottom: 0;
}

.tkc-memorial-story-quote {
    position: relative;

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

    padding: 52px;

    background:
        radial-gradient(
            circle at 84% 14%,
            rgba(252,128,7,.12),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );

    color: #fff;
}

.tkc-memorial-story-quote::before {
    content: "“";

    position: absolute;

    top: 22px;
    left: 35px;

    color:
        rgba(252,128,7,.28);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 110px;
    line-height: 1;
}

.tkc-memorial-story-quote strong {
    position: relative;
    z-index: 2;

    display: block;

    margin-bottom: 17px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
    font-weight: 500;

    line-height: 1.18;
}

.tkc-memorial-story-quote p {
    position: relative;
    z-index: 2;

    margin: 0;

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

    font-size: 12px;
    line-height: 1.7;
}


/* Unternehmensgeschichte / Timeline */

.tkc-memorial-timeline {
    padding: 105px 0;

    background:
        linear-gradient(
            180deg,
            #f7f4ee,
            #f3ede4
        );
}

.tkc-memorial-timeline-head {
    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    gap: 90px;

    margin-bottom: 58px;
}

.tkc-memorial-timeline-head h2 {
    margin: 0;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px,3.8vw,60px);

    font-weight: 500;

    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-memorial-timeline-head h2 span {
    display: block;

    color: var(--tkc-orange);
}

.tkc-memorial-timeline-head p {
    max-width: 650px;

    margin: 0;

    color: var(--tkc-muted);

    font-size: 14px;
    line-height: 1.8;
}

.tkc-memorial-timeline-list {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5,minmax(0,1fr));

    gap: 18px;
}

.tkc-memorial-timeline-item {
    position: relative;

    min-height: 255px;

    padding: 27px 24px;

    border:
        1px solid rgba(38,61,79,.10);

    border-radius: 16px;

    background:
        rgba(255,255,255,.80);
}

.tkc-memorial-timeline-year {
    display: block;

    margin-bottom: 24px;

    color: var(--tkc-orange);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;
}

.tkc-memorial-timeline-item h3 {
    margin: 0 0 10px;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.2;
}

.tkc-memorial-timeline-item p {
    margin: 0;

    color: var(--tkc-muted);

    font-size: 11px;
    line-height: 1.7;
}


/* Werte */

.tkc-memorial-values {
    padding: 108px 0;

    background: #fff;
}

.tkc-memorial-values-head {
    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 50px;
}

.tkc-memorial-values-head > p {
    max-width: 550px;

    margin: 0;

    color: var(--tkc-muted);

    font-size: 14px;
    line-height: 1.8;
}

.tkc-memorial-values-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 18px;
}

.tkc-memorial-value {
    min-height: 240px;

    padding: 31px;

    border:
        1px solid rgba(38,61,79,.10);

    border-radius: 18px;

    background: #faf9f7;
}

.tkc-memorial-value-number {
    display: block;

    margin-bottom: 34px;

    color: var(--tkc-orange);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 15px;
}

.tkc-memorial-value h3 {
    margin: 0 0 13px;

    color: var(--tkc-blue-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;
    font-weight: 500;
}

.tkc-memorial-value p {
    margin: 0;

    color: var(--tkc-muted);

    font-size: 12px;
    line-height: 1.75;
}


/* Abschluss */

.tkc-memorial-closing {
    position: relative;
    overflow: hidden;

    padding: 105px 0;

    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(252,128,7,.08),
            transparent 27%
        ),
        linear-gradient(
            145deg,
            #102c43,
            #153a56
        );

    color: #fff;
}

.tkc-memorial-closing-inner {
    max-width: 880px;

    margin: 0 auto;

    text-align: center;
}

.tkc-memorial-closing-line {
    width: 52px;
    height: 3px;

    margin: 0 auto 28px;

    background: var(--tkc-orange);
}

.tkc-memorial-closing h2 {
    margin: 0 0 24px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px,4vw,62px);

    font-weight: 500;

    line-height: 1.04;
    letter-spacing: -.04em;
}

.tkc-memorial-closing h2 span {
    color: var(--tkc-orange);
}

.tkc-memorial-closing p {
    max-width: 720px;

    margin: 0 auto;

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

    font-size: 14px;
    line-height: 1.85;
}

.tkc-memorial-closing-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.tkc-memorial-closing-link span {
    color: var(--tkc-orange);
}


/* Responsive – Gedenkseite */

@media (max-width: 1100px) {

    .tkc-memorial-hero-layout,
    .tkc-memorial-intro-grid,
    .tkc-memorial-story-head,
    .tkc-memorial-timeline-head,
    .tkc-memorial-values-head {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .tkc-memorial-hero-layout {
        grid-template-columns:
            minmax(0,.95fr)
            minmax(360px,1.05fr);

        gap: 42px;
    }

    .tkc-memorial-timeline-list {
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

    .tkc-memorial-story-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {

    .tkc-memorial-hero {
        min-height: 0;
    }

    .tkc-memorial-hero-layout {
        grid-template-columns: 1fr;

        padding: 68px 0 72px;
    }

    .tkc-memorial-portrait-wrap {
        max-width: none;

        margin: 0;
    }

    .tkc-memorial-portrait {
        height: 500px;
    }

    .tkc-memorial-intro,
    .tkc-memorial-story,
    .tkc-memorial-timeline,
    .tkc-memorial-values,
    .tkc-memorial-closing {
        padding: 76px 0;
    }

    .tkc-memorial-timeline-list {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .tkc-memorial-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {

    .tkc-memorial-hero h1 {
        font-size: 48px;
    }

    .tkc-memorial-portrait {
        height: 410px;

        border-radius: 20px;
    }

    .tkc-memorial-portrait-wrap::after {
        border-radius: 20px;
    }

    .tkc-memorial-story-content,
    .tkc-memorial-story-quote {
        padding: 30px 24px;
    }

    .tkc-memorial-timeline-list {
        grid-template-columns: 1fr;
    }

    .tkc-memorial-timeline-item {
        min-height: 0;
    }
}

/* =========================================================
   EXTERNER DATENSCHUTZBEAUFTRAGTER
   Template: page-datenschutz-unternehmen.php
========================================================= */

.tkc-dsb-page {
    background: #fff;
    color: var(--tkc-text);
}

/* Hero */

.tkc-dsb-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(252,128,7,.12), transparent 27%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-dsb-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size: 52px 52px;
}

.tkc-dsb-hero-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,.96fr) minmax(420px,1.04fr);
    gap: 72px;
    align-items: center;
}

.tkc-dsb-kicker {
    margin: 0 0 16px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tkc-dsb-hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(52px,5vw,78px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.05em;
}

.tkc-dsb-hero h1 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-dsb-hero-lead {
    max-width: 650px;
    margin: 27px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.8;
}

.tkc-dsb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}

.tkc-dsb-hero-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}

.tkc-dsb-hero-button-primary {
    background: var(--tkc-orange);
    color: #fff;
}

.tkc-dsb-hero-button-secondary {
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.055);
    color: #fff;
}

.tkc-dsb-hero-visual {
    position: relative;
}

.tkc-dsb-hero-visual img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    object-position: center top;
    border-radius: 26px 26px 0 0;
    box-shadow: 0 30px 80px rgba(0,0,0,.26);
}

.tkc-dsb-hero-badge {
    position: absolute;
    left: -24px;
    bottom: 34px;
    max-width: 230px;
    padding: 17px 18px;
    border-radius: 14px;
    background: #fff;
    color: var(--tkc-blue-dark);
    box-shadow: 0 18px 45px rgba(0,0,0,.20);
}

.tkc-dsb-hero-badge strong {
    display: block;
    margin-bottom: 4px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.05;
}

.tkc-dsb-hero-badge span {
    display: block;
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.5;
}

.tkc-dsb-trustbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,.14);
}

.tkc-dsb-trust {
    padding: 25px 22px 28px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.tkc-dsb-trust:last-child {
    border-right: 0;
}

.tkc-dsb-trust strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 11px;
}

.tkc-dsb-trust span {
    color: rgba(255,255,255,.52);
    font-size: 9px;
}

/* Intro */

.tkc-dsb-intro {
    padding: 100px 0;
    background: #f7f4ee;
}

.tkc-dsb-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 95px;
    align-items: start;
}

.tkc-dsb-section-label {
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.tkc-dsb-intro h2,
.tkc-dsb-benefits h2,
.tkc-dsb-tasks h2,
.tkc-dsb-required h2,
.tkc-dsb-process h2,
.tkc-dsb-pricing h2,
.tkc-dsb-faq h2 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,3.8vw,60px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-dsb-intro h2 span,
.tkc-dsb-benefits h2 span,
.tkc-dsb-tasks h2 span,
.tkc-dsb-required h2 span,
.tkc-dsb-process h2 span,
.tkc-dsb-pricing h2 span,
.tkc-dsb-faq h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-dsb-intro-copy p {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.85;
}

.tkc-dsb-intro-copy p:first-of-type {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 21px;
    line-height: 1.5;
}

/* Benefits */

.tkc-dsb-benefits {
    padding: 105px 0;
    background: #fff;
}

.tkc-dsb-section-head {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 48px;
}

.tkc-dsb-section-head > p {
    max-width: 520px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-dsb-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
}

.tkc-dsb-benefit-card {
    min-height: 280px;
    padding: 29px 27px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 18px;
    background: #faf9f7;
}

.tkc-dsb-benefit-number {
    display: block;
    margin-bottom: 36px;
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 15px;
}

.tkc-dsb-benefit-card h3 {
    margin: 0 0 13px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.15;
}

.tkc-dsb-benefit-card p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.75;
}

/* Tasks */

.tkc-dsb-tasks {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 10% 12%,rgba(252,128,7,.08),transparent 26%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-dsb-tasks-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 95px;
}

.tkc-dsb-tasks h2 {
    color: #fff;
}

.tkc-dsb-tasks-intro > p {
    max-width: 470px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-dsb-task-list {
    border-top: 1px solid rgba(255,255,255,.14);
}

.tkc-dsb-task {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.tkc-dsb-task-number {
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 16px;
}

.tkc-dsb-task h3 {
    margin: 0 0 6px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
}

.tkc-dsb-task p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.7;
}

/* Required */

.tkc-dsb-required {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-dsb-required-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 88px;
    align-items: start;
}

.tkc-dsb-required-intro > p {
    max-width: 500px;
    margin: 24px 0 0;
    color: var(--tkc-muted);
    font-size: 13px;
    line-height: 1.8;
}

.tkc-dsb-required-cards {
    display: grid;
    gap: 12px;
}

.tkc-dsb-required-card {
    padding: 23px 25px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 14px;
    background: #fff;
}

.tkc-dsb-required-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--tkc-blue-dark);
    font-size: 12px;
}

.tkc-dsb-required-card p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.7;
}

.tkc-dsb-required-note {
    margin-top: 18px;
    padding: 15px 17px;
    border-left: 3px solid var(--tkc-orange);
    background: rgba(255,255,255,.58);
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.65;
}

/* Process */

.tkc-dsb-process {
    padding: 105px 0;
    background: #fff;
}

.tkc-dsb-process-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 15px;
    margin-top: 48px;
}

.tkc-dsb-process-step {
    position: relative;
    min-height: 245px;
    padding: 29px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 18px;
    background: #faf9f7;
}

.tkc-dsb-process-step::before {
    content: "";
    position: absolute;
    top: 42px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: rgba(38,61,79,.18);
}

.tkc-dsb-process-step:last-child::before {
    display: none;
}

.tkc-dsb-process-number {
    display: block;
    margin-bottom: 32px;
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 15px;
}

.tkc-dsb-process-step h3 {
    margin: 0 0 11px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
}

.tkc-dsb-process-step p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.7;
}

/* Pricing */

.tkc-dsb-pricing {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-dsb-pricing-head {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 46px;
}

.tkc-dsb-pricing-head > p {
    max-width: 530px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-dsb-price-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
}

.tkc-dsb-price-card {
    display: flex;
    flex-direction: column;
    min-height: 410px;
    padding: 30px 28px;
    border: 1px solid rgba(38,61,79,.11);
    border-radius: 18px;
    background: #fff;
}

.tkc-dsb-price-card-featured {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(145deg,#102c43,#173e5b);
    box-shadow: 0 24px 52px rgba(16,44,67,.18);
}

.tkc-dsb-price-name {
    margin: 0 0 15px;
    font-size: 12px;
    font-weight: 800;
}

.tkc-dsb-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.tkc-dsb-price strong {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.tkc-dsb-price-card-featured .tkc-dsb-price strong {
    color: #fff;
}

.tkc-dsb-price span {
    color: var(--tkc-muted);
    font-size: 11px;
}

.tkc-dsb-price-card-featured .tkc-dsb-price span {
    color: rgba(255,255,255,.58);
}

.tkc-dsb-price-meta {
    margin: 7px 0 0;
    color: var(--tkc-muted);
    font-size: 10px;
}

.tkc-dsb-price-card-featured .tkc-dsb-price-meta {
    color: rgba(255,255,255,.52);
}

.tkc-dsb-price-divider {
    height: 1px;
    margin: 23px 0;
    background: rgba(38,61,79,.10);
}

.tkc-dsb-price-card-featured .tkc-dsb-price-divider {
    background: rgba(255,255,255,.13);
}

.tkc-dsb-price-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.tkc-dsb-price-features li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 21px;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.55;
}

.tkc-dsb-price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tkc-orange);
    font-weight: 800;
}

.tkc-dsb-price-card-featured .tkc-dsb-price-features li {
    color: rgba(255,255,255,.70);
}

.tkc-dsb-price-link {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 15px;
    border: 1px solid rgba(38,61,79,.22);
    border-radius: 8px;
    color: var(--tkc-blue-dark);
    font-size: 10px;
    font-weight: 800;
}

.tkc-dsb-price-card-featured .tkc-dsb-price-link {
    border-color: var(--tkc-orange);
    background: var(--tkc-orange);
    color: #fff;
}


/* Expanded package comparison */

.tkc-dsb-price-intro {
    min-height: 62px;
    margin: 17px 0 0;
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.65;
}

.tkc-dsb-price-card-featured .tkc-dsb-price-intro {
    color: rgba(255,255,255,.58);
}

.tkc-dsb-comparison {
    margin-top: 44px;
    padding: 35px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 20px;
    background: #fff;
}

.tkc-dsb-comparison-head {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 30px;
}

.tkc-dsb-comparison-head h3 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.tkc-dsb-comparison-head h3 span {
    color: var(--tkc-orange);
}

.tkc-dsb-comparison-head > p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.75;
}

.tkc-dsb-comparison-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tkc-dsb-comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.tkc-dsb-comparison-table th,
.tkc-dsb-comparison-table td {
    padding: 14px 15px;
    border-bottom: 1px solid rgba(38,61,79,.09);
    text-align: center;
    font-size: 10px;
}

.tkc-dsb-comparison-table th:first-child,
.tkc-dsb-comparison-table td:first-child {
    width: 48%;
    text-align: left;
}

.tkc-dsb-comparison-table th {
    color: var(--tkc-blue-dark);
    background: #f8f5ef;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.tkc-dsb-comparison-table td:first-child {
    color: var(--tkc-muted);
    font-weight: 600;
}

.tkc-dsb-comparison-table .is-yes {
    color: var(--tkc-orange);
    font-size: 14px;
    font-weight: 800;
}

.tkc-dsb-comparison-table .is-no {
    color: rgba(38,61,79,.28);
    font-size: 14px;
}

.tkc-dsb-comparison-table .is-limited {
    color: var(--tkc-blue-dark);
    font-weight: 800;
}

.tkc-dsb-comparison-note {
    margin: 20px 0 0;
    color: var(--tkc-muted);
    font-size: 9px;
    line-height: 1.65;
}


/* Individual consulting */

.tkc-dsb-individual {
    padding: 0 0 105px;
    background: #f7f4ee;
}

.tkc-dsb-individual-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 48px 50px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 12%,rgba(252,128,7,.12),transparent 28%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-dsb-individual h2 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(38px,3.4vw,52px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.04em;
}

.tkc-dsb-individual h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-dsb-individual-content p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.64);
    font-size: 12px;
    line-height: 1.8;
}

.tkc-dsb-individual-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.tkc-dsb-individual-link span {
    color: var(--tkc-orange);
}


/* Detailed services */

.tkc-dsb-services-detail {
    padding: 105px 0;
    background: #fff;
}

.tkc-dsb-services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
}

.tkc-dsb-services-detail-grid article {
    min-height: 240px;
    padding: 28px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 17px;
    background: #faf9f7;
}

.tkc-dsb-services-detail-grid article > span {
    display: block;
    margin-bottom: 30px;
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 14px;
}

.tkc-dsb-services-detail-grid h3 {
    margin: 0 0 11px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
}

.tkc-dsb-services-detail-grid p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.75;
}


/* Internal vs external */

.tkc-dsb-internal-external {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-dsb-internal-external-head {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 46px;
}

.tkc-dsb-internal-external-head h2 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,3.8vw,60px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-dsb-internal-external-head h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-dsb-internal-external-head > p {
    max-width: 530px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-dsb-model-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
}

.tkc-dsb-model-card {
    min-height: 380px;
    padding: 35px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 20px;
    background: #fff;
}

.tkc-dsb-model-card-featured {
    border-color: transparent;
    background: linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-dsb-model-label {
    margin: 0 0 18px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tkc-dsb-model-card h3 {
    max-width: 520px;
    margin: 0 0 25px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.12;
}

.tkc-dsb-model-card-featured h3 {
    color: #fff;
}

.tkc-dsb-model-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tkc-dsb-model-card li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 22px;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.65;
}

.tkc-dsb-model-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--tkc-orange);
    font-size: 17px;
    line-height: 1;
}

.tkc-dsb-model-card-featured li {
    color: rgba(255,255,255,.68);
}


/* FAQ */

.tkc-dsb-faq {
    padding: 105px 0;
    background: #fff;
}

.tkc-dsb-faq-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 90px;
}

.tkc-dsb-faq-items {
    border-top: 1px solid var(--tkc-border);
}

.tkc-dsb-faq-item {
    border-bottom: 1px solid var(--tkc-border);
}

.tkc-dsb-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    cursor: pointer;
    color: var(--tkc-blue-dark);
    font-size: 13px;
    font-weight: 800;
}

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

.tkc-dsb-faq-item summary span {
    color: var(--tkc-orange);
    font-size: 20px;
    font-weight: 400;
}

.tkc-dsb-faq-item[open] summary span {
    transform: rotate(45deg);
}

.tkc-dsb-faq-answer {
    max-width: 760px;
    padding: 0 40px 22px 0;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.8;
}

/* CTA */

.tkc-dsb-cta {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 12%,rgba(252,128,7,.08),transparent 27%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-dsb-cta-inner {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 85px;
    align-items: center;
}

.tkc-dsb-cta h2 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,4vw,62px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-dsb-cta h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-dsb-cta-content p {
    max-width: 530px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-dsb-cta-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 19px;
    border-radius: 9px;
    background: var(--tkc-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}


@media (max-width: 1100px) {
    .tkc-dsb-comparison-head,
    .tkc-dsb-individual-card,
    .tkc-dsb-internal-external-head {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tkc-dsb-services-detail-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 820px) {
    .tkc-dsb-comparison {
        padding: 25px 20px;
    }

    .tkc-dsb-individual {
        padding-bottom: 76px;
    }

    .tkc-dsb-individual-card {
        padding: 34px 30px;
    }

    .tkc-dsb-services-detail,
    .tkc-dsb-internal-external {
        padding: 76px 0;
    }

    .tkc-dsb-model-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .tkc-dsb-services-detail-grid {
        grid-template-columns: 1fr;
    }

    .tkc-dsb-comparison {
        margin-top: 30px;
    }
}

/* Responsive */

@media (max-width: 1100px) {
    .tkc-whistle-price-group-head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tkc-dsb-hero-main {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    .tkc-dsb-intro-grid,
    .tkc-dsb-section-head,
    .tkc-dsb-required-grid,
    .tkc-dsb-pricing-head,
    .tkc-dsb-faq-layout,
    .tkc-dsb-cta-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tkc-dsb-benefit-grid,
    .tkc-dsb-process-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .tkc-dsb-tasks-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 820px) {
    .tkc-whistle-card-top {
        flex-direction: column;
    }

    .tkc-whistle-card-audiences,
    .tkc-whistle-card-list {
        grid-template-columns: 1fr;
    }

    .tkc-dsb-hero {
        padding-top: 66px;
    }

    .tkc-dsb-hero-main {
        grid-template-columns: 1fr;
    }

    .tkc-dsb-hero-visual img {
        height: 470px;
    }

    .tkc-dsb-hero-badge {
        left: 18px;
    }

    .tkc-dsb-trustbar {
        grid-template-columns: repeat(2,1fr);
    }

    .tkc-dsb-trust:nth-child(2) {
        border-right: 0;
    }

    .tkc-dsb-trust:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .tkc-dsb-intro,
    .tkc-dsb-benefits,
    .tkc-dsb-tasks,
    .tkc-dsb-required,
    .tkc-dsb-process,
    .tkc-dsb-pricing,
    .tkc-dsb-faq,
    .tkc-dsb-cta {
        padding: 76px 0;
    }

    .tkc-dsb-price-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .tkc-dsb-hero h1 {
        font-size: 47px;
    }

    .tkc-dsb-hero-visual img {
        height: 390px;
        border-radius: 20px 20px 0 0;
    }

    .tkc-dsb-benefit-grid,
    .tkc-dsb-process-grid {
        grid-template-columns: 1fr;
    }

    .tkc-dsb-process-step::before {
        display: none;
    }

    .tkc-dsb-trust {
        padding: 19px 13px;
    }
}

/* =========================================================
   DATENSCHUTZ FÜR SCHULEN & SOZIALES
   Template: page-datenschutz-schulen.php
========================================================= */

.tkc-school-page {
    background: #fff;
    color: var(--tkc-text);
}

/* Hero */

.tkc-school-hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 0;
    background:
        radial-gradient(circle at 83% 16%, rgba(252,128,7,.12), transparent 28%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-school-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size: 52px 52px;
}

.tkc-school-hero-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,.94fr) minmax(430px,1.06fr);
    gap: 72px;
    align-items: center;
}

.tkc-school-kicker {
    margin: 0 0 16px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tkc-school-hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(52px,5vw,78px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.05em;
}

.tkc-school-hero h1 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-school-hero-lead {
    max-width: 650px;
    margin: 27px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.8;
}

.tkc-school-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}

.tkc-school-hero-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}

.tkc-school-hero-button-primary {
    background: var(--tkc-orange);
    color: #fff;
}

.tkc-school-hero-button-secondary {
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.055);
    color: #fff;
}

.tkc-school-hero-visual {
    position: relative;
}

.tkc-school-hero-visual img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    object-position: center top;
    border-radius: 26px 26px 0 0;
    box-shadow: 0 30px 80px rgba(0,0,0,.26);
}

.tkc-school-hero-badge {
    position: absolute;
    left: -24px;
    bottom: 34px;
    max-width: 245px;
    padding: 17px 18px;
    border-radius: 14px;
    background: #fff;
    color: var(--tkc-blue-dark);
    box-shadow: 0 18px 45px rgba(0,0,0,.20);
}

.tkc-school-hero-badge strong {
    display: block;
    margin-bottom: 4px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.08;
}

.tkc-school-hero-badge span {
    display: block;
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.5;
}

.tkc-school-trustbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid rgba(255,255,255,.14);
}

.tkc-school-trust {
    padding: 25px 22px 28px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.tkc-school-trust:last-child {
    border-right: 0;
}

.tkc-school-trust strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 11px;
}

.tkc-school-trust span {
    color: rgba(255,255,255,.52);
    font-size: 9px;
}


/* Intro */

.tkc-school-intro {
    padding: 100px 0;
    background: #f7f4ee;
}

.tkc-school-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 95px;
    align-items: start;
}

.tkc-school-section-label {
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.tkc-school-intro h2,
.tkc-school-strengths h2,
.tkc-school-situations h2,
.tkc-school-groups h2,
.tkc-school-process h2,
.tkc-school-packages h2,
.tkc-school-faq h2 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,3.8vw,60px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-school-intro h2 span,
.tkc-school-strengths h2 span,
.tkc-school-situations h2 span,
.tkc-school-groups h2 span,
.tkc-school-process h2 span,
.tkc-school-packages h2 span,
.tkc-school-faq h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-school-intro-copy p {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.85;
}

.tkc-school-intro-copy p:first-of-type {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 21px;
    line-height: 1.5;
}


/* Strengths */

.tkc-school-strengths {
    padding: 105px 0;
    background: #fff;
}

.tkc-school-section-head {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 48px;
}

.tkc-school-section-head > p {
    max-width: 540px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-school-strength-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
}

.tkc-school-strength-card {
    min-height: 300px;
    padding: 30px 28px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 18px;
    background: #faf9f7;
}

.tkc-school-strength-number {
    display: block;
    margin-bottom: 35px;
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 15px;
}

.tkc-school-strength-card h3 {
    margin: 0 0 13px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.14;
}

.tkc-school-strength-card p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.75;
}


/* School situations */

.tkc-school-situations {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 11% 12%,rgba(252,128,7,.08),transparent 26%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-school-situations-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 95px;
}

.tkc-school-situations h2 {
    color: #fff;
}

.tkc-school-situations-intro > p {
    max-width: 480px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-school-situation-list {
    border-top: 1px solid rgba(255,255,255,.14);
}

.tkc-school-situation {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.tkc-school-situation-number {
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 16px;
}

.tkc-school-situation h3 {
    margin: 0 0 6px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
}

.tkc-school-situation p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.7;
}


/* Target groups */

.tkc-school-groups {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-school-groups-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 48px;
}

.tkc-school-group-card {
    min-height: 320px;
    padding: 31px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 19px;
    background: #fff;
}

.tkc-school-group-card-featured {
    background:
        radial-gradient(circle at 85% 13%,rgba(252,128,7,.10),transparent 27%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
    border-color: transparent;
}

.tkc-school-group-label {
    display: block;
    margin-bottom: 33px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tkc-school-group-card h3 {
    margin: 0 0 13px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.12;
}

.tkc-school-group-card-featured h3 {
    color: #fff;
}

.tkc-school-group-card p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.75;
}

.tkc-school-group-card-featured p {
    color: rgba(255,255,255,.65);
}


/* Process */

.tkc-school-process {
    padding: 105px 0;
    background: #fff;
}

.tkc-school-process-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 15px;
    margin-top: 48px;
}

.tkc-school-process-step {
    position: relative;
    min-height: 245px;
    padding: 29px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 18px;
    background: #faf9f7;
}

.tkc-school-process-step::before {
    content: "";
    position: absolute;
    top: 42px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: rgba(38,61,79,.18);
}

.tkc-school-process-step:last-child::before {
    display: none;
}

.tkc-school-process-number {
    display: block;
    margin-bottom: 32px;
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 15px;
}

.tkc-school-process-step h3 {
    margin: 0 0 11px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
}

.tkc-school-process-step p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.7;
}


/* Packages note */

.tkc-school-packages {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-school-package-card {
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 80px;
    align-items: center;
    padding: 48px 50px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 13%,rgba(252,128,7,.11),transparent 28%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-school-package-card h2 {
    color: #fff;
}

.tkc-school-package-content p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.64);
    font-size: 12px;
    line-height: 1.8;
}

.tkc-school-package-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.tkc-school-package-link span {
    color: var(--tkc-orange);
}


/* FAQ */

.tkc-school-faq {
    padding: 105px 0;
    background: #fff;
}

.tkc-school-faq-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 90px;
}

.tkc-school-faq-items {
    border-top: 1px solid var(--tkc-border);
}

.tkc-school-faq-item {
    border-bottom: 1px solid var(--tkc-border);
}

.tkc-school-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    cursor: pointer;
    color: var(--tkc-blue-dark);
    font-size: 13px;
    font-weight: 800;
}

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

.tkc-school-faq-item summary span {
    color: var(--tkc-orange);
    font-size: 20px;
    font-weight: 400;
}

.tkc-school-faq-item[open] summary span {
    transform: rotate(45deg);
}

.tkc-school-faq-answer {
    max-width: 760px;
    padding: 0 40px 22px 0;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.8;
}


/* CTA */

.tkc-school-cta {
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 12%,rgba(252,128,7,.08),transparent 27%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-school-cta-inner {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 85px;
    align-items: center;
}

.tkc-school-cta h2 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,4vw,62px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-school-cta h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-school-cta-content p {
    max-width: 530px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-school-cta-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 19px;
    border-radius: 9px;
    background: var(--tkc-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}


/* Responsive */

@media (max-width: 1100px) {
    .tkc-school-hero-main {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    .tkc-school-intro-grid,
    .tkc-school-section-head,
    .tkc-school-package-card,
    .tkc-school-faq-layout,
    .tkc-school-cta-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tkc-school-strength-grid,
    .tkc-school-groups-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .tkc-school-situations-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .tkc-school-process-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 820px) {
    .tkc-school-hero {
        padding-top: 66px;
    }

    .tkc-school-hero-main {
        grid-template-columns: 1fr;
    }

    .tkc-school-hero-visual img {
        height: 470px;
    }

    .tkc-school-hero-badge {
        left: 18px;
    }

    .tkc-school-trustbar {
        grid-template-columns: repeat(2,1fr);
    }

    .tkc-school-trust:nth-child(2) {
        border-right: 0;
    }

    .tkc-school-trust:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .tkc-school-intro,
    .tkc-school-strengths,
    .tkc-school-situations,
    .tkc-school-groups,
    .tkc-school-process,
    .tkc-school-packages,
    .tkc-school-faq,
    .tkc-school-cta {
        padding: 76px 0;
    }
}

@media (max-width: 560px) {
    .tkc-school-hero h1 {
        font-size: 47px;
    }

    .tkc-school-hero-visual img {
        height: 390px;
        border-radius: 20px 20px 0 0;
    }

    .tkc-school-strength-grid,
    .tkc-school-groups-grid,
    .tkc-school-process-grid {
        grid-template-columns: 1fr;
    }

    .tkc-school-process-step::before {
        display: none;
    }

    .tkc-school-package-card {
        padding: 34px 26px;
    }
}

/* =========================================================
   HINWEISGEBERDIENST
   Template: page-hinweisgeberdienst.php
========================================================= */

.tkc-whistle-page {
    background: #fff;
    color: var(--tkc-text);
}

/* Hero */

.tkc-whistle-hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(252,128,7,.12), transparent 27%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-whistle-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size: 52px 52px;
}

.tkc-whistle-hero-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr);
    gap: 76px;
    align-items: center;
}

.tkc-whistle-kicker {
    margin: 0 0 16px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tkc-whistle-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(54px,4.7vw,76px);
    font-weight: 500;
    line-height: .99;
    letter-spacing: -.05em;
}

.tkc-whistle-hero h1 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-whistle-hero-lead {
    max-width: 650px;
    margin: 27px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.8;
}

.tkc-whistle-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 30px;
}

.tkc-whistle-hero-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
}

.tkc-whistle-hero-button-primary {
    background: var(--tkc-orange);
    color: #fff;
}

.tkc-whistle-hero-button-secondary {
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.055);
    color: #fff;
}

.tkc-whistle-hero-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px 24px 0 0;
    background:
        linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.035));
    box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.tkc-whistle-hero-card::before {
    content: "";
    position: absolute;
    right: -62px;
    bottom: -78px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(252,128,7,.26);
    border-radius: 50%;
    pointer-events: none;
}

.tkc-whistle-hero-card::after {
    content: "";
    position: absolute;
    right: -10px;
    bottom: -30px;
    width: 125px;
    height: 125px;
    border: 1px solid rgba(252,128,7,.17);
    border-radius: 50%;
    pointer-events: none;
}

.tkc-whistle-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
}

.tkc-whistle-card-label {
    display: block;
    margin-bottom: 9px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.tkc-whistle-card-title {
    max-width: 245px;
    margin: 0;
    color: #fff;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    line-height: 1.14;
}

.tkc-whistle-card-price {
    flex: 0 0 auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 0;
    white-space: nowrap;
}

.tkc-whistle-card-price strong {
    font-family: Georgia,"Times New Roman",serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.tkc-whistle-card-price span {
    color: rgba(255,255,255,.56);
    font-size: 9px;
}

.tkc-whistle-card-audiences {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
    margin-top: 34px;
}

.tkc-whistle-card-audience {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.04);
}

.tkc-whistle-card-audience span,
.tkc-whistle-card-audience small {
    display: block;
    color: rgba(255,255,255,.52);
    font-size: 8px;
}

.tkc-whistle-card-audience strong {
    display: block;
    margin: 5px 0 3px;
    color: #fff;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
}

.tkc-whistle-card-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px 18px;
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}

.tkc-whistle-card-list li {
    position: relative;
    margin: 0;
    padding-left: 20px;
    color: rgba(255,255,255,.76);
    font-size: 9px;
    line-height: 1.45;
}

.tkc-whistle-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tkc-orange);
    font-weight: 800;
}

.tkc-whistle-trustbar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid rgba(255,255,255,.14);
}

.tkc-whistle-trust {
    padding: 25px 22px 28px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.tkc-whistle-trust:last-child {
    border-right: 0;
}

.tkc-whistle-trust strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 11px;
}

.tkc-whistle-trust span {
    color: rgba(255,255,255,.52);
    font-size: 9px;
}


/* Intro */

.tkc-whistle-intro {
    padding: 100px 0;
    background: #f7f4ee;
}

.tkc-whistle-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 95px;
    align-items: start;
}

.tkc-whistle-section-label {
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.tkc-whistle-intro h2,
.tkc-whistle-benefits h2,
.tkc-whistle-process h2,
.tkc-whistle-duty h2,
.tkc-whistle-pricing h2,
.tkc-whistle-faq h2 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,3.8vw,60px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-whistle-intro h2 span,
.tkc-whistle-benefits h2 span,
.tkc-whistle-process h2 span,
.tkc-whistle-duty h2 span,
.tkc-whistle-pricing h2 span,
.tkc-whistle-faq h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-whistle-intro-copy p {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.85;
}

.tkc-whistle-intro-copy p:first-of-type {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 21px;
    line-height: 1.5;
}


/* Benefits */

.tkc-whistle-benefits {
    padding: 105px 0;
    background: #fff;
}

.tkc-whistle-section-head {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 48px;
}

.tkc-whistle-section-head > p {
    max-width: 540px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-whistle-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
}

.tkc-whistle-benefit-card {
    min-height: 270px;
    padding: 29px 27px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 18px;
    background: #faf9f7;
}

.tkc-whistle-benefit-number {
    display: block;
    margin-bottom: 35px;
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 15px;
}

.tkc-whistle-benefit-card h3 {
    margin: 0 0 13px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.15;
}

.tkc-whistle-benefit-card p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.75;
}


/* Process */

.tkc-whistle-process {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 10% 12%,rgba(252,128,7,.08),transparent 26%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-whistle-process-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 95px;
}

.tkc-whistle-process h2 {
    color: #fff;
}

.tkc-whistle-process-intro > p {
    max-width: 480px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-whistle-step-list {
    border-top: 1px solid rgba(255,255,255,.14);
}

.tkc-whistle-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.tkc-whistle-step-number {
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 16px;
}

.tkc-whistle-step h3 {
    margin: 0 0 6px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
}

.tkc-whistle-step p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.7;
}


/* Legal duty */

.tkc-whistle-duty {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-whistle-duty-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 88px;
    align-items: start;
}

.tkc-whistle-duty-intro > p {
    max-width: 500px;
    margin: 24px 0 0;
    color: var(--tkc-muted);
    font-size: 13px;
    line-height: 1.8;
}

.tkc-whistle-duty-cards {
    display: grid;
    gap: 12px;
}

.tkc-whistle-duty-card {
    padding: 23px 25px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 14px;
    background: #fff;
}

.tkc-whistle-duty-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--tkc-blue-dark);
    font-size: 12px;
}

.tkc-whistle-duty-card p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.7;
}

.tkc-whistle-duty-note {
    margin-top: 18px;
    padding: 15px 17px;
    border-left: 3px solid var(--tkc-orange);
    background: rgba(255,255,255,.58);
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.65;
}


/* Pricing */

.tkc-whistle-pricing {
    padding: 105px 0;
    background: #fff;
}

.tkc-whistle-pricing-head {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 46px;
}

.tkc-whistle-pricing-head > p {
    max-width: 530px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-whistle-price-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 15px;
}

.tkc-whistle-price-card {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 17px;
    background: #faf9f7;
}

.tkc-whistle-price-card-featured {
    border-color: transparent;
    background: linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-whistle-price-label {
    margin: 0 0 20px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tkc-whistle-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.tkc-whistle-price strong {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 40px;
    font-weight: 500;
}

.tkc-whistle-price-card-featured .tkc-whistle-price strong {
    color: #fff;
}

.tkc-whistle-price span {
    color: var(--tkc-muted);
    font-size: 10px;
}

.tkc-whistle-price-card-featured .tkc-whistle-price span {
    color: rgba(255,255,255,.56);
}

.tkc-whistle-price-meta {
    margin: 6px 0 20px;
    color: var(--tkc-muted);
    font-size: 9px;
}

.tkc-whistle-price-card-featured .tkc-whistle-price-meta {
    color: rgba(255,255,255,.52);
}

.tkc-whistle-price-card h3 {
    margin: 0 0 10px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 20px;
    font-weight: 500;
}

.tkc-whistle-price-card-featured h3 {
    color: #fff;
}

.tkc-whistle-price-card p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.7;
}

.tkc-whistle-price-card-featured p {
    color: rgba(255,255,255,.64);
}

.tkc-whistle-price-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 14px;
    border: 1px solid rgba(38,61,79,.22);
    border-radius: 8px;
    color: var(--tkc-blue-dark);
    font-size: 10px;
    font-weight: 800;
}

.tkc-whistle-price-card-featured .tkc-whistle-price-link {
    border-color: var(--tkc-orange);
    background: var(--tkc-orange);
    color: #fff;
}


.tkc-whistle-price-group + .tkc-whistle-price-group {
    margin-top: 60px;
}

.tkc-whistle-price-group-head {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 23px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(38,61,79,.10);
}

.tkc-whistle-price-group-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.tkc-whistle-price-group-head h3 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
}

.tkc-whistle-price-group-head > p {
    max-width: 520px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.7;
}

.tkc-whistle-price-group-municipal {
    padding-top: 4px;
}

.tkc-whistle-pricing-note {
    margin: 18px 0 0;
    color: var(--tkc-muted);
    font-size: 9px;
    line-height: 1.65;
}


/* FAQ */

.tkc-whistle-faq {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-whistle-faq-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 90px;
}

.tkc-whistle-faq-items {
    border-top: 1px solid var(--tkc-border);
}

.tkc-whistle-faq-item {
    border-bottom: 1px solid var(--tkc-border);
}

.tkc-whistle-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    cursor: pointer;
    color: var(--tkc-blue-dark);
    font-size: 13px;
    font-weight: 800;
}

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

.tkc-whistle-faq-item summary span {
    color: var(--tkc-orange);
    font-size: 20px;
    font-weight: 400;
}

.tkc-whistle-faq-item[open] summary span {
    transform: rotate(45deg);
}

.tkc-whistle-faq-answer {
    max-width: 760px;
    padding: 0 40px 22px 0;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.8;
}


/* CTA */

.tkc-whistle-cta {
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 12%,rgba(252,128,7,.08),transparent 27%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-whistle-cta-inner {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 85px;
    align-items: center;
}

.tkc-whistle-cta h2 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,4vw,62px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-whistle-cta h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-whistle-cta-content p {
    max-width: 530px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.66);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-whistle-cta-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 19px;
    border-radius: 9px;
    background: var(--tkc-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}


/* Responsive */

@media (max-width: 1100px) {
    .tkc-whistle-hero-main {
        grid-template-columns: 1fr 1fr;
        gap: 42px;
    }

    .tkc-whistle-intro-grid,
    .tkc-whistle-section-head,
    .tkc-whistle-duty-grid,
    .tkc-whistle-pricing-head,
    .tkc-whistle-faq-layout,
    .tkc-whistle-cta-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tkc-whistle-benefit-grid,
    .tkc-whistle-price-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .tkc-whistle-process-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 820px) {
    .tkc-whistle-hero {
        padding-top: 66px;
    }

    .tkc-whistle-hero-main {
        grid-template-columns: 1fr;
    }

    .tkc-whistle-hero-card {
        min-height: 430px;
    }

    .tkc-whistle-trustbar {
        grid-template-columns: repeat(2,1fr);
    }

    .tkc-whistle-trust:nth-child(2) {
        border-right: 0;
    }

    .tkc-whistle-trust:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .tkc-whistle-intro,
    .tkc-whistle-benefits,
    .tkc-whistle-process,
    .tkc-whistle-duty,
    .tkc-whistle-pricing,
    .tkc-whistle-faq,
    .tkc-whistle-cta {
        padding: 76px 0;
    }
}

@media (max-width: 560px) {
    .tkc-whistle-hero h1 {
        font-size: 47px;
    }

    .tkc-whistle-benefit-grid,
    .tkc-whistle-price-grid {
        grid-template-columns: 1fr;
    }

    .tkc-whistle-hero-card {
        min-height: 0;
        padding: 31px 25px;
    }

    .tkc-whistle-card-price strong {
        font-size: 56px;
    }
}

/* =========================================================
   PAKETE & PREISE
   Template: page-pakete-preise.php
========================================================= */

.tkc-prices-page {
    background: #fff;
    color: var(--tkc-text);
}

/* Hero */

.tkc-prices-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 86px;
    background:
        radial-gradient(circle at 83% 18%, rgba(252,128,7,.12), transparent 28%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-prices-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size: 52px 52px;
}

.tkc-prices-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    gap: 80px;
    align-items: end;
}

.tkc-prices-kicker {
    margin: 0 0 16px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tkc-prices-hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(54px,5vw,78px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.05em;
}

.tkc-prices-hero h1 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-prices-hero-copy {
    max-width: 580px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.85;
}

.tkc-prices-hero-nav {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 62px;
    border-top: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.tkc-prices-hero-nav a {
    padding: 22px 18px;
    border-right: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.72);
    font-size: 10px;
    font-weight: 800;
}

.tkc-prices-hero-nav a:last-child {
    border-right: 0;
}

.tkc-prices-hero-nav span {
    display: block;
    margin-bottom: 4px;
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 14px;
    font-weight: 500;
}


/* Intro */

.tkc-prices-intro {
    padding: 100px 0;
    background: #f7f4ee;
}

.tkc-prices-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 95px;
    align-items: start;
}

.tkc-prices-section-label {
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.tkc-prices-intro h2,
.tkc-prices-dsb h2,
.tkc-prices-whistle h2,
.tkc-prices-school h2,
.tkc-prices-individual h2,
.tkc-prices-custom h2 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,3.8vw,60px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-prices-intro h2 span,
.tkc-prices-dsb h2 span,
.tkc-prices-whistle h2 span,
.tkc-prices-school h2 span,
.tkc-prices-individual h2 span,
.tkc-prices-custom h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-prices-intro-copy p {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.85;
}

.tkc-prices-intro-copy p:first-of-type {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 21px;
    line-height: 1.5;
}


/* DSB Packages */

.tkc-prices-dsb {
    padding: 105px 0;
    background: #fff;
}

.tkc-prices-section-head {
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 46px;
}

.tkc-prices-section-head > p {
    max-width: 540px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-prices-card-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
}

.tkc-prices-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 31px 28px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 18px;
    background: #faf9f7;
}

.tkc-prices-card-featured {
    border-color: transparent;
    background:
        radial-gradient(circle at 88% 12%,rgba(252,128,7,.10),transparent 27%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
    box-shadow: 0 24px 55px rgba(16,44,67,.16);
}

.tkc-prices-card-label {
    margin: 0 0 16px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tkc-prices-card-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.tkc-prices-card-price strong {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 43px;
    font-weight: 500;
    line-height: 1;
}

.tkc-prices-card-featured .tkc-prices-card-price strong {
    color: #fff;
}

.tkc-prices-card-price span {
    color: var(--tkc-muted);
    font-size: 10px;
}

.tkc-prices-card-featured .tkc-prices-card-price span {
    color: rgba(255,255,255,.56);
}

.tkc-prices-card-meta {
    margin: 7px 0 0;
    color: var(--tkc-muted);
    font-size: 9px;
}

.tkc-prices-card-featured .tkc-prices-card-meta {
    color: rgba(255,255,255,.50);
}

.tkc-prices-card-divider {
    height: 1px;
    margin: 23px 0;
    background: rgba(38,61,79,.10);
}

.tkc-prices-card-featured .tkc-prices-card-divider {
    background: rgba(255,255,255,.13);
}

.tkc-prices-card ul {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
}

.tkc-prices-card li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 21px;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.55;
}

.tkc-prices-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tkc-orange);
    font-weight: 800;
}

.tkc-prices-card-featured li {
    color: rgba(255,255,255,.70);
}

.tkc-prices-card-link {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 0 15px;
    border: 1px solid rgba(38,61,79,.22);
    border-radius: 8px;
    color: var(--tkc-blue-dark);
    font-size: 10px;
    font-weight: 800;
}

.tkc-prices-card-featured .tkc-prices-card-link {
    border-color: var(--tkc-orange);
    background: var(--tkc-orange);
    color: #fff;
}


/* Whistleblower */

.tkc-prices-whistle {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-prices-whistle-panels {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
    margin-top: 48px;
}

.tkc-prices-whistle-panel {
    padding: 35px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 20px;
    background: #fff;
}

.tkc-prices-whistle-panel-featured {
    border-color: transparent;
    background:
        radial-gradient(circle at 85% 13%,rgba(252,128,7,.10),transparent 28%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-prices-whistle-panel > span {
    display: block;
    margin-bottom: 21px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tkc-prices-whistle-panel h3 {
    margin: 0 0 10px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 31px;
    font-weight: 500;
}

.tkc-prices-whistle-panel-featured h3 {
    color: #fff;
}

.tkc-prices-whistle-panel .tkc-prices-inline-price {
    margin: 0 0 21px;
    color: var(--tkc-muted);
    font-size: 11px;
}

.tkc-prices-whistle-panel-featured .tkc-prices-inline-price {
    color: rgba(255,255,255,.60);
}

.tkc-prices-inline-price strong {
    margin: 0 4px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 35px;
    font-weight: 500;
}

.tkc-prices-whistle-panel-featured .tkc-prices-inline-price strong {
    color: #fff;
}

.tkc-prices-whistle-panel p {
    margin: 0 0 25px;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.75;
}

.tkc-prices-whistle-panel-featured p {
    color: rgba(255,255,255,.64);
}

.tkc-prices-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--tkc-blue-dark);
    font-size: 10px;
    font-weight: 800;
}

.tkc-prices-whistle-panel-featured .tkc-prices-inline-link {
    color: #fff;
}

.tkc-prices-inline-link span {
    color: var(--tkc-orange);
}


/* Schools */

.tkc-prices-school {
    padding: 105px 0;
    background: #fff;
}

.tkc-prices-school-card {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 80px;
    align-items: center;
    padding: 47px 50px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 22px;
    background: #faf9f7;
}

.tkc-prices-school-content p {
    margin: 0 0 14px;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.8;
}

.tkc-prices-school-links {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 20px;
}

.tkc-prices-school-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid rgba(38,61,79,.18);
    border-radius: 8px;
    color: var(--tkc-blue-dark);
    font-size: 10px;
    font-weight: 800;
}

.tkc-prices-school-link-primary {
    border-color: var(--tkc-orange);
    background: var(--tkc-orange);
    color: #fff;
}


/* Individual services */

.tkc-prices-individual {
    padding: 105px 0;
    background:
        radial-gradient(circle at 10% 12%,rgba(252,128,7,.08),transparent 27%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-prices-individual h2 {
    color: #fff;
}

.tkc-prices-individual-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 90px;
}

.tkc-prices-individual-intro > p {
    max-width: 480px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.64);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-prices-individual-list {
    border-top: 1px solid rgba(255,255,255,.14);
}

.tkc-prices-individual-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.tkc-prices-individual-row strong {
    display: block;
    margin-bottom: 4px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 20px;
    font-weight: 500;
}

.tkc-prices-individual-row span {
    color: rgba(255,255,255,.54);
    font-size: 10px;
}

.tkc-prices-individual-price {
    color: var(--tkc-orange) !important;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 21px !important;
    white-space: nowrap;
}


/* Custom */

.tkc-prices-custom {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-prices-custom-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
    padding: 50px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(38,61,79,.10);
}

.tkc-prices-custom-content p {
    margin: 0 0 20px;
    color: var(--tkc-muted);
    font-size: 13px;
    line-height: 1.8;
}

.tkc-prices-custom-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--tkc-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}


/* Responsive */

@media (max-width: 1100px) {
    .tkc-prices-hero-layout,
    .tkc-prices-intro-grid,
    .tkc-prices-section-head,
    .tkc-prices-school-card,
    .tkc-prices-custom-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tkc-prices-card-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .tkc-prices-individual-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media (max-width: 820px) {
    .tkc-prices-hero {
        padding: 72px 0 65px;
    }

    .tkc-prices-hero-nav {
        grid-template-columns: repeat(2,1fr);
    }

    .tkc-prices-hero-nav a:nth-child(2) {
        border-right: 0;
    }

    .tkc-prices-hero-nav a:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .tkc-prices-intro,
    .tkc-prices-dsb,
    .tkc-prices-whistle,
    .tkc-prices-school,
    .tkc-prices-individual,
    .tkc-prices-custom {
        padding: 76px 0;
    }

    .tkc-prices-card-grid,
    .tkc-prices-whistle-panels {
        grid-template-columns: 1fr;
    }

    .tkc-prices-school-card,
    .tkc-prices-custom-card {
        padding: 35px 30px;
    }
}

@media (max-width: 560px) {
    .tkc-prices-hero h1 {
        font-size: 47px;
    }

    .tkc-prices-hero-nav {
        grid-template-columns: 1fr;
    }

    .tkc-prices-hero-nav a {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .tkc-prices-hero-nav a:last-child {
        border-bottom: 0;
    }

    .tkc-prices-individual-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* =========================================================
   UNTERNEHMEN & TEAM
   Template: page-unternehmen-team.php
   WICHTIG: bewusst mit tkc-company-* isoliert, damit die
   bestehende Team-Sektion der Startseite nicht beeinflusst wird.
========================================================= */

.tkc-company-page {
    background: #fff;
    color: var(--tkc-text);
}

.tkc-company-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 86px;
    background:
        radial-gradient(circle at 82% 18%, rgba(252,128,7,.11), transparent 28%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-company-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size: 52px 52px;
}

.tkc-company-hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 74px;
    align-items: center;
}

.tkc-company-kicker {
    margin: 0 0 16px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tkc-company-hero h1 {
    max-width: 690px;
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(54px,5vw,78px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.05em;
}

.tkc-company-hero h1 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-company-hero p {
    max-width: 590px;
    margin: 27px 0 0;
    color: rgba(255,255,255,.70);
    font-size: 15px;
    line-height: 1.85;
}

.tkc-company-hero-image {
    position: relative;
}

.tkc-company-hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.tkc-company-hero-note {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 270px;
    padding: 15px 17px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 11px;
    background: rgba(16,44,67,.74);
    color: rgba(255,255,255,.84);
    font-size: 10px;
    line-height: 1.55;
    backdrop-filter: blur(8px);
}

.tkc-company-intro {
    padding: 100px 0;
    background: #f7f4ee;
}

.tkc-company-intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 95px;
    align-items: start;
}

.tkc-company-section-label {
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.tkc-company-intro h2,
.tkc-company-people h2,
.tkc-company-values h2,
.tkc-company-history h2 {
    margin: 0;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,3.8vw,60px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-company-intro h2 span,
.tkc-company-people h2 span,
.tkc-company-values h2 span,
.tkc-company-history h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-company-intro-copy p {
    max-width: 760px;
    margin: 0 0 16px;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.85;
}

.tkc-company-intro-copy p:first-of-type {
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 21px;
    line-height: 1.5;
}

.tkc-company-people {
    padding: 105px 0;
    background: #fff;
}

.tkc-company-people-head {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 48px;
}

.tkc-company-people-head > p {
    max-width: 530px;
    margin: 0;
    color: var(--tkc-muted);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-company-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
}

.tkc-company-card {
    overflow: hidden;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 19px;
    background: #faf9f7;
}

.tkc-company-card-image {
    overflow: hidden;
    aspect-ratio: 4 / 4.7;
    background: #ece9e3;
}

.tkc-company-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .35s ease;
}

.tkc-company-card:hover .tkc-company-card-image img {
    transform: scale(1.02);
}

.tkc-company-card-content {
    padding: 24px 24px 25px;
}

.tkc-company-card-role {
    display: block;
    margin-bottom: 8px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.tkc-company-card h3 {
    margin: 0 0 7px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.12;
}

.tkc-company-card p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 11px;
    line-height: 1.65;
}

.tkc-company-values {
    padding: 105px 0;
    background:
        radial-gradient(circle at 10% 12%,rgba(252,128,7,.08),transparent 27%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-company-values h2 {
    color: #fff;
}

.tkc-company-values-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 90px;
}

.tkc-company-values-intro > p {
    max-width: 470px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.63);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-company-values-list {
    border-top: 1px solid rgba(255,255,255,.14);
}

.tkc-company-value {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.tkc-company-value span {
    color: var(--tkc-orange);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 16px;
}

.tkc-company-value h3 {
    margin: 0 0 6px;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 22px;
    font-weight: 500;
}

.tkc-company-value p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 11px;
    line-height: 1.7;
}

.tkc-company-history {
    padding: 105px 0;
    background: #f7f4ee;
}

.tkc-company-history-card {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 80px;
    align-items: center;
    padding: 48px 50px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 22px;
    background: #fff;
}

.tkc-company-history-content p {
    margin: 0 0 14px;
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.8;
}

.tkc-company-history-links {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 20px;
}

.tkc-company-history-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 15px;
    border: 1px solid rgba(38,61,79,.18);
    border-radius: 8px;
    color: var(--tkc-blue-dark);
    font-size: 10px;
    font-weight: 800;
}

.tkc-company-history-link-primary {
    border-color: var(--tkc-orange);
    background: var(--tkc-orange);
    color: #fff;
}

.tkc-company-cta {
    padding: 96px 0;
    background: #fff;
}

.tkc-company-cta-card {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 80px;
    align-items: center;
    padding: 48px 50px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 86% 13%,rgba(252,128,7,.10),transparent 28%),
        linear-gradient(145deg,#102c43,#153a56);
    color: #fff;
}

.tkc-company-cta h2 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(42px,4vw,60px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.tkc-company-cta h2 span {
    display: block;
    color: var(--tkc-orange);
}

.tkc-company-cta-content p {
    margin: 0 0 20px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
    line-height: 1.8;
}

.tkc-company-cta-button {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 17px;
    border-radius: 8px;
    background: var(--tkc-orange);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .tkc-company-hero-layout,
    .tkc-company-intro-grid,
    .tkc-company-people-head,
    .tkc-company-values-layout,
    .tkc-company-history-card,
    .tkc-company-cta-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tkc-company-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 820px) {
    .tkc-company-hero {
        padding: 72px 0;
    }

    .tkc-company-hero-image img {
        height: 470px;
    }

    .tkc-company-intro,
    .tkc-company-people,
    .tkc-company-values,
    .tkc-company-history,
    .tkc-company-cta {
        padding: 76px 0;
    }

    .tkc-company-history-card,
    .tkc-company-cta-card {
        padding: 35px 30px;
    }
}

@media (max-width: 560px) {
    .tkc-company-hero h1 {
        font-size: 47px;
    }

    .tkc-company-grid {
        grid-template-columns: 1fr;
    }

    .tkc-company-hero-image img {
        height: 410px;
    }
}

/* =========================================================
   RECHTLICHE SEITEN
   Templates: page-impressum.php / page-datenschutz.php
========================================================= */

.tkc-legal-page {
    background: #f7f4ee;
    color: var(--tkc-text);
}

.tkc-legal-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 78px;
    background:
        radial-gradient(circle at 84% 16%, rgba(252,128,7,.10), transparent 28%),
        linear-gradient(135deg,#102c43,#153a56);
    color: #fff;
}

.tkc-legal-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
    background-size: 52px 52px;
}

.tkc-legal-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.tkc-legal-kicker {
    margin: 0 0 15px;
    color: var(--tkc-orange);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.tkc-legal-hero h1 {
    margin: 0;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(52px,5vw,76px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.05em;
}

.tkc-legal-hero p {
    max-width: 690px;
    margin: 23px 0 0;
    color: rgba(255,255,255,.67);
    font-size: 14px;
    line-height: 1.8;
}

.tkc-legal-content {
    padding: 82px 0 105px;
}

.tkc-legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0,820px);
    gap: 78px;
    align-items: start;
}

.tkc-legal-side {
    position: sticky;
    top: 110px;
}

.tkc-legal-side span {
    display: block;
    margin-bottom: 13px;
    color: var(--tkc-orange);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.tkc-legal-side p {
    margin: 0;
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.7;
}

.tkc-legal-main {
    min-width: 0;
}

.tkc-legal-section {
    padding: 0 0 33px;
    margin: 0 0 33px;
    border-bottom: 1px solid rgba(38,61,79,.11);
}

.tkc-legal-section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.tkc-legal-section h2 {
    margin: 0 0 17px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.tkc-legal-section h3 {
    margin: 23px 0 11px;
    color: var(--tkc-blue-dark);
    font-size: 13px;
    font-weight: 800;
}

.tkc-legal-section p,
.tkc-legal-section li {
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.82;
}

.tkc-legal-section p {
    margin: 0 0 13px;
}

.tkc-legal-section ul {
    margin: 10px 0 14px;
    padding-left: 20px;
}

.tkc-legal-section li {
    margin-bottom: 7px;
}

.tkc-legal-address {
    margin: 0 0 15px;
    padding: 20px 22px;
    border: 1px solid rgba(38,61,79,.10);
    border-radius: 13px;
    background: #fff;
}

.tkc-legal-address strong {
    display: block;
    margin-bottom: 7px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 18px;
    font-weight: 500;
}

.tkc-legal-address p {
    margin: 0;
}

.tkc-legal-section a {
    color: var(--tkc-blue-dark);
    text-decoration: underline;
    text-decoration-color: rgba(252,128,7,.55);
    text-underline-offset: 3px;
}

.tkc-legal-note {
    padding: 17px 19px;
    border-left: 3px solid var(--tkc-orange);
    background: rgba(255,255,255,.66);
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.7;
}

.tkc-legal-toc {
    margin-top: 16px;
}

.tkc-legal-toc a {
    display: block;
    padding: 7px 0;
    color: var(--tkc-muted);
    font-size: 10px;
    line-height: 1.4;
}

.tkc-legal-toc a:hover {
    color: var(--tkc-blue-dark);
}

@media (max-width: 900px) {
    .tkc-legal-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tkc-legal-side {
        position: static;
    }

    .tkc-legal-toc {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 4px 22px;
    }
}

@media (max-width: 560px) {
    .tkc-legal-hero {
        padding: 68px 0 58px;
    }

    .tkc-legal-hero h1 {
        font-size: 47px;
    }

    .tkc-legal-content {
        padding: 62px 0 78px;
    }

    .tkc-legal-toc {
        grid-template-columns: 1fr;
    }

    .tkc-legal-section h2 {
        font-size: 25px;
    }
}

/* Vollständige angelieferte Rechtstexte innerhalb des Legal-Layouts */
.tkc-legal-source-content > h1 {
    display: none;
}

.tkc-legal-source-content > h2 {
    margin: 0;
    padding: 34px 0 17px;
    color: var(--tkc-blue-dark);
    font-family: Georgia,"Times New Roman",serif;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.025em;
    border-top: 1px solid rgba(38,61,79,.11);
}

.tkc-legal-source-content > h2:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.tkc-legal-source-content h3 {
    margin: 24px 0 10px;
    color: var(--tkc-blue-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.tkc-legal-source-content h4 {
    margin: 19px 0 8px;
    color: var(--tkc-blue-dark);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.5;
}

.tkc-legal-source-content p,
.tkc-legal-source-content li {
    color: var(--tkc-muted);
    font-size: 12px;
    line-height: 1.82;
}

.tkc-legal-source-content p {
    margin: 0 0 13px;
}

.tkc-legal-source-content ul {
    margin: 10px 0 17px;
    padding-left: 20px;
}

.tkc-legal-source-content li {
    margin-bottom: 7px;
}

.tkc-legal-source-content a {
    color: var(--tkc-blue-dark);
    text-decoration: underline;
    text-decoration-color: rgba(252,128,7,.55);
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

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

@media (max-width: 1180px) {

    .tkc-testimonials-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .tkc-client-logos {
        grid-template-columns: repeat(4,1fr);
    }

    .tkc-client-logo {
        height: 120px;
    }

    .tkc-article-layout {
        grid-template-columns: minmax(0,1.6fr) 300px;
        gap: 45px;
    }

}


@media (max-width: 1100px) {

    .tkc-services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .tkc-pricing-layout,
    .tkc-context-layout,
    .tkc-faq-layout,
    .tkc-contact-card {
        grid-template-columns: 1fr;
    }

    .tkc-context-layout,
    .tkc-faq-layout,
    .tkc-contact-card {
        gap: 50px;
    }

    .tkc-team-head,
    .tkc-testimonials-head,
    .tkc-home-knowledge-head,
    .tkc-knowledge-posts-head,
    .tkc-knowledge-hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tkc-team-grid {
        grid-template-columns: repeat(2,1fr);
        grid-template-rows: 500px 310px 310px;
    }

    .tkc-team-card-featured {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .tkc-faq-intro {
        position: static;
    }

    .tkc-article-layout {
        grid-template-columns: 1fr;
    }

    .tkc-article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 16px;
    }

    .tkc-featured-post-card {
        grid-template-columns: 1fr 1fr;
    }

    .tkc-knowledge-cta-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

.tkc-network-head {
    grid-template-columns: 1fr;

    gap: 30px;
}

.tkc-network-grid {
    grid-template-columns: 1fr;
}

.tkc-network-card {
    min-height: auto;
}


@media (max-width: 1000px) {

    .tkc-navigation {
        display: none;
    }

	.tkc-mobile-menu {
    display: block;
}

.tkc-header-cta {
    display: none;
}

.tkc-footer-main {
    grid-template-columns: repeat(2,1fr);
    gap: 45px 60px;
}
    .tkc-hero-main {
        grid-template-columns: 1fr;
    }

    .tkc-trustbar {
        grid-template-columns: repeat(2,1fr);
    }

    .tkc-services-head {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tkc-related-grid,
    .tkc-knowledge-grid,
    .tkc-home-knowledge-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .tkc-home-knowledge-card:last-child {
        grid-column: 1 / 3;
    }

    .tkc-featured-post-content {
        padding: 38px;
    }

.tkc-navigation {
    display: none;
}

.tkc-mobile-menu {
    display: block;
}

.tkc-header-cta {
    display: none;
}


@media (max-width: 760px) {

.tkc-network {
    padding: 72px 0;
}

.tkc-law-card,
.tkc-network-card {
    border-radius: 18px;
}

.tkc-law-card {
    min-height: auto;
}

.tkc-law-card-content,
.tkc-network-card {
    padding: 26px;
}

.tkc-law-card-top {
    align-items: flex-start;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 28px;
}

.tkc-law-brand-logo {
    width: 210px;
}

.tkc-law-brand-logo img {
    width: 195px;

    transform: none;
}

.tkc-law-card h3 {
    font-size: 37px;
}

.tkc-network-card h3 {
    font-size: 30px;
}

.tkc-network-disclaimer {
    align-items: flex-start;
}

.tkc-header-inner {
    min-height: 68px;
}

.tkc-logo-text {
    font-size: 12px;
}

.tkc-logo-text small {
    font-size: 8px;
}	
	
	.tkc-header-inner {
    min-height: 68px;
}

.tkc-logo-text {
    font-size: 12px;
}

.tkc-logo-text small {
    font-size: 8px;
}

.tkc-footer {
    padding-top: 60px;
}

.tkc-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.tkc-footer-brand {
    max-width: none;
}

.tkc-footer-bottom {
    padding: 22px 0;

    flex-direction: column;
    align-items: flex-start;
}

.tkc-footer-legal {
    flex-wrap: wrap;
}
	
    .tkc-container {
        width: min(calc(100% - 32px), var(--tkc-container));
    }

    .tkc-header-cta {
        display: none;
    }

    .tkc-hero {
        padding-top: 48px;
    }

    .tkc-hero h1 {
        font-size: clamp(46px,14vw,62px);
    }

    .tkc-buttons {
        flex-direction: column;
    }

    .tkc-button {
        width: 100%;
    }

    .tkc-team-photo {
        min-height: 370px;
    }

    .tkc-hero-photo,
    .tkc-photo-overlay {
        height: 370px;
    }

    .tkc-emmi-note {
        display: none;
    }

    .tkc-trustbar {
        grid-template-columns: 1fr;
    }

    .tkc-trust-item {
        padding: 17px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .tkc-services,
    .tkc-pricing,
    .tkc-context,
    .tkc-team,
    .tkc-testimonials,
    .tkc-home-knowledge,
    .tkc-faq,
    .tkc-contact,
    .tkc-related-posts,
    .tkc-knowledge-posts,
    .tkc-knowledge-cta {
        padding: 72px 0;
    }

    .tkc-services-grid,
    .tkc-pricing-cards,
    .tkc-testimonials-grid,
    .tkc-related-grid,
    .tkc-knowledge-grid,
    .tkc-home-knowledge-grid {
        grid-template-columns: 1fr;
    }

    .tkc-home-knowledge-card:last-child {
        grid-column: auto;
    }

    .tkc-price-card-featured {
        transform: none;
    }

    .tkc-addons {
        flex-direction: column;
        align-items: flex-start;
    }

    .tkc-context-item {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .tkc-team-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .tkc-team-card,
    .tkc-team-card-featured {
        grid-column: auto;
        grid-row: auto;
        height: 430px;
    }

    .tkc-team-card-featured {
        height: 520px;
    }

    .tkc-team-card-featured h3 {
        font-size: 38px;
    }

    .tkc-team-bottom,
    .tkc-testimonials-bottom,
    .tkc-home-knowledge-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .tkc-client-logos {
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
        padding: 20px 0;
    }

    .tkc-client-logo {
        height: 115px;
    }

    .tkc-testimonial-card {
        min-height: auto;
    }


    /* FAQ */

    .tkc-faq-item summary {
        gap: 18px;
        padding: 22px 0;
        font-size: 20px;
    }

    .tkc-faq-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .tkc-faq-answer {
        padding: 0 0 25px;
    }


    /* Kontakt */

    .tkc-contact-content h2 {
        font-size: clamp(42px,12vw,56px);
    }

    .tkc-contact-box {
        border-radius: 18px;
    }

    .tkc-contact-box-top,
    .tkc-contact-form {
        padding-left: 24px;
        padding-right: 24px;
    }

    .tkc-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    /* Single Post */

    .tkc-article-hero {
        padding: 44px 0 42px;
    }

    .tkc-article-hero h1 {
        font-size: clamp(36px,10vw,48px);
    }

    .tkc-article {
        padding: 40px 0 65px;
    }

    .tkc-article-body {
        font-size: 16px;
    }

    .tkc-article-body h2 {
        font-size: 32px;
    }

    .tkc-article-body table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .tkc-post-navigation {
        grid-template-columns: 1fr;
    }

    .tkc-post-navigation-next {
        text-align: left;
    }

    .tkc-article-sidebar {
        display: block;
    }

    .tkc-sidebar-card {
        margin-bottom: 16px;
    }


    /* Wissensseite */

    .tkc-knowledge-hero {
        padding: 58px 0 55px;
    }

    .tkc-knowledge-hero h1 {
        font-size: clamp(44px,12vw,60px);
    }

    .tkc-category-nav {
        padding: 16px 0;
    }

    .tkc-featured-post {
        padding: 45px 0 20px;
    }

    .tkc-featured-post-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tkc-featured-post-image,
    .tkc-featured-post-image img {
        min-height: 280px;
        height: 280px;
    }

    .tkc-featured-post-content {
        padding: 28px;
    }

    .tkc-featured-post-content h2 {
        font-size: 34px;
    }

    .tkc-knowledge-card-image,
    .tkc-home-knowledge-image {
        height: 220px;
    }

    .tkc-knowledge-cta-inner {
        padding: 32px 25px;
    }

    .tkc-knowledge-cta h2 {
        font-size: 37px;
    }


    /* Footer */

    .tkc-footer-inner {
        flex-direction: column;
    }

}