:root {
    --color-gold: #D4AF37;
    --color-warm-gold: #C8A742;
    --color-deep-navy: #0B1220;
    --color-anthrazit: #0E0F13;
    --color-akzent-blau: #2F7AE5;
    --color-weiss: #F5F7FA;
    --tg-theme-primary: var(--color-gold);
    --tg-theme-secondary: var(--color-akzent-blau);
    --tg-common-color-black: var(--color-anthrazit);
    --tg-common-color-black-2: var(--color-deep-navy);
    --tg-heading-color: var(--color-weiss);
}

/* Inline gold highlight, matching .sub-title2 gradient */

/* Neutralize gold scrollbar (avoid yellow bar) */
html {
    scrollbar-color: rgba(255, 255, 255, 0.25) rgba(255, 255, 255, 0.08);
}
html::-webkit-scrollbar-thumb { background-color: rgba(255, 255, 255, 0.25) !important; }
html::-webkit-scrollbar-track { background-color: rgba(255, 255, 255, 0.08) !important; }

body.bg-black2 {
    background-color: var(--color-deep-navy);
    color: var(--color-weiss);
}

/* Buttons */
.tg-btn-4,
.tg-btn-5,
.tg-btn-primary {
    background-color: var(--color-gold);
    color: var(--color-anthrazit);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.tg-btn-4:hover,
.tg-btn-5:hover,
.tg-btn-primary:hover {
    background-color: var(--color-warm-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.tg-btn-outline-secondary {
    background-color: transparent;
    border: 1px solid var(--color-akzent-blau);
    color: var(--color-akzent-blau);
    box-shadow: 0 0 8px rgba(47, 122, 229, 0.3);
}

.tg-btn-outline-secondary:hover {
    background-color: var(--color-akzent-blau);
    color: var(--color-anthrazit);
    box-shadow: 0 0 12px rgba(47, 122, 229, 0.6);
}

@media (max-width: 575.98px) {
    .tg-btn-4,
    .tg-btn-5,
    .tg-btn-primary {
        background-color: transparent;
        color: var(--color-weiss);
    }
    
}

/* Branchenlösungen Karten */

.industries__area .nft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.industries__area .nft-card:hover .nft-card-thumb img {
    transform: scale(1.05);
}

/* Blog Karten gleiche Höhe */
.blog__area .nft-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog__area .nft-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog__area .nft-card-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog__area .nft-card:hover .nft-card-thumb img {
    transform: scale(1.03);
}

.blog__area .nft-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog__area .nft-card-content p {
    margin-top: auto;
}

/* Skeleton Loader */

@keyframes skeleton-loading {
    0% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
}

/* Diagonale Trennlinie */

/* Modern FAQ Section */
.faq-modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-modern-item {
    background: rgba(18, 21, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 18px 35px -28px rgba(10, 12, 20, 0.8);
    backdrop-filter: blur(6px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.faq-modern-item:focus-within,
.faq-modern-item[data-open="true"] {
    border-color: rgba(10, 214, 160, 0.65);
    transform: translateY(-2px);
}

.faq-modern-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    text-align: left;
    background: transparent;
    border: none;
    color: inherit;
    font-size: clamp(1rem, 1.9vw, 1.125rem);
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Spotlight hover cards */

@media (hover: hover) and (pointer: fine) {
    .spotlight-card:hover {
        transform: translateY(-4px);
        border-color: rgba(10, 214, 160, 0.35);
        box-shadow: 0 12px 30px -18px rgba(10, 214, 160, 0.55);
    }
}

.spotlight-card:focus-within {
    border-color: rgba(10, 214, 160, 0.35);
}

.faq-modern-button span:first-child {
    flex: 1 1 auto;
}

.faq-modern-button:hover {
    color: var(--tg-theme-primary);
}

.faq-modern-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 214, 160, 0.35);
    border-radius: 20px;
}

.faq-modern-button[aria-expanded="true"] {
    color: var(--tg-theme-primary);
}

.faq-modern-button .faq-chevron {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, background-color 0.3s ease;
}

.faq-modern-button[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    background: rgba(10, 214, 160, 0.18);
}

.faq-modern-body {
    padding: 0 26px 0 26px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease;
}

.faq-modern-body[data-open] {
    opacity: 1;
    margin-bottom: 22px;
}

.faq-modern-body p {
    margin: 0;
    padding: 0 0 18px 0;
    color: rgba(245, 247, 250, 0.85);
}

/* Blog article helpers */
.blog-intro-box {
    background: rgba(20, 24, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 18px 35px -32px rgba(10, 12, 20, 0.9);
    margin-bottom: 36px;
}

.blog-toc {
    background: rgba(20, 24, 35, 0.85);
    border: 1px solid rgba(47, 122, 229, 0.35);
    border-left-width: 3px;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 48px;
}

.blog-toc__title {
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.blog-toc__list a {
    color: var(--tg-theme-primary);
    font-weight: 500;
}

.blog-section {
    margin-bottom: 48px;
}

.blog-section h2 {
    margin-bottom: 16px;
}

.blog-section h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: clamp(1.1rem, 2.4vw, 1.3rem);
}

.blog-section ul,
.blog-section ol {
    margin-left: 18px;
    margin-bottom: 18px;
    padding-left: 10px;
}

.blog-table-wrapper {
    overflow-x: auto;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(18, 21, 30, 0.85);
    border-radius: 12px;
    overflow: hidden;
}

.blog-table th,
.blog-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-table th {
    background: rgba(47, 122, 229, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

/* Blog: Source pills */
.blog-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.source-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    backdrop-filter: blur(6px);
    color: #d9e1f0;
    text-decoration: none;
    font-weight: 600;
    font-size: x-small;
}
.source-pill::after {
    content: '';
    position: absolute; inset: 0; border-radius: 999px; pointer-events: none;
    background:
      linear-gradient(90deg, rgba(76,148,255,0), rgba(76,148,255,0.45) 22%, rgba(24,201,172,0.45) 78%, rgba(24,201,172,0)) top center / calc(100% - 18px) 1px no-repeat,
      linear-gradient(90deg, rgba(76,148,255,0), rgba(76,148,255,0.45) 22%, rgba(24,201,172,0.45) 78%, rgba(24,201,172,0)) bottom center / calc(100% - 18px) 1px no-repeat,
      linear-gradient(180deg, rgba(76,148,255,0), rgba(76,148,255,0.45) 25%, rgba(24,201,172,0.45) 75%, rgba(24,201,172,0)) left center / 1px calc(100% - 10px) no-repeat,
      linear-gradient(180deg, rgba(76,148,255,0), rgba(76,148,255,0.45) 25%, rgba(24,201,172,0.45) 75%, rgba(24,201,172,0)) right center / 1px calc(100% - 10px) no-repeat;
}
.source-pill i { color: #0ad6a0; }
.source-pill:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 2px rgba(24, 50, 80, 0.25) inset;
}

.author-link {
    color: var(--tg-theme-primary);
    font-weight: 600;
}
.author-link:hover { text-decoration: underline; }

/* Inline variant for pills inside text */
.source-pill--inline {
    font-size: x-small;
    padding: 3px 8px;
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.02);
}

.blog-table tbody tr:last-child td {
    border-bottom: none;
}

.blog-faq h3 {
    font-size: clamp(1.05rem, 2.3vw, 1.25rem);
    margin-top: 24px;
    margin-bottom: 8px;
}

.blog-disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Reading progress bar */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Gold progress with soft glow */
    background: linear-gradient(90deg,
        var(--color-gold) 0,
        var(--color-gold) var(--progress),
        transparent var(--progress)
    );
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.55);
    z-index: 9999;
    pointer-events: none;
}

/* Language switcher (header) */
.lang-switcher {
    display: none;
    gap: 8px;
    align-items: center;
    float: right;
    margin-right: 12px;
    margin-top: 3px;
    line-height: 1;
}
.lang-switcher a {
    font-size: 20px;
    text-decoration: none;
    opacity: 0.8;
}
.lang-switcher a.active {
    opacity: 1;
}
@media (max-width: 1199.98px) {
    .lang-switcher { display: flex; }
}
.lang-switcher-desktop { display: none; }
@media (min-width: 1200px) {
    .lang-switcher-desktop { display: block; }
    .lang-switcher-desktop .lang-switcher {
        display: flex;
        float: none;
        margin: 0;
    }
}

.contact-cta {
    text-align: center;
    margin-top: 36px;
    padding: 32px;
    background: rgba(47, 122, 229, 0.08);
    border: 1px solid rgba(47, 122, 229, 0.25);
    border-radius: 18px;
}

.contact-cta a {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 32px;
    border-radius: 999px;
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-black);
    font-weight: 600;
}

.contact-cta a + a {
    margin-left: 0;
}

/* Back to top button */
.to-top-btn {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e7ecf6;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.to-top-btn:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.25); }
.to-top-btn i { font-size: 18px; line-height: 1; }
.to-top-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(10, 214, 160, 0.35); }
.to-top-btn[data-visible="1"] { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 575.98px) {
    .to-top-btn { right: 14px; bottom: 18px; width: 42px; height: 42px; }
}

.contact-cta a:hover {
    background: var(--color-warm-gold);
    color: var(--tg-common-color-black);
}

@media (max-width: 575.98px) {
    .faq-modern-button {
        padding: 18px 20px;
    }
    .faq-modern-body {
        padding: 0 20px;
    }
}

/* Keywords Section */
.keywords-list a:hover {
    background-color: var(--tg-theme-primary);
    color: var(--tg-common-color-black-2);
    border-color: var(--tg-theme-primary);
}

/* Process Section */
.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive for process diagram */
/* Off-canvas menu improvements */
.offCanvas__menu {
    padding: 30px 40px;
}
.offCanvas__menu .list-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.offCanvas__menu .list-wrap li a {
    display: block;
    padding: 10px 15px;
    background: #1f2935;
    border-radius: 5px;
    color: var(--tg-body-color);
    transition: background 0.3s;
}
.offCanvas__menu .list-wrap li a:hover {
    background: var(--tg-theme-primary);
    color: var(--tg-common-color-black);
}
.offCanvas__btn {
    margin: 20px 0 40px;
}

/* Reusable light cone background utility */

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* color variants */

/* Blog ticker */
.blog-ticker {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 48px;
}
.blog-ticker-stack { margin-bottom: 16px; }
.blog-ticker-stack .blog-ticker { margin-bottom: 0; }
.blog-ticker-stack .blog-ticker + .blog-ticker { margin-top: 0; }
.blog-ticker__nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  pointer-events: none; /* allow clicks only on buttons */
  z-index: 2;
}
.blog-ticker__btn {
  pointer-events: auto;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #e7ecf6;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.blog-ticker__btn:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.28); }
.blog-ticker__btn:active { transform: scale(0.96); }
.blog-ticker__btn svg { display: block; }
.blog-ticker__more { text-align: center; margin-top: 12px; margin-bottom: 8px; }
.blog-more-btn { font-size: 0.8rem; padding: 6px 12px; border-radius: 999px; }
.blog-ticker::before,
.blog-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  z-index: 1;
}
.blog-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(16, 22, 38, 1) 0%, rgba(16, 22, 38, 0) 100%);
}
.blog-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(16, 22, 38, 1) 0%, rgba(16, 22, 38, 0) 100%);
}
.blog-ticker__track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 14px 32px;
  animation: blogTicker 60s linear infinite;
}
.blog-ticker:hover .blog-ticker__track {
  animation-play-state: paused;
}
.blog-ticker__item {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.95rem;
}
.blog-ticker__item a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-ticker__item a:hover {
  color: #62d2ff;
}
.blog-ticker__title {
  font-weight: 500;
}
.blog-ticker__date {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
@keyframes blogTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .blog-ticker {
    margin-bottom: 36px;
  }
  .blog-ticker__btn { width: 32px; height: 32px; }
  .blog-ticker__track {
    gap: 20px;
    padding: 12px 24px;
    animation-duration: 70s;
  }
  .blog-ticker__item {
    font-size: 0.9rem;
  }
}

/* Landing page shared layout */

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-list details {
    background: rgba(17, 19, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 16px;
    padding: 16px 20px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
}

.faq-list p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.85);
}

/* Landing Page v2 */
.lp2-main {
    background: linear-gradient(180deg, rgba(10, 14, 24, 0.95) 0%, rgba(14, 18, 30, 0.98) 100%);
}

.lp2-hero {
    position: relative;
    padding: 140px 0 120px;
    text-align: center;
    color: #f5f7fa;
    background:
        radial-gradient(circle at 15% 20%, rgba(47, 122, 229, 0.18), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(255, 195, 0, 0.2), transparent 60%),
        linear-gradient(135deg, #0b111f 0%, #111a2f 60%, #0b111f 100%);
}

.lp2-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 214, 160, 0.12);
    color: #a4ffe6;
    border: 1px solid rgba(10, 214, 160, 0.4);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.lp2-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 18px;
    font-weight: 700;
}

.lp2-hero p {
    max-width: 860px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
    color: rgba(245, 247, 250, 0.9);
}

.lp2-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.lp2-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.lp2-hero-stats div {
    background: rgba(10, 14, 24, 0.7);
    border: 1px solid rgba(90, 140, 255, 0.25);
    border-radius: 14px;
    padding: 20px;
}

.lp2-hero-stats strong {
    display: block;
    font-weight: 700;
    color: #a4c6ff;
    font-size: 1.95rem;
    line-height: 1.05;
}

.lp2-hero-stats strong .lp2-count { display: flex; justify-content: center;}
.lp2-hero-stats .lp2-count {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    white-space: nowrap;
}
.lp2-hero-stats strong { white-space: nowrap; margin-bottom: 10px;}
.lp2-hero-stats span .lp2-count-number { line-height: 1; display: inline-block; font-size: 1.95rem;}
.lp2-count-prefix, .lp2-count-suffix { font-size: 0.6em; opacity: 0.9; }
.lp2-count-prefix { margin-right: 2px; }
.lp2-count-suffix { margin-left: 2px; }

/* Pulse for central 60% */
@keyframes lp2Pulse {
    0% { transform: scale(1); text-shadow: 0 0 0 rgba(10, 214, 160, 0); }
    50% { transform: scale(1.06); text-shadow: 0 0 18px rgba(10, 214, 160, 0.45); }
    100% { transform: scale(1); text-shadow: 0 0 0 rgba(10, 214, 160, 0); }
}
.lp2-pulse { animation: lp2Pulse 1.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .lp2-pulse { animation: none; } }

.lp2-hero-stats span {
    display: block;
    font-size: 0.95rem;
    color: rgba(245, 247, 250, 0.75);
}

/* Hero Lottie ornament (bottom-left) */
.lp2-hero-ornament {
    position: absolute;
    left: 24px;
    bottom: -24px;
    width: clamp(200px, 22vw, 320px);
    pointer-events: none;
    opacity: 0.9;
    filter: drop-shadow(0 12px 24px rgba(10, 214, 160, 0.2));
    display: none;
}
.lp2-hero-ornament dotlottie-player { width: 100%; height: auto; }
@media (min-width: 992px) { .lp2-hero-ornament { display: block; } }

/* Standort ornament (bottom-left of section) */
.lp2-location-col { position: relative; }
.lp2-location-ornament {
    position: absolute;
    width: clamp(160px, 22vw, 280px);
    pointer-events: none;
    opacity: 0.95;
    filter: drop-shadow(0 12px 24px rgba(47, 122, 229, 0.25));
    z-index: 2;
}
.lp2-location-ornament dotlottie-player { width: 100%; height: auto; }
@media (max-width: 991.98px) {
  .lp2-location-ornament {
    scale: 0.8;
    width: clamp(140px, 48vw, 220px);
  }
}

.lp2-section {
    background: rgba(12, 18, 30, 0.9);
    position: relative;
    overflow: hidden;
}

.lp2-section > .container {
    padding: 120px 0;
}

.lp2-section--dark {
    background: rgba(6, 10, 18, 0.92);
}

.lp2-section--accent {
    background: linear-gradient(135deg, rgba(20, 42, 66, 0.9), rgba(12, 22, 38, 0.9));
}

.lp2-section--cta {
    background: linear-gradient(120deg, rgba(20, 35, 58, 0.95), rgba(9, 19, 33, 0.95));
    color: #f5f7fa;
}

.lp2-card-grid {
    display: flex;
    flex-wrap: wrap;
}

.lp2-card {
    background: rgba(18, 24, 36, 0.9);
    border: 1px solid rgba(90, 140, 255, 0.18);
    border-radius: 14px;
    padding: 32px 28px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp2-card--featured {
    border-color: rgba(255, 194, 54, 0.55);
    box-shadow: 0 0 0 2px rgba(255, 194, 54, 0.25), 0 24px 40px -26px rgba(255, 194, 54, 0.6);
}

.lp2-card--featured .lp2-card-icon {
    background: rgba(255, 194, 54, 0.2);
    color: #ffdb70;
}

.lp2-card--featured h3 {
    color: #ffeec0;
}

.lp2-card--featured p {
    color: rgba(255, 238, 192, 0.9);
}

.lp2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px -20px rgba(90, 140, 255, 0.5);
}

.lp2-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(90, 140, 255, 0.2);
    color: #a4c6ff;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.lp2-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #f5f7fa;
}

.lp2-card p {
    margin: 0;
    color: rgba(217, 225, 240, 0.8);
}

.bg-black2 .lp2-table-card,
.lp2-section--dark .lp2-table-card {
    background: rgba(36, 46, 68, 0.92);
    border-color: rgba(160, 190, 255, 0.28);
}

.bg-black2 .lp2-table-card h3,
.lp2-section--dark .lp2-table-card h3 {
    color: #f8f9fb;
}

.bg-black2 .lp2-table-card p,
.bg-black2 .lp2-table-card li,
.lp2-section--dark .lp2-table-card p,
.lp2-section--dark .lp2-table-card li {
    color: rgba(230, 235, 245, 0.78);
}

.bg-black2 .lp2-table-card--rainbow::before,
.lp2-section--dark .lp2-table-card--rainbow::before {
    opacity: 0.9;
}

.bg-black2 .lp2-card,
.lp2-section--dark .lp2-card {
    background: rgba(44, 54, 76, 0.9);
    border-color: rgba(160, 190, 255, 0.3);
    box-shadow: 0 18px 30px -26px rgba(20, 30, 50, 0.9);
}

.bg-black2 .lp2-card h3,
.lp2-section--dark .lp2-card h3 {
    color: #f8f8fb;
}

.bg-black2 .lp2-card p,
.lp2-section--dark .lp2-card p {
    color: rgba(230, 235, 245, 0.78);
}

.bg-black2 .lp2-card a.tg-btn-outline-secondary,
.lp2-section--dark .lp2-card a.tg-btn-outline-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 10px 18px;
}

.bg-black2 .lp2-card-icon,
.lp2-section--dark .lp2-card-icon {
    background: rgba(160, 190, 255, 0.2);
    color: #d7e5ff;
}

.bg-black2 .lp2-card .tg-btn-outline-secondary,
.lp2-section--dark .lp2-card .tg-btn-outline-secondary {
    border-color: rgba(145, 170, 235, 0.35);
    color: rgba(230, 235, 245, 0.85);
}

.bg-black2 .lp2-card .tg-btn-outline-secondary:hover,
.lp2-section--dark .lp2-card .tg-btn-outline-secondary:hover {
    background: rgba(145, 170, 235, 0.12);
    color: #ffffff;
}

.bg-black2 .text-muted,
.bg-black2 .small.text-muted,
.lp2-section--dark .text-muted,
.lp2-section--dark .small.text-muted {
    color: rgba(208, 220, 240, 0.7) !important;
}

.section-pt-80 { padding-top: 80px; }
.section-pt-120 { padding-top: 120px; }
.section-pt-40 { padding-top: 40px; }
.section-pb-60 { padding-bottom: 60px; }
.section-pb-120 { padding-bottom: 120px; }
.section-pb-40 { padding-bottom: 40px; }

