:root {
    --primary-glow: #2dc8b4;
    /* Hero-Titel: an Logo-Cyan / Site-Teal angelehnt */
    --hero-neon-top: #dff8f4;
    --hero-neon-mid: #f9f9f9;
    --hero-neon-deep: #60b1a9;
    --bg-dark: #07151a;
    --bg-page: var(--bg-dark);
    --text-primary: #e0f2f1;
    --text-secondary: rgba(224, 242, 241, 0.82);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    /* Einheitliche Ecken; Kreise (50 %) und Tech-Blog-Badge (Pill) ausgenommen */
    --radius-ui: 8px;
}

html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

/* Schmale Viewports: kein dauerhaft reservierter Gutter (sonst oft „riesiger“ Scroll / Layout-Sprung) */
@media (max-width: 768px) {
    html {
        scrollbar-gutter: auto;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: Verdana, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: var(--bg-page, var(--bg-dark));
    color: var(--text-primary, #e0f2f1);
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
[role="button"] {
    cursor: pointer;
}

button:disabled,
button[aria-disabled="true"],
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled,
[role="button"][aria-disabled="true"] {
    cursor: not-allowed;
}

/* Standard-Links: Primärfarbe; besuchte Links wie unbesucht (kein Browser-Violett) */
body a:link:not(.omg-site-nav-mobile-link),
body a:visited:not(.omg-site-nav-mobile-link) {
    color: var(--primary-glow);
}

.header-omg-text-position a:link,
.header-omg-text-position a:visited {
    color: inherit;
}

body a:hover {
    color: var(--link-hover, #58dcc9);
}

body a:active {
    color: var(--primary-glow);
}

a.button:link,
a.button:visited {
    color: #041212;
    cursor: pointer;
}

body a.button:hover,
body a.button:active {
    color: #041212;
}

a.referenzen-client-card:link,
a.referenzen-client-card:visited {
    color: inherit;
}

body.is-booting .container-background,
body.is-booting .avatar-chat-fab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.is-ready .container-background,
body.is-ready .avatar-chat-fab {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.55s ease-out;
}

.boot-spinner-wrap {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    pointer-events: none;
    transition: opacity 0.4s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

body.is-booting .boot-spinner-wrap {
    opacity: 1;
}

body.is-ready .boot-spinner-wrap:not(.omg-boot-spinner-wrap-ajax) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.is-ajax-loading .boot-spinner-wrap {
    opacity: 1;
    z-index: 250;
}

.omg-boot-spinner-wrap-ajax {
    gap: 0;
}

.boot-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(45, 200, 180, 0.2);
    border-top-color: var(--primary-glow);
    border-radius: 50%;
    animation: bootSpin 0.75s linear infinite;
}

@keyframes bootSpin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .boot-spinner {
        animation: none;
        border-color: rgba(45, 200, 180, 0.45);
        border-top-color: var(--primary-glow);
    }

    body.is-ready .container-background,
    body.is-ready .avatar-chat-fab {
        transition: none;
    }

    body.is-ready .boot-spinner-wrap:not(.omg-boot-spinner-wrap-ajax) {
        transition: none;
    }
}

.container-background {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    z-index: 10;
}

/* --- DIE WAVES (SVG ELEMENTE) — dezent, gegenläufige horizontale Drift + Überlagerung --- */
.wave-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(200vw, 2200px);
    height: min(70vh, 640px);
    z-index: -1;
    pointer-events: none;
    opacity: var(--wave-opacity, 0.48);
    overflow: visible;
}

.wave-svg-root {
    position: absolute;
    left: 24%;
    top: -21%;
    width: 54%;
    height: 77%;
}

@media (prefers-reduced-motion: reduce) {
    .wave-svg-root {
        transition: none;
    }
}

.wave-drift-group {
    transform-box: fill-box;
    transform-origin: 50% 50%;
    will-change: transform;
}

.wave-drift-dir-right {
    animation: waveDriftXRight 40s ease-in-out infinite;
}

.wave-drift-dir-left {
    animation: waveDriftXLeft 32s ease-in-out infinite;
}

.wave-drift-dir-mid {
    animation: waveDriftXMid 24s ease-in-out infinite;
    opacity: 0.95;
}

.wave-path {
    fill: none;
    stroke: url(#wave-gradient);
    stroke-width: 1px;
    transform-origin: center;
}

.wave-layer-back .wave-path {
    opacity: 0.22;
    animation: waveFlow 22s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.wave-layer-back .wave-path.wave-path-primary {
    opacity: 1;
}

.wave-layer-mid .wave-path {
    opacity: 0.18;
    animation: waveFlow 26s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: -3s;
}

.wave-layer-front .wave-path {
    opacity: 0.14;
    animation: waveFlow 30s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    animation-delay: -6s;
}

@keyframes waveDriftXRight {
    0%, 100% { transform: translateX(-72px); }
    50% { transform: translateX(72px); }
}

@keyframes waveDriftXLeft {
    0%, 100% { transform: translateX(56px); }
    50% { transform: translateX(-56px); }
}

@keyframes waveDriftXMid {
    0%, 100% { transform: translateX(-36px); }
    50% { transform: translateX(48px); }
}

@keyframes waveFlow {
    0% { transform: scaleY(1) translateY(0) rotate(0deg); }
    50% { transform: scaleY(1.12) translateY(-22px) rotate(0.6deg); }
    100% { transform: scaleY(1) translateY(0) rotate(0deg); }
}

/* --- UI ELEMENTE --- */
header,
footer,
main {
    width: calc(100% - 3rem);
    max-width: 1200px;
    box-sizing: border-box;
}

.omg-site-header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

header.site-header {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    row-gap: 12px;
}

/* Platzhalter, wenn der Kopf fixed aus dem Flow springt */
.site-header-spacer {
    flex-shrink: 0;
    width: 100%;
}

/* Desktop: normaler Header zentriert wie Main/Footer; fixe Leiste bleibt volle Breite */
@media (min-width: 769px) {
    .site-header:not(.omg-site-header-fixed) {
        align-self: center;
    }

    .site-header.omg-site-header-fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0.75rem 1.25rem;
        box-sizing: border-box;
        z-index: 1000;
        background: var(--header-bg, var(--bg-dark));
        border-bottom: 1px solid var(--header-border, rgba(45, 200, 180, 0.14));
        box-shadow: var(--header-shadow, 0 8px 28px rgba(0, 0, 0, 0.42));
        animation: siteHeaderRevealFromTop 0.38s ease forwards;
    }

    .site-header.omg-site-header-fixed .omg-site-header-inner {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 3rem);
    }

    @media (min-width: 769px) and (max-width: 1300px) {
        .site-header.omg-site-header-fixed .omg-site-header-inner {
            width: calc(100% - 8rem);
        }
    }

    @media (min-width: 769px) and (max-width: 770px) {
        .site-header.omg-site-header-fixed .omg-site-header-inner {
            width: calc(100% - 4rem);
        }
    }
}

@keyframes siteHeaderRevealFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0.85;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (min-width: 769px) and (prefers-reduced-motion: reduce) {
    .site-header.omg-site-header-fixed {
        animation: none;
        transform: none;
        opacity: 1;
    }
}

.site-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.site-nav-mobile {
    display: none;
}

.omg-site-nav-mobile-toggle,
.omg-site-nav-mobile-list {
    display: none;
}

.site-nav a.site-nav-link:link,
.site-nav a.site-nav-link:visited {
    color: var(--primary-glow);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a.site-nav-link:hover {
    color: var(--nav-hover, #7ae8dc);
    opacity: 1;
}

.omg-site-nav-item-blog {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.omg-site-nav-blog-tags-row {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(11, 23, 26, 0.94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 20;
}

.omg-site-nav-blog-tag-chip:link,
.omg-site-nav-blog-tag-chip:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.8rem;
    padding: 0.15rem 0.58rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.72rem;
    line-height: 1.3;
}

.omg-site-nav-blog-tag-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1rem;
    height: 1rem;
    margin-left: 0.35rem;
    padding: 0 0.22rem;
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    background: #f00;
}

.omg-site-nav-item-blog.is-sticky-open .omg-site-nav-blog-tags-row,
.omg-site-nav-item-ki-tools.is-sticky-open .omg-site-nav-blog-tags-row {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.omg-site-nav-item-ki-tools {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Tech-Blog: Zähler-Badge oben rechts am Wort „Tech-Blog“ */
.site-nav a.omg-site-nav-link-blog .site-nav-blog-wrap {
    position: relative;
    display: inline-block;
}

/* Kein Zähler-Badge / kein „[n]“-Suffix, wenn heute 0 Beiträge (Klasse per PHP + counters.js) */
.omg-site-nav-blog-count-empty {
    display: none !important;
}

.site-nav a.omg-site-nav-link-blog .site-nav-badge {
    position: absolute;
    top: -16px;
    right: -8px;
    left: auto;
    bottom: auto;
    z-index: 1;
    transform: none;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.125rem;
    min-height: 1.125rem;
    padding: 0 0.22rem;
    border-radius: 999px;
    font-size: 0.5625rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    background: #f00;
    box-shadow: 0 0 12px rgba(200, 45, 45, 0.45);
}

@media (max-width: 640px) {
    .site-nav a.omg-site-nav-link-blog .site-nav-badge {
        top: -0.28em;
        right: -0.1em;
        min-width: 1rem;
        min-height: 1rem;
        font-size: 0.5rem;
    }
}

.logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: clamp(0.95rem, 2.2vw, 22px);
    letter-spacing: -1px;
    min-width: 0;
}

a.logo.omg-logo-home {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.logo.omg-logo-home:hover .logo-text,
a.logo.omg-logo-home:focus-visible .logo-text {
    color: #f0faf9;
}

a.logo.omg-logo-home:focus-visible {
    outline: 2px solid rgba(45, 200, 180, 0.5);
    outline-offset: 4px;
    border-radius: var(--radius-ui);
}

/* Zuschnitt: 20px links, 50px rechts (sichtbare Breite 200 − 70 = 130px bei Original 200×50) */
.logo-img-crop {
    overflow: hidden;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    align-self: center;
}

.logo-img-crop img {
    display: block;
    width: 50px;
    height: 50px;
    max-width: none;
}

.logo-text {
    white-space: nowrap;
    font-size: 1rem;
}

.text-gradient {
    background: linear-gradient(180deg, var(--logo-gradient-top, #eafbfc) 0%, var(--logo-gradient-bottom, #24e8ef) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.search-section {
    text-align: center;
    margin: 0;
}

/* Unterseiten: gleicher oberer Abstand wie Kontakt (statt inline-Styles) */
.omg-search-section-page {
    margin-top: 46px;
    margin-bottom: 24px;
}

.search-section h2 {
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--text-secondary, rgba(224, 242, 241, 0.82));
    max-width: 44rem;
    margin: 0.75rem auto 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

h1 {
    min-height: 47px;
    display: inline-block;
    background: linear-gradient(
        180deg,
        var(--hero-neon-top) 0%,
        var(--hero-neon-mid) 48%,
        var(--hero-neon-deep) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 14px rgba(45, 200, 180, 0.2))
        drop-shadow(0 0 4px rgba(45, 200, 180, 0.35))
        drop-shadow(0 2px 2px rgba(0, 0, 0, 0.45));
}

.hero-site-title .omg-hero-site-title-text img {
    display: inline-block;
    vertical-align: -0.18em;
    margin-left: 0.06em;
    -webkit-text-fill-color: initial;
}

/* Terminal-Cursor (JS), dezent wie CodePen dYaJyJ */
.hero-site-title .omg-hero-site-title-cursor {
    display: inline-block;
    position: relative;
    margin-left: 0.06em;
    font-weight: 400;
    color: var(--hero-neon-mid);
    opacity: 1;
}

.hero-site-title .omg-hero-site-title-cursor.omg-hero-site-title-cursor-hidden {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-site-title .omg-hero-site-title-text {
        filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.4));
    }
}

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

.text-center {
    text-align: center;
}

.hide-small {
    display: inline;
}

.show-small {
    display: none;
}

.header-omg-text-position {
    align-self: auto;
    text-align: end;
    position: absolute;
    right: 4.5rem;
    top: 2rem;
    color: var(--header-logo-text, #d1f9fa);
}

.site-search-input {
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.site-search-hits {
    margin-top: 1.25rem;
    text-align: left;
    max-width: min(100%, 640px);
    margin-left: auto;
    margin-right: auto;
}

.site-search-hits[hidden] {
    display: none !important;
}

.omg-site-search-hits-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(224, 242, 241, 0.55);
    margin-bottom: 0.65rem;
    caption-side: top;
    text-align: left;
}

.omg-site-search-hits-empty {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    opacity: 0.75;
    color: rgba(224, 242, 241, 0.85);
}

.omg-site-search-hits-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 0.875rem;
    line-height: 1.45;
}

.omg-site-search-hits-table thead th {
    padding: 0.4rem 0.75rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(224, 242, 241, 0.5);
    border-bottom: 1px solid var(--glass-border);
}

.omg-site-search-result-row td {
    padding: 0;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: top;
}

.omg-site-search-result-row:last-child td {
    border-bottom: none;
}

/* Eine Zeile = ein Link (Spalten optisch per Grid) */
.omg-site-search-result-row-link {
    display: grid;
    grid-template-columns: minmax(0, 34%) minmax(0, 66%);
    gap: 0.75rem 1rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.75rem;
    margin: 0;
    border-radius: var(--radius-ui);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.omg-site-search-result-row:hover .omg-site-search-result-row-link,
.omg-site-search-result-row-link:hover {
    background-color: rgba(45, 200, 180, 0.1);
    box-shadow: inset 0 0 0 1px rgba(45, 200, 180, 0.15);
}

.omg-site-search-result-row-link:focus-visible {
    outline: 2px solid rgba(45, 200, 180, 0.55);
    outline-offset: 2px;
}

.omg-site-search-result-label {
    color: var(--primary-glow);
    font-weight: 600;
    word-break: break-word;
}

.omg-site-search-result-snippet {
    color: rgba(224, 242, 241, 0.65);
    font-size: 0.8125rem;
    word-break: break-word;
}

@media (max-width: 520px) {
    .omg-site-search-hits-table thead {
        display: none;
    }

    .omg-site-search-result-row-link {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

/* Treffer aus URL (?searchedFor=), gesetzt von main.js */
.omg-ajax-search-highlight {
    background: #ff7373;
    color: rgb(255, 255, 255);
    padding: 0 0.15em;
    border-radius: var(--radius-ui);
}

.omg-ajax-page-container {
    padding: 0.3rem;
    margin-left: -2rem;
    text-align: left;
}

.omg-ajax-page-container:has(.startseite-fragment) {
    max-width: 1200px;
    margin-top: 50px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.omg-ajax-page-container[hidden] {
    display: none !important;
}

/* Ajax: bisherigen Inhalt ausblenden (Opacity), neuen einblenden */
.omg-ajax-page-container.omg-ajax-page-container-fade-out {
    transition: opacity 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

@keyframes ajaxContentFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.omg-ajax-page-container.omg-ajax-page-container-fade-in {
    animation: ajaxContentFadeIn 0.5s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
    .omg-ajax-page-container.omg-ajax-page-container-fade-out {
        transition: none;
        opacity: 1;
    }

    .omg-ajax-page-container.omg-ajax-page-container-fade-in {
        animation: none;
    }
}

.omg-ajax-page-title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #e0f2f1;
}

.omg-ajax-page-title-spaced {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.omg-ajax-page-section-title {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(224, 242, 241, 0.92);
}

.omg-ajax-page-fragment-legal .omg-ajax-page-section-title:first-of-type {
    margin-top: 0.75rem;
}

.omg-ajax-impressum-reveal {
    display: inline-block;
    margin-left: 0.35rem;
    vertical-align: middle;
    padding: 0.25rem 0.65rem;
    font-size: 0.8125rem;
    font-family: inherit;
    line-height: 1.3;
    cursor: pointer;
    border-radius: var(--radius-ui);
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.35);
    color: #e0f2f1;
}

.omg-ajax-impressum-reveal:hover {
    border-color: rgba(45, 200, 180, 0.45);
    color: #f0faf9;
}

.omg-ajax-page-lead {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    opacity: 0.75;
}

.omg-ajax-page-fragment p {
    margin: 0 0 0.75rem;
    line-height: 1.6;
    opacity: 0.85;
    font-size: 0.9rem;
}

.omg-ajax-page-fragment p:last-child {
    margin-bottom: 0;
    /* min-height: 75px; */
    min-height: 45px;
    padding-top: 12px;
}

.omg-ajax-page-fragment code {
    font-size: 0.85em;
    opacity: 0.9;
}

.ajax-loading,
.ajax-error {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.75;
}

.ajax-error {
    color: #ffb4b4;
}

/* Preise (2026-pages/preise.php) */
.omg-ajax-page-fragment-preise {
    text-align: left;
}

.preise-intro {
    margin: 0 0 1.35rem;
    line-height: 1.65;
    font-size: 0.92rem;
    opacity: 0.9;
}

.preise-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-ui);
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.preise-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    font-size: 0.875rem;
    line-height: 1.45;
}

.preise-table thead th {
    text-align: left;
    padding: 12px 14px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(224, 242, 241, 0.75);
    background: rgba(45, 200, 180, 0.1);
    border-bottom: 1px solid var(--glass-border);
    white-space: nowrap;
}

.preise-table tbody td {
    padding: 12px 14px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(224, 242, 241, 0.92);
}

.preise-table thead th:last-child,
.preise-table tbody td:last-child {
    text-align: right;
    white-space: nowrap;
}

.preise-table tbody tr:nth-child(odd) td {
    background: rgba(255, 255, 255, 0.02);
}

.preise-table tbody tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.18);
}

.visitors-table thead th:last-child,
.visitors-table tbody td:last-child {
    text-align: left;
    white-space: normal;
}

.visitors-table td {
    word-break: break-word;
    vertical-align: top;
}

.visitors-table th:nth-child(1),
.visitors-table td:nth-child(1) {
    min-width: 50px;
}

.visitors-table th:nth-child(2),
.visitors-table td:nth-child(2) {
    min-width: 85px;
}

.visitors-table th:nth-child(3),
.visitors-table td:nth-child(3) {
    min-width: 85px;
}

.preise-table tbody tr {
    transition:
        background 0.15s ease,
        outline-color 0.15s ease;
}


.preise-table tbody tr:hover td {
    background: rgba(45, 200, 180, 0.14) !important;
}

.omg-preise-table-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.62;
    max-width: 28rem;
}

.preise-footnote {
    margin: 1.35rem 0 0;
    font-size: 0.85rem;
    line-height: 1.55;
    opacity: 0.78;
}

@media (prefers-reduced-motion: reduce) {
    .preise-table tbody tr {
        transition: none;
    }
}

/* Referenzen (2026-pages/referenzen.php) */
.omg-ajax-page-fragment-referenzen {
    text-align: left;
}

.omg-ajax-page-fragment-ueber-mich {
    text-align: left;
}

.omg-ueber-mich-card {
    position: relative;
    padding: 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ui);
    background: rgba(0, 0, 0, 0.26);
    overflow: hidden;
}

.omg-ueber-mich-photo {
    position: absolute;
    top: 6.2rem;
    right: 10.2rem;
    width: min(33%, 220px);
    margin: 0;
    overflow: hidden;
}

.omg-ueber-mich-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
}

.omg-ueber-mich-text {
    max-width: 40rem;
    text-align: justify;
    padding-right: min(38%, 260px);
}

.omg-ueber-mich-text p:last-child {
    min-height: 0;
    padding-top: 0;
}

@media (max-width: 980px) {
    .omg-ueber-mich-card {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .omg-ueber-mich-photo {
        position: static;
        width: min(68%, 320px);
        margin: 0 auto;
    }

    .omg-ueber-mich-text {
        padding-right: 0;
    }
}

.referenzen-intro {
    margin-bottom: 1.75rem;
}

.referenzen-intro p {
    margin: 0 0 0.85rem;
}

.referenzen-clients {
    display: flex;
    gap: 0;
    margin: 0;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}

.referenzen-clients::-webkit-scrollbar {
    display: none;
}

.referenzen-slider {
    position: relative;
    margin: 1.25rem 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.omg-ajax-page-fragment-referenzen .referenzen-slider,
.omg-ajax-page-fragment-referenzen .omg-referenzen-slider-dots {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.referenzen-client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius-ui);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    background-color: #00000042;
}

.referenzen-client-card:hover {
    border-color: rgba(45, 200, 180, 0.45);
}

.referenzen-client-card--static {
    cursor: default;
}

.referenzen-client-card--static:hover {
    border-color: transparent;
    background-color: #00000042;
}

.referenzen-client-card:focus-visible {
    outline: 2px solid rgba(45, 200, 180, 0.55);
    outline-offset: 3px;
}

.omg-referenzen-client-card-media {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-ui);
    overflow: hidden;
}

.omg-referenzen-client-card-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    padding-top: 27px;
}

.omg-referenzen-client-card-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-glow);
    text-align: center;
    line-height: 1.4;
    padding-top: 3rem;
}