.tg-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 11px 22px;
    background: rgba(117, 150, 255, 0.1);
    color: #d7e5ff;
    border: 1px solid rgba(170, 200, 255, 0.35);
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tg-btn-ghost:hover {
    background: rgba(117, 150, 255, 0.22);
    color: #ffffff;
    border-color: rgba(190, 214, 255, 0.55);
    transform: translateY(-2px);
}

.lp2-callout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-radius: 18px;
    padding: 28px 32px;
    border: 1px solid rgba(170, 200, 255, 0.22);
    background: linear-gradient(135deg, rgba(32, 44, 72, 0.95), rgba(20, 30, 48, 0.95));
    color: #f3f6ff;
    box-shadow: 0 20px 60px -40px rgba(15, 25, 44, 0.9);
}

.lp2-callout--accent { position: relative; }
.lp2-callout--accent::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle, 0deg), #2f7ae5, #0ad6a0, #ffc236, #ff6ec7, #2f7ae5);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    animation: lp2SpinBorder 8s linear infinite;
}
.lp2-callout--accent::after {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 140%; height: 140%;
    background: radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.08), transparent 45%);
    pointer-events: none;
    filter: blur(2px);
}

.lp2-callout h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.lp2-callout p {
    margin: 0;
    color: rgba(230, 236, 255, 0.85);
}

.lp2-callout-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(117, 150, 255, 0.22);
    color: #d7e5ff;
    font-size: 1.4rem;
}

.lp2-callout--accent .lp2-callout-icon {
    animation: lp2Pulse 2.6s ease-in-out infinite;
    box-shadow: 0 8px 24px -12px rgba(47, 122, 229, 0.6);
}

@keyframes lp2Pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.lp2-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.lp2-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,0.06); color: #eaf1ff; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.12); }
.lp2-badge i { color: #a4c6ff; }

.lp2-callout-actions { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.lp2-callout-actions .tg-btn-5 { padding: 11px 18px; }
.lp2-callout-actions .tg-btn-outline-secondary { padding: 10px 16px; }



.lp2-timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 32px;
    display: grid;
    gap: 56px;
    --lp2-progress: 0%;
}

.lp2-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(90, 140, 255, 0.35);
    border-radius: 2px;
}

.lp2-timeline::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: var(--lp2-progress);
    background: linear-gradient(180deg, rgba(10,214,160,1) 0%, rgba(47,122,229,1) 100%);
    box-shadow: 0 0 10px rgba(10,214,160,0.55), 0 0 18px rgba(47,122,229,0.45);
    border-radius: 2px;
}

.lp2-timeline-item {
    position: relative;
}

.lp2-step {
    position: absolute;
    left: -43px;
    top: -6px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 214, 160, 0.18);
    border: 2px solid rgba(10, 214, 160, 0.9);
    color: #0ad6a0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.lp2-step.is-reached {
    background: rgba(10, 214, 160, 0.3);
    color: #0ad6a0;
    box-shadow: 0 0 0 4px rgba(10,214,160,0.18), 0 0 24px rgba(10,214,160,0.6);
    transform: translateX(10px) scale(1.05);
}

.lp2-timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #f5f7fa;
}

@keyframes lp2HeadingGlow {
    0% { text-shadow: 0 0 0 rgba(10,214,160,0); }
    50% { text-shadow: 0 0 18px rgba(10,214,160,0.55); }
    100% { text-shadow: 0 0 0 rgba(10,214,160,0); }
}

.lp2-timeline-item.is-reached h3 {
    color: #ffffff;
    animation: lp2HeadingGlow 1.2s ease-out 1;
}

.lp2-timeline-item p {
    margin: 0;
    color: rgba(217, 225, 240, 0.78);
}

.lp2-key { color: #0ad6a0; font-weight: 600; }

.lp2-marker {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    background: linear-gradient(90deg, #ffdb70 0%, #ffc236 100%);
    color: #0b1424;
    font-weight: 700;
    box-shadow: 0 0 0 2px rgba(255, 194, 54, 0.25), 0 3px 12px rgba(255, 194, 54, 0.35);
}

.lp2-marker.is-idle {
    background: transparent;
    color: #f5f7fa;
    box-shadow: none;
    opacity: 0.75;
    transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, opacity 0.35s ease;
}

.lp2-marker.is-glow {
    background: linear-gradient(90deg, #ffdb70 0%, #ffc236 100%);
    color: #0b1424;
    box-shadow: 0 0 0 2px rgba(255, 194, 54, 0.25), 0 6px 18px rgba(255, 194, 54, 0.5);
    opacity: 1;
    animation: lp2MarkerPulse 0.9s ease-out;
}

@keyframes lp2MarkerPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 194, 54, 0.0), 0 0 0 0 rgba(255, 194, 54, 0.0); }
    60% { box-shadow: 0 0 0 3px rgba(255, 194, 54, 0.3), 0 10px 28px rgba(255, 194, 54, 0.55); }
    100% { box-shadow: 0 0 0 2px rgba(255, 194, 54, 0.25), 0 6px 18px rgba(255, 194, 54, 0.5); }
}

.lp2-timeline-note { margin-top: 40px; }

.lp2-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.lp2-benefit-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: flex-start;
    color: rgba(245, 247, 250, 0.85);
}

.lp2-benefit-list i {
    color: #ffd166;
    padding-top: 4px;
}

.lp2-testimonial {
    background: rgba(10, 14, 24, 0.8);
    border: 1px solid rgba(90, 140, 255, 0.18);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    font-size: 0.98rem;
    color: rgba(245, 247, 250, 0.85);
    position: relative;
}

.lp2-testimonial::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -16px;
    left: 24px;
    font-size: 2rem;
    color: rgba(90, 140, 255, 0.35);
}

.lp2-testimonial-meta {
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(217, 225, 240, 0.7);
}

.lp2-testimonial-meta strong {
    display: block;
    font-size: 0.95rem;
    color: #f5f7fa;
}

.lp2-pricing-card {
    background: rgba(12, 18, 32, 0.92);
    border: 1px solid rgba(90, 140, 255, 0.22);
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 20px 35px -26px rgba(47, 122, 229, 0.6);
}

.lp2-pricing-card--featured {
    background: linear-gradient(145deg, rgba(28, 50, 82, 0.9), rgba(15, 26, 44, 0.95));
    border-color: rgba(10, 214, 160, 0.45);
    position: relative;
    isolation: isolate;
}

/* Pulsierender Glow fuer die mittlere Preiskarte */
@keyframes lp2PricingPulseGlow {
    0% { opacity: 0.22; transform: scale(0.985); }
    50% { opacity: 0.65; transform: scale(1.0); }
    100% { opacity: 0.22; transform: scale(0.985); }
}
@keyframes lp2PricingBreath {
    0%, 100% { box-shadow: 0 20px 42px -24px rgba(0, 212, 199, 0.55), 0 0 0 0 rgba(0, 212, 199, 0.0); }
    50% { box-shadow: 0 24px 56px -22px rgba(0, 212, 199, 0.85), 0 0 18px 0 rgba(0, 212, 199, 0.35); }
}
.lp2-pricing-card--featured::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(0, 212, 199, 0.28) 0%, rgba(0, 212, 199, 0.12) 35%, rgba(0, 212, 199, 0.0) 70%);
    filter: blur(14px);
    opacity: 0.35;
    animation: lp2PricingPulseGlow 2.2s ease-in-out infinite;
}
.lp2-pricing-card--featured {
    animation: lp2PricingBreath 2.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .lp2-pricing-card--featured { animation: none; }
    .lp2-pricing-card--featured::after { animation: none; }
}

.lp2-pricing-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: rgba(245, 247, 250, 0.78);
}

.lp2-pricing-card li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #ffd166;
}

.lp2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(10, 214, 160, 0.16);
    color: #ffd166;
    border-radius: 999px;
    padding: 6px 14px;
}

.lp2-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f5f7fa;
    margin-bottom: 0;
}

.lp2-faq details {
    background: rgba(10, 14, 24, 0.85);
    border: 1px solid rgba(90, 140, 255, 0.18);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.lp2-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #f5f7fa;
}

.lp2-faq details[open] {
    border-color: rgba(10, 214, 160, 0.4);
}

.lp2-faq p {
    margin-top: 12px;
    color: rgba(217, 225, 240, 0.78);
}

.lp2-contact-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 10px;
}

.lp2-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.lp2-contact-list a {
    color: #f5f7fa;
}

.lp2-contact-list i {
    color: #ffd166;
}

.lp2-contact-box {
    background: rgba(10, 14, 24, 0.9);
    border: 1px solid rgba(90, 140, 255, 0.22);
    border-radius: 18px;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp2-contact-box ol {
    margin: 0;
    padding-left: 20px;
    color: rgba(245, 247, 250, 0.78);
}

.lp2-contact-box li {
    margin-bottom: 6px;
}

@media (max-width: 991.98px) {
    .lp2-hero {
        padding: 110px 0 100px;
    }
    .lp2-timeline {
        margin-left: 0;
        padding-left: 24px;
    }
    .lp2-step {
        left: -36px;
    }
    .lp2-section > .container {
        padding: 120px 0;
    }
}

@media (max-width: 575.98px) {
    .lp2-hero-actions {
        flex-direction: column;
    }
    .lp2-hero-stats {
        grid-template-columns: 1fr;
    }
    
}
.lp2-hero-media {
    position: relative;
    text-align: center;
}

.lp2-hero-media img {
    max-width: 460px;
    width: 100%;
    height: clamp(360px, 55vw, 560px);
    border-radius: 28px;
    border: 1px solid rgba(90, 140, 255, 0.4);
    box-shadow: 0 22px 40px -25px rgba(47, 122, 229, 0.7);
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 991.98px) {
    .lp2-hero-media img {
        height: clamp(320px, 70vw, 480px);
        max-width: 380px;
    }
}

@media (max-width: 575.98px) {
    .lp2-hero-media img {
        height: clamp(280px, 80vw, 380px);
    }
}

.lp2-hero-badge {
    position: absolute;
    bottom: -18px;
    right: 12px;
    background: rgba(10, 14, 24, 0.9);
    border: 1px solid rgba(10, 214, 160, 0.4);
    border-radius: 16px;
    padding: 14px 18px;
    text-align: left;
    color: #f5f7fa;
}

.lp2-hero-badge strong {
    display: block;
    font-size: 0.95rem;
}

.lp2-hero-badge span {
    font-size: 0.8rem;
    color: rgba(217, 225, 240, 0.75);
}

.lp2-usecase-card {
    background: rgba(12, 18, 30, 0.92);
    border: 1px solid rgba(90, 140, 255, 0.22);
    border-radius: 18px;
    padding: 26px 24px;
    height: 100%;
}

.lp2-usecase-card--gradient {
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(12, 18, 30, 0.88);
}
.lp2-usecase-card--gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(172, 94, 218, 0.25) 0%, rgba(76, 148, 255, 0.22) 45%, rgba(24, 201, 172, 0.25) 100%);
    z-index: 0;
}
.lp2-usecase-card--gradient > * { position: relative; z-index: 1; }
.lp2-usecase-card--gradient li::before { content: '\\f058'; color: #a4ffe6; }

.lp2-usecase-card h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
    color: #f5f7fa;
}

.lp2-usecase-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: rgba(217, 225, 240, 0.82);
}

.lp2-usecase-card li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: #a4c6ff;
}

.lp2-card-icon i, .lp2-usecase-card i {
    margin-right: 6px;
}

.tg-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid rgba(245, 247, 250, 0.4);
    color: #f5f7fa;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.tg-btn-outline:hover {
    background: rgba(245, 247, 250, 0.12);
    border-color: rgba(245, 247, 250, 0.6);
    color: #f5f7fa;
}

.lp2-section--location {
    background: linear-gradient(135deg, rgba(16, 24, 38, 0.95), rgba(8, 12, 22, 0.95));
}

.lp2-location-card {
    background: rgba(10, 14, 24, 0.9);
    border: 1px solid rgba(90, 140, 255, 0.22);
    border-radius: 22px;
    padding: 34px 32px;
    color: rgba(245, 247, 250, 0.88);
    display: grid;
    gap: 18px;
}

.lp2-location-card h2 {
    margin: 0;
    color: #f5f7fa;
}

.lp2-location-meta {
    display: grid;
    gap: 12px;
}

.lp2-location-meta strong {
    display: block;
    color: #a4c6ff;
}

.lp2-hours {
    display: grid;
    gap: 8px;
    font-size: 0.95rem;
}

.lp2-hours div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(90, 140, 255, 0.25);
    padding-bottom: 4px;
}

.lp2-location-footnote {
    font-size: 0.85rem;
    color: rgba(217, 225, 240, 0.7);
}

.lp2-map {
    text-align: center;
    margin: 0;
}

.lp2-map img {
    max-width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(47, 122, 229, 0.3);
    box-shadow: 0 24px 42px -28px rgba(47, 122, 229, 0.6);
}

.lp2-map figcaption {
    margin-top: 12px;
    font-size: 0.85rem;
    color: rgba(217, 225, 240, 0.72);
}

.lp2-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp2-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Orchestrator callout */
.lp2-orchestrator {
    margin-top: 22px;
    padding: 24px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(24, 201, 172, 0.18), rgba(76, 148, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.lp2-orchestrator__content { display: flex; align-items: center; gap: 16px; flex: 1 1 360px; }
.lp2-orchestrator__icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(10, 214, 160, 0.18);
    color: #a4ffe6; font-size: 1.2rem;
}
.lp2-orchestrator h3 { margin: 0 0 4px 0; font-size: 1.1rem; color: #f5f7fa; }
.lp2-orchestrator p { margin: 0; color: rgba(217, 225, 240, 0.9); }
.lp2-orchestrator .tg-btn-5 { white-space: nowrap; margin-left: auto; }

.lp2-orchestrator__media { flex: 0 1 360px; }
.lp2-orchestrator__media img {
    display: block;
    width: 100%; height: auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 46px -30px rgba(24, 50, 80, 0.9);
}

/* Wave section with animated dividers */
.lp2-wave-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17, 20, 40, 0.96) 0%, rgba(19, 31, 58, 0.96) 40%, rgba(11, 39, 59, 0.95) 70%, rgba(16, 47, 54, 0.94) 100%);
}

.lp2-wave-section::after {
    content: "";
    position: absolute;
    inset: -6% -4%;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 18% 18%, rgba(130, 71, 255, 0.18), transparent 62%),
      radial-gradient(ellipse at 78% 15%, rgba(63, 217, 166, 0.18), transparent 60%),
      radial-gradient(ellipse at 50% 88%, rgba(255, 205, 120, 0.16), transparent 68%);
    mix-blend-mode: screen;
    opacity: 0.85;
    transform: translateZ(0);
}
.lp2-wave {
    position: absolute;
    left: 0; right: 0;
    height: 80px;
    pointer-events: none;
    background-repeat: repeat-x;
    background-size: 600px 100%;
    animation: lp2WaveMove 14s linear infinite;
    z-index: 2;
    will-change: background-position;
    backface-visibility: hidden;
    transform: translateZ(0);
    animation-play-state: paused;
}
.lp2-wave--top { top: -1px; transform: scaleY(-1); }
.lp2-wave--bottom { bottom: -1px; }

/* Deep navy waves to blend into surrounding sections */
.lp2-wave--top,
.lp2-wave--bottom {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 80' preserveAspectRatio='none'%3E%3Cpath d='M0 40 C 75 80 175 0 300 40 C 425 80 525 0 600 40 L600 80 L0 80 Z' fill='%23101c33'/%3E%3C/svg%3E");
}

@keyframes lp2WaveMove {
    0% { background-position-x: 0; }
    100% { background-position-x: -600px; }
}

.lp2-wave-section.is-active .lp2-wave { animation-play-state: running; }

/* Reusable glass card */
.glass-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -34px rgba(24, 50, 80, 0.9); }

/* Animated gradient frame for bot card */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes lp2SpinBorder { to { --angle: 360deg; } }

/* Methode grid: equal heights across two rows */
.lp2-methode-grid {
    display: grid;
    gap: 16px;
}
@media (min-width: 992px) {
    .lp2-methode-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
        grid-template-rows: 1fr 1fr;
        align-items: stretch;
        grid-auto-flow: dense;
    }
    .lp2-methode-grid > * { height: 100%; }
    .lp2-methode-grid .lp2-span-2 { grid-row: 1 / span 2; }
    .lp2-methode-grid .lp2-col-left { grid-column: 1; }
    .lp2-methode-grid .lp2-col-center { grid-column: 2; }
    .lp2-methode-grid .lp2-col-right { grid-column: 3; }
}

/* When motion preference is reduce, stop waves */
@media (prefers-reduced-motion: reduce) {
  .lp2-wave { animation: none; }
}

/* Edge-faded frame for stats: lines only centered on edges */

/* Reusable subtle glass frame (segment glow on edges) */

/* Benefit list spacing alignment */
.lp2-benefit-list li {
    align-items: center;
    padding: 6px 0;
}
/* Soft gradient wash for sections */
.lp2-section::before {
    content: '';
    position: absolute;
    inset: -10% -5% -10% -5%;
    background:
        radial-gradient(900px 600px at 15% 10%, rgba(47, 122, 229, 0.18), transparent 60%),
        radial-gradient(900px 600px at 85% 20%, rgba(10, 214, 160, 0.16), transparent 60%),
        radial-gradient(800px 500px at 50% 90%, rgba(255, 110, 140, 0.12), transparent 60%);
    pointer-events: none;
}
.lp2-section > * { position: relative; z-index: 1; }

/* Remove section wash on wave section */
.lp2-wave-section::before { display: none; }

/* Data tables (Warum jetzt) */
.lp2-table-card {
    background: rgba(12, 18, 30, 0.92);
    border: 1px solid rgba(90, 140, 255, 0.22);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
}

/* Scoped hover for KI‑Mitarbeiter "Was ist …" Abschnitt */
#was-ist-ki-mitarbeiter .lp2-table-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 214, 160, 0.45);
    box-shadow: 0 24px 52px -36px rgba(10, 214, 160, 0.55);
}