.omg-referenzen-client-card-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.25rem;
}

.omg-referenzen-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.2rem 0.5rem;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 999px;
    border: 1px solid rgba(45, 200, 180, 0.36);
    background: rgba(45, 200, 180, 0.12);
    color: #d8f6f2;
    font-size: 0.76rem;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-align: center;
}

.omg-referenzen-slider-nav {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    border: 1px solid rgba(45, 200, 180, 0.45);
    background: rgba(6, 24, 24, 0.8);
    color: #e0f2f1;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}

.omg-referenzen-slider-nav-prev {
    left: 0.35rem;
}

.omg-referenzen-slider-nav-next {
    right: 0.35rem;
}

.omg-referenzen-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.85rem 0 0.25rem;
}

.omg-ajax-page-fragment-referenzen .omg-referenzen-slider-nav,
.omg-ajax-page-fragment-referenzen .omg-referenzen-slider-dots {
    display: flex !important;
}

.omg-referenzen-slider-dot {
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 50%;
    background: rgba(224, 242, 241, 0.35);
}

.omg-referenzen-slider-dot.is-active {
    background: var(--primary-glow);
}

/* Blog (2026-pages/blog.php, Übersicht + Artikel) */
.omg-ajax-page-fragment-blog {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    opacity: 0.8;
}