.lp2-table-card--rainbow {
    position: relative;
    border: none;
}
.lp2-table-card--rainbow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle), #2f7ae5, #0ad6a0, #ff6ec7, #ffc236, #2f7ae5);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    animation: lp2SpinBorder 10s linear infinite;
}
.lp2-table-card--rainbow:hover { box-shadow: 0 20px 35px -28px rgba(47, 122, 229, 0.55); }
.lp2-table-card--rainbow h3 { color: #f5f7fa; }

.lp2-chart-canvas { width: 100% !important; height: 340px !important; }

/* Comparison card UI */
.lp2-comparison-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.lp2-comparison-toggle { display: flex; gap: 8px; }
.lp2-comparison-btn { width: 40px; height: 40px; border-radius: 10px; background: transparent; border: 1px solid rgba(255,255,255,0.18); color: #d9e1f0; display: grid; place-items: center; }
.lp2-comparison-btn.is-active { background: rgba(47,122,229,0.15); border-color: rgba(47,122,229,0.55); color: #a4c6ff; }
.lp2-comparison-body .lp2-comparison-view { display: none; }
.lp2-comparison-body .lp2-comparison-view.is-active { display: block; }
.lp2-chart-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 992px) { .lp2-chart-grid { grid-template-columns: 1fr 1fr; } }
.lp2-chart-item h4 { margin: 0 0 8px 0; font-size: 1rem; color: #f5f7fa; }

.lp2-sources {
    margin-top: 14px;
    font-size: 0.92rem;
    color: rgba(217, 225, 240, 0.88);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 10px 14px;
    background: rgba(12, 18, 30, 0.6);
}
.lp2-sources a { color: #a4c6ff; }
.lp2-sources p { margin: 8px 0; }
.lp2-sources summary { cursor: pointer; list-style: none; }
.lp2-sources summary::-webkit-details-marker { display: none; }
.lp2-sources summary { font-weight: 600; color: #f5f7fa; position: relative; padding-right: 22px; }
.lp2-sources summary::after {
    content: '';
    width: 12px; height: 12px; display: inline-block;
    position: absolute; right: 2px; top: 50%; transform: translateY(-50%) rotate(0deg);
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 24 24' fill='none' stroke='%23a4c6ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    transition: transform 0.25s ease;
}
.lp2-sources[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.lp2-sources[open] { background: rgba(12, 18, 30, 0.75); }
.lp2-sources-body { margin-top: 8px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.35s ease, opacity 0.35s ease; }
.lp2-sources[open] .lp2-sources-body { max-height: 1200px; opacity: 1; }

.lp2-source-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 10px 0; }
.lp2-pill-link {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    color: #d9e1f0;
    font-size: 0.85em;
}

.lp2-related-articles .title2 {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
}
.lp2-related-desc {
    max-width: 760px;
    margin: 0 auto 36px auto;
    font-size: 1.05rem;
    color: rgba(217, 225, 240, 0.88);
}
.lp2-related-articles .lp2-source-pills {
    gap: 12px;
    row-gap: 14px;
    max-width: 960px;
    margin: 0 auto;
    justify-content: center;
}

.lp2-timeline-list {
    margin: 14px 0 0 0;
    padding-left: 0;
    list-style: none;
}
.lp2-timeline-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: rgba(217, 225, 240, 0.9);
}
.lp2-timeline-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: 0;
    color: #0ad6a0;
}
.lp2-roadmap-accordion {
    display: grid;
    row-gap: 16px;
    max-width: 940px;
    margin: 0 auto;
}
.lp2-roadmap-item {
    background: rgba(12, 18, 30, 0.95);
    border-radius: 16px;
    border: 1px solid rgba(47, 122, 229, 0.25);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp2-roadmap-item[open] {
    border-color: rgba(10, 214, 160, 0.55);
    box-shadow: 0 20px 48px -32px rgba(10, 214, 160, 0.55);
}
.lp2-roadmap-item summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    list-style: none;
    cursor: pointer;
}
.lp2-roadmap-item summary::-webkit-details-marker { display: none; }
.lp2-roadmap-item summary h3 {
    margin: 0;
    font-size: 1.25rem;
    text-transform: uppercase;
}
.lp2-roadmap-item summary p {
    margin: 0;
    color: rgba(217, 225, 240, 0.78);
    font-size: 0.98rem;
}
.lp2-roadmap-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lp2-roadmap-caret {
    color: rgba(217, 225, 240, 0.7);
    transition: transform 0.2s ease;
}
.lp2-roadmap-item[open] .lp2-roadmap-caret {
    transform: rotate(180deg);
    color: #0ad6a0;
}
.lp2-roadmap-body {
    padding: 0 20px 18px 62px;
}
.lp2-roadmap-body ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(217, 225, 240, 0.88);
}
.lp2-roadmap-body ul li { margin-bottom: 6px; }
.lp2-roadmap-body ul li:last-child { margin-bottom: 0; }
.lp2-roadmap-step {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2f7ae5, #0ad6a0);
    color: #06101d;
    font-weight: 700;
    box-shadow: 0 6px 18px -12px rgba(47, 122, 229, 0.65);
    flex-shrink: 0;
}
.digital-level:hover { transform: translateY(-4px); box-shadow: 0 24px 42px -34px rgba(24, 50, 80, 0.8); }

.lp2-usecase-card {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    background: rgba(14, 20, 34, 0.92);
}
.lp2-usecase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 214, 160, 0.45);
    box-shadow: 0 24px 52px -36px rgba(10, 214, 160, 0.55);
}
.lp2-usecase-card h3 { margin-top: 12px; }
.lp2-usecase-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(10, 214, 160, 0.12);
    border: 1px solid rgba(10, 214, 160, 0.35);
    color: #0ad6a0;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.lp2-usecase-card:hover .lp2-usecase-icon {
    border-color: rgba(47, 122, 229, 0.55);
    color: #2f7ae5;
}

.tgmenu__navbar-wrap .tgmenu__stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto 0 122px;
}
@media (max-width: 1500px) {
    .tgmenu__navbar-wrap .tgmenu__stack {
        margin: 0 auto 0 65px;
    }
}
.tgmenu__navbar-wrap .tgmenu__stack .navigation {
    margin: 0;
}
.tgmenu__topic-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tgmenu__topic-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 999px;
    border: 1px solid rgba(164, 198, 255, 0.25);
    background: rgba(16, 24, 40, 0.65);
    color: rgba(233, 239, 255, 0.92);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.tgmenu__topic-bar-link:hover,
.tgmenu__topic-bar-link:focus {
    color: #0ad6a0;
    border-color: rgba(10, 214, 160, 0.45);
    background: rgba(10, 214, 160, 0.12);
    text-decoration: none;
}
.tgmenu__topic-bar-link.is-active {
    color: #0ad6a0;
    border-color: rgba(10, 214, 160, 0.55);
    background: rgba(10, 214, 160, 0.18);
}

.offCanvas__menu .offCanvas__divider {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(164, 198, 255, 0.65);
    margin: 14px 0 4px 0;
}

.lp2-table-card h3 {
    margin: 0 0 14px 0;
    color: #f5f7fa;
    font-size: clamp(1.05rem, 2.1vw, 1.25rem);
}

.lp2-comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.lp2-comparison-header h3 {
    margin: 0;
}

.lp2-comparison-toggle {
    display: inline-flex;
    gap: 10px;
}

.lp2-comparison-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(90, 140, 255, 0.35);
    background: rgba(18, 24, 36, 0.9);
    color: rgba(217, 225, 240, 0.85);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lp2-comparison-btn:not(.is-active):hover {
    border-color: rgba(255, 195, 0, 0.6);
    color: #ffdf7d;
    animation: none;
}

.lp2-comparison-btn.is-active {
    background: linear-gradient(135deg, rgba(0, 212, 199, 0.32), rgba(47, 122, 229, 0.24));
    border-color: rgba(0, 212, 199, 0.85);
    color: #6ef6e9;
    box-shadow: 0 0 18px -12px rgba(0, 212, 199, 0.7);
    animation: none;
}

.lp2-comparison-btn.is-active:hover {
    border-color: rgba(0, 212, 199, 1);
    color: #9ffdf5;
    box-shadow: 0 0 22px -10px rgba(0, 212, 199, 0.8);
}

.lp2-comparison-btn:not(.is-active) {
    color: #ffd166;
    border-color: rgba(255, 195, 0, 0.45);
    animation: lp2-comparison-glow 1.8s ease-in-out infinite alternate;
}

.lp2-comparison-body {
    position: relative;
}

.lp2-comparison-viewport {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.lp2-comparison-view {
    position: absolute;
    inset: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.lp2-comparison-view.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@keyframes lp2-comparison-glow {
    0% {
        box-shadow: 0 0 0 rgba(255, 195, 0, 0);
        border-color: rgba(255, 195, 0, 0.35);
        color: rgba(217, 225, 240, 0.85);
    }
    50% {
        box-shadow: 0 0 18px rgba(255, 195, 0, 0.6);
        border-color: rgba(255, 195, 0, 0.88);
        color: #ffd166;
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 195, 0, 0);
        border-color: rgba(255, 195, 0, 0.35);
        color: rgba(217, 225, 240, 0.85);
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp2-comparison-btn {
        animation: none !important;
        transition: none;
    }
}

.lp2-chart-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.lp2-chart-item {
    padding: 12px;
    background: rgba(18, 24, 36, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.lp2-chart-item h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #f5f7fa;
}

.lp2-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 575px) {
    .lp2-comparison-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp2-comparison-toggle {
        width: 100%;
        justify-content: flex-end;
    }
}

.lp2-table-wrapper { overflow-x: auto; }

.lp2-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(18, 24, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.lp2-table th,
.lp2-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp2-table thead th {
    background: rgba(47, 122, 229, 0.14);
    color: #d9e1f0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.lp2-table tbody tr:last-child td { border-bottom: none; }

/* Cell progress background for numeric columns */
.lp2-table td { position: relative; }
.lp2-table td[data-bar] > * { position: relative; z-index: 1; }
.lp2-table td[data-bar]::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 0;
    border-radius: 8px;
    background: rgba(164, 54, 60, 0.28);
    transition: width 900ms ease-out;
    z-index: 0;
}
.lp2-table td[data-bar="errors"]::before { background: rgba(164, 54, 60, 0.35); }
.lp2-table tr.is-ai td[data-bar]::before {
    background: linear-gradient(90deg, rgba(47,122,229,0.28), rgba(10,214,160,0.4));
}
.lp2-table td[data-bar][data-anim="1"]::before { width: var(--w, 0%); }

.lp2-table tbody tr:hover td {
    background: rgba(47, 122, 229, 0.08);
}

.lp2-table tbody tr.is-ai td {
    background: linear-gradient(90deg, rgba(10,214,160,0.22) 0%, rgba(47,122,229,0.18) 100%);
    border-left: 3px solid #00d4c7;
    font-weight: 700;
    color: #e9fcf6;
}

.lp2-table-footnote {
    color: rgba(217, 225, 240, 0.8);
    max-width: 960px;
    margin: 0 auto;
}

.lp2-marketfacts { color: rgba(217, 225, 240, 0.85); font-size: 0.95rem; }
.lp2-marketfacts a { color: #a4c6ff; }
.lp2-marketfacts p { margin: 6px 0; }
.blog-ticker-bleed {
  position: relative;
  width: min(1200px, 100vw);
  max-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.blog-ticker-angled .blog-ticker-stack {
  transform: rotate(-7deg);
  transform-origin: center;
}
.blog-ticker-angled .blog-ticker { box-shadow: none; }
.blog-ticker-angled .blog-ticker__nav { /* nav visuals still available but buttons may be edge-fixed via JS */ }


/* ============================================================
   Blog Overview — Modern Image Card Grid
   ============================================================ */

/* Search bar */
.blog-search { display: flex; justify-content: center; }
.blog-search__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 340px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  transition: border-color 0.25s, background 0.25s;
}
.blog-search__inner:focus-within {
  border-color: rgba(212,175,55,0.65);
  background: rgba(255,255,255,0.08);
}
.blog-search__icon {
  position: absolute;
  left: 1rem;
  color: #D4AF37;
  font-size: 0.8rem;
  pointer-events: none;
}
.blog-search__input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #F5F7FA;
  font-size: 0.875rem;
  padding: 0.6rem 2.5rem 0.6rem 2.2rem;
}
.blog-search__input::placeholder { color: rgba(245,247,250,0.4); }
.blog-search__clear {
  position: absolute;
  right: 0.9rem;
  color: rgba(245,247,250,0.4);
  font-size: 0.75rem;
  line-height: 1;
  transition: color 0.2s;
}
.blog-search__clear:hover { color: #D4AF37; }

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Card base */
.blog-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-anthrazit);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(to right, #D4AF37, #C8A742 80%, transparent);
  transition: width 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 3;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.18);
}
.blog-card:hover::after { width: 100%; }

.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Image container */
.blog-card__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.blog-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,18,32,0.97) 0%,
    rgba(11,18,32,0.65) 42%,
    rgba(11,18,32,0.12) 75%,
    transparent 100%
  );
  transition: background 0.4s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.07); }
.blog-card:hover .blog-card__img::after {
  background: linear-gradient(
    to top,
    rgba(11,18,32,0.99) 0%,
    rgba(11,18,32,0.78) 48%,
    rgba(11,18,32,0.22) 78%,
    rgba(11,18,32,0.05) 100%
  );
}

/* Body — overlaid on image */
.blog-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  z-index: 2;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.blog-card__date {
  font-size: 0.7rem;
  color: rgba(245,247,250,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.blog-card__tags { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.blog-tag {
  font-size: 0.65rem;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.35);
  color: rgba(212,175,55,0.85);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.blog-tag:hover,
.blog-card:hover .blog-tag {
  background: rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.65);
  color: #D4AF37;
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #F5F7FA;
  line-height: 1.35;
  margin: 0;
  transition: color 0.25s;
}
.blog-card:hover .blog-card__title { color: #fff; }

.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #D4AF37;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.blog-card:hover .blog-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Featured (first post) — spans 2 columns */
.blog-card--featured {
  grid-column: span 2;
}
.blog-card--featured .blog-card__img {
  aspect-ratio: 16 / 7;
}
.blog-card--featured .blog-card__title {
  font-size: 1.45rem;
}
.blog-card--featured .blog-card__body {
  padding: 1.75rem 2rem 2rem;
}

/* Responsive */
@media (max-width: 991px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card--featured { grid-column: span 2; }
  .blog-card--featured .blog-card__img { aspect-ratio: 16/8; }
  .blog-card--featured .blog-card__title { font-size: 1.2rem; }
}
@media (max-width: 575px) {
  .blog-grid { grid-template-columns: 1fr; gap: 1rem; }
  .blog-card--featured { grid-column: span 1; }
  .blog-card--featured .blog-card__img { aspect-ratio: 16/9; }
  .blog-card--featured .blog-card__title { font-size: 1.1rem; }
  .blog-card__title { font-size: 0.95rem; }
}

/* Stretched-link Fix: Titel-Link deckt ganze Card ab */
.blog-card__link {
  color: inherit;
  text-decoration: none;
}
.blog-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Tags + CTA über dem Stretched-Link */
.blog-card__tags,
.blog-card__cta {
  position: relative;
  z-index: 2;
}

/* Lang switch unter Heading (Blog-Übersicht) */
.blog-heading-lang {
  display: flex;
  justify-content: center;
}
.blog-heading-lang select {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.35);
  color: #F5F7FA;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.blog-heading-lang select:hover,
.blog-heading-lang select:focus {
  border-color: rgba(212,175,55,0.7);
  outline: none;
}
.blog-heading-lang select option {
  background: #0E0F13;
  color: #F5F7FA;
}

/* Toolbar: Suche + Sprachschalter nebeneinander */
.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.blog-toolbar .blog-search {
  flex: 0 1 320px;
}
.blog-toolbar .blog-heading-lang {
  flex-shrink: 0;
}

/* ============================================================
   Fokusthemen — Modern Card Redesign (#services scope)
   ============================================================ */

#services .lp2-card {
  background: rgba(11, 14, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 38px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Dünne Gold-Linie oben — erscheint beim Hover */
#services .lp2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, #D4AF37, transparent);
  opacity: 0;
  transition: opacity 0.4s ease, left 0.4s ease, right 0.4s ease;
}
#services .lp2-card:hover::before {
  opacity: 1;
  left: 0; right: 0;
}

/* Subtiler Radial-Glow von oben beim Hover */
#services .lp2-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: radial-gradient(ellipse at 50% -20%, rgba(212,175,55,0.09) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#services .lp2-card:hover::after { opacity: 1; }

#services .lp2-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow:
    0 24px 48px -16px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(212, 175, 55, 0.12);
}

/* Icon — Gold, kein blauer Hintergrund */
#services .lp2-card-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: #D4AF37;
  font-size: 1.25rem;
  margin-bottom: 22px;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
#services .lp2-card:hover .lp2-card-icon {
  background: rgba(212, 175, 55, 0.18);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.22);
  color: #e8c84a;
}

/* Titel */
#services .lp2-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #F0F3FA;
  margin-bottom: 12px;
  line-height: 1.35;
}

/* Text */
#services .lp2-card p {
  color: rgba(210, 218, 235, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA — Gold-Outline */
#services .lp2-card a.tg-btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 9px 18px;
  font-size: 0.82rem;
  border-color: rgba(212, 175, 55, 0.3);
  color: rgba(212, 175, 55, 0.85);
  border-radius: 8px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
#services .lp2-card a.tg-btn-outline-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.65);
  color: #D4AF37;
}

/* Featured Card — permanent Gold-Glow */
#services .lp2-card--featured {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.18),
    0 28px 56px -20px rgba(212, 175, 55, 0.22);
}
#services .lp2-card--featured::before {
  opacity: 1;
  left: 0; right: 0;
}
#services .lp2-card--featured::after { opacity: 1; }
#services .lp2-card--featured .lp2-card-icon {
  background: rgba(212, 175, 55, 0.18);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.2);
  color: #D4AF37;
}
#services .lp2-card--featured h3 { color: #fff; }
#services .lp2-card--featured p { color: rgba(230, 238, 255, 0.82); }
#services .lp2-card--featured a.tg-btn-outline-secondary {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.5);
  color: #D4AF37;
}
#services .lp2-card--featured:hover {
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.3),
    0 28px 56px -16px rgba(212, 175, 55, 0.35);
}

/* Marker-Pills im Titel anpassen */
#services .lp2-card .lp2-marker.is-glow {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  border-radius: 6px;
  padding: 1px 8px;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Cursor Dot Follower */

/* Keynote Topics List */
.lp2-keynote-topics {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lp2-keynote-topics li {
  font-size: 0.82rem;
  color: rgba(210, 218, 235, 0.75);
  padding-left: 1.1em;
  position: relative;
  line-height: 1.4;
}
.lp2-keynote-topics li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* ============================================================
   Process Steps — "So arbeiten wir" Modern Redesign
   ============================================================ */

/* Horizontal connecting rail */

/* Individual step */

/* Dot */
.pstep--active .pstep__dot {
  border-color: #0ad6a0;
  background: rgba(10, 214, 160, 0.12);
  box-shadow: 0 0 0 5px rgba(10,214,160,0.12), 0 0 24px rgba(10,214,160,0.45);
  transform: scale(1.1);
}
.pstep--active .pstep__dot span { color: #0ad6a0; }

/* Card */
.pstep--active .pstep__card {
  opacity: 1;
  transform: translateY(0);
}
.pstep__card:hover {
  border-color: rgba(10, 214, 160, 0.22);
  box-shadow: 0 18px 42px -14px rgba(0, 0, 0, 0.6);
}

/* Top accent line on hover */
.pstep__card:hover::before { opacity: 1; }

/* Background number */

/* Icon */
.pstep__card:hover .pstep__icon {
  background: rgba(10, 214, 160, 0.18);
  box-shadow: 0 0 16px rgba(10, 214, 160, 0.25);
}
.pstep--active .pstep__title { color: #fff; }

/* Mobile: vertical stack */

/* Tablet: 2x2 */

/* ===== psteps: Live-Note + marker fix ===== */
.lp2-marker.is-live {
  background: rgba(10, 214, 160, 0.18);
  color: #0ad6a0;
  border: 1px solid rgba(10, 214, 160, 0.4);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  flex-shrink: 0;
  animation: live-pulse 2.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10,214,160,0.35); }
  50% { box-shadow: 0 0 0 5px rgba(10,214,160,0); }
}
.psteps-live-link:hover { background: rgba(10, 214, 160, 0.18); color: #fff; }
.psteps-live-link--insight:hover { background: rgba(74, 158, 255, 0.18); color: #fff; }

/* === Nav-Fix Tablet-Breakpoint (2026-04-30) === */
@media (max-width: 1500px) {
  .header-area-3 .logo img { height: 95px !important; }
  .tgmenu__topic-bar-link { padding: 5px 12px; font-size: 0.7rem; letter-spacing: 0.06em; }
}
@media (max-width: 1399.98px) {
  .header-area-3 .logo img { height: 75px !important; top: 14px !important; }
  .tgmenu__topic-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: calc(100vw - 320px);
    padding-bottom: 4px;
  }
  .tgmenu__topic-bar::-webkit-scrollbar { display: none; }
  .tgmenu__topic-bar-link { flex-shrink: 0; }
  .tgmenu__navbar-wrap .tgmenu__stack { margin: 0 auto 0 30px; }
}
@media (max-width: 1199.98px) {
  .header-area-3 .logo img {
    height: 55px !important;
    position: relative !important;
    top: 0 !important;
    z-index: 100;
  }
}

/* === Mobile-Fix Cards + Bilder + Container (2026-04-30) === */
@media (max-width: 767.98px) {
  /* Container links/rechts atmen lassen */
  .lp2-section .container,
  .container.custom-container3 { padding-left: 18px !important; padding-right: 18px !important; }

  /* lp2-Cards kompakter */
  .lp2-card {
    padding: 20px 18px !important;
    border-radius: 12px;
  }
  .lp2-card-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
    border-radius: 10px !important;
  }
  .lp2-card h3 {
    font-size: 1.05rem !important;
    margin-bottom: 8px !important;
    line-height: 1.3;
  }
  .lp2-card p {
    font-size: 0.92rem !important;
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .lp2-card a.tg-btn-outline-secondary,
  .lp2-card .tg-btn-outline-secondary {
    font-size: 0.85rem !important;
    padding: 7px 14px !important;
  }

  /* Card-Grid Abstand kleiner */
  .lp2-card-grid { row-gap: 14px !important; }

  /* Über-mich-Portrait kleiner zentriert */
  #about .lp2-animate img,
  #about .col-lg-5 img.img-fluid {
    max-width: 65% !important;
    margin: 0 auto !important;
    display: block;
  }

  /* lp2-section vertikal kompakter */
  .lp2-section { padding-top: 60px !important; padding-bottom: 60px !important; }
  .lp2-section .section__title.mb-60 { margin-bottom: 30px !important; }
  .lp2-section .mt-60 { margin-top: 30px !important; }

  /* Section-Headlines auf Mobile schmaler */
  .lp2-section h2.title2 { font-size: 1.55rem !important; line-height: 1.25; }

  /* Calculator-Bonus: Image im Proof-Block kleiner */
}

/* === Mobile-Fix v2: Buttons wrappen + universelles Container-Padding (2026-04-30) === */
@media (max-width: 767.98px) {
  /* Long-Text-CTA-Buttons dürfen umbrechen */
  .tg-btn-5,
  .tg-btn-2,
  .tg-btn-4,
  .tg-btn {
    white-space: normal !important;
    line-height: 1.25 !important;
    max-width: 100%;
  }
  .tg-btn-5 span,
  .tg-btn-2 span,
  .tg-btn-4 span {
    padding: 14px 22px !important;
    text-align: center !important;
    display: block !important;
    line-height: 1.3 !important;
    font-size: 13.5px !important;
    letter-spacing: 0.04em !important;
  }
  /* Long-CTA bekommt Auto-Width statt fester Form, damit Wrap sauber wirkt */
  .lp2-cta-strip .tg-btn-5,
  section .tg-btn-5 { display: inline-block !important; }

  /* Container-Padding universell garantiert */
  body .container,
  body .container-fluid,
  body .custom-container3 {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Sektionen, die ohne .container arbeiten, bekommen direkt Side-Padding */
  body > section,
  .main--area > section {
    padding-left: max(0px, env(safe-area-inset-left)) !important;
    padding-right: max(0px, env(safe-area-inset-right)) !important;
  }
}
/* === Ghostwriter-Artikel-Elemente (2026-07-11) ===
   Styles für HTML-Klassen aus der Ghostwriter-Pipeline (callout, stat-grid,
   comparison-table, cta-inline, sources-list, FAQ details). Dark-Theme passend
   zu :root-Variablen (deep-navy/anthrazit, gold/blau). source-pill existiert bereits. */

.callout {
  margin: 22px 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(47, 122, 229, 0.08);
  border: 1px solid rgba(47, 122, 229, 0.35);
  border-left: 4px solid var(--color-akzent-blau, #2F7AE5);
  color: var(--color-weiss, #F5F7FA);
  overflow-wrap: anywhere;
}
.callout--info { border-left-color: var(--color-akzent-blau, #2F7AE5); }
.callout--warning {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  border-left-color: var(--color-gold, #D4AF37);
}
.callout--cta {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.45);
  border-left-color: var(--color-gold, #D4AF37);
}
.callout__link { color: var(--color-gold, #D4AF37); font-weight: 600; text-decoration: underline; }

.cta-inline {
  margin: 24px 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(47,122,229,0.08));
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-weiss, #F5F7FA);
}
.cta-inline a { color: var(--color-gold, #D4AF37); font-weight: 700; text-decoration: none; }
.cta-inline a:hover { text-decoration: underline; }
.cta-inline--magnet { border-style: dashed; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 12px;
  margin: 24px 0;
}
.stat-grid__item {
  padding: 16px 14px;
  border-radius: 12px;
  background: rgba(245, 247, 250, 0.04);
  border: 1px solid rgba(245, 247, 250, 0.12);
  text-align: center;
}
.stat-grid__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-gold, #D4AF37);
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.stat-grid__label {
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(245, 247, 250, 0.75);
  line-height: 1.35;
}

.sources-list {
  margin: 32px 0 8px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(245, 247, 250, 0.03);
  border: 1px solid rgba(245, 247, 250, 0.1);
  font-size: 0.85rem;
}
.sources-list h2 { font-size: 1rem; margin: 0 0 10px; }
.sources-list ol { margin: 0; padding-left: 20px; }
.sources-list li { margin-bottom: 6px; overflow-wrap: anywhere; }
.sources-list a { color: var(--color-akzent-blau, #2F7AE5); }

.blog-content details, article details {
  margin: 0 0 10px;
  border: 1px solid rgba(245, 247, 250, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(245, 247, 250, 0.03);
}
.blog-content details summary, article details summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--color-weiss, #F5F7FA);
  list-style: none;
}
.blog-content details summary::-webkit-details-marker, article details summary::-webkit-details-marker { display: none; }
.blog-content details summary::after, article details summary::after {
  content: "+";
  float: right;
  color: var(--color-gold, #D4AF37);
  font-weight: 800;
}
.blog-content details[open] summary::after, article details[open] summary::after { content: "\2212"; }
.blog-content details > p, article details > p, .blog-content details > div, article details > div { padding: 0 14px 12px; }

/* Homepage Einstieg 2026: Backoffice als konkreter Einstieg, KI-Agenten als Motor */
.lp2-hero--backoffice {
  padding-bottom: 92px;
  text-align: left;
  overflow: hidden;
}
.lp2-hero--backoffice::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -230px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(212, 175, 55, 0.025), 0 0 0 140px rgba(212, 175, 55, 0.018);
  pointer-events: none;
}
.lp2-hero--backoffice .lp2-hero-content { text-align: left; }
.lp2-hero--backoffice h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 5.7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 26px;
}
.lp2-hero--backoffice h1 span {
  color: #e6c65c;
  text-shadow: 0 0 34px rgba(212, 175, 55, 0.15);
}
.lp2-hero--backoffice p {
  max-width: 720px;
  margin: 0 0 30px;
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
  line-height: 1.72;
}
.lp2-hero--backoffice .lp2-hero-actions { justify-content: flex-start; margin-bottom: 24px; }
.lp2-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 34px;
  color: rgba(245, 247, 250, 0.72);
  font-size: 0.82rem;
}
.lp2-hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.lp2-hero-proof i { color: #d4af37; }
.lp2-hero--backoffice .lp2-hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}
.lp2-hero--backoffice .lp2-hero-stats div {
  padding: 17px 16px;
  text-align: left;
  border-color: rgba(212, 175, 55, 0.18);
  background: rgba(5, 8, 15, 0.58);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.lp2-hero--backoffice .lp2-hero-stats div:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(15, 18, 27, 0.8);
}
.lp2-hero--backoffice .lp2-hero-stats strong {
  color: #f2d975;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  margin-bottom: 8px;
  white-space: normal;
}
.lp2-hero--backoffice .lp2-hero-stats span { font-size: 0.78rem; line-height: 1.45; }
.lp2-hero--backoffice .lp2-hero-media img {
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: 0 30px 70px -32px rgba(0, 0, 0, 0.9), 0 0 60px -38px rgba(212, 175, 55, 0.7);
}
.lp2-hero--backoffice .lp2-hero-badge { border-color: rgba(212, 175, 55, 0.42); }
.cl-entry__step:hover { background: rgba(212, 175, 55, 0.035); }
.cl-entry__action .tg-btn-outline-secondary:hover,
.cl-entry__action .tg-btn-outline-secondary:focus-visible {
  color: #090c14;
  border-color: #d4af37;
  background: #d4af37;
  box-shadow: 0 14px 36px -18px rgba(212, 175, 55, 0.8);
}

@media (max-width: 991.98px) {
  .lp2-hero--backoffice { padding-bottom: 76px; }
  .lp2-hero--backoffice .lp2-hero-content { text-align: center; }
  .lp2-hero--backoffice p { margin-left: auto; margin-right: auto; }
  .lp2-hero--backoffice .lp2-hero-actions,
  .lp2-hero-proof { justify-content: center; }
  .lp2-hero--backoffice .lp2-hero-stats div { text-align: center; }
}

@media (max-width: 575.98px) {
  .lp2-hero--backoffice h1 { font-size: clamp(2.45rem, 14vw, 3.55rem); }
  .lp2-hero--backoffice .lp2-pill { font-size: 0.68rem; padding: 7px 12px; }
  .lp2-hero--backoffice .lp2-hero-stats { grid-template-columns: 1fr; }
  .lp2-hero-proof { align-items: center; flex-direction: column; }
  .lp2-hero--backoffice .lp2-hero-actions .tg-btn-5 {
    color: #090c14;
    border-color: #e2c34f;
    background: linear-gradient(135deg, #e2c34f, #cba52d);
    box-shadow: 0 15px 38px -18px rgba(212, 175, 55, 0.9);
  }
  .lp2-hero--backoffice .lp2-hero-actions .tg-btn-5 span { color: #090c14; }
}

@media (prefers-reduced-motion: reduce) {
  .lp2-hero--backoffice .lp2-hero-stats div { transition: none; }
  .lp2-hero--backoffice .lp2-hero-stats div:hover { transform: none; }
}

/* ================================================================
   Homepage 2026: Backoffice-Automatisierung mit kontrollierter KI
   ================================================================ */

/* Header: eine klare Ebene, kein überlagernder Center-Button */
.header-area-3 .logo img {
  position: relative !important;
  top: auto !important;
  z-index: 2;
  width: auto;
  height: 76px !important;
}
.header-area-3 .tgmenu__navbar-wrap ul {
  margin: 0 auto;
  flex-wrap: nowrap;
}
.header-area-3 .tgmenu__navbar-wrap ul li a {
  padding: 34px 13px;
  font-size: 11px;
  letter-spacing: 0.055em;
  white-space: nowrap;
}
.header-area-3 .tgmenu__action > ul { margin: 0; }
.header-area-3 .tgmenu__action .header-btn { padding-left: 0; }
.header-area-3 .tgmenu__action .tg-btn-4 { min-width: 168px; }
.header-area-3 .mobile-nav-toggler {
  border-radius: 10px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}
.header-area-3 .mobile-nav-toggler:hover,
.header-area-3 .mobile-nav-toggler:focus-visible {
  color: #080a0f;
  background: var(--color-gold);
  transform: translateY(-1px);
}
.offCanvas__content--quick {
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid rgba(212,175,55,.32);
  border-radius: 14px;
  background: rgba(212,175,55,.055);
}
.offCanvas__content--quick .title { margin-bottom: 8px; font-size: 1.25rem; line-height: 1.2; }
.offCanvas__content--quick p { margin-bottom: 15px; font-size: .88rem; line-height: 1.55; }
.offCanvas__content--quick .offCanvas__btn { margin: 0; }
.offCanvas__content--quick .tg-btn-4 { width: 100%; min-height: 52px; padding-inline: 14px; text-align: center; }
.offCanvas__content--quick .tg-btn-4 span { font-size: .78rem; }

.clh-home {
  --clh-bg: #080a0f;
  --clh-surface: #10141d;
  --clh-surface-2: #141a25;
  --clh-border: rgba(245, 247, 250, 0.11);
  --clh-border-gold: rgba(212, 175, 55, 0.34);
  --clh-gold: #d4af37;
  --clh-gold-light: #f0d876;
  --clh-text: #f6f2e7;
  --clh-muted: rgba(229, 234, 244, 0.7);
  background: var(--clh-bg);
}
.clh-home .lp2-main { background: var(--clh-bg); }
.clh-home :is(#home, #problem, #anwendungsfaelle, #kontrollierte-ki, #integration, #referenzen, #vorgehen, #angebot, #about, #faq, #wissen, #kontakt) {
  scroll-margin-top: 92px;
}
.clh-home h1,
.clh-home h2,
.clh-home h3 { color: var(--clh-text); }
.clh-home h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.clh-home p { color: var(--clh-muted); }
.clh-home a:focus-visible,
.clh-home button:focus-visible,
.clh-home summary:focus-visible {
  outline: 2px solid var(--clh-gold-light);
  outline-offset: 4px;
}

.clh-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 96px;
  background:
    radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.15), transparent 34%),
    radial-gradient(circle at 8% 90%, rgba(47, 122, 229, 0.09), transparent 32%),
    linear-gradient(145deg, #090c13 0%, #0e1420 55%, #080a0f 100%);
  border-bottom: 1px solid var(--clh-border-gold);
}
.clh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 88%);
}
.clh-hero .container { position: relative; z-index: 1; }
.clh-hero__content { max-width: 790px; }
.clh-brandline {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 12px;
  color: rgba(245, 247, 250, .72) !important;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.clh-brandline::before {
  content: "";
  width: 31px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--clh-gold), rgba(212, 175, 55, .18));
}
.clh-eyebrow,
.clh-kicker,
.clh-label {
  color: var(--clh-gold-light) !important;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.clh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px;
  padding: 8px 14px;
  border: 1px solid var(--clh-border-gold);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.07);
}
.clh-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clh-gold);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.1);
}
.clh-hero h1 {
  max-width: 850px;
  margin: 0 0 28px;
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.clh-hero h1 span {
  color: var(--clh-gold-light);
  text-shadow: 0 0 34px rgba(212, 175, 55, 0.13);
}
.clh-hero__lead {
  max-width: 760px;
  margin: 0 0 31px;
  font-size: clamp(1.03rem, 1.45vw, 1.2rem);
  line-height: 1.75;
}
.clh-service-lead {
  max-width: 960px;
  margin-inline: auto;
  color: rgba(245, 247, 250, .74) !important;
  font-family: var(--tg-body-font-family) !important;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem) !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.clh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-bottom: 26px;
}
.clh-cta-note,
.clh-service-cta-note {
  margin: -11px 0 22px;
  color: rgba(245,247,250,.56) !important;
  font-size: .78rem !important;
  line-height: 1.5 !important;
}
.clh-service-cta-note { margin: 13px 0 0; text-align: center; }
.clh-home .tg-btn-5,
.clh-home .tg-btn-4,
.clh-btn-secondary {
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}
.clh-home .tg-btn-5:hover,
.clh-home .tg-btn-4:hover,
.clh-btn-secondary:hover {
  transform: translateY(-2px) scale(1.01);
}
.clh-home .tg-btn-5:active,
.clh-home .tg-btn-4:active,
.clh-btn-secondary:active { transform: scale(0.98); }
.clh-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid rgba(240, 216, 118, 0.44);
  border-radius: 7px;
  color: var(--clh-text);
  background: rgba(255,255,255,0.025);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.clh-btn-secondary:hover {
  color: #0a0d13;
  border-color: var(--clh-gold-light);
  background: var(--clh-gold-light);
  box-shadow: 0 18px 38px -22px rgba(212, 175, 55, 0.85);
}
.clh-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 21px;
  color: rgba(245, 247, 250, 0.65);
  font-size: 0.8rem;
}
.clh-trust span { display: inline-flex; align-items: center; gap: 7px; }
.clh-trust i { color: var(--clh-gold); }
.clh-hero__visual {
  position: relative;
  max-width: 470px;
  margin-left: auto;
  padding: 18px 0 45px 22px;
}
.clh-hero__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--clh-border-gold);
  border-radius: 30px 30px 8px 30px;
  background: #0d1119;
  box-shadow: 0 35px 70px -38px rgba(0,0,0,.95), 0 0 60px -42px rgba(212,175,55,.72);
}
.clh-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,6,10,.82), transparent 44%);
  pointer-events: none;
}
.clh-hero__frame img {
  display: block;
  width: 100%;
  height: clamp(430px, 48vw, 600px);
  object-fit: cover;
  object-position: center;
}
.clh-hero__badge {
  position: absolute;
  right: 21px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 2px solid var(--clh-gold);
}
.clh-hero__badge strong { color: var(--clh-text); font-size: 0.98rem; }
.clh-hero__badge span { color: rgba(245,247,250,.62); font-size: 0.72rem; }
.clh-control-card {
  position: absolute;
  left: -24px;
  bottom: 0;
  z-index: 2;
  width: min(330px, 82%);
  padding: 17px 19px;
  border: 1px solid rgba(240,216,118,.42);
  border-radius: 16px;
  background: rgba(10, 13, 20, 0.92);
  box-shadow: 0 24px 55px -30px rgba(0,0,0,.95);
  backdrop-filter: blur(14px);
}
.clh-control-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #9de3c5;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.clh-control-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49d095;
  box-shadow: 0 0 0 5px rgba(73,208,149,.12);
}
.clh-control-card strong { display: block; color: var(--clh-text); font-size: 0.9rem; }
.clh-control-card small { color: rgba(245,247,250,.54); font-size: 0.7rem; }

.clh-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  color: var(--clh-text);
  background: var(--clh-bg);
  border-bottom: 1px solid rgba(245,247,250,.055);
}
.clh-section:nth-of-type(even) { background: #0a0d13; }
.clh-section--intro { background: #0b0e15 !important; }
.clh-section-heading {
  max-width: 840px;
  margin: 0 auto 58px;
  text-align: center;
}
.clh-section-heading .clh-kicker { margin-bottom: 15px; }
.clh-section-heading h2 { margin-bottom: 19px; }
.clh-section-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.03rem;
  line-height: 1.72;
}
.clh-split-heading {
  display: grid;
  grid-template-columns: minmax(190px, .55fr) minmax(0, 1.45fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
  margin-bottom: 58px;
}
.clh-split-heading h2 { margin: 0 0 20px; }
.clh-split-heading > div > p { max-width: 740px; line-height: 1.75; }

.clh-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--clh-border);
  border-bottom: 1px solid var(--clh-border);
}
.clh-problem {
  min-height: 220px;
  padding: 31px 26px;
  border-right: 1px solid var(--clh-border);
  transition: background 260ms ease, transform 260ms ease;
}
.clh-problem:last-child { border-right: 0; }
.clh-problem:hover { background: rgba(212,175,55,.035); transform: translateY(-4px); }
.clh-problem > span { color: var(--clh-gold); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.clh-problem h3 { margin: 32px 0 12px; font-size: 1.15rem; }
.clh-problem p { margin: 0; font-size: .9rem; line-height: 1.65; }

.clh-usecase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.clh-usecase {
  grid-column: span 2;
  min-height: 350px;
  padding: 29px 27px;
  border: 1px solid var(--clh-border);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(20,26,37,.86), rgba(12,16,24,.96));
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms ease;
}
.clh-usecase--wide { grid-column: span 3; }
.clh-usecase:hover {
  transform: translateY(-6px);
  border-color: var(--clh-border-gold);
  box-shadow: 0 30px 65px -48px rgba(212,175,55,.85);
}
.clh-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border: 1px solid var(--clh-border-gold);
  border-radius: 15px;
  color: var(--clh-gold-light);
  background: rgba(212,175,55,.075);
  transition: transform 300ms ease, background 300ms ease;
}
.clh-usecase:hover .clh-icon { transform: scale(1.08); background: rgba(212,175,55,.14); }
.clh-usecase .clh-label { margin-bottom: 9px; }
.clh-usecase h3 { margin-bottom: 14px; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.22; }
.clh-usecase > p:not(.clh-label) { min-height: 82px; font-size: .92rem; line-height: 1.65; }
.clh-usecase a,
.clh-knowledge-grid a,
.clh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--clh-gold-light);
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
}
.clh-usecase a i,
.clh-knowledge-grid a i,
.clh-text-link i { transition: transform 220ms ease; }
.clh-usecase a:hover i,
.clh-knowledge-grid a:hover i,
.clh-text-link:hover i { transform: translateX(4px); }