.omg-blog-2026-alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-ui);
    border: 1px solid rgba(255, 100, 100, 0.45);
    background: rgba(80, 20, 20, 0.35);
    font-size: 0.875rem;
}

.omg-blog-2026-search-row {
    margin-right: 1.8rem;
    text-align: center;
    padding-bottom: 63px;
}

.omg-blog-2026-search-input {
    width: 100%;
    max-width: 28rem;
}

.omg-blog-2026-search-empty {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    opacity: 0.65;
}

.omg-blog-2026-tag-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: -2.4rem 0 1rem;
    padding-right: 1.8rem;
}

.omg-blog-2026-tag-filter {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.76);
    color: rgba(203, 213, 225, 0.98);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.3rem 0.68rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.omg-blog-2026-tag-filter:hover {
    border-color: rgba(165, 180, 252, 0.62);
    color: #e2e8f0;
}

.omg-blog-2026-tag-filter.is-active {
    border-color: rgba(56, 189, 248, 0.68);
    background: rgba(30, 41, 59, 0.92);
    color: #f8fafc;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.22) inset;
}

.omg-blog-2026-posts-wrap {
    margin-top: 0.5rem;
}

.omg-ajax-page-fragment-blog .omg-blog-article-card {
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-ui);
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.22);
    text-align: left;
}