.clh-section--control {
  background:
    radial-gradient(circle at 0 30%, rgba(212,175,55,.09), transparent 32%),
    #090c12 !important;
}
.clh-sticky-copy { position: sticky; top: 125px; }
.clh-sticky-copy h2 { margin: 16px 0 23px; }
.clh-sticky-copy > p:not(.clh-kicker) { margin-bottom: 25px; font-size: 1.02rem; line-height: 1.75; }
.clh-governance-deliverables {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--clh-border-gold);
  border-radius: 13px;
  background: rgba(212,175,55,.04);
}
.clh-governance-deliverables summary {
  position: relative;
  padding: 16px 45px 16px 17px !important;
  color: var(--clh-text) !important;
  font-size: .88rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}
.clh-governance-deliverables summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  color: var(--clh-gold-light);
  font-size: 1.1rem;
}
.clh-governance-deliverables[open] summary::after { content: "−"; }
.clh-governance-deliverables ul { margin: 0; padding: 0 18px 10px 38px; }
.clh-governance-deliverables li { margin-bottom: 7px; color: rgba(245,247,250,.76); font-size: .83rem; }
.clh-governance-deliverables > p { margin: 0; padding: 5px 18px 18px; color: rgba(245,247,250,.58); font-size: .79rem; line-height: 1.6; }
.clh-principles { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--clh-border); }
.clh-principles li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 4px;
  border-bottom: 1px solid var(--clh-border);
  transition: background 260ms ease, padding 260ms ease;
}
.clh-principles li:hover { padding-left: 14px; padding-right: 14px; background: rgba(255,255,255,.025); }
.clh-principles li > span { color: var(--clh-gold); font-size: .7rem; font-weight: 800; letter-spacing: .12em; padding-top: 5px; }
.clh-principles h3 { margin: 0 0 8px; font-size: 1.15rem; }
.clh-principles p { margin: 0; font-size: .9rem; line-height: 1.62; }

.clh-integration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, .75fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}
.clh-system-stack { display: grid; gap: 10px; }
.clh-system-stack span {
  display: block;
  padding: 13px 16px;
  border: 1px solid var(--clh-border);
  border-radius: 11px;
  color: rgba(245,247,250,.77);
  background: rgba(255,255,255,.025);
  font-size: .83rem;
}
.clh-system-stack--right span { text-align: right; }
.clh-integration-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  padding: 25px 20px;
  border: 1px solid var(--clh-border-gold);
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(circle, rgba(212,175,55,.12), rgba(15,19,28,.96) 68%);
  box-shadow: 0 0 0 13px rgba(212,175,55,.025), 0 0 0 26px rgba(212,175,55,.018);
}
.clh-integration-core i { margin-bottom: 13px; color: var(--clh-gold-light); font-size: 1.7rem; }
.clh-integration-core strong { color: var(--clh-text); font-size: .96rem; }
.clh-integration-core small { margin-top: 7px; color: rgba(245,247,250,.5); font-size: .68rem; }
.clh-center-action { display: flex; justify-content: center; margin-top: 45px; }

.clh-section--proof {
  background:
    radial-gradient(circle at 88% 14%, rgba(212,175,55,.09), transparent 31%),
    #0b0f17 !important;
}
.clh-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}
.clh-case {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 620px;
  flex-direction: column;
  padding: 29px 27px 23px;
  overflow: hidden;
  border: 1px solid var(--clh-border);
  border-radius: 21px;
  background: linear-gradient(155deg, rgba(20,26,37,.94), rgba(10,14,21,.98));
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms ease;
}
.clh-case::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  opacity: .55;
  background: linear-gradient(90deg, transparent, var(--clh-gold), transparent);
}
.clh-case:hover {
  transform: translateY(-6px);
  border-color: var(--clh-border-gold);
  box-shadow: 0 34px 74px -54px rgba(212,175,55,.9);
}
.clh-case--featured {
  border-color: rgba(240,216,118,.45);
  background:
    radial-gradient(circle at 88% 10%, rgba(212,175,55,.14), transparent 32%),
    linear-gradient(155deg, rgba(27,31,38,.98), rgba(11,15,22,.99));
}
.clh-case__header {
  display: flex;
  min-height: 33px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.clh-case__industry {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(245,247,250,.72);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.clh-case__industry i { color: var(--clh-gold-light); }
.clh-case__status {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(73,208,149,.3);
  border-radius: 999px;
  color: #77ddb1;
  background: rgba(73,208,149,.07);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.clh-case__status--model {
  color: var(--clh-gold-light);
  border-color: rgba(212,175,55,.35);
  background: rgba(212,175,55,.075);
}
.clh-case > h3 {
  min-height: 92px;
  margin: 23px 0 18px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.16;
}
.clh-case__metric {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
  margin: 0 -27px 23px;
  padding: 20px 27px;
  border-top: 1px solid var(--clh-border);
  border-bottom: 1px solid var(--clh-border);
  background: rgba(255,255,255,.018);
}
.clh-case__metric strong {
  color: var(--clh-gold-light);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1;
}
.clh-case__metric span {
  margin-top: 7px;
  color: var(--clh-text);
  font-size: .82rem;
  font-weight: 750;
}
.clh-case__metric small {
  margin-top: 5px;
  color: rgba(245,247,250,.5);
  font-size: .68rem;
  line-height: 1.35;
}
.clh-case > p {
  margin: 0 0 20px;
  color: rgba(229,234,244,.74);
  font-size: .88rem;
  line-height: 1.67;
}
.clh-case ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.clh-case li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 18px;
  color: rgba(245,247,250,.68);
  font-size: .79rem;
  line-height: 1.48;
}
.clh-case li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clh-gold);
}
.clh-case footer {
  margin-top: auto;
  padding-top: 20px;
  color: rgba(245,247,250,.42);
  font-size: .64rem;
  line-height: 1.45;
}
.clh-case-disclosure {
  display: flex;
  max-width: 960px;
  align-items: flex-start;
  gap: 11px;
  margin: 22px auto 0;
  color: rgba(245,247,250,.5);
  font-size: .72rem;
  line-height: 1.55;
  text-align: center;
}
.clh-case-disclosure i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--clh-gold);
}
.clh-own-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 34px;
  align-items: center;
  margin-top: 38px;
  padding: 29px 31px;
  border: 1px solid var(--clh-border-gold);
  border-radius: 18px;
  background: linear-gradient(125deg, rgba(212,175,55,.085), rgba(15,20,29,.96) 48%);
}
.clh-own-proof__copy h3 {
  margin: 10px 0 10px;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.24;
}
.clh-own-proof__copy > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(245,247,250,.66);
  font-size: .86rem;
  line-height: 1.62;
}
.clh-own-proof__numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--clh-border);
  border-radius: 13px;
  background: var(--clh-border);
}
.clh-own-proof__numbers span {
  display: flex;
  min-width: 0;
  min-height: 94px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 8px;
  background: #0d121a;
  text-align: center;
}
.clh-own-proof__numbers strong {
  color: var(--clh-gold-light);
  font-size: 1.75rem;
  line-height: 1;
}
.clh-own-proof__numbers small {
  margin-top: 7px;
  color: rgba(245,247,250,.53);
  font-size: .61rem;
  line-height: 1.3;
}
.clh-proof-measurement {
  margin-top: 92px;
  padding-top: 78px;
  border-top: 1px solid var(--clh-border);
}
.clh-proof-measurement .clh-section-heading h3 {
  margin-bottom: 19px;
  color: var(--clh-text);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
}
.clh-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--clh-border);
  border-radius: 18px;
  background: var(--clh-border);
}
.clh-metric-grid article { padding: 29px 25px; background: #10151e; }
.clh-metric-grid i { margin-bottom: 25px; color: var(--clh-gold); font-size: 1.25rem; }
.clh-metric-grid h3 { margin-bottom: 11px; font-size: 1.05rem; }
.clh-metric-grid p { margin: 0; font-size: .86rem; line-height: 1.6; }
.clh-proof-actions {
  justify-content: center;
  margin-top: 42px;
}

.clh-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.clh-process li { position: relative; padding: 0 28px 0 0; }
.clh-process li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 19px;
  right: 11px;
  left: 52px;
  height: 1px;
  background: linear-gradient(to right, var(--clh-border-gold), transparent);
}
.clh-process li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border: 1px solid var(--clh-border-gold);
  border-radius: 50%;
  color: var(--clh-gold-light);
  background: #0a0d13;
  font-size: .68rem;
  font-weight: 800;
}
.clh-process h3 { margin-bottom: 12px; font-size: 1.1rem; }
.clh-process p { font-size: .86rem; line-height: 1.62; }

.clh-section--offers { background: linear-gradient(160deg, #0b0f17, #080a0f) !important; }
.clh-offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.clh-offer {
  padding: 31px 28px;
  border: 1px solid var(--clh-border);
  border-radius: 19px;
  background: rgba(18,23,33,.82);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms ease;
}
.clh-offer:hover { transform: translateY(-5px); border-color: var(--clh-border-gold); }
.clh-offer--featured {
  border-color: rgba(240,216,118,.5);
  background: linear-gradient(150deg, rgba(212,175,55,.1), rgba(18,23,33,.92));
  box-shadow: 0 28px 65px -48px rgba(212,175,55,.9);
}
.clh-offer h3 { margin: 13px 0 15px; font-size: 1.45rem; }
.clh-offer > p:not(.clh-label) { min-height: 90px; font-size: .9rem; line-height: 1.64; }
.clh-offer ul { margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--clh-border); list-style: none; }
.clh-offer li { position: relative; margin-bottom: 9px; padding-left: 18px; color: rgba(245,247,250,.72); font-size: .84rem; }
.clh-offer li::before { content: ""; position: absolute; top: .62em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--clh-gold); }

/* Conversion-Einstieg für die wichtigste Backoffice-Pillar */
.blog__detail--backoffice-pillar { padding-top: 72px !important; }
.blog-post--backoffice-pillar > h1 { max-width: 900px; margin-top: 0; font-size: clamp(2.25rem, 4vw, 3.65rem); line-height: 1.04; letter-spacing: -.035em; }
.blog-post--backoffice-pillar > .subtitle { margin-bottom: 24px !important; }
.blog-pillar-quick {
  margin: 26px 0 34px;
  padding: 25px 27px;
  border: 1px solid rgba(212,175,55,.36);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(212,175,55,.075), rgba(16,22,33,.96));
  box-shadow: 0 24px 55px -44px rgba(212,175,55,.75);
}
.blog-pillar-quick__label { margin: 0 0 9px; color: #f0d876 !important; font-size: .7rem !important; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.blog-pillar-quick > p:not(.blog-pillar-quick__label) { margin: 0; color: rgba(245,247,250,.8); font-size: 1rem; line-height: 1.68; }
.blog-pillar-quick > p strong { color: #fff; }
.blog-pillar-quick__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 21px; }
.blog-pillar-quick__actions .tg-btn-5,
.blog-pillar-quick__actions .clh-btn-secondary { min-height: 50px; }
.blog-pillar-quick__actions .clh-btn-secondary {
  color: #f6f2e7;
  border-color: rgba(240,216,118,.5);
  background: rgba(255,255,255,.025);
}
.blog-pillar-quick__actions .clh-btn-secondary:hover,
.blog-pillar-quick__actions .clh-btn-secondary:focus-visible {
  color: #090c14;
  border-color: #f0d876;
  background: #f0d876;
}
.blog-pillar-quick > small { display: block; margin-top: 12px; color: rgba(245,247,250,.5); font-size: .75rem; }
.blog-pillar-hero-image { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; margin: 0 0 38px; border-radius: 4px 18px 18px 18px; object-fit: cover; }
.blog-post--backoffice-pillar .content > .blog-intro-box:first-child { display: none; }
.clh-service-hero h1 { font-size: clamp(3rem, 4.9vw, 4.7rem) !important; line-height: .98 !important; letter-spacing: -.045em !important; }

.clh-section--about { background: #0b0e15 !important; }
.clh-about-image { max-width: 420px; margin: 0; overflow: hidden; border: 1px solid var(--clh-border-gold); border-radius: 7px 28px 28px 28px; }
.clh-about-image img { display: block; width: 100%; height: 540px; object-fit: cover; object-position: center; }
.clh-about-copy { max-width: 720px; }
.clh-about-copy h2 { margin: 16px 0 24px; }
.clh-about-copy > p:not(.clh-kicker) { font-size: 1.02rem; line-height: 1.75; }
.clh-about-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 20px; margin: 27px 0 28px; }
.clh-about-points span { display: flex; gap: 9px; color: rgba(245,247,250,.76); font-size: .86rem; }
.clh-about-points i { color: var(--clh-gold); }

.clh-faq { max-width: 900px; margin: 0 auto; }
.clh-faq details {
  margin-bottom: 11px;
  border: 1px solid var(--clh-border);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
  transition: border-color 240ms ease, background 240ms ease;
}
.clh-faq details[open] { border-color: var(--clh-border-gold); background: rgba(212,175,55,.035); }
.clh-faq summary {
  position: relative;
  padding: 20px 54px 20px 21px !important;
  color: var(--clh-text) !important;
  font-size: .98rem;
  font-weight: 750;
  list-style: none;
}
.clh-faq summary::after {
  content: "+" !important;
  position: absolute;
  top: 50%;
  right: 21px;
  float: none !important;
  transform: translateY(-50%);
  color: var(--clh-gold-light);
  font-size: 1.2rem;
}
.clh-faq details[open] summary::after { content: "−" !important; }
.clh-faq details > p { margin: 0; padding: 0 54px 21px 21px !important; line-height: 1.7; }

.clh-section--knowledge { background: #090c12 !important; }
.clh-knowledge-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.clh-knowledge-grid article {
  min-height: 285px;
  padding: 28px 26px;
  border: 1px solid var(--clh-border);
  border-radius: 17px;
  background: rgba(18,23,33,.75);
  transition: transform 280ms ease, border-color 280ms ease;
}
.clh-knowledge-grid article:hover { transform: translateY(-5px); border-color: var(--clh-border-gold); }
.clh-knowledge-grid h3 { margin: 13px 0 15px; font-size: 1.28rem; }
.clh-knowledge-grid article > p:not(.clh-label) { min-height: 88px; font-size: .88rem; line-height: 1.64; }

@media (max-width: 1399.98px) {
  .header-area-3 .tgmenu__navbar-wrap ul li a { padding-inline: 10px; font-size: 10px; }
  .header-area-3 .logo img { height: 66px !important; }
  .header-area-3 .tgmenu__action .tg-btn-4 { min-width: 126px; }
}

@media (max-width: 1199.98px) {
  .header-area-3 .tg-header__area-three {
    min-height: 82px;
    padding: 14px 0 !important;
    background: #0b0e15;
    border-bottom: 1px solid rgba(212,175,55,.18);
  }
  .header-area-3 .logo img { height: 54px !important; }
  .header-area-3 .mobile-nav-toggler {
    position: absolute;
    top: 21px;
    right: 18px;
    float: none;
    z-index: 5;
    margin: 0;
  }
  .header-area-3 #lang-select-mobile {
    position: absolute;
    top: 20px;
    right: 80px;
    z-index: 4;
    float: none !important;
    width: 84px;
    height: 44px;
    margin: 0 !important;
    padding: 6px 24px 6px 9px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .header-area-3 .tgmenu__action { margin-right: 62px; }
  .clh-hero { padding-top: 112px; }
  .clh-problem-grid,
  .clh-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clh-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clh-case:last-child { grid-column: 1 / -1; min-height: 530px; }
  .clh-case:last-child > h3 { min-height: 0; }
  .clh-problem:nth-child(2) { border-right: 0; }
  .clh-problem:nth-child(-n+2) { border-bottom: 1px solid var(--clh-border); }
}

@media (max-width: 991.98px) {
  .clh-hero { padding: 92px 0 88px; }
  .clh-hero__content { max-width: 790px; margin: 0 auto; text-align: center; }
  .clh-brandline { justify-content: center; }
  .clh-hero__lead { margin-inline: auto; }
  .clh-actions,
  .clh-trust { justify-content: center; }
  .clh-hero__visual { margin: 12px auto 0; padding-left: 0; }
  .clh-control-card { left: 18px; }
  .clh-section { padding: 88px 0; }
  .clh-split-heading { grid-template-columns: 1fr; gap: 13px; }
  .clh-usecase { grid-column: span 3; }
  .clh-sticky-copy { position: static; }
  .clh-integration { grid-template-columns: 1fr; max-width: 620px; }
  .clh-system-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clh-system-stack span,
  .clh-system-stack--right span { text-align: center; }
  .clh-integration-core { width: 240px; min-height: 240px; margin: 20px auto; }
  .clh-process { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 18px; }
  .clh-process li:not(:last-child)::after { display: none; }
  .clh-offer-grid,
  .clh-knowledge-grid { grid-template-columns: 1fr; }
  .clh-own-proof { grid-template-columns: 1fr; }
  .clh-offer > p:not(.clh-label),
  .clh-knowledge-grid article > p:not(.clh-label) { min-height: 0; }
  .clh-about-image { margin: 0 auto; }
}

@media (max-width: 767.98px) {
  .header-area-3 .tgmenu__action { display: none !important; }
  .clh-service-hero .banner__content {
    padding: 34px 0 46px !important;
  }
  .clh-service-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.04em !important;
  }
  .clh-hero { padding: 42px 0 58px; }
  .clh-hero h1 {
    margin-bottom: 21px;
    font-size: clamp(2.05rem, 10.3vw, 3.05rem);
    line-height: 1.03;
    letter-spacing: -0.055em;
  }
  .clh-hero h1 span {
    display: inline-block;
    font-size: .94em;
    letter-spacing: -0.04em;
    word-spacing: .1em;
  }
  .clh-brandline {
    gap: 8px;
    margin-bottom: 9px;
    font-size: .64rem;
    letter-spacing: .1em;
  }
  .clh-brandline::before { width: 22px; }
  .clh-eyebrow { margin-bottom: 18px; font-size: .62rem; letter-spacing: .1em; }
  .clh-hero__lead { margin-bottom: 24px; font-size: .98rem; line-height: 1.58; }
  .clh-hero__lead-detail { display: none; }
  .clh-actions { flex-direction: column; align-items: stretch; }
  .clh-actions > * { width: 100%; }
  .clh-home .tg-btn-5 {
    color: #090c14;
    border-color: #e2c34f;
    background: linear-gradient(135deg, #e2c34f, #cba52d);
    box-shadow: 0 15px 38px -18px rgba(212,175,55,.9);
  }
  .clh-home .tg-btn-5 span { color: #090c14; }
  .clh-trust { align-items: flex-start; flex-direction: column; width: max-content; max-width: 100%; margin-inline: auto; }
  .clh-cta-note { margin-top: -8px; text-align: center; }
  .clh-hero__frame img { height: 430px; }
  .clh-control-card { right: 12px; left: 12px; width: auto; }
  .clh-section { padding: 72px 0; }
  .clh-section-heading { margin-bottom: 40px; text-align: left; }
  .clh-section-heading > p:last-child { margin: 0; }
  .clh-problem-grid,
  .clh-metric-grid,
  .clh-process { grid-template-columns: 1fr; }
  .clh-case-grid { grid-template-columns: 1fr; }
  .clh-case,
  .clh-case:last-child { grid-column: auto; min-height: 0; padding: 24px 20px 21px; }
  .clh-case > h3 { min-height: 0; margin-top: 20px; }
  .clh-case__header { min-height: 0; }
  .clh-case__metric { min-height: 122px; margin-right: -20px; margin-left: -20px; padding-right: 20px; padding-left: 20px; }
  .clh-case-disclosure { text-align: left; }
  .clh-own-proof { gap: 24px; padding: 23px 20px; }
  .clh-own-proof__numbers { grid-template-columns: 1fr; }
  .clh-own-proof__numbers span { min-height: 75px; }
  .clh-proof-measurement { margin-top: 66px; padding-top: 58px; }
  .clh-proof-actions { align-items: stretch; flex-direction: column; }
  .clh-proof-actions > * { width: 100%; }
  .clh-problem,
  .clh-problem:nth-child(2),
  .clh-problem:nth-child(-n+2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--clh-border); }
  .clh-problem:last-child { border-bottom: 0; }
  .clh-usecase-grid { grid-template-columns: 1fr; }
  .clh-usecase,
  .clh-usecase--wide { grid-column: auto; min-height: 0; }
  .clh-usecase > p:not(.clh-label) { min-height: 0; }
  .clh-principles li { grid-template-columns: 34px minmax(0, 1fr); gap: 12px; }
  .clh-system-stack { grid-template-columns: 1fr; }
  .clh-process { gap: 26px; }
  .clh-process li { padding: 0; }
  .clh-about-image img { height: 430px; }
  .clh-about-points { grid-template-columns: 1fr; }
  .blog__detail--backoffice-pillar { padding-top: 28px !important; }
  .blog-post--backoffice-pillar > h1 { font-size: clamp(1.9rem, 9.6vw, 2.5rem); line-height: 1.06; }
  .blog-post--backoffice-pillar > .subtitle { margin-bottom: 17px !important; }
  .blog-pillar-quick { margin: 17px 0 24px; padding: 18px 16px; }
  .blog-pillar-quick > p:not(.blog-pillar-quick__label) { font-size: .96rem; line-height: 1.58; }
  .blog-pillar-quick__actions { margin-top: 17px; }
  .blog-pillar-quick__actions { flex-direction: column; align-items: stretch; }
  .blog-pillar-quick__actions > * { width: 100%; text-align: center; }
  .blog-pillar-hero-image { aspect-ratio: 16 / 9; margin-bottom: 30px; border-radius: 3px 14px 14px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .clh-home *,
  .clh-home *::before,
  .clh-home *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Visual Wave 3: friction rail, connected process bento and integration flow
   ========================================================================== */

/* Problem: one typographic statement and one continuous friction rail. */

/* Use cases: one shared process surface with internal hierarchy. */

.flow-usecase:hover {
  background: rgba(20, 26, 36, .92);
  box-shadow: inset 0 0 55px rgba(212, 175, 55, .025);
}

.flow-usecase:hover::after {
  opacity: .72;
  transform: scaleX(1);
}

.flow-usecase:hover .flow-usecase__icon svg {
  transform: translate(-2px, 2px) scale(1.04);
}

.flow-usecase a:hover svg {
  transform: translateX(4px);
}

/* Integration: an orthogonal control diagram, not an AI network cloud. */

.flow-integration-board.is-flow-active .flow-wiring__base path {
  animation: flow-wire-draw 1100ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.flow-integration-board.is-flow-active .flow-wiring__base path:nth-child(n+6) {
  animation-delay: 560ms;
}

.flow-integration-board.is-flow-active .flow-wiring__signals path {
  opacity: .72;
  animation: flow-signal-march 5600ms linear 1250ms infinite;
}

.flow-integration-board.is-flow-active .flow-wiring__signals path:nth-child(2n) {
  animation-delay: 2800ms;
}

@keyframes flow-wire-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes flow-signal-march {
  to { stroke-dashoffset: -.9; }
}

.flow-integration-board.is-flow-active .flow-controls li:nth-child(1) .flow-controls__checkpoint {
  animation: flow-checkpoint 900ms ease 450ms both;
}

.flow-integration-board.is-flow-active .flow-controls li:nth-child(2) .flow-controls__checkpoint {
  animation: flow-checkpoint 900ms ease 850ms both;
}

.flow-integration-board.is-flow-active .flow-controls li:nth-child(3) .flow-controls__checkpoint {
  animation: flow-checkpoint 900ms ease 1250ms both;
}

@keyframes flow-checkpoint {
  50% { border-color: var(--clh-gold-light); box-shadow: 0 0 0 9px rgba(212, 175, 55, .07), 0 0 28px rgba(212, 175, 55, .22); }
}

/* Visual Wave 3: overlap-freier Hero und eigenständige Kontrollarchitektur */
.clh-home .clh-hero {
  padding: clamp(76px, 6.8vw, 116px) 0 clamp(76px, 5.6vw, 96px);
}
.clh-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(350px, .72fr);
  gap: clamp(46px, 5.4vw, 92px);
  align-items: center;
}
.clh-home .clh-hero__content {
  min-width: 0;
  max-width: 820px;
}
.clh-home .clh-brandline {
  text-transform: none;
}
.clh-home .clh-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 4.35vw, 4.45rem);
  line-height: .99;
}
.clh-home .clh-hero__lead {
  max-width: 790px;
  line-height: 1.68;
}
.clh-home .clh-hero__visual {
  display: block;
  width: min(100%, 430px);
  max-width: none;
  margin: 0 0 0 auto;
  padding: 0;
}
.clh-home .clh-hero__frame {
  border-radius: 28px 28px 8px 28px;
}
.clh-home .clh-hero__frame img {
  width: 100%;
  height: auto;
  max-height: 570px;
  aspect-ratio: 4 / 5;
  object-position: center 34%;
}
.clh-hero__identity {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2px;
  padding: 3px 0 3px 14px;
  border-left: 2px solid var(--clh-gold);
  text-shadow: 0 2px 18px rgba(0,0,0,.94);
}
.clh-hero__identity > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.clh-hero__identity strong {
  color: var(--clh-text);
  font-size: 1.02rem;
  line-height: 1.25;
}
.clh-hero__identity span,
.clh-hero__identity small {
  color: rgba(245,247,250,.74);
  font-size: .68rem;
  line-height: 1.45;
}
.clh-hero__identity small {
  flex: 0 0 auto;
  max-width: none;
  text-align: left;
}
.clh-home .clh-control-card {
  position: static;
  width: 100%;
  padding: 15px 17px;
  border-radius: 13px;
  background: rgba(9,12,18,.94);
  backdrop-filter: none;
}

.clh-home .clh-section--control {
  isolation: isolate;
  padding: clamp(92px, 7.8vw, 138px) 0;
  overflow: clip;
  background:
    radial-gradient(circle at 84% 24%, rgba(212,175,55,.11), transparent 29%),
    radial-gradient(circle at 6% 82%, rgba(28,43,70,.32), transparent 30%),
    linear-gradient(146deg, #080b12 0%, #0c111a 52%, #06080d 100%) !important;
}
.clh-section--control::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 42%, #000, transparent 78%);
}
.clh-control-orbit {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -12vw;
  width: min(56vw, 880px);
  aspect-ratio: 1;
  border: 1px solid rgba(212,175,55,.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(212,175,55,.018),
    0 0 0 144px rgba(212,175,55,.012);
  pointer-events: none;
}
.clh-control-layout {
  display: grid;
  grid-template-columns: minmax(310px, .76fr) minmax(0, 1.24fr);
  gap: clamp(48px, 6vw, 104px);
  align-items: start;
}
.clh-control-copy {
  position: sticky;
  top: 118px;
  min-width: 0;
  padding-top: 10px;
}
.clh-control-copy h2 {
  max-width: 540px;
  margin: 16px 0 25px;
  font-size: clamp(2.45rem, 4.15vw, 4.1rem);
}
.clh-control-copy > p:not(.clh-kicker) {
  max-width: 570px;
  margin: 0 0 24px;
  color: rgba(229,234,244,.72);
  font-size: 1.02rem;
  line-height: 1.74;
}
.clh-control-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 25px;
}
.clh-control-proofline span {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(240,216,118,.25);
  border-radius: 999px;
  color: rgba(245,247,250,.72);
  background: rgba(212,175,55,.045);
  font-size: .71rem;
  font-weight: 750;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.clh-control-proofline i { color: var(--clh-gold-light); }
.clh-control-copy .clh-governance-deliverables { max-width: 570px; }
.clh-control-stage {
  min-width: 0;
  border: 1px solid rgba(240,216,118,.22);
  border-radius: 28px 28px 8px 28px;
  overflow: hidden;
  background: rgba(8,11,17,.88);
  box-shadow: 0 42px 95px -62px rgba(212,175,55,.7);
}
.clh-control-keyvisual {
  position: relative;
  aspect-ratio: 1.58 / 1;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #070a10;
}
.clh-control-keyvisual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,8,13,.74), transparent 44%),
    linear-gradient(0deg, rgba(5,8,13,.93), transparent 51%);
}
.clh-control-keyvisual::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -20%;
  bottom: -20%;
  left: -12%;
  width: 13%;
  opacity: 0;
  transform: skewX(-14deg);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(240,216,118,.22), transparent);
  filter: blur(5px);
}
.clh-control-stage.is-visible .clh-control-keyvisual::before {
  animation: clh-control-scan 5.2s cubic-bezier(.16,1,.3,1) 380ms 2 both;
}
@keyframes clh-control-scan {
  0% { left: -12%; opacity: 0; }
  14%, 72% { opacity: .58; }
  100% { left: 105%; opacity: 0; }
}
.clh-control-keyvisual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.88) contrast(1.05);
}
.clh-control-keyvisual__caption {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 38px);
  bottom: clamp(22px, 4vw, 38px);
  left: clamp(20px, 4vw, 38px);
  display: flex;
  max-width: 610px;
  flex-direction: column;
}
.clh-control-keyvisual__caption span {
  margin-bottom: 8px;
  color: #8fe1bd;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.clh-control-keyvisual__caption strong {
  color: var(--clh-text);
  font-size: clamp(1.15rem, 2.15vw, 1.65rem);
  line-height: 1.28;
}
.clh-control-signals {
  position: absolute;
  z-index: 3;
  top: 21px;
  right: 21px;
  left: 21px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.clh-control-signals li {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(245,247,250,.14);
  border-radius: 999px;
  color: rgba(245,247,250,.72);
  background: rgba(6,9,14,.72);
  box-shadow: 0 10px 28px -20px #000;
  backdrop-filter: blur(10px);
  font-size: .65rem;
  font-weight: 720;
  letter-spacing: .035em;
}
.clh-control-signals i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clh-gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.1);
}
.clh-control-signals li:last-child i {
  background: #57d39b;
  box-shadow: 0 0 0 4px rgba(87,211,155,.11);
}
.clh-control-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(245,247,250,.09);
  list-style: none;
}
.clh-control-ledger li {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  padding: 22px 22px 23px;
  border-right: 1px solid rgba(245,247,250,.08);
  border-bottom: 1px solid rgba(245,247,250,.08);
  background: linear-gradient(145deg, rgba(255,255,255,.018), transparent);
  transition: background 280ms ease, box-shadow 280ms ease;
}
.clh-control-ledger li:nth-child(even) { border-right: 0; }
.clh-control-ledger li:last-child {
  grid-column: 1 / -1;
  border-right: 0;
  border-bottom: 0;
}
.clh-control-ledger li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 3px;
  opacity: 0;
  background: var(--clh-gold);
  transition: right 280ms ease, opacity 280ms ease;
}
.clh-control-ledger li:hover,
.clh-control-ledger li:focus-within {
  background: rgba(212,175,55,.045);
  box-shadow: inset 0 1px rgba(240,216,118,.08);
}
.clh-control-ledger li:hover::before,
.clh-control-ledger li:focus-within::before {
  right: calc(100% - 3px);
  opacity: 1;
}
.clh-control-ledger li > span {
  color: var(--clh-gold-light);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .11em;
  padding-top: 4px;
}
.clh-control-ledger h3 {
  margin: 0 0 7px;
  font-size: 1.02rem;
  line-height: 1.3;
}
.clh-control-ledger p {
  margin: 0;
  color: rgba(229,234,244,.62);
  font-size: .78rem;
  line-height: 1.58;
}

@media (max-width: 1199.98px) {
  .clh-home .clh-hero { padding: 72px 0 78px; }
  .clh-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
    gap: 36px;
  }
  .clh-home .clh-hero h1 {
    font-size: clamp(2.65rem, 5vw, 3.35rem);
  }
  .clh-home .clh-hero__lead { font-size: 1rem; line-height: 1.62; }
  .clh-home .clh-hero__lead-detail { display: none; }
  .clh-home .clh-hero__visual { width: min(100%, 350px); }
  .clh-home .clh-hero__frame img { max-height: 455px; }
  .clh-control-layout {
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: 34px;
  }
  .clh-control-copy h2 { font-size: clamp(2.25rem, 4.3vw, 3.25rem); }
  .clh-control-keyvisual { min-height: 380px; }
  .clh-control-ledger { grid-template-columns: 1fr; }
  .clh-control-ledger li,
  .clh-control-ledger li:nth-child(even),
  .clh-control-ledger li:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(245,247,250,.08);
  }
  .clh-control-ledger li:last-child { border-bottom: 0; }
}

@media (max-width: 991.98px) {
  .clh-home .clh-hero { padding: 76px 0 84px; }
  .clh-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .clh-home .clh-hero__content {
    max-width: 780px;
    margin-inline: auto;
  }
  .clh-home .clh-hero__visual {
    width: min(100%, 430px);
    margin: 0 auto;
  }
  .clh-home .clh-hero__frame img { max-height: none; }
  .clh-control-layout { grid-template-columns: 1fr; }
  .clh-control-copy {
    position: static;
    max-width: 760px;
    margin-inline: auto;
  }
  .clh-control-stage {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {
  .clh-home .clh-hero { padding: 42px 0 64px; }
  .clh-hero__grid { gap: 38px; }
  .clh-home .clh-hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.02;
  }
  .clh-home .clh-hero__visual { width: min(100%, 360px); }
  .clh-home .clh-hero__frame img { height: auto; max-height: none; }
  .clh-hero__identity {
    right: 18px;
    bottom: 18px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
  .clh-hero__identity small { max-width: none; text-align: left; }
  .clh-home .clh-control-card { right: auto; left: auto; }
  .clh-home .clh-section--control { padding: 76px 0; }
  .clh-control-layout { gap: 38px; }
  .clh-control-copy { padding-top: 0; }
  .clh-control-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 10.4vw, 3.1rem);
  }
  .clh-control-proofline { gap: 6px; }
  .clh-control-proofline span { min-height: 33px; font-size: .66rem; }
  .clh-control-stage { border-radius: 20px 20px 6px 20px; }
  .clh-control-keyvisual {
    min-height: 430px;
    aspect-ratio: 1 / 1.16;
  }
  .clh-control-keyvisual img { object-position: 64% center; }
  .clh-control-keyvisual__caption {
    right: 18px;
    bottom: 22px;
    left: 18px;
  }
  .clh-control-keyvisual__caption strong {
    font-size: 1.08rem;
    line-height: 1.35;
  }
  .clh-control-signals {
    top: 16px;
    right: 16px;
    left: 16px;
    align-items: flex-start;
    flex-direction: column;
  }
  .clh-control-signals li { min-height: 29px; font-size: .61rem; }
  .clh-control-ledger li { padding: 20px 18px 21px; }
}

@media (max-width: 379.98px) {
  .clh-home .clh-hero h1 { font-size: 1.98rem; }
  .clh-home .clh-hero__lead { font-size: .94rem; }
  .clh-home .clh-control-card strong { font-size: .84rem; }
  .clh-control-keyvisual { min-height: 400px; }
}

/* WAVE3_CASES_START */
/* ================================================================
   WAVE 3 · VISUELLE REFERENZEN UND DETERMINISTISCHE DEMOS
   ================================================================ */
.clh-case-grid--visual {
  gap: clamp(16px, 2vw, 24px);
}
.clh-case--visual {
  min-height: 0;
  padding: 14px 14px 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 5%, rgba(212,175,55,.09), transparent 35%),
    linear-gradient(155deg, rgba(20,26,37,.98), rgba(8,12,18,.99));
}
.clh-case--visual::before {
  opacity: .8;
}
.clh-case--visual:hover {
  transform: translateY(-7px);
}
.clh-case--visual:focus-within {
  border-color: rgba(240,216,118,.78);
  box-shadow: 0 0 0 3px rgba(240,216,118,.14), 0 34px 74px -54px rgba(212,175,55,.9);
}
.clh-case__launch {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  color: inherit;
  border: 0;
  border-radius: 14px;
  outline: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.clh-case__launch:focus-visible {
  outline: 3px solid rgba(240,216,118,.92);
  outline-offset: 5px;
}
.clh-case--visual .clh-case__header {
  min-height: 40px;
  align-items: center;
  padding: 3px 4px 0;
}
.clh-case__screen {
  position: relative;
  aspect-ratio: 760 / 460;
  margin: 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(128,146,169,.25);
  border-radius: 14px;
  background: #090d14;
  box-shadow: 0 22px 48px -36px rgba(0,0,0,.95);
}
.clh-case__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255,255,255,.06);
}
.clh-case__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}
.clh-case__launch:hover .clh-case__screen img,
.clh-case__launch:focus-visible .clh-case__screen img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}
.clh-case__caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 20px 4px 3px;
}
.clh-case__caption h3 {
  min-height: 0;
  margin: 0 0 8px;
  color: var(--clh-text);
  font-size: clamp(1.15rem, 1.65vw, 1.42rem);
  line-height: 1.16;
}
.clh-case__caption p {
  margin: 0;
  color: rgba(229,234,244,.62);
  font-size: .75rem;
  line-height: 1.5;
}
.clh-case__caption p strong {
  color: var(--clh-gold-light);
  font-size: 1.04rem;
}
.clh-case__open {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(240,216,118,.38);
  border-radius: 999px;
  color: #f4df86;
  background: rgba(212,175,55,.06);
  font-size: .69rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.clh-case__open i {
  transition: transform 220ms ease;
}
.clh-case__launch:hover .clh-case__open,
.clh-case__launch:focus-visible .clh-case__open {
  color: #111009;
  border-color: #e7c851;
  background: #e7c851;
  transform: translateY(-2px);
}
.clh-case__launch:hover .clh-case__open i,
.clh-case__launch:focus-visible .clh-case__open i {
  transform: translate(2px, -2px);
}
.clh-case--visual > footer {
  margin: 14px 4px 0;
  padding: 13px 0 0;
  border-top: 1px solid rgba(136,151,170,.14);
}

body.clh-demo-open {
  overflow: hidden;
  overscroll-behavior: none;
}
.clh-demo-overlay[hidden] {
  display: none !important;
}
.clh-demo-overlay {
  --clh-visual-height: 100dvh;
  --clh-visual-top: 0px;
  position: fixed;
  top: var(--clh-visual-top);
  right: 0;
  left: 0;
  z-index: 9999;
  display: grid;
  height: var(--clh-visual-height);
  place-items: center;
  padding: clamp(12px, 2.5vw, 28px);
  overflow: hidden;
  opacity: 0;
  background: rgba(2,5,9,.82);
  transition: opacity 200ms ease;
  backdrop-filter: none;
}
.clh-demo-overlay.is-open {
  opacity: 1;
}
.clh-demo-dialog {
  display: grid;
  width: min(1180px, 100%);
  max-height: calc(var(--clh-visual-height) - clamp(24px, 5vw, 56px));
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  color: #f4f6f8;
  border: 1px solid rgba(240,216,118,.36);
  border-radius: 24px;
  outline: 0;
  background:
    radial-gradient(circle at 12% 0, rgba(212,175,55,.12), transparent 32%),
    #0c1119;
  box-shadow: 0 34px 95px -24px rgba(0,0,0,.92), 0 0 0 1px rgba(255,255,255,.025);
  transform: translateY(12px) scale(.94);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 200ms ease;
}
.clh-demo-overlay.is-open .clh-demo-dialog {
  transform: translateY(0) scale(1);
}
.clh-demo-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-bottom: 1px solid rgba(132,149,170,.18);
  background: rgba(255,255,255,.018);
}
.clh-demo-dialog__header > div {
  min-width: 0;
}
.clh-demo-dialog__eyebrow,
.clh-demo-label {
  margin: 0 0 7px;
  color: #dfc25a;
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}
.clh-demo-dialog__header h2 {
  margin: 0 0 7px;
  color: #f7f3e8;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1.05;
}
.clh-demo-dialog__header p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(226,232,240,.66);
  font-size: .83rem;
  line-height: 1.55;
}
.clh-demo-dialog__close {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: #e4e9ef;
  border: 1px solid rgba(144,159,178,.25);
  border-radius: 14px;
  background: #141b25;
  cursor: pointer;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.clh-demo-dialog__close svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}