.omg-ajax-page-fragment-blog .omg-blog-article-card[data-blog-slug] {
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.omg-ajax-page-fragment-blog .omg-blog-article-card[data-blog-slug]:hover {
    border-color: rgba(45, 200, 180, 0.35);
    background: rgba(255, 255, 255, 0.05);
}

.omg-ajax-page-fragment-blog .omg-blog-article-card[data-blog-slug].is-last-visited {
    border-color: rgba(90, 170, 255, 0.8);
    background: rgba(44, 111, 214, 0.22);
    box-shadow: 0 0 0 1px rgba(90, 170, 255, 0.3) inset;
}

@media (prefers-reduced-motion: reduce) {
    .omg-ajax-page-fragment-blog .omg-blog-article-card[data-blog-slug] {
        transition: none;
    }
}

.omg-ajax-page-fragment-blog .omg-blog-article-byline {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

.omg-ajax-page-fragment-blog .omg-blog-article-byline a {
    color: var(--primary-glow);
    text-decoration: none;
}

.omg-ajax-page-fragment-blog .omg-blog-article-byline a:hover {
    text-decoration: underline;
}

.omg-ajax-page-fragment-blog .omg-blog-article-card[data-blog-slug] .omg-blog-article-byline {
    color: rgba(224, 242, 241, 0.92);
}

.omg-ajax-page-fragment-blog .omg-blog-article-excerpt {
    margin: 0;
    line-height: 1.55;
    opacity: 0.85;
}

.omg-ajax-page-fragment-blog .omg-blog-article-title {
    margin: 0;
    line-height: 1.45;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(224, 242, 241, 0.96);
}

.omg-ajax-page-fragment-blog .omg-blog-article-tags-line {
    margin: 0.42rem 0 0;
}

.omg-ajax-page-fragment-blog .omg-blog-article-clicks {
    margin: 0.48rem 0 0;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(224, 242, 241, 0.64);
}

.omg-ajax-page-fragment-blog .omg-blog-article-meta-line {
    font-size: 0.75rem;
    line-height: 1.45;
}

.omg-ajax-page-fragment-blog .omg-blog-last-visited-prefix {
    opacity: 0.95;
}

.omg-ajax-page-fragment-blog .omg-blog-tag-badge-wrap {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    vertical-align: middle;
}

.omg-ajax-page-fragment-blog .omg-blog-tag-badge {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.16rem 0.52rem;
    font-size: 0.69rem;
    font-weight: 600;
    line-height: 1.35;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.75);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.omg-ajax-page-fragment-blog .omg-blog-tag-badge:hover {
    border-color: rgba(165, 180, 252, 0.6);
    color: #f8fafc;
}

.omg-ajax-page-fragment-blog .omg-blog-tag-schwachstelle {
    color: #ffd9d9;
    border-color: rgba(165, 58, 58, 0.65);
    background: rgb(93 21 21 / 76%);
}

.omg-ajax-page-fragment-blog .omg-blog-tag-kuenstliche-intelligenz {
    color: #ead7ff;
    border-color: rgba(153, 105, 186, 0.65);
    background: rgb(62 21 93 / 76%);
}

.omg-ajax-page-fragment-blog .omg-blog-tag-kundeninformationen {
    color: #d8f4f0;
    border-color: rgba(45, 160, 140, 0.65);
    background: rgb(15 58 52 / 78%);
}

@media (max-width: 640px) {
    .omg-ajax-page-fragment-blog .omg-blog-article-meta-line {
        font-size: 0.7rem;
    }
}

.omg-ajax-page-fragment-blog .omg-blog-article-card p:last-child {
    margin-bottom: 0;
}

.omg-blog-2026-back-wrap {
    margin: 0 0 0.5rem;
}

.omg-blog-2026-back {
    font-size: 0.875rem;
    color: var(--primary-glow);
    text-decoration: none;
}

.omg-blog-2026-back:hover {
    text-decoration: underline;
}

.omg-blog-2026-text-link {
    color: var(--primary-glow);
    text-decoration: none;
}

.omg-blog-2026-text-link:hover {
    text-decoration: underline;
}

.omg-blog-2026-article-body {
    line-height: 1.65;
    font-size: 0.92rem;
    opacity: 0.92;
}

.omg-ajax-page-fragment-blog-single .omg-blog-2026-article-body {
    margin-top: 0.25rem;
}

.omg-blog-2026-article-body h2,
.omg-blog-2026-article-body h3,
.omg-blog-2026-article-body h4 {
    margin: 1.25rem 0 0.5rem;
    color: #e0f2f1;
    font-weight: 600;
    text-align: left;
}

.omg-blog-2026-article-body p {
    margin: 0 0 0.75rem;
    text-align: justify;
}

.omg-blog-2026-article-body a {
    color: var(--primary-glow);
}

.omg-blog-2026-article-body pre,
.omg-blog-2026-article-body code {
    font-size: 0.86em;
}

.omg-blog-2026-checklist {
    list-style: none;
    margin: 0.75rem 0 1.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(45, 200, 180, 0.28);
    border-radius: var(--radius-ui);
    background: rgba(0, 0, 0, 0.22);
}

.omg-blog-2026-checklist li {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.omg-blog-2026-checklist li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.omg-blog-2026-checklist label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 0.65rem;
    cursor: pointer;
    line-height: 1.45;
    align-items: start;
}

.omg-blog-2026-checklist input[type="checkbox"] {
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--primary-glow);
}

.omg-blog-2026-checklist-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.omg-blog-2026-checklist-title {
    display: block;
    font-weight: 600;
    color: #e8f7f4;
    line-height: 1.4;
}

.omg-blog-2026-checklist-desc {
    display: block;
    font-size: 0.86rem;
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.78;
}

.omg-blog-2026-checklist-hint {
    margin: 0 0 0.75rem;
    font-size: 0.84rem;
    opacity: 0.78;
}

.omg-blog-2026-source {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    text-align: left;
}

.omg-blog-2026-source-label {
    margin: 0 0 0.25rem;
    font-size: 0.75rem;
    opacity: 0.55;
}

.omg-blog-2026-source-link {
    margin: 0;
    font-size: 0.875rem;
}

.omg-blog-helpful-card {
    position: relative;
    max-width: 22rem;
    margin: 6rem auto 0.5rem;
    padding: 2.35rem 1.25rem 1.15rem;
    border: 1px solid rgba(45, 200, 180, 0.28);
    border-radius: var(--radius-ui);
    background: rgba(0, 0, 0, 0.28);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.omg-blog-helpful-avatar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(7, 21, 26, 0.95);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    background: #0b171a;
}

.omg-blog-helpful-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.omg-blog-helpful-question {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.45;
    color: #e8f7f4;
}

.omg-blog-helpful-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.omg-blog-helpful-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(45, 200, 180, 0.16);
    color: #dff8f4;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.omg-blog-helpful-btn:hover,
.omg-blog-helpful-btn:focus-visible {
    background: rgba(45, 200, 180, 0.3);
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}

.omg-blog-helpful-btn-icon {
    display: inline-flex;
    width: 1.2rem;
    height: 1.2rem;
}

.omg-blog-helpful-btn-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.omg-blog-helpful-btn-like.is-liked {
    background: rgba(45, 200, 180, 0.42);
    color: #fff;
}

.omg-blog-helpful-badge {
    position: absolute;
    top: 2rem;
    right: -0.5rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: #1c8453;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.15rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.omg-blog-helpful-badge.hidden {
    display: none;
}

.omg-blog-helpful-share-wrap {
    position: relative;
}

.omg-blog-helpful-share-menu {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.55rem);
    transform: translateX(-50%);
    z-index: 12;
    min-width: 10.5rem;
    padding: 0.35rem;
    border-radius: var(--radius-ui);
    border: 1px solid rgba(45, 200, 180, 0.28);
    background: rgba(7, 21, 26, 0.97);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
    text-align: left;
}

.omg-blog-helpful-share-menu[hidden] {
    display: none;
}

.omg-blog-helpful-share-item {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.45rem 0.55rem;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #dff8f4;
    font: inherit;
    font-size: 0.84rem;
    line-height: 1.35;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.omg-blog-helpful-share-item:hover,
.omg-blog-helpful-share-item:focus-visible {
    background: rgba(45, 200, 180, 0.16);
    color: #fff;
    outline: none;
}

.omg-blog-helpful-toast {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(224, 242, 241, 0.82);
}

.omg-blog-helpful-toast[hidden] {
    display: none;
}

.site-nav a.site-nav-link.is-active,
.site-nav a.site-nav-link.is-active:link,
.site-nav a.site-nav-link.is-active:visited {
    color: #fff;
    font-weight: 700;
    opacity: 1;
}


.input {
    width: 100%;
    max-width: 550px;
    background: var(--input-bg, rgba(0, 0, 0, 0.4));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ui);
    padding: 18px 25px;
    color: var(--input-text, #fff);
    backdrop-filter: blur(20px);
    box-shadow: var(--input-shadow, 0 20px 50px rgba(0,0,0,0.3));
    transition: 0.3s;
}

.input:focus { outline: none; border-color: var(--primary-glow); }

.button {
    background: var(--primary-glow);
    color: #041212;
    color: black !important;
    border: none;
    border-radius: var(--radius-ui);
    padding: 10px 10px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(45, 200, 180, 0.3);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    text-decoration: none;
}

.button:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(45, 200, 180, 0.5); }

/* --- KI Tools --- */
.omg-ki-tools-lead {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: rgba(224, 242, 241, 0.75);
    line-height: 1.65;
}

.omg-ki-tools-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    margin: 0 auto 1.5rem;
    max-width: 980px;
}

.omg-ki-tools-filter,
.omg-ki-tool-tag {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.76);
    color: rgba(203, 213, 225, 0.98);
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
    padding: 0.34rem 0.72rem;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.omg-ki-tools-filter:hover,
.omg-ki-tool-tag:hover {
    border-color: rgba(45, 200, 180, 0.62);
    color: #f8fafc;
}

.omg-ki-tools-filter.is-active {
    border-color: rgba(45, 200, 180, 0.75);
    background: rgba(14, 61, 57, 0.92);
    color: #f8fafc;
    box-shadow: 0 0 0 1px rgba(45, 200, 180, 0.22) inset;
}

.omg-ki-tools-empty {
    margin: 0 auto 1rem;
    text-align: center;
    color: rgba(224, 242, 241, 0.68);
}

.omg-ki-tools-usecases {
    display: grid;
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 1.5rem auto 0;
}

.omg-ki-tool-card {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    text-align: left;
}

.omg-ki-tool-card[hidden] {
    display: none !important;
}

.omg-ki-tool-card-head h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.omg-ki-tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.omg-ki-tool-tag {
    padding: 0.22rem 0.55rem;
    font-size: 0.68rem;
    color: #d9fff9;
    border-color: rgba(45, 200, 180, 0.38);
    background: rgba(13, 44, 48, 0.72);
}

.omg-ki-tool-summary {
    margin: 0;
    color: rgba(224, 242, 241, 0.72);
    font-size: 0.9rem;
    line-height: 1.6;
}