.clh-demo-dialog__close:hover,
.clh-demo-dialog__close:focus-visible {
  color: #171208;
  border-color: #e7c851;
  outline: 0;
  background: #e7c851;
  transform: rotate(4deg) scale(1.04);
}
.clh-demo-dialog__body {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(212,175,55,.45) transparent;
}
.clh-demo-stage {
  padding: clamp(16px, 2.5vw, 30px);
}
.clh-live-demo {
  overflow: hidden;
  border: 1px solid rgba(132,149,170,.24);
  border-radius: 18px;
  background: linear-gradient(145deg, #111823, #080d14);
}
.clh-live-demo__toolbar {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 18px;
  color: rgba(236,240,245,.78);
  border-bottom: 1px solid rgba(132,149,170,.18);
  background: #0c121b;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.clh-live-demo__toolbar strong {
  padding: 5px 9px;
  color: #75d8ac;
  border: 1px solid rgba(75,204,145,.28);
  border-radius: 999px;
  background: rgba(75,204,145,.07);
  font-size: .58rem;
  text-transform: uppercase;
}
.clh-demo-panel {
  min-width: 0;
  padding: clamp(17px, 2.2vw, 25px);
  border: 1px solid rgba(132,149,170,.19);
  border-radius: 14px;
  background: rgba(8,13,20,.78);
}
.clh-property-grid,
.clh-routing-grid,
.clh-invoice-grid {
  display: grid;
  gap: 16px;
  padding: 16px;
}
.clh-property-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
}
.clh-property-result > strong {
  display: block;
  color: #f5f1e7;
  font-size: clamp(2rem, 5vw, 4.1rem);
  font-weight: 850;
  letter-spacing: -.05em;
  line-height: 1;
}
.clh-property-result > span {
  display: inline-block;
  margin-top: 11px;
  color: #e5c75c;
  font-size: .76rem;
  font-weight: 750;
}
.clh-property-chart {
  display: flex;
  height: 94px;
  align-items: end;
  gap: clamp(6px, 1.1vw, 12px);
  margin-top: 27px;
  padding-top: 12px;
  border-bottom: 1px solid rgba(132,149,170,.22);
}
.clh-property-chart i {
  flex: 1;
  min-width: 8px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #e0c153, rgba(212,175,55,.12));
}
.clh-property-chart i:nth-child(1) { height: 31%; }
.clh-property-chart i:nth-child(2) { height: 44%; }
.clh-property-chart i:nth-child(3) { height: 38%; }
.clh-property-chart i:nth-child(4) { height: 63%; }
.clh-property-chart i:nth-child(5) { height: 57%; }
.clh-property-chart i:nth-child(6) { height: 76%; }
.clh-property-chart i:nth-child(7) { height: 92%; }
.clh-segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(132,149,170,.2);
  border-radius: 11px;
  background: #0c121b;
}
.clh-segmented button {
  min-height: 42px;
  padding: 6px 8px;
  color: #8797aa;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: .66rem;
  font-weight: 750;
  cursor: pointer;
}
.clh-segmented button:hover,
.clh-segmented button:focus-visible {
  color: #f2f4f7;
  outline: 0;
  background: rgba(255,255,255,.05);
}
.clh-segmented button.is-active {
  color: #171208;
  background: #dfbf4e;
}
.clh-property-signals,
.clh-invoice-document dl {
  margin: 18px 0 0;
}
.clh-property-signals div,
.clh-invoice-document dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(132,149,170,.15);
}
.clh-property-signals div:last-child,
.clh-invoice-document dl div:last-child {
  border-bottom: 0;
}
.clh-property-signals dt,
.clh-invoice-document dt {
  color: #7f90a4;
  font-size: .71rem;
}
.clh-property-signals dd,
.clh-invoice-document dd {
  margin: 0;
  color: #e8edf2;
  font-size: .75rem;
  font-weight: 800;
}
.clh-demo-explainer {
  margin: 0;
  padding: 0 19px 18px;
  color: rgba(223,229,237,.58);
  font-size: .73rem;
  line-height: 1.5;
}
.clh-routing-grid {
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
}
.clh-routing-queue {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.clh-routing-queue > p {
  margin-bottom: 5px;
}
.clh-routing-queue button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: #d9e0e9;
  border: 1px solid rgba(132,149,170,.16);
  border-radius: 9px;
  background: #111822;
  font-size: .69rem;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}
.clh-routing-queue button:hover,
.clh-routing-queue button:focus-visible,
.clh-routing-queue button.is-active {
  color: #f8f2df;
  border-color: rgba(225,193,83,.58);
  outline: 0;
  background: rgba(212,175,55,.08);
}
.clh-routing-queue button small {
  color: #75869a;
  font-size: .61rem;
}
.clh-routing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.clh-routing-heading strong {
  color: #f0f3f7;
  font-size: 1.2rem;
}
.clh-routing-heading > span {
  color: #dfc25a;
  font-size: 1.25rem;
  font-weight: 850;
}
.clh-routing-checks {
  display: grid;
  gap: 8px;
}
.clh-routing-checks span,
.clh-invoice-rules > span,
.clh-invoice-rules > button {
  position: relative;
  display: block;
  min-height: 46px;
  padding: 14px 14px 12px 42px;
  color: #d9e1ea;
  border: 1px solid rgba(132,149,170,.16);
  border-radius: 9px;
  background: #111822;
  font-size: .7rem;
  font-weight: 750;
  text-align: left;
}
.clh-routing-checks span::before,
.clh-invoice-rules > span::before,
.clh-invoice-rules > button::before {
  position: absolute;
  top: 50%;
  left: 15px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  transform: translateY(-50%);
  font-size: .58rem;
  font-weight: 900;
}
.clh-routing-checks .is-ok::before,
.clh-invoice-rules > .is-ok::before {
  content: "✓";
  color: #07110c;
  background: #4bcc91;
}
.clh-routing-checks .is-warning::before,
.clh-invoice-rules > .is-warning::before {
  content: "!";
  color: #231a03;
  background: #e5b944;
}
.clh-invoice-rules > button {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}
.clh-invoice-rules > button small {
  display: block;
  margin-top: 4px;
  color: #d2b853;
  font-size: .6rem;
}
.clh-invoice-rules > button:hover,
.clh-invoice-rules > button:focus-visible {
  border-color: #d1ad3d;
  outline: 0;
  background: rgba(212,175,55,.09);
}
.clh-demo-result {
  display: flex;
  min-height: 62px;
  justify-content: center;
  flex-direction: column;
  margin-top: 14px;
  padding: 12px 15px;
  border: 1px solid;
  border-radius: 10px;
  outline: 0;
}
.clh-demo-result.is-warning {
  color: #e7ca68;
  border-color: rgba(229,185,68,.4);
  background: rgba(229,185,68,.07);
}
.clh-demo-result.is-ok {
  color: #7adeb1;
  border-color: rgba(75,204,145,.34);
  background: rgba(75,204,145,.07);
}
.clh-demo-result strong {
  font-size: .75rem;
}
.clh-demo-result small {
  margin-top: 4px;
  color: rgba(223,229,237,.57);
  font-size: .63rem;
}
.clh-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}
.clh-demo-button {
  min-height: 44px;
  padding: 9px 14px;
  color: #151107;
  border: 1px solid #e1c151;
  border-radius: 9px;
  background: #e1c151;
  font-size: .66rem;
  font-weight: 850;
  cursor: pointer;
}
.clh-demo-button--quiet {
  color: #dfe6ed;
  border-color: rgba(137,153,174,.27);
  background: #171e28;
}
.clh-demo-button:hover,
.clh-demo-button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -18px rgba(212,175,55,.95);
}
.clh-invoice-grid {
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
}
.clh-invoice-document {
  color: #172230;
  background: #eeece6;
}
.clh-invoice-document .clh-demo-label {
  color: #725e23;
}
.clh-invoice-document > strong {
  display: block;
  margin: 13px 0 20px;
  color: #1d2a38;
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  letter-spacing: -.05em;
}
.clh-invoice-document dt {
  color: #68727d;
}
.clh-invoice-document dd {
  color: #233140;
}
.clh-invoice-resolution {
  margin-top: 13px;
  padding: 16px;
  border: 1px solid rgba(229,185,68,.4);
  border-radius: 10px;
  background: rgba(229,185,68,.07);
}
.clh-invoice-resolution strong {
  color: #e6c85f;
  font-size: .78rem;
}
.clh-invoice-resolution p {
  margin: 7px 0 0;
  color: rgba(225,231,238,.67);
  font-size: .68rem;
  line-height: 1.5;
}
.clh-demo-dialog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 15px clamp(18px, 3vw, 34px);
  border-top: 1px solid rgba(132,149,170,.18);
  background: #0a0f16;
}
.clh-demo-dialog__footer p {
  max-width: 590px;
  margin: 0;
  color: rgba(225,231,238,.48);
  font-size: .63rem;
  line-height: 1.5;
  text-align: right;
}
.clh-demo-code-toggle,
.clh-code-insight__hide {
  min-height: 44px;
  padding: 9px 14px;
  color: #edda8c;
  border: 1px solid rgba(229,199,91,.34);
  border-radius: 9px;
  background: rgba(212,175,55,.06);
  font-size: .68rem;
  font-weight: 800;
  cursor: pointer;
}
.clh-demo-code-toggle i {
  margin-right: 7px;
}
.clh-demo-code-toggle:hover,
.clh-demo-code-toggle:focus-visible,
.clh-code-insight__hide:hover,
.clh-code-insight__hide:focus-visible {
  color: #171208;
  border-color: #e7c851;
  outline: 0;
  background: #e7c851;
}
.clh-code-insight[hidden] {
  display: none !important;
}
.clh-code-insight {
  margin: 0 clamp(16px, 2.5vw, 30px) clamp(16px, 2.5vw, 30px);
  padding: clamp(16px, 2.5vw, 24px);
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 16px;
  background: #080d14;
}
.clh-code-insight__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}
.clh-code-insight__top h3 {
  margin: 0;
  color: #f0f3f6;
  font-size: 1.1rem;
}
.clh-code-browser {
  display: grid;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(132,149,170,.21);
  border-radius: 12px;
  background: #0b1119;
}
.clh-code-tree {
  display: flex;
  flex-direction: column;
  padding: 18px 15px;
  border-right: 1px solid rgba(132,149,170,.18);
  background: #0d141e;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: .67rem;
  line-height: 1.65;
}
.clh-code-tree__folder {
  color: #d9bd56;
  white-space: pre;
}
.clh-code-tree__file {
  color: #9aa9b9;
  white-space: pre;
}
.clh-code-file {
  min-width: 0;
}
.clh-code-tabs {
  display: flex;
  gap: 2px;
  min-height: 45px;
  align-items: end;
  padding: 6px 8px 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(132,149,170,.18);
  scrollbar-width: thin;
}
.clh-code-tabs button {
  min-height: 37px;
  padding: 8px 11px;
  color: #8495a7;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: .63rem;
  cursor: pointer;
  white-space: nowrap;
}
.clh-code-tabs button[aria-selected="true"] {
  color: #f0d876;
  border-bottom-color: #d4af37;
}
.clh-code-tabs button:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: -2px;
}
.clh-code-file pre {
  min-height: 210px;
  max-height: 340px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  color: #c9d5e2;
  outline: 0;
  background: #080d14;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: .7rem;
  line-height: 1.65;
  tab-size: 2;
}
.clh-code-file pre:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(212,175,55,.72);
}

@media (max-width: 1199.98px) {
  .clh-case-grid--visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .clh-case-grid--visual .clh-case:last-child {
    grid-column: 1 / -1;
  }
  .clh-case-grid--visual .clh-case:last-child .clh-case__screen {
    max-width: 760px;
  }
  .clh-case-grid--visual .clh-case:last-child .clh-case__caption {
    max-width: 900px;
  }
}

@media (max-width: 767.98px) {
  .clh-case-grid--visual {
    grid-template-columns: 1fr;
  }
  .clh-case-grid--visual .clh-case,
  .clh-case-grid--visual .clh-case:last-child {
    grid-column: auto;
    padding: 12px 12px 14px;
  }
  .clh-case--visual .clh-case__header {
    gap: 9px;
  }
  .clh-case--visual .clh-case__industry {
    font-size: .62rem;
  }
  .clh-case__caption {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px 3px 2px;
  }
  .clh-case__open {
    width: 100%;
    justify-content: center;
  }
  .clh-demo-overlay {
    place-items: end center;
    padding: 8px;
  }
  .clh-demo-dialog {
    width: 100%;
    max-height: calc(var(--clh-visual-height) - 16px);
    border-radius: 19px;
  }
  .clh-demo-dialog__header {
    gap: 12px;
    padding: 17px 15px 15px;
  }
  .clh-demo-dialog__header p:last-child {
    font-size: .74rem;
  }
  .clh-demo-dialog__close {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .clh-demo-stage {
    padding: 11px;
  }
  .clh-live-demo__toolbar {
    min-height: 45px;
    padding: 0 12px;
    font-size: .58rem;
  }
  .clh-property-grid,
  .clh-routing-grid,
  .clh-invoice-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }
  .clh-demo-panel {
    padding: 16px 14px;
  }
  .clh-property-result > strong {
    font-size: 2.25rem;
  }
  .clh-segmented {
    grid-template-columns: 1fr;
  }
  .clh-segmented button {
    min-height: 42px;
  }
  .clh-routing-queue {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .clh-routing-queue > p {
    grid-column: 1 / -1;
  }
  .clh-routing-queue button {
    display: block;
    min-width: 0;
    padding: 9px;
  }
  .clh-routing-queue button span,
  .clh-routing-queue button small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .clh-routing-queue button small {
    margin-top: 4px;
  }
  .clh-demo-actions {
    flex-direction: column;
  }
  .clh-demo-actions > * {
    width: 100%;
  }
  .clh-demo-dialog__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    padding: 12px 15px;
  }
  .clh-demo-dialog__footer p {
    text-align: left;
  }
  .clh-demo-code-toggle {
    width: 100%;
  }
  .clh-code-insight {
    margin: 0 11px 11px;
    padding: 13px;
  }
  .clh-code-insight__top {
    align-items: stretch;
    flex-direction: column;
  }
  .clh-code-browser {
    grid-template-columns: 1fr;
  }
  .clh-code-tree {
    max-height: 145px;
    overflow: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(132,149,170,.18);
  }
  .clh-code-file pre {
    min-height: 190px;
    font-size: .64rem;
  }
}

@media (max-width: 389.98px) {
  .clh-case__status {
    padding: 4px 6px;
    font-size: .53rem;
  }
  .clh-case__caption h3 {
    font-size: 1.08rem;
  }
  .clh-demo-dialog__eyebrow {
    font-size: .55rem;
    letter-spacing: .09em;
  }
  .clh-routing-heading {
    align-items: flex-start;
  }
  .clh-routing-heading > span {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clh-case__screen img,
  .clh-case__open,
  .clh-case__open i,
  .clh-demo-overlay,
  .clh-demo-dialog,
  .clh-demo-button {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Live-nahe Demo-Workbenches */
.clh-demo-dialog {
  width: min(1380px, 100%);
}

.clh-workbench {
  color: #e8edf3;
  background:
    linear-gradient(rgba(111, 131, 153, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 131, 153, .035) 1px, transparent 1px),
    linear-gradient(145deg, #101720, #070c12);
  background-size: 30px 30px, 30px 30px, auto;
}

.clh-demo-toolbar-button {
  min-height: 34px;
  padding: 6px 11px;
  color: #eedb88;
  border: 1px solid rgba(225, 193, 81, .34);
  border-radius: 8px;
  background: rgba(212, 175, 55, .07);
  font: inherit;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .04em;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.clh-demo-toolbar-button:hover,
.clh-demo-toolbar-button:focus-visible {
  color: #151108;
  border-color: #e7c851;
  outline: 0;
  background: #e7c851;
  transform: translateY(-1px);
}

.clh-demo-toolbar-button:disabled {
  opacity: .55;
  cursor: wait;
  transform: none;
}

.clh-demo-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(132, 149, 170, .17);
  background: rgba(5, 10, 16, .7);
}

.clh-demo-kpis > div {
  min-width: 0;
  padding: 14px 18px;
  border-right: 1px solid rgba(132, 149, 170, .14);
}

.clh-demo-kpis > div:last-child {
  border-right: 0;
}

.clh-demo-kpis small,
.clh-demo-kpis strong,
.clh-demo-kpis span {
  display: block;
}

.clh-demo-kpis small {
  margin-bottom: 5px;
  color: #6f8094;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.clh-demo-kpis strong {
  overflow: hidden;
  color: #f4f0e6;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clh-demo-kpis span {
  margin-top: 5px;
  color: #7d8ca0;
  font-size: .61rem;
}

.clh-workbench-tabs {
  display: flex;
  min-height: 49px;
  align-items: end;
  gap: 2px;
  padding: 0 16px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(132, 149, 170, .17);
  background: rgba(9, 14, 21, .86);
  scrollbar-width: thin;
}

.clh-workbench-tabs button {
  min-height: 48px;
  padding: 8px 16px;
  color: #8191a4;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: .68rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.clh-workbench-tabs button:hover,
.clh-workbench-tabs button:focus-visible {
  color: #f0f3f6;
  outline: 0;
  background: rgba(255, 255, 255, .025);
}

.clh-workbench-tabs button.is-active {
  color: #f1d976;
  border-bottom-color: #d4af37;
}

.clh-workbench-views {
  min-height: 470px;
}

.clh-workbench-view {
  padding: 16px;
}

.clh-workbench-view[hidden],
.clh-source-list > div[hidden],
.clh-invoice-table > button[hidden] {
  display: none !important;
}

.clh-demo-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.clh-demo-panel__heading p {
  margin-bottom: 4px;
}

.clh-demo-panel__heading strong {
  color: #eef2f5;
  font-size: .82rem;
}

.clh-status-chip {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid;
  border-radius: 999px;
  font-size: .55rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.clh-status-chip.is-ok {
  color: #72dbaa;
  border-color: rgba(75, 204, 145, .3);
  background: rgba(75, 204, 145, .07);
}

.clh-status-chip.is-warning {
  color: #e8c65d;
  border-color: rgba(229, 185, 68, .34);
  background: rgba(229, 185, 68, .07);
}

.clh-mini-filter {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(132, 149, 170, .17);
  border-radius: 8px;
  background: #0b1119;
}

.clh-mini-filter button {
  min-height: 29px;
  padding: 5px 8px;
  color: #76879a;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: .56rem;
  font-weight: 800;
  cursor: pointer;
}

.clh-mini-filter button:hover,
.clh-mini-filter button:focus-visible {
  color: #f1f4f6;
  outline: 0;
}

.clh-mini-filter button.is-active {
  color: #171208;
  background: #dfbf4e;
}

/* Immobilien-Workspace */
.clh-property-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(230px, .72fr) minmax(280px, .9fr);
  gap: 14px;
}

.clh-property-result {
  background:
    radial-gradient(circle at 82% 8%, rgba(212, 175, 55, .14), transparent 42%),
    rgba(8, 13, 20, .88);
}

.clh-property-method-range {
  position: relative;
  height: 12px;
  margin: 34px 0 10px;
  border-radius: 99px;
  background: rgba(119, 137, 158, .13);
}

.clh-property-method-range i {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: var(--start);
  width: var(--width);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 175, 55, .35), #dfc04d, rgba(212, 175, 55, .35));
}

.clh-property-method-range b {
  position: absolute;
  top: -5px;
  left: var(--position);
  width: 2px;
  height: 22px;
  border-radius: 99px;
  background: #f6e8a7;
  box-shadow: 0 0 16px rgba(240, 216, 118, .7);
}

.clh-property-result__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #718196;
  font-size: .56rem;
}

.clh-property-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(132, 149, 170, .13);
  border-radius: 10px;
  background: rgba(132, 149, 170, .13);
}

.clh-property-facts div {
  min-width: 0;
  padding: 11px;
  background: #0f1620;
}

.clh-property-facts dt,
.clh-property-facts dd {
  margin: 0;
}

.clh-property-facts dt {
  color: #6f8196;
  font-size: .54rem;
}

.clh-property-facts dd {
  margin-top: 4px;
  overflow: hidden;
  color: #e5eaf0;
  font-size: .69rem;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clh-property-pipeline ol,
.clh-report-audit ol,
.clh-routing-log ol,
.clh-invoice-audit ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clh-property-pipeline li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(132, 149, 170, .12);
}

.clh-property-pipeline li:last-child {
  border-bottom: 0;
}

.clh-property-pipeline li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(132, 149, 170, .2);
  border-radius: 50%;
  color: #7f8fa2;
  font-size: .54rem;
  font-weight: 850;
}

.clh-property-pipeline li.is-complete > span {
  color: #0a130e;
  border-color: #4bcc91;
  background: #4bcc91;
}

.clh-property-pipeline li.is-review > span {
  color: #211a06;
  border-color: #e4ba49;
  background: #e4ba49;
}

.clh-property-pipeline strong,
.clh-property-pipeline small {
  display: block;
}

.clh-property-pipeline strong {
  color: #dde5ed;
  font-size: .67rem;
}

.clh-property-pipeline small {
  margin-top: 3px;
  color: #708095;
  font-size: .57rem;
  line-height: 1.35;
}

.clh-property-research,
.clh-property-valuation,
.clh-property-report {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 14px;
}

.clh-source-list {
  display: grid;
  gap: 7px;
}

.clh-source-list > div {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  min-height: 48px;
  padding: 9px 11px;
  border: 1px solid rgba(132, 149, 170, .14);
  border-radius: 9px;
  background: #101722;
}

.clh-source-list i,
.clh-routing-queue button > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.clh-source-list i.is-ok,
.clh-routing-queue button > i.is-ok {
  background: #4bcc91;
  box-shadow: 0 0 10px rgba(75, 204, 145, .5);
}

.clh-source-list i.is-warning,
.clh-routing-queue button > i.is-warning {
  background: #e5b944;
  box-shadow: 0 0 10px rgba(229, 185, 68, .45);
}

.clh-source-list span strong,
.clh-source-list span small {
  display: block;
}

.clh-source-list span strong {
  color: #dfe6ed;
  font-size: .66rem;
}

.clh-source-list span small {
  margin-top: 3px;
  color: #738398;
  font-size: .56rem;
}

.clh-source-list b {
  color: #c9d3dd;
  font-size: .6rem;
}

.clh-compact-table {
  overflow: hidden;
  border: 1px solid rgba(132, 149, 170, .15);
  border-radius: 10px;
}

.clh-compact-table > div {
  display: grid;
  grid-template-columns: minmax(130px, 1.2fr) .65fr .7fr .6fr;
  gap: 9px;
  padding: 11px 12px;
  color: #cbd5df;
  border-bottom: 1px solid rgba(132, 149, 170, .12);
  font-size: .61rem;
}

.clh-compact-table > div:last-child {
  border-bottom: 0;
}

.clh-compact-table__head {
  color: #718196 !important;
  background: #0c121a;
  font-size: .53rem !important;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.clh-demo-callout {
  margin-top: 13px;
  padding: 12px 14px;
  border: 1px solid;
  border-radius: 9px;
}

.clh-demo-callout.is-warning {
  border-color: rgba(229, 185, 68, .3);
  background: rgba(229, 185, 68, .055);
}

.clh-demo-callout strong {
  color: #e8ca68;
  font-size: .68rem;
}

.clh-demo-callout p {
  margin: 5px 0 0;
  color: #8493a4;
  font-size: .6rem;
  line-height: 1.45;
}

.clh-property-valuation__band {
  display: block;
  margin-top: 24px;
  color: #f3eee3;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -.05em;
}

.clh-property-valuation .clh-demo-explainer {
  padding: 7px 0 0;
}

.clh-method-list {
  display: grid;
  gap: 17px;
  margin-top: 22px;
}

.clh-method-list > div {
  display: grid;
  grid-template-columns: 110px minmax(80px, 1fr) 58px;
  gap: 12px;
  align-items: center;
}

.clh-method-list span,
.clh-method-list strong {
  font-size: .63rem;
}

.clh-method-list span {
  color: #8796a7;
}

.clh-method-list strong {
  color: #e8edf1;
  text-align: right;
}

.clh-method-list i {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(123, 142, 163, .13);
}

.clh-method-list i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 175, 55, .35), #dfc04d);
}