.omg-ki-tool-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.95rem;
    margin: 0;
    padding: 0;
}

.omg-ki-tool-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-ui);
    background: rgba(0, 0, 0, 0.18);
}

.omg-ki-tool-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.omg-ki-tool-item-top a {
    font-weight: 700;
    text-decoration: none;
}

.omg-ki-tool-item-top a:hover {
    text-decoration: underline;
}

.omg-ki-tool-rating {
    flex: 0 0 auto;
    text-align: right;
    color: #ffd36a;
    font-size: 0.78rem;
    line-height: 1.25;
    white-space: nowrap;
}

.omg-ki-tool-rating-text {
    display: block;
    color: rgba(224, 242, 241, 0.48);
    font-size: 0.64rem;
}

.omg-ki-tool-item p {
    margin: 0.35rem 0 0;
    color: rgba(224, 242, 241, 0.66);
    font-size: 0.8rem;
    line-height: 1.5;
}

@media (max-width: 1080px) {
    .omg-ki-tool-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .omg-ki-tool-list {
        grid-template-columns: 1fr;
    }

    .omg-ki-tool-item-top {
        flex-direction: column;
        gap: 0.35rem;
    }

    .omg-ki-tool-rating {
        text-align: left;
    }
}

/* --- GRID & TILES --- */
.tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1200px;
    margin-top: 20px;
}

.caption {
    margin-top: 80px;
    margin-bottom: 35px;
}

blockquote.caption.quote {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 0 0 0 1.25rem;
    border-left: 3px solid rgba(45, 200, 180, 0.55);
    font-style: italic;
    color: rgba(224, 242, 241, 0.95);
}

blockquote.caption.quote p {
    margin-bottom: 0;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.55;
}

blockquote.caption.quote .quote-author {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.65;
}

.omg-site-footer-wrapper {
    margin-top: 6rem;
    margin-left: -2rem;
}

/* Verhindert, dass die Fußzeile unter dem Header klebt, solange der Ajax-Inhalt noch leer ist */
body.is-ajax-content-loading .site-footer {
    display: none;
}

.omg-site-footer-inner {
    border-top: 1px solid var(--glass-border);
    padding-top: 32px;
    padding-right: 32px;
    padding-bottom: 22vh;
    padding-left: 32px;
}

.omg-site-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem 2rem;
}

.omg-site-footer-logo {
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: -0.03em;
    color: #e0f2f1;
}

.omg-site-footer-tagline {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    opacity: 0.5;
    line-height: 1.4;
}

.omg-site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.5rem;
    align-items: center;
}

.omg-site-footer-nav a:link,
.omg-site-footer-nav a:visited {
    color: var(--primary-glow);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.omg-site-footer-nav a:hover {
    color: #7ae8dc;
}

.omg-site-footer-legal {
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.45;
    text-align: center;
}

.omg-site-footer-visits-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.omg-site-footer-visits-link:hover {
    color: #7ae8dc;
}

@media (max-width: 640px) {
    .omg-site-footer-top {
        flex-direction: column;
    }

    .omg-site-footer-nav {
        width: 100%;
    }
}

.container-border {
    background: var(--card-bg, rgba(0, 0, 0, 0.22));
    backdrop-filter: blur(25px);
    border: 1px solid var(--card-border, rgba(93, 93, 93, 0.1));
    border-radius: var(--radius-ui);
    padding: 30px;
    text-align: center;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: var(--card-shadow, none);
}

.agent-page-container-border {
    background: var(--glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ui);
    padding: 30px;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.agent-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ui);
    padding: 18px 25px;
    color: #fff;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    min-width: 94%;
}

.container-border:hover {
    background: var(--card-bg-hover, rgba(0, 0, 0, 0.32));
    /* animation: floatTile 4s ease-in-out infinite; */
    /* animation-delay: 0s; */
}

@keyframes floatTile {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
    .container-border:hover {
        animation: none;
    }
}

@media (max-width: 960px) {
    .tiles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .tiles-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .hide-small {
        display: none !important;
    }

    .show-small {
        display: inline !important;
    }

    .container-background {
        padding: 24px 16px;
    }

    h1:not(.hero-site-title) {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    h1.hero-site-title {
        font-size: clamp(1.65rem, 5.5vw, 2.35rem);
        letter-spacing: 0.08em;
        min-height: 45px;
    }

    .site-header {
        position: static !important;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        background: none !important;
        box-shadow: none !important;
        border-bottom: none !important;
    }

    .site-header-spacer {
        display: none !important;
        height: 0 !important;
    }

    .omg-site-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    header.site-header {
        margin-bottom: 40px;
    }

    .logo-text {
        white-space: normal;
    }

    .omg-site-nav-desktop {
        display: none;
    }

    .site-nav-mobile {
        width: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        right: 0;
        top: 100px;
        z-index: 1100;
    }

    .omg-site-nav-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.6rem;
        width: 136px;
        height: 50px;
        min-width: 112px;
        padding: 0 2rem;
        border: 1px solid rgba(45, 200, 180, 0.38);
        border-radius: 999px;
        background: radial-gradient(circle at 30% 30%, rgba(45, 200, 180, 0.32), rgba(0, 0, 0, 0.72));
        color: #e0f2f1;
        font-family: inherit;
        font-size: 0.75rem;
        font-weight: 600;
        position: relative;
        z-index: 3;
        box-shadow: 0 0 22px rgba(45, 200, 180, 0.22);
        transform: translateX(-100%);
        position: fixed;
        right: -11rem;
        top: 7rem;
        animation: mobileNavToggleSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
        transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .omg-site-nav-mobile-toggle-label {
        line-height: 1.1;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .omg-site-nav-mobile-panel {
        width: min(74vw, 280px);
        height: 127vh;
        position: fixed;
        top: 0;
        right: -60px;
        background: rgba(8, 24, 28, 0.45);
        backdrop-filter: blur(14px) saturate(130%);
        -webkit-backdrop-filter: blur(14px) saturate(130%);
        border: none;
        box-shadow: -14px 0 28px rgba(0, 0, 0, 0.35);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.24s ease, opacity 0.2s ease, visibility 0.2s ease;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .omg-site-nav-mobile-link-sub {
        padding-left: 1.35rem;
        font-size: 0.92rem;
        opacity: 0.92;
    }

    .omg-site-nav-mobile-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.4rem;
        text-decoration: none;
        color: var(--primary-glow);
        border: 1px solid rgba(45, 200, 180, 0.24);
        border-radius: var(--radius-ui);
        padding: 0.75rem 0.85rem;
        background: rgba(0, 0, 0, 0.28);
        width: 100%;
        box-sizing: border-box;
        font-size: 0.84rem;
    }

    .omg-site-nav-mobile-link:hover,
    .omg-site-nav-mobile-link:focus-visible {
        border-color: rgba(45, 200, 180, 0.6);
        box-shadow: 0 0 18px rgba(45, 200, 180, 0.24);
        outline: none;
    }

    .omg-site-nav-mobile-link-cta {
        color: #041212;
        background: var(--primary-glow);
        border-color: transparent;
        font-weight: 700;
    }

    .omg-site-nav-mobile-link-cta:hover,
    .omg-site-nav-mobile-link-cta:focus-visible {
        border-color: transparent;
        box-shadow: 0 0 18px rgba(45, 200, 180, 0.4);
    }

    .omg-site-nav-mobile-link .site-nav-badge {
        position: static;
        min-width: 1rem;
        min-height: 1rem;
        padding: 0 0.25rem;
        font-size: 0.5rem;
        line-height: 1;
    }

    .omg-site-nav-mobile-list {
        display: grid;
        gap: 0.7rem;
        width: 100%;
        padding: 1rem 0.85rem 1rem 0.75rem;
        box-sizing: border-box;
        margin-top: 3.7rem;
        min-width: 200px;
    }

    .site-nav-mobile.is-open .omg-site-nav-mobile-panel {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav-mobile.is-open .omg-site-nav-mobile-toggle {
        right: -21rem;
    }

    @keyframes mobileNavToggleSlideIn {
        from {
            transform: translateX(14px);
            opacity: 0;
        }

        to {
            transform: translateX(-100%);
            opacity: 1;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .omg-site-nav-mobile-toggle {
            animation: none;
            opacity: 1;
        }
    }

    .search-section {
        margin-top: 53px;
    }

    .caption {
        margin-right: 32px;
    }

    .avatar-chat-hint {
        display: none;
    }
}

/* Landing: Kennzahl-Ringe unter „Weswegen Sie mich wählen sollten?“ */
.omg-lp-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 1.5rem);
    width: 100%;
    max-width: 1200px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
    align-items: stretch;
}

.omg-lp-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 28px;
    padding-bottom: 26px;
}

.omg-lp-stat-visual {
    position: relative;
    width: min(160px, 42vw);
    height: min(160px, 42vw);
    margin: 0 auto 18px;
}

.omg-lp-stat-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.omg-lp-stat-track {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 4px;
}

.omg-lp-stat-ring {
    stroke: var(--primary-glow, #2dc8b4);
    /* stroke-width: 10px; */
    stroke-width: 4px;
    stroke-linecap: round;
    fill: none;
}

.omg-lp-stat-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 750;
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
    letter-spacing: -0.03em;
    color: #e8f5f4;
    pointer-events: none;
}

.omg-lp-stat-pct {
    font-size: 0.72em;
    opacity: 0.85;
    margin-left: 1px;
}

.omg-lp-stat-label {
    margin: 0;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 600;
    color: rgba(224, 242, 241, 0.92);
    max-width: 14rem;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .omg-lp-stats {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .omg-lp-stat-visual {
        width: min(180px, 55vw);
        height: min(180px, 55vw);
    }
}

/* Angebotsportfolio: echte Icons, feste Höhe, Breite proportional */
.omg-tiles-grid-portfolio {
    --portfolio-tile-icon-height: 50px;
}

.tile-icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--portfolio-tile-icon-height, 50px);
    margin: 0 auto 20px;
    text-align: center;
}

.tile-icon-img {
    height: var(--portfolio-tile-icon-height, 50px);
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    object-fit: contain;
    object-position: center center;
    display: block;
    flex-shrink: 0;
    align-self: center;
    border-radius: var(--radius-ui);
    /* color: var(--primary-glow); */
    color: #10858aed;
    stroke-width: 0.5px;
}

svg.tile-icon-img {
    aspect-ratio: 1 / 1;
    width: var(--portfolio-tile-icon-height, 50px);
    border-radius: 0;
    overflow: visible;
}

.tile-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-glow), #1a7a6f);
    border-radius: var(--radius-ui);
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Avatar-Chat: FAB, Hint links beim Hover; Modal nur per Klick */
.scroll-top-fab {
    position: fixed;
    right: 45px;
    bottom: 132px;
    z-index: 205;
    width: 48px;
    height: 48px;
    border: 1px solid rgb(54, 73, 71);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgb(61, 132, 123), rgba(0, 0, 0, 0.72));
    color: #ffffffb0;
    font-size: 1.5rem;
    padding-top: 8px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(8px) scale(0.86);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.22s ease, border-color 0.2s ease;
}

.scroll-top-fab.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.scroll-top-fab:hover,
.scroll-top-fab:focus-visible {
    border-color: rgba(45, 200, 180, 0.72);
    outline: none;
}

.avatar-chat-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 200;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    pointer-events: auto;

    &:hover {
        border: 1px solid var(--primary-glow);
        border-radius: 50%;
    }
}

.avatar-chat-hint {
    position: absolute;
    right: 100%;
    bottom: 20px;
    margin: 0 10px 0 0;
    width: 250px;
    padding: 10px 12px;
    box-sizing: border-box;
    font-size: 0.8125rem;
    line-height: 1.4;
    font-weight: 500;
    color: rgba(224, 242, 241, 0.95);
    background: rgba(6, 22, 22, 0.96);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ui);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: translateX(18px);
    transition:
        opacity 0.22s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.avatar-chat-fab:hover .avatar-chat-hint,
.avatar-chat-fab:focus-within .avatar-chat-hint {
    opacity: 1;
    transform: translateX(0);
}

.avatar-chat-trigger {
    position: relative;
    z-index: 2;
    display: block;
    height: 100px;
    width: auto;
    max-width: min(160px, 40vw);
    object-fit: contain;
    cursor: pointer;
    border-radius: var(--radius-ui);
    transform: scale(1);
    opacity: 1;
    transition: box-shadow 0.2s ease, transform 0.5s ease, opacity 0.5s ease;
}

body.mobile-menu-open .avatar-chat-trigger {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.avatar-new-chat-info-badge {
    position: fixed;
    bottom: 92px;
    right: 30px;
    background: radial-gradient(circle at 30% 30%, rgb(45, 200, 98), rgb(43, 102, 44));
    border-radius: 50%;
    border: 1px solid #94e5e7;
    min-width: 1.4rem;
    min-height: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    z-index: 210;
    opacity: 0;
    transform: scale(0.25);
    animation:
        avatarNewChatInfoBadgeReveal 1s ease 10s forwards,
        avatarNewChatInfoBadgeBounce 0.55s ease-in-out 11.1s 3;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

body.mobile-menu-open .avatar-new-chat-info-badge {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

@keyframes avatarNewChatInfoBadgeReveal {
    from {
        opacity: 0;
        transform: scale(0.25);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes avatarNewChatInfoBadgeBounce {
    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1) translateY(-8px);
    }
}



@media (prefers-reduced-motion: reduce) {
    .scroll-top-fab {
        transition: none;
        transform: none;
    }

    .scroll-top-fab.is-visible {
        transform: none;
    }

    .avatar-chat-hint {
        transition: opacity 0.15s ease;
        transform: none;
    }

    .avatar-chat-fab:hover .avatar-chat-hint,
    .avatar-chat-fab:focus-within .avatar-chat-hint {
        transform: none;
    }
}

.avatar-chat-modal.omg2026-modal {
    z-index: 10050;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.omg-avatar-chat-modal-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 50vw;
    height: 50vh;
    max-width: 50vw;
    max-height: 50vh;
    box-sizing: border-box;
    /* Undurchsichtig wie andere Modal-Panels */
    background-color: #1d2020;;
    color: #e0f2f1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-ui);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(45, 200, 180, 0.1);
    overflow: hidden;
}

@media (max-width: 768px) {
    .omg-avatar-chat-modal-panel {
        width: 75vw;
        max-width: 75vw;
        height: 75vh;
        max-height: 75vh;
        border-radius: 0;
    }
}

.avatar-chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 10px 12px 10px 14px;
    background: rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(224, 242, 241, 0.95);
}

.avatar-chat-header::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-glow);
    box-shadow: 0 0 10px var(--primary-glow);
    flex-shrink: 0;
}

.avatar-chat-header #avatar-chat-title {
    flex: 1;
    min-width: 0;
}

.avatar-chat-close {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    border-radius: var(--radius-ui);
    background: rgba(0, 0, 0, 0.25);
    color: rgba(224, 242, 241, 0.85);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.avatar-chat-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f0faf9;
}

.avatar-chat-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
    line-height: 1.45;
}

.avatar-chat-messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    -webkit-overflow-scrolling: touch;
}

.avatar-chat-msg {
    display: flex;
    max-width: 100%;
}

.omg-avatar-chat-msg-user {
    justify-content: flex-end;
}

.omg-avatar-chat-msg-assistant {
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0.5rem;
}

.omg-avatar-chat-msg-avatar {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    align-self: flex-end;
    background: rgba(0, 0, 0, 0.25);
}

.omg-avatar-chat-msg-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.omg-avatar-chat-msg-bubble {
    max-width: min(92%, 22rem);
    padding: 9px 12px;
    border-radius: var(--radius-ui);
    word-wrap: break-word;
    white-space: pre-wrap;
}

.omg-avatar-chat-msg-user .omg-avatar-chat-msg-bubble {
    background: var(--primary-glow);
    color: #041212;
    border-radius: var(--radius-ui);
    font-weight: 500;
}

.omg-avatar-chat-msg-assistant .omg-avatar-chat-msg-bubble {
    flex: 1 1 auto;
    min-width: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-ui);
}

.omg-avatar-chat-msg-bubble-rich a.omg-avatar-chat-msg-link {
    color: var(--primary-glow);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    word-break: break-word;
}

.omg-avatar-chat-msg-bubble-rich a.omg-avatar-chat-msg-link:hover {
    color: #7ae8dc;
}

.omg-avatar-chat-msg-bubble-rich a.omg-avatar-chat-msg-link:focus-visible {
    outline: 2px solid var(--primary-glow);
    outline-offset: 2px;
    border-radius: var(--radius-ui);
}

.avatar-chat-typing-bubble {
    padding: 12px 16px;
    min-width: 3.5rem;
}

.omg-avatar-chat-log-list-bubble {
    max-width: min(96%, 28rem);
}