.clh-property-risk {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 16px;
  margin-top: 28px;
  padding-top: 15px;
  border-top: 1px solid rgba(132, 149, 170, .14);
}

.clh-property-risk span {
  color: #8291a3;
  font-size: .65rem;
}

.clh-property-risk strong {
  color: #e7c85d;
  font-size: .8rem;
}

.clh-property-risk small {
  grid-column: 1 / -1;
  color: #718196;
  font-size: .57rem;
}

.clh-property-report {
  grid-template-columns: minmax(0, 1fr) minmax(240px, .35fr);
}

.clh-property-report__summary h4 {
  max-width: 820px;
  margin: 0;
  color: #f1eee6;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.18;
}

.clh-property-report__summary > p:not(.clh-demo-label) {
  max-width: 880px;
  margin: 14px 0 0;
  color: #93a0af;
  font-size: .72rem;
  line-height: 1.65;
}

.clh-property-report__summary > p strong {
  color: #efda85;
}

.clh-report-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.clh-report-columns > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(132, 149, 170, .14);
  border-radius: 9px;
  background: #0f1620;
}

.clh-report-columns small {
  color: #dfc25a;
  font-size: .54rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.clh-report-columns span {
  position: relative;
  padding-left: 13px;
  color: #b7c2ce;
  font-size: .62rem;
}

.clh-report-columns span::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9bd54;
}

.clh-property-report__summary .clh-demo-result {
  margin-top: 12px;
}

.clh-report-audit li,
.clh-routing-log li,
.clh-invoice-audit li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(132, 149, 170, .12);
}

.clh-report-audit li:last-child,
.clh-routing-log li:last-child,
.clh-invoice-audit li:last-child {
  border-bottom: 0;
}

.clh-report-audit time,
.clh-routing-log time,
.clh-invoice-audit time {
  color: #d8bc55;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: .55rem;
}

.clh-report-audit li span,
.clh-routing-log li span,
.clh-invoice-audit li span {
  color: #9aa8b7;
  font-size: .6rem;
  line-height: 1.4;
}

/* Belegzuordnung */
.clh-night-progress {
  padding: 13px 18px 15px;
  border-bottom: 1px solid rgba(132, 149, 170, .14);
  background: rgba(7, 12, 18, .78);
}

.clh-night-progress > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.clh-night-progress > div span {
  color: #68798d;
  font-size: .55rem;
  font-weight: 800;
}

.clh-night-progress > div span.is-active {
  color: #f1d879;
}

.clh-night-progress > div span.is-complete {
  color: #75d8ac;
}

.clh-night-progress > i {
  display: block;
  height: 4px;
  margin: 9px 0 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(123, 142, 163, .14);
}

.clh-night-progress > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3fae7d, #dfc04d);
  transition: width 650ms cubic-bezier(.16, 1, .3, 1);
}

.clh-night-progress > small {
  color: #77889b;
  font-size: .56rem;
}

.clh-routing-workbench {
  display: grid;
  grid-template-columns: minmax(230px, .62fr) minmax(260px, .82fr) minmax(330px, 1fr);
  gap: 12px;
  padding: 14px 14px 0;
}

.clh-routing-workbench .clh-routing-queue {
  display: block;
}

.clh-routing-workbench .clh-routing-queue > button {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 10px;
  width: 100%;
  min-height: 51px;
  align-items: center;
  margin-top: 6px;
  padding: 9px 10px;
}

.clh-routing-workbench .clh-routing-queue > button > span strong,
.clh-routing-workbench .clh-routing-queue > button > span small {
  display: block;
}

.clh-routing-workbench .clh-routing-queue > button > span strong {
  color: #dfe5ec;
  font-size: .66rem;
}

.clh-routing-workbench .clh-routing-queue > button > span small {
  margin-top: 3px;
  color: #728397;
  font-size: .55rem;
}

.clh-routing-workbench .clh-routing-queue > button > b {
  color: #c0cad4;
  font-size: .6rem;
}

.clh-document-preview .clh-demo-panel__heading > span {
  color: #78889b;
  font-size: .58rem;
}

.clh-paper-preview {
  width: min(320px, 100%);
  margin: 10px auto 0;
  padding: 17px;
  color: #172433;
  border-radius: 6px;
  background: #ece9df;
  box-shadow: 0 22px 44px -26px rgba(0, 0, 0, .95);
  transform: rotate(-.45deg);
}

.clh-paper-preview header,
.clh-paper-preview footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.clh-paper-preview header {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(32, 47, 64, .17);
}

.clh-paper-preview header i {
  width: 22px;
  height: 22px;
  border: 5px solid #2e7e5f;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(45deg);
}

.clh-paper-preview header span,
.clh-paper-preview header b {
  font-size: .56rem;
}

.clh-paper-preview header span {
  flex: 1;
  color: #61707d;
}

.clh-paper-preview__line {
  width: 72%;
  height: 6px;
  margin-top: 12px;
  border-radius: 99px;
  background: rgba(40, 56, 72, .12);
}

.clh-paper-preview__line.is-long {
  width: 100%;
}

.clh-paper-preview__line.is-short {
  width: 43%;
}

.clh-paper-preview__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 17px 0;
}

.clh-paper-preview__fields span {
  padding: 9px;
  border: 1px solid rgba(40, 56, 72, .14);
  border-radius: 5px;
}

.clh-paper-preview__fields small,
.clh-paper-preview__fields b {
  display: block;
}

.clh-paper-preview__fields small {
  color: #75808a;
  font-size: .48rem;
}

.clh-paper-preview__fields b {
  margin-top: 5px;
  font-size: .6rem;
}

.clh-paper-preview footer {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(32, 47, 64, .17);
  font-size: .55rem;
}

.clh-paper-preview footer strong {
  color: #2e7e5f;
}

.clh-match-candidate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  margin-bottom: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 9px;
  background: rgba(212, 175, 55, .055);
}

.clh-match-candidate small {
  grid-column: 1 / -1;
  color: #867539;
  font-size: .52rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.clh-match-candidate strong {
  color: #f0e3a8;
  font-size: .75rem;
}

.clh-match-candidate span {
  color: #9aa8b7;
  font-size: .6rem;
}

.clh-routing-bottom,
.clh-invoice-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
  gap: 12px;
  padding: 12px 14px 14px;
}

.clh-department-lanes > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.clh-department-lanes > div > span {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 3px 9px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(132, 149, 170, .14);
  border-radius: 9px;
  background: #0f1620;
}

.clh-department-lanes i {
  display: grid;
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #101409;
  border-radius: 8px;
  background: #d9bc50;
  font-size: .52rem;
  font-style: normal;
  font-weight: 900;
}

.clh-department-lanes strong,
.clh-department-lanes small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clh-department-lanes strong {
  color: #dae2e9;
  font-size: .6rem;
}

.clh-department-lanes small {
  color: #748498;
  font-size: .53rem;
}

/* Rechnungsprüfung */
.clh-invoice-workbench {
  display: grid;
  grid-template-columns: minmax(520px, 1.25fr) minmax(340px, .75fr);
  gap: 12px;
  padding: 14px 14px 0;
}

.clh-invoice-table {
  overflow: hidden;
  border: 1px solid rgba(132, 149, 170, .15);
  border-radius: 10px;
}

.clh-invoice-table__head,
.clh-invoice-table > button {
  display: grid;
  grid-template-columns: 62px minmax(150px, 1.35fr) 88px 100px 80px;
  gap: 10px;
  align-items: center;
}

.clh-invoice-table__head {
  min-height: 36px;
  padding: 7px 10px;
  color: #718196;
  background: #0b1119;
  font-size: .52rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.clh-invoice-table > button {
  width: 100%;
  min-height: 51px;
  padding: 8px 10px;
  color: #aeb9c5;
  border: 0;
  border-top: 1px solid rgba(132, 149, 170, .12);
  background: #101721;
  font-size: .59rem;
  text-align: left;
  cursor: pointer;
}

.clh-invoice-table > button:hover,
.clh-invoice-table > button:focus-visible,
.clh-invoice-table > button.is-active {
  color: #eef2f6;
  outline: 0;
  background: rgba(212, 175, 55, .075);
  box-shadow: inset 3px 0 #d4af37;
}

.clh-invoice-table > button span strong,
.clh-invoice-table > button span small {
  display: block;
}

.clh-invoice-table > button span strong {
  color: inherit;
  font-size: .63rem;
}

.clh-invoice-table > button span small {
  margin-top: 3px;
  color: #718196;
  font-size: .52rem;
}

.clh-invoice-match {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  margin-bottom: 13px;
}

.clh-invoice-match > div {
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(132, 149, 170, .15);
  border-radius: 9px;
  background: #101721;
}

.clh-invoice-match small,
.clh-invoice-match strong {
  display: block;
}

.clh-invoice-match small {
  color: #728398;
  font-size: .53rem;
}

.clh-invoice-match strong {
  margin-top: 4px;
  overflow: hidden;
  color: #e7edf3;
  font-size: .7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clh-invoice-match > i {
  color: #d9bc53;
  font-size: .9rem;
  font-style: normal;
  text-align: center;
}

.clh-invoice-checks {
  display: grid;
  gap: 7px;
}

.clh-invoice-checks > div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(132, 149, 170, .14);
  border-radius: 8px;
  background: #101721;
}

.clh-invoice-checks > div.is-warning {
  border-color: rgba(229, 185, 68, .3);
  background: rgba(229, 185, 68, .055);
}

.clh-invoice-checks i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  font-size: .58rem;
  font-style: normal;
  font-weight: 900;
}

.clh-invoice-checks .is-ok i {
  color: #07110c;
  background: #4bcc91;
}

.clh-invoice-checks .is-warning i {
  color: #211a04;
  background: #e5b944;
}

.clh-invoice-checks strong,
.clh-invoice-checks small {
  display: block;
}

.clh-invoice-checks strong {
  color: #dfe6ed;
  font-size: .62rem;
}

.clh-invoice-checks small {
  margin-top: 3px;
  color: #768699;
  font-size: .54rem;
}

.clh-invoice-document-card > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.clh-invoice-document-card > div > span {
  padding: 10px;
  border: 1px solid rgba(132, 149, 170, .14);
  border-radius: 8px;
  background: #101721;
}

.clh-invoice-document-card small,
.clh-invoice-document-card strong {
  display: block;
}

.clh-invoice-document-card small {
  color: #718196;
  font-size: .52rem;
}

.clh-invoice-document-card strong {
  margin-top: 4px;
  color: #e1e8ee;
  font-size: .64rem;
}

.clh-invoice-document-card > p:last-child {
  margin: 12px 0 0;
  color: #78889a;
  font-size: .58rem;
  line-height: 1.5;
}

@media (max-width: 1179.98px) {
  .clh-property-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clh-property-pipeline {
    grid-column: 1 / -1;
  }

  .clh-routing-workbench {
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
  }

  .clh-routing-review {
    grid-column: 1 / -1;
  }

  .clh-invoice-workbench {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 899.98px) {
  .clh-demo-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clh-demo-kpis > div:nth-child(2) {
    border-right: 0;
  }

  .clh-demo-kpis > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(132, 149, 170, .14);
  }

  .clh-property-overview,
  .clh-property-research,
  .clh-property-valuation,
  .clh-property-report,
  .clh-routing-workbench,
  .clh-routing-bottom,
  .clh-invoice-bottom {
    grid-template-columns: 1fr;
  }

  .clh-property-pipeline,
  .clh-routing-review {
    grid-column: auto;
  }

  .clh-department-lanes > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .clh-workbench-views {
    min-height: 0;
  }

  .clh-workbench-view {
    padding: 10px;
  }

  .clh-workbench-tabs {
    padding: 0 8px;
  }

  .clh-workbench-tabs button {
    padding: 8px 12px;
    font-size: .62rem;
  }

  .clh-demo-kpis > div {
    padding: 11px 12px;
  }

  .clh-demo-kpis strong {
    font-size: 1rem;
  }

  .clh-demo-kpis span {
    font-size: .54rem;
  }

  .clh-demo-panel__heading {
    align-items: stretch;
    flex-direction: column;
  }

  .clh-mini-filter {
    align-self: flex-start;
  }

  .clh-property-facts,
  .clh-report-columns,
  .clh-paper-preview__fields,
  .clh-invoice-document-card > div {
    grid-template-columns: 1fr;
  }

  .clh-compact-table {
    overflow-x: auto;
  }

  .clh-compact-table > div {
    min-width: 520px;
  }

  .clh-method-list > div {
    grid-template-columns: 90px minmax(70px, 1fr) 54px;
  }

  .clh-night-progress > div span {
    max-width: 75px;
    font-size: .49rem;
    text-align: center;
  }

  .clh-routing-workbench .clh-routing-queue {
    display: block;
  }

  .clh-routing-workbench .clh-routing-queue > button {
    display: grid;
  }

  .clh-department-lanes > div {
    grid-template-columns: 1fr;
  }

  .clh-invoice-lines {
    overflow: hidden;
  }

  .clh-invoice-table {
    overflow: visible;
    border: 0;
  }

  .clh-invoice-table__head {
    display: none;
  }

  .clh-invoice-table > button {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 7px 10px;
    margin-top: 7px;
    padding: 10px;
    border: 1px solid rgba(132, 149, 170, .15);
    border-radius: 9px;
  }

  .clh-invoice-table > button > span:nth-child(3) {
    grid-column: 1;
    color: #75869a;
  }

  .clh-invoice-table > button > span:nth-child(4) {
    grid-column: 2;
  }

  .clh-invoice-table > button > span:nth-child(5) {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 479.98px) {
  .clh-demo-dialog__header h2 {
    font-size: 1.25rem;
  }

  .clh-live-demo__toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .clh-demo-toolbar-button {
    width: 100%;
  }

  .clh-demo-kpis small {
    font-size: .49rem;
  }

  .clh-demo-kpis strong {
    font-size: .9rem;
  }

  .clh-property-result > strong,
  .clh-property-valuation__band {
    font-size: 1.85rem;
  }

  .clh-property-result__meta {
    font-size: .49rem;
  }

  .clh-method-list > div {
    grid-template-columns: 1fr auto;
  }

  .clh-method-list i {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .clh-invoice-match {
    grid-template-columns: 1fr;
  }

  .clh-invoice-match > i {
    transform: rotate(90deg);
  }

  .clh-invoice-table > button {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .clh-invoice-table > button > span:nth-child(5) {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clh-demo-toolbar-button,
  .clh-night-progress > i b,
  .clh-workbench-tabs button,
  .clh-invoice-table > button {
    animation: none !important;
    transition: none !important;
  }
}
/* WAVE3_CASES_END */

/* Ghostwriter Medienvertrag: natürliche Proportionen auf Desktop und Mobile */
.blog-post .content figure.article-figure {
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 12px;
}

.blog-post .content figure.article-figure img,
.blog-post .content .gw-chart img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0;
  object-fit: contain;
}

.blog-post .content .gw-chart {
  box-sizing: border-box;
  width: min(900px, calc(100vw - 48px));
  max-width: none;
  margin: 42px 0 42px 50%;
  padding: 24px;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgba(104, 128, 255, .2);
  border-radius: 16px;
  background: linear-gradient(145deg, #121626, #181d31);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
}

.blog-post .content .gw-chart__title {
  margin: 0 0 16px;
  color: #f4f7ff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-post .content .gw-chart__meta {
  margin: 14px 0 0;
  color: #8e99ad;
  font-size: 12px;
  line-height: 1.5;
}

.blog-post .content .gw-chart__meta a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 680px) {
  .blog-post .content .gw-chart {
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    padding: 14px;
    transform: none;
    border-radius: 12px;
    box-shadow: none;
  }
}