.omg-avatar-chat-log-list-title {
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.omg-avatar-chat-log-list-empty {
    margin: 0;
    opacity: 0.85;
}

.omg-avatar-chat-log-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.omg-avatar-chat-log-item {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(45, 200, 180, 0.08);
    color: #d6fff8;
    border-radius: var(--radius-ui);
    padding: 0.45rem 0.6rem;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.omg-avatar-chat-log-item:hover,
.omg-avatar-chat-log-item:focus-visible {
    background: rgba(45, 200, 180, 0.2);
    border-color: rgba(45, 200, 180, 0.55);
    outline: none;
}

.omg-avatar-chat-log-item-meta {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: rgba(224, 242, 241, 0.85);
}

.avatar-chat-typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.avatar-chat-typing-dots span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    animation: avatarChatDot 1.25s ease-in-out infinite;
}

.avatar-chat-typing-dots span:nth-child(2) {
    animation-delay: 0.15s;
}

.avatar-chat-typing-dots span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes avatarChatDot {
    0%,
    80%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

.avatar-chat-footer {
    flex-shrink: 0;
    padding: 10px 12px 12px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.avatar-chat-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ui);
    padding: 10px 12px;
    font-size: 0.875rem;
    font-family: inherit;
    color: #e0f2f1;
    outline: none;
}

.avatar-chat-input::placeholder {
    color: rgba(224, 242, 241, 0.35);
}

.avatar-chat-input:focus {
    border-color: rgba(45, 200, 180, 0.45);
}

.avatar-chat-input:disabled {
    opacity: 0.55;
    cursor: wait;
}

@media (prefers-reduced-motion: reduce) {
    .avatar-chat-typing-dots span {
        animation: none;
        opacity: 0.7;
    }
}

.omg-ajax-page-container:has(.omg-ajax-page-fragment-redirect) {
    text-align: center;
}

.omg-ajax-page-fragment-redirect {
    max-width: 40rem;
    width: 100%;
    margin: 0 auto;
}

.redirect-notice {
    margin: 0 auto;
    text-align: center;
}

.redirect-notice .omg-ajax-page-section-title {
    margin-top: 0;
    text-align: center;
}

.redirect-notice p {
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(224, 242, 241, 0.88);
}

.redirect-notice p:last-child {
    margin-bottom: 0;
}

.omg-ajax-page-fragment-kontakt {
    width: 100%;
}

.kontakt-intro {
    margin-bottom: 3.8rem;
    text-align: center;
}

.kontakt-intro p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
    color: rgba(224, 242, 241, 0.88);
}

.omg-kontakt-gate {
    transform-origin: center top;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.omg-kontakt-gate.is-leaving {
    opacity: 0;
    transform: scale(0.94);
    pointer-events: none;
}

.omg-kontakt-form-slot {
    transform-origin: center top;
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.omg-kontakt-form-slot.is-visible {
    opacity: 1;
    transform: scale(1);
}

.omg-kontakt-form-enter {
    opacity: 0;
    transform: scale(0.96);
    transform-origin: center top;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.omg-kontakt-form-enter.is-visible {
    opacity: 1;
    transform: scale(1);
}

.omg-kontakt-form-load-error {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-ui, 8px);
    border: 1px solid rgba(255, 120, 120, 0.35);
    background: rgba(120, 20, 20, 0.18);
    color: #ffd7d7;
}

.omg-kontakt-form-row {
    margin-bottom: 1.1rem;
}

.omg-kontakt-form-row-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.omg-kontakt-form-field {
    position: relative;
    min-width: 0;
}

.omg-kontakt-form-field > .omg-kontakt-form-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1;
    color: rgba(224, 242, 241, 0.6);
    pointer-events: none;
    transform: translateY(-50%);
    transform-origin: left center;
    transition: transform 0.18s ease, color 0.18s ease;
}

.omg-kontakt-form-field-textarea > .omg-kontakt-form-label {
    top: 1.2rem;
    transform: none;
}

.omg-kontakt-form-row-file > .omg-kontakt-form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(224, 242, 241, 0.78);
}

.kontakt-form .omg-kontakt-form-input.input,
.kontakt-form .omg-kontakt-form-textarea.input {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 1.1rem;
    padding-top: 1rem;
}

.kontakt-form .omg-kontakt-form-input.input::placeholder,
.kontakt-form .omg-kontakt-form-textarea.input::placeholder {
    color: transparent;
}

.kontakt-form .omg-kontakt-form-field:focus-within > .omg-kontakt-form-label,
.kontakt-form .omg-kontakt-form-input.input:not(:placeholder-shown) + .omg-kontakt-form-label,
.kontakt-form .omg-kontakt-form-textarea.input:not(:placeholder-shown) + .omg-kontakt-form-label {
    transform: translateY(-2.5rem) translateX(-0.4rem) scale(0.7);
    color: rgba(250, 251, 250, 0.39);
    background-color: #081215;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 8px;
}

.kontakt-form .omg-kontakt-form-field-textarea:focus-within > .omg-kontakt-form-label,
.kontakt-form .omg-kontakt-form-field-textarea .omg-kontakt-form-textarea.input:not(:placeholder-shown) + .omg-kontakt-form-label {
    transform: translateY(-1.9rem) translateX(-0.4rem) scale(0.7);
    color: rgba(250, 251, 250, 0.39);
    background-color: #081215;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-radius: 8px;
}

.omg-kontakt-form-textarea.input {
    min-height: 7.5rem;
    resize: vertical;
}

/* Browser-Autofill: kein grellgelbes Feld — an dunkles Theme angeglichen */
.kontakt-form .input:-webkit-autofill,
.kontakt-form .input:-webkit-autofill:hover,
.kontakt-form .input:-webkit-autofill:focus,
.kontakt-form .input:-webkit-autofill:active {
    -webkit-text-fill-color: #e0f2f1;
    caret-color: #e0f2f1;
    box-shadow: 0 0 0 100px #081215 inset;
    transition: background-color 99999s ease-out 0s;
}

.kontakt-form textarea.input:-webkit-autofill,
.kontakt-form textarea.input:-webkit-autofill:hover,
.kontakt-form textarea.input:-webkit-autofill:focus {
    -webkit-text-fill-color: #e0f2f1;
    caret-color: #e0f2f1;
    box-shadow: 0 0 0 100px #081215 inset;
}

.kontakt-form .input:autofill,
.kontakt-form textarea.input:autofill {
    box-shadow: 0 0 0 100px #081215 inset;
    color: #e0f2f1;
}

.omg-kontakt-form-row-file {
    position: relative;
}

.omg-kontakt-form-file {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.omg-kontakt-form-dropzone.input {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgba(224, 242, 241, 0.72);
}

.omg-kontakt-form-row-check {
    font-size: 0.85rem;
    color: rgba(224, 242, 241, 0.65);
    margin-bottom: 0.25rem;
}

.omg-human-captcha {
    margin: 0.35rem 0 0.75rem;
    padding: 1rem 1.1rem 1.1rem;
    border-radius: var(--radius-ui, 8px);
    border: 1px solid rgba(45, 200, 180, 0.28);
    background: linear-gradient(145deg, rgba(45, 200, 180, 0.1), rgba(7, 21, 26, 0.55));
    transform-origin: center center;
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, background 0.3s ease;
}

.omg-human-captcha-standalone {
    margin: 0.5rem auto 0;
    max-width: 42rem;
}

.omg-human-captcha-copy {
    flex: 1;
    min-width: 0;
}

.omg-human-captcha-lead {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-glow, #2dc8b4);
}

.omg-human-captcha-info {
    margin: 0 0 0.9rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(224, 242, 241, 0.72);
}

.omg-human-captcha.is-complete {
    border-color: rgba(45, 200, 180, 0.55);
    background: linear-gradient(145deg, rgba(45, 200, 180, 0.16), rgba(7, 21, 26, 0.45));
}

.omg-human-captcha.is-dismissed {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

.omg-human-captcha-head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.omg-human-captcha-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-ui, 8px);
    background: rgba(45, 200, 180, 0.18);
    font-size: 1rem;
    flex-shrink: 0;
}

.omg-human-captcha-instruction {
    margin: 0;
    color: var(--text-primary, #e0f2f1);
    font-size: 0.95rem;
    line-height: 1.45;
}

.omg-human-captcha-track-wrap {
    position: relative;
}

.omg-human-captcha-value {
    display: block;
    margin: 0 0 0.85rem;
    text-align: center;
    font-size: clamp(2.1rem, 7vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--primary-glow, #2dc8b4);
    user-select: none;
    pointer-events: none;
}

.omg-human-captcha-slider {
    --pct: 50%;
    width: 100%;
    height: 10px;
    margin: 0 0 0.35rem;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-glow, #2dc8b4) var(--pct), rgba(255, 255, 255, 0.12) var(--pct));
    outline: none;
    cursor: pointer;
}

.omg-human-captcha-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #e8fffb;
    background: linear-gradient(135deg, #2dc8b4, #1a7a6f);
    box-shadow: 0 0 0 3px rgba(45, 200, 180, 0.22), 0 6px 14px rgba(0, 0, 0, 0.35);
    cursor: grab;
}

.omg-human-captcha-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #e8fffb;
    background: linear-gradient(135deg, #2dc8b4, #1a7a6f);
    box-shadow: 0 0 0 3px rgba(45, 200, 180, 0.22), 0 6px 14px rgba(0, 0, 0, 0.35);
    cursor: grab;
}

.omg-human-captcha-slider:disabled {
    opacity: 0.75;
    cursor: default;
}

.omg-human-captcha-steps {
    display: flex;
    gap: 0.45rem;
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
    flex-wrap: wrap;
}

.omg-human-captcha-step {
    min-width: 2rem;
    text-align: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: rgba(224, 242, 241, 0.65);
    border: 1px dashed rgba(224, 242, 241, 0.28);
    background: rgba(7, 21, 26, 0.45);
}

.omg-human-captcha-step.is-active {
    color: #dff8f4;
    border-color: rgba(45, 200, 180, 0.65);
    box-shadow: 0 0 0 1px rgba(45, 200, 180, 0.22);
}

.omg-human-captcha-step.is-hit {
    color: #bbf7d0;
    border-style: solid;
    border-color: rgba(45, 200, 180, 0.55);
    background: rgba(45, 200, 180, 0.12);
}

.omg-human-captcha-status {
    margin: 0.65rem 0 0;
    font-size: 0.82rem;
    color: rgba(224, 242, 241, 0.65);
}

.omg-human-captcha.is-complete .omg-human-captcha-status {
    color: var(--primary-glow, #2dc8b4);
}

.omg-kontakt-form-submit-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.omg-kontakt-form-submit-disabled:hover {
    transform: none;
    box-shadow: 0 0 20px rgba(45, 200, 180, 0.3);
}

.omg-kontakt-form-actions {
    margin-top: 1.35rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 560px) {
    .omg-kontakt-form-row-cols-2 {
        grid-template-columns: 1fr;
    }
}

strong {
    font-weight: 600;
    text-decoration: underline;
}

.omg-glossary-term {
    appearance: none;
    border: 0;
    border-bottom: 1px dotted rgba(45, 200, 180, 0.85);
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: inherit;
    padding: 0;
    margin: 0;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    cursor: pointer;
}

.omg-glossary-term:hover,
.omg-glossary-term:focus-visible {
    color: #7ae8dc;
    outline: none;
}

.omg-glossary-modal-text {
    margin: 0.8rem 0 0;
    line-height: 1.65;
    color: rgba(224, 242, 241, 0.92);
}

/* Demos: Button wie Standard-Link (body a) */
button.omg-demos-linklike {
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    font-size: inherit;
    color: var(--primary-glow);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

button.omg-demos-linklike:hover {
    color: #58dcc9;
}

button.omg-demos-linklike:active {
    color: var(--primary-glow);
}

button.omg-demos-linklike:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.omg-demos-kalender-create-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.omg-demos-kalender-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.omg-demos-kalender-input {
    width: 100%;
    max-width: 28rem;
}

a.omg-demo-tile-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.omg-demo-tile-link:hover {
    color: inherit;
}

a.omg-demo-tile-link:focus-visible {
    outline: 2px solid rgba(45, 200, 180, 0.55);
    outline-offset: 3px;
}

a.omg-demo-tile-link .omg-demo-tile-cta {
    margin-bottom: 0;
    min-height: 45px;
    padding-top: 12px;
    color: var(--primary-glow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.omg-workflows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.omg-workflow-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
    margin: 0;
    padding: 0.85rem;
    text-align: left;
    cursor: pointer;
    appearance: none;
    color: inherit;
    font: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.omg-workflow-card:hover {
    border-color: rgba(45, 200, 180, 0.45);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.omg-workflow-card:focus-visible {
    outline: 2px solid rgba(45, 200, 180, 0.55);
    outline-offset: 3px;
}

.omg-workflow-card-thumb {
    display: block;
    border-radius: calc(var(--radius-ui) - 4px);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
}

.omg-workflow-card-thumb img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.omg-workflow-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.omg-workflow-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-glow);
    line-height: 1.35;
}

.omg-workflow-card-teaser {
    font-size: 0.88rem;
    line-height: 1.5;
    opacity: 0.72;
}

.omg-workflow-card-hint {
    font-size: 0.8rem;
    color: var(--primary-glow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.omg-workflows-detail-modal .omg-workflows-detail-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(90vw, 1100px);
    max-width: 1100px;
    height: 90vh;
    max-height: 90vh;
    padding: 1rem 1.35rem 1.15rem;
    box-sizing: border-box;
    overflow: hidden;
}

.omg-workflows-detail-close {
    position: absolute;
    top: 0.5rem;
    right: 0.65rem;
    z-index: 2;
    border: 0;
    background: transparent;
    color: var(--primary-glow);
    font-size: 1.85rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
}

.omg-workflows-detail-close:hover {
    color: #f0faf9;
}

.omg-workflows-detail-close:focus-visible {
    outline: 2px solid rgba(45, 200, 180, 0.55);
    outline-offset: 3px;
}

.omg-workflows-detail-title {
    flex: 0 0 auto;
    margin: 0 2.25rem 0.65rem 0;
    padding-right: 0.25rem;
}

.omg-workflows-tabs {
    display: flex;
    flex: 0 0 auto;
    gap: 0;
    margin: 0 0 0.85rem;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.omg-workflows-tab {
    position: relative;
    margin: 0;
    padding: 0.55rem 1.1rem 0.7rem;
    border: 0;
    background: transparent;
    color: rgba(224, 242, 241, 0.65);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.omg-workflows-tab::after {
    content: '';
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: transparent;
    transition: background 0.2s ease;
}

.omg-workflows-tab:hover {
    color: rgba(224, 242, 241, 0.92);
}

.omg-workflows-tab.is-active {
    color: var(--primary-glow);
}

.omg-workflows-tab.is-active::after {
    background: var(--primary-glow);
    box-shadow: 0 0 12px rgba(45, 200, 180, 0.45);
}

.omg-workflows-tab:focus-visible {
    outline: 2px solid rgba(45, 200, 180, 0.55);
    outline-offset: 2px;
}

.omg-workflows-tab-panels {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.omg-workflows-tab-panel {
    display: none;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.omg-workflows-tab-panel.is-active {
    display: flex;
    flex-direction: column;
}

.omg-workflows-detail-figure {
    flex: 1 1 auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0.25rem 0;
}

.omg-workflows-detail-figure img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-ui);
    border: 1px solid rgba(45, 200, 180, 0.2);
}

.omg-workflows-tab-empty {
    margin: auto;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.omg-workflows-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1rem;
    flex: 0 0 auto;
}

.omg-workflows-detail-chip {
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.15rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(45, 200, 180, 0.36);
    font-size: 0.78rem;
    color: var(--primary-glow);
}

.omg-workflows-detail-body {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1 1 auto;
}

.omg-workflows-detail-body p + p {
    margin-top: 0.85rem;
}

.omg-workflows-detail-body ul {
    margin: 0.5rem 0 1rem;
    padding-left: 1.25rem;
}

.omg-workflows-detail-body li + li {
    margin-top: 0.35rem;
}

.omg-demos-kalender-create-error {
    margin-top: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-ui);
    background: rgba(200, 80, 80, 0.18);
    border: 1px solid rgba(255, 160, 160, 0.35);
    font-size: 0.9rem;
}

.omg-demos-kalender-modal-actions {
    justify-content: space-between;
    align-items: center;
}

.omg-ajax-page-fragment-webdesign-trends {
    max-width: 52rem;
}

.omg-webdesign-trends-lead {
    margin-bottom: 1.25rem;
}

.omg-webdesign-trends-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.omg-webdesign-trends-item {
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(224, 242, 241, 0.12);
}

.omg-webdesign-trends-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.omg-webdesign-trends-item-title {
    margin: 0 0 0.65rem;
    font-size: 1.05rem;
    line-height: 1.35;
}

.omg-webdesign-trends-item-num {
    color: rgba(224, 242, 241, 0.55);
    font-weight: 600;
    margin-right: 0.25rem;
}

.omg-webdesign-trends-examples {
    margin-top: 0.85rem;
}

.omg-webdesign-trends-examples-heading {
    margin: 0 0 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.75;
}

.omg-webdesign-trends-examples ul {
    margin: 0;
    padding-left: 1.1rem;
}

.omg-webdesign-trends-example-note {
    opacity: 0.85;
}

.omg-webdesign-trends-footer-note {
    margin-top: 2rem;
}

.omg-webdesign-trends-nav {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(224, 242, 241, 0.12);
}

.omg-webdesign-trends-nav-label {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.omg-webdesign-trends-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.omg-webdesign-trends-nav-list li.is-current span {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-ui, 6px);
    background: rgba(224, 242, 241, 0.18);
    font-weight: 600;
}

.omg-webdesign-trends-nav-list a {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-ui, 6px);
    text-decoration: none;
}

.omg-webdesign-trends-nav-list a:hover {
    background: rgba(224, 242, 241, 0.1);
}