/* =========================================================
   Cogitavo – Stylesheet
   Elegant, schlicht, mit den Markenfarben (Magenta/Lila/Blau)
   Keine externen Schriften/CDNs (DSGVO-freundlich)
   ========================================================= */

:root {
  --c-magenta: #22d3ee;
  --c-purple:  #6366f1;
  --c-blue:    #a855f7;
  --c-ink:     #0b1020;
  --c-ink-2:   #161d33;
  --c-bg:      #ffffff;
  --c-bg-soft: #f2f5fb;
  --c-bg-dark: #070b18;
  --c-muted:   #5f6781;
  --c-border:  #e2e6f2;
  --grad: linear-gradient(120deg, #22d3ee 0%, #6366f1 48%, #a855f7 100%);
  --grad-soft: linear-gradient(120deg, rgba(34,211,238,.10), rgba(168,85,247,.10));
  --shadow-sm: 0 2px 8px rgba(7,11,24,.06);
  --shadow-md: 0 10px 30px rgba(7,11,24,.10);
  --shadow-lg: 0 24px 60px rgba(7,11,24,.16);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1160px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif; --font-display: Georgia, "Palatino Linotype", "Book Antiqua", serif;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Lange deutsche Komposita / Keywords / URLs sicher umbrechen */
h1, h2, h3, h4, p, li, a, span, td, th, summary, figcaption, .lead, .breadcrumb {
  overflow-wrap: break-word;
}
.prose { hyphens: auto; -webkit-hyphens: auto; }

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

a { color: var(--c-purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-magenta); }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--c-ink); margin: 0 0 .6em; letter-spacing: -.01em; } h1, h2 { font-family: var(--font-display); font-weight: 400; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 2.85rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section--soft { background: var(--c-bg-soft); }
.section--dark { background: var(--c-bg-dark); color: #eceaf5; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: var(--c-purple);
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-magenta);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: #93c5fd; }

.lead { font-size: 1.18rem; color: var(--c-muted); max-width: 62ch; }
.section--dark .lead { color: #c7c2da; }

.text-center { text-align: center; }
.center-narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 8px;
  font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  border: 1.5px solid transparent; transition: var(--transition);
  text-align: center;
}
.btn--primary { background: var(--c-purple); color: #fff; box-shadow: 0 6px 16px rgba(99,102,241,.28); }
.btn--primary:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 10px 22px rgba(99,102,241,.38); }
.btn--ghost { background: transparent; border-color: var(--c-border); color: var(--c-ink); }
.btn--ghost:hover { border-color: var(--c-purple); color: var(--c-purple); }
.section--dark .btn--ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.section--dark .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.btn--light { background: #fff; color: var(--c-ink); }
.btn--light:hover { color: var(--c-purple); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-bg-dark);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__logo img { height: 40px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__menu a { color: #d9dde6; font-weight: 600; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; position: relative; }
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--c-purple); }
.nav__menu a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad); border-radius: 2px;
}
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* Primaer-Button im Nav behaelt weisse Schrift (Spezifitaet ueber .nav__menu a) */
.nav__menu a.btn--primary, .nav__menu a.btn--primary:hover { color: #fff; }

/* Sprachumschalter / Language switch */
.lang-switch { display: inline-flex; align-items: stretch; border: 2px solid var(--c-purple); border-radius: 999px; overflow: hidden; background: #fff; box-shadow: 0 2px 8px rgba(99,102,241,.14); }
.lang-switch::before {
  content: ""; align-self: stretch; width: 30px; flex: none;
  border-right: 2px solid var(--c-purple);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3c2.6 2.7 2.6 15.3 0 18'/%3E%3Cpath d='M12 3c-2.6 2.7-2.6 15.3 0 18'/%3E%3C/svg%3E") center / 15px 15px no-repeat;
}
.lang-switch__opt { display: flex; align-items: center; padding: 7px 13px; font-size: .9rem; font-weight: 800; letter-spacing: .05em; color: var(--c-purple); line-height: 1; }
.lang-switch__opt + .lang-switch__opt { border-left: 2px solid var(--c-purple); }
.lang-switch__opt.is-active { background: var(--grad); color: #fff; }
.lang-switch__opt:not(.is-active):hover { color: #fff; background: var(--c-purple); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 104px 0 96px; overflow: hidden; background: var(--c-bg-dark); color: #d9dde6; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 55% at 12% 18%, rgba(34,211,238,.16), transparent 70%),
    radial-gradient(45% 60% at 88% 30%, rgba(168,85,247,.16), transparent 70%),
    radial-gradient(50% 60% at 50% 100%, rgba(99,102,241,.10), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: .35em; color: #fff; font-weight: 300; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero__stats { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero__stat .num { font-size: 2rem; font-weight: 800; }
.hero__stat .lbl { font-size: .9rem; color: var(--c-muted); }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--radius); }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-soft); margin-bottom: 18px; color: var(--c-purple);
}
.card__icon svg { width: 26px; height: 26px; }
.card__photo {
  width: 104px; height: 104px; border-radius: 50%; object-fit: cover; object-position: center top;
  margin-bottom: 18px; display: block; box-shadow: var(--shadow-sm); border: 3px solid #fff;
}
.card h3 { margin-bottom: .4em; }
.card p { color: var(--c-muted); margin-bottom: 0; font-size: .98rem; }

.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head .lead { margin: 0 auto; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 24px; grid-template-columns: repeat(4,1fr); }
.step { background:#fff; border:1px solid var(--c-border); border-radius: var(--radius); padding: 28px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-weight: 800; font-size: 1.1rem; color: #fff; background: var(--grad);
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--c-muted); margin: 0; font-size: .96rem; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--c-ink); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ---------- Stats band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat-band .num { font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; }
.stat-band .lbl { color: var(--c-muted); font-size: .95rem; }
.section--dark .stat-band .lbl { color: #b7b2cc; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; border-radius: 28px; padding: 64px 32px; background: var(--grad); color: #fff; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 60ch; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--c-bg-dark); color: #c7c2da; padding: 70px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 38px; width: auto; margin-bottom: 18px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #c7c2da; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #9b96b3;
}
.footer__bottom a { color: #9b96b3; }

/* ---------- Article / Blog ---------- */
.page-hero { padding: 70px 0 40px; background: var(--c-bg-soft); border-bottom: 1px solid var(--c-border); }
.breadcrumb { font-size: .85rem; color: var(--c-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-purple); }

.article { padding: 56px 0 84px; }
.article__wrap { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 56px; align-items: start; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose p, .prose li { font-size: 1.06rem; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .5em; }
.prose img { border-radius: var(--radius); margin: 28px 0; box-shadow: var(--shadow-sm); }
.prose figure { margin: 28px 0; }
.prose figcaption { font-size: .85rem; color: var(--c-muted); text-align: center; margin-top: 8px; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--c-muted); font-size: .9rem; margin-bottom: 8px; }
.tag { display: inline-block; background: var(--grad-soft); color: var(--c-purple); font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; letter-spacing: .04em; text-transform: uppercase; }

/* Callout / tip box */
.callout {
  background: var(--grad-soft); border-left: 4px solid var(--c-magenta);
  border-radius: var(--radius-sm); padding: 22px 24px; margin: 28px 0;
}
.callout strong { color: var(--c-ink); }
.callout p:last-child { margin-bottom: 0; }
.callout--key { background: #fff; border: 1px solid var(--c-border); border-left: 4px solid var(--c-blue); box-shadow: var(--shadow-sm); }

/* Table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 28px 0; border-radius: var(--radius-sm); border: 1px solid var(--c-border); }
table { border-collapse: collapse; width: 100%; font-size: .98rem; min-width: 480px; background:#fff; }
thead th { background: var(--c-ink); color: #fff; text-align: left; padding: 14px 16px; font-weight: 600; }
tbody td { padding: 13px 16px; border-top: 1px solid var(--c-border); vertical-align: top; }
tbody tr:nth-child(even) td { background: var(--c-bg-soft); }

/* FAQ (native details) */
.faq { margin: 8px 0; }
.faq details {
  border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 0; margin-bottom: 14px;
  background: #fff; transition: var(--transition); overflow: hidden;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 22px; font-weight: 600; position: relative; color: var(--c-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--c-purple); transition: var(--transition);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq__body { padding: 0 22px 20px; color: var(--c-muted); }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* Sidebar */
.sidebar { position: sticky; top: 94px; }
.sidebar__box { background: var(--c-bg-soft); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.sidebar__box h4 { font-size: 1rem; margin-bottom: 14px; }
.toc { list-style: none; padding: 0; margin: 0; }
.toc li { margin-bottom: 10px; }
.toc a { font-size: .95rem; color: var(--c-muted); }
.toc a:hover { color: var(--c-purple); }
.sidebar__cta { background: var(--grad); color:#fff; border-radius: var(--radius); padding: 26px; }
.sidebar__cta h4 { color:#fff; } .sidebar__cta p { color: rgba(255,255,255,.9); font-size:.92rem; }

/* Blog index cards */
.post-card { display: flex; flex-direction: column; background:#fff; border:1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); height:100%; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__img { aspect-ratio: 16/9; background: var(--grad-soft); }
.post-card__img img { width:100%; height:100%; object-fit: cover; }
.post-card__body { padding: 24px; display:flex; flex-direction: column; flex:1; }
.post-card__body h3 { font-size: 1.2rem; margin: 12px 0 8px; }
.post-card__body p { color: var(--c-muted); font-size:.96rem; flex:1; }
.post-card__more { margin-top: 16px; font-weight: 600; color: var(--c-purple); font-size:.95rem; }

/* Contact */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:start; }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:.92rem; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width:100%; padding: 13px 15px; border:1.5px solid var(--c-border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--c-ink); background:#fff; transition: var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--c-purple); box-shadow: 0 0 0 4px rgba(99,102,241,.12); }
.field textarea { resize: vertical; min-height: 140px; }
.checkbox-row { display:flex; gap:10px; align-items:flex-start; font-size:.9rem; color: var(--c-muted); }
.checkbox-row input { width:auto; margin-top:4px; }
.info-card { background: var(--c-bg-soft); border:1px solid var(--c-border); border-radius: var(--radius); padding: 30px; }
.info-card dl { margin:0; }
.info-card dt { font-weight:700; margin-top:16px; font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; color: var(--c-muted); }
.info-card dd { margin:4px 0 0; font-size:1.02rem; }
.form-note { font-size:.82rem; color: var(--c-muted); }

/* Legal pages */
.legal { padding: 56px 0 84px; }
.legal .prose { max-width: 820px; margin: 0 auto; }
.legal h2 { margin-top: 1.8em; }
.legal h3 { margin-top: 1.3em; font-size: 1.2rem; }
.legal address { font-style: normal; }

/* Utilities */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-1{margin-top:1rem}.mb-2{margin-bottom:2rem}
.skip-link { position:absolute; left:-999px; top:0; background:#fff; padding:10px 16px; z-index:200; border-radius:0 0 8px 0; }
.skip-link:focus { left:0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .split, .split--reverse .split__media { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .stat-band { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  .article__wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--c-border); box-shadow: var(--shadow-md);
    padding: 8px 0; transform: translateY(-130%); transition: transform var(--transition); visibility: hidden;
  }
  .nav__menu.is-open { transform: translateY(0); visibility: visible; }
  .nav__menu li { width: 100%; }
  .nav__menu a { display: block; padding: 14px 24px; color: var(--c-ink); }
  .nav__menu a[aria-current="page"]::after { display: none; }
  .nav__actions .btn { display: none; }
  .nav__menu .btn { margin: 10px 24px; justify-content: center; }
  .site-header .nav__menu .btn--primary { background: var(--c-purple); color: #fff; border-color: transparent; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .grid--3, .grid--4, .steps, .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 0 50px; }
  .cta-band { padding: 48px 22px; }
  .footer__bottom { flex-direction: column; }
}

/* Tabellen auf schmalen Screens als gestapelte Karten – kein horizontales Scrollen */
@media (max-width: 600px) {
  .table-wrap { overflow: visible; border: 0; border-radius: 0; }
  .table-wrap table { min-width: 0; width: 100%; font-size: .95rem; }
  .table-wrap thead {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .table-wrap tr {
    display: block; border: 1px solid var(--c-border); border-radius: var(--radius-sm);
    margin-bottom: 16px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden;
  }
  .table-wrap tbody td {
    display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
    padding: 11px 16px; border-top: 0; border-bottom: 1px solid var(--c-border); text-align: right;
  }
  .table-wrap tbody tr:nth-child(even) td { background: #fff; }
  .table-wrap tbody td:last-child { border-bottom: 0; }
  .table-wrap tbody td::before {
    content: attr(data-label); font-weight: 700; color: var(--c-ink);
    text-align: left; flex: 0 0 42%; letter-spacing: -.01em;
  }
  .table-wrap tbody td:first-child {
    background: var(--c-bg-soft); font-weight: 600; font-size: 1rem;
  }
}

/* =========================================================
   Interaktivität / Bewegung (nur bei aktivem JS: .js-anim)
   ========================================================= */

/* Scroll-Reveal: Elemente starten leicht versetzt & transparent,
   .is-visible (per JS gesetzt) blendet sie sanft ein. */
.js-anim [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.js-anim [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Header: weicher Übergang, schrumpft + Schatten beim Scrollen */
.site-header { transition: box-shadow .3s ease, background-color .3s ease; }
.nav { transition: height .3s cubic-bezier(.4,0,.2,1); }
.nav__logo img { transition: height .3s cubic-bezier(.4,0,.2,1); }
.site-header.is-scrolled {
  background: var(--c-bg-dark);
  box-shadow: 0 6px 24px rgba(7,11,24,.10);
}
.site-header.is-scrolled .nav { height: 60px; }
.site-header.is-scrolled .nav__logo img { height: 33px; }

/* Scroll-Fortschrittsbalken (oben, Markenverlauf) */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: 0 0;
  z-index: 200; pointer-events: none;
}

/* "Nach oben"-Button */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: var(--grad); color: #fff; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.to-top:focus-visible { outline: 3px solid rgba(99,102,241,.45); outline-offset: 2px; }

/* Magazin-Karten: sanfter Bild-Zoom beim Hover */
.post-card__img { overflow: hidden; }
.post-card__img img { transition: transform .55s cubic-bezier(.4,0,.2,1); }
.post-card:hover .post-card__img img { transform: scale(1.06); }

/* Burger-Menü animiert beim Öffnen zum X */
.nav__toggle span { transition: transform .25s ease, opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 560px) {
  .to-top { right: 16px; bottom: 16px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .js-anim [data-reveal] { opacity: 1 !important; transform: none !important; }
  .scroll-progress, .to-top { display: none !important; }
}

/* ===== Premium-Feinschliff (professionelle Ausrichtung) ===== */
.hero .lead { color: #c7ccd8; }
.hero .hero__stat .lbl { color: #aeb4c2; }
.hero .btn--ghost { border-color: rgba(255,255,255,.30); color: #fff; }
.hero .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.eyebrow::before { content: ""; display: inline-block; width: 26px; height: 2px; background: currentColor; vertical-align: middle; margin-right: 12px; opacity: .65; }
/* ===== Header-CTA nur umrandet (nicht gefuellt) ===== */
.site-header .btn--primary { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); box-shadow: none; }
.site-header .btn--primary:hover { background: rgba(255,255,255,.10); border-color: #fff; color: #fff; filter: none; transform: translateY(-1px); }
.hero h1 .grad-text { font-weight: 600; }

/* ===== Cogitavo - IT & AI Tech-Look (markenspezifisch) ===== */
:root { --font-display: var(--font); }
h1, h2 { font-weight: 700; letter-spacing: -.022em; }
.hero h1 { font-weight: 700; }
.hero h1 .grad-text { font-weight: 700; text-shadow: 0 0 22px rgba(34,211,238,.35); }
.eyebrow, .tag { font-family: "Cascadia Code", "Cascadia Mono", "Segoe UI Mono", Consolas, "SF Mono", Menlo, "Roboto Mono", monospace; }
.eyebrow { letter-spacing: .1em; }
.tag { letter-spacing: .03em; text-transform: uppercase; }
.hero::before {
  background-image:
    linear-gradient(rgba(99,102,241,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,.06) 1px, transparent 1px),
    radial-gradient(55% 60% at 82% 8%, rgba(34,211,238,.10), transparent 70%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  background-position: center, center, center;
}
.btn--primary { box-shadow: 0 10px 34px rgba(99,102,241,.32); }
.hero__media img { filter: drop-shadow(0 0 26px rgba(34,211,238,.18)); }
.hero h1 .grad-text { -webkit-text-fill-color: var(--c-magenta); color: var(--c-magenta); }

/* Cogitavo Terminal-Tippeffekt (Caret) */
.cogi-typing { border-right: 2px solid currentColor; padding-right: 3px; animation: cogi-caret .8s steps(1) infinite; }
@keyframes cogi-caret { 0%,100% { border-color: currentColor } 50% { border-color: transparent } }
/* ===== Cogitavo: dunkle "Terminal"-Kacheln (Merkmale & Leistungen) ===== */
.card { background: #0b1120; border-color: rgba(34,211,238,.16); box-shadow: 0 10px 30px rgba(0,0,0,.28); }
.card h3 { color: #22d3ee; }
.card p { color: #aab3cc; }
.card .check-list li { color: #c2c9d8; }
.card .card__icon { background: rgba(34,211,238,.12); color: #22d3ee; }
.card .tag { background: rgba(34,211,238,.14); color: #7fe6f5; }
.card:hover { border-color: rgba(34,211,238,.5); box-shadow: 0 0 0 1px rgba(34,211,238,.22), 0 20px 44px rgba(0,0,0,.42); }
.step { background: #0b1120; border-color: rgba(34,211,238,.16); }
.step h3 { color: #22d3ee; }
.step p { color: #aab3cc; }
/* ===== Cogitavo: Karten-Spotlight (nur auf Hover-Geraeten) ===== */
.card { position: relative; overflow: hidden; }
@media (hover: hover) {
  .card::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s ease; background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(34,211,238,.16), transparent 62%); }
  .card:hover::after { opacity: 1; }
}
/* ===== Cogitavo: Sprachumschalter in Tuerkis ===== */
.lang-switch { background: rgba(8,16,28,.55); border-color: #22d3ee; box-shadow: 0 2px 12px rgba(34,211,238,.18); }
.lang-switch::before { border-right-color: #22d3ee; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322d3ee' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3c2.6 2.7 2.6 15.3 0 18'/%3E%3Cpath d='M12 3c-2.6 2.7-2.6 15.3 0 18'/%3E%3C/svg%3E"); }
.lang-switch__opt { color: #22d3ee; }
.lang-switch__opt + .lang-switch__opt { border-left-color: #22d3ee; }
.lang-switch__opt.is-active { background: #22d3ee; color: #06222b; }
.lang-switch__opt:not(.is-active):hover { background: rgba(34,211,238,.16); color: #22d3ee; }
/* ===== Cogitavo: Agent-Konsole (Live-Beispiel) ===== */
.agent-console { background:#0a0f1c; border:0.5px solid rgba(34,211,238,.18); border-radius:16px; overflow:hidden; }
.agc-top { display:flex; align-items:center; gap:12px; padding:12px 16px; background:#0c1326; border-bottom:1px solid rgba(255,255,255,.06); }
.agc-live { width:9px; height:9px; border-radius:50%; background:#22d3ee; flex:none; animation:agc-p 1.6s ease-out infinite; }
@keyframes agc-p { 0%{box-shadow:0 0 0 0 rgba(34,211,238,.5)} 70%{box-shadow:0 0 0 8px rgba(34,211,238,0)} 100%{box-shadow:0 0 0 0 rgba(34,211,238,0)} }
.agc-name { font-size:14px; color:#e7ebf5; font-weight:500; }
.agc-meta { margin-left:auto; display:flex; gap:16px; font-family:Consolas,'Cascadia Code',monospace; font-size:11px; color:#7c89a6; letter-spacing:.5px; }
.agc-meta b { color:#22d3ee; font-weight:500; }
.agc-body { display:grid; grid-template-columns:232px 1fr; }
.agc-tl { padding:18px 16px; border-right:1px solid rgba(255,255,255,.06); }
.agc-step, .agc-ext { position:relative; padding-left:32px; padding-bottom:18px; }
.agc-step:last-of-type { padding-bottom:14px; }
.agc-ext { padding-bottom:0; }
.agc-step::before { content:""; position:absolute; left:11px; top:24px; bottom:-2px; width:2px; background:rgba(255,255,255,.10); }
.agc-step.done::before { background:#22d3ee; }
.agc-dot { position:absolute; left:0; top:0; width:24px; height:24px; border-radius:50%; background:#101a30; border:1.5px solid rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center; color:#8a93ab; font-size:11px; font-weight:700; transition:all .3s; }
.agc-step.run .agc-dot { border-color:#22d3ee; color:#22d3ee; box-shadow:0 0 14px rgba(34,211,238,.45); }
.agc-step.done .agc-dot { background:#22d3ee; border-color:#22d3ee; color:#06222b; }
.agc-ck { width:13px; height:13px; }
.agc-dot .agc-ck { display:none; }
.agc-step.done .agc-dot .agc-num { display:none; }
.agc-step.done .agc-dot .agc-ck { display:block; }
.agc-t { font-size:13px; color:#aab3cc; transition:color .3s; }
.agc-step.run .agc-t, .agc-step.done .agc-t { color:#e7ebf5; }
.agc-s { font-family:Consolas,monospace; font-size:10px; color:#5f6a85; margin-top:1px; }
.agc-step.run .agc-s { color:#22d3ee; }
.agc-ext .agc-dot { border-style:dashed; border-color:rgba(34,211,238,.45); color:#22d3ee; background:transparent; }
.agc-ext .agc-t { color:#22d3ee; font-size:12.5px; padding-top:3px; }
.agc-main { padding:18px; min-height:236px; }
.agc-ph { font-family:Consolas,monospace; font-size:10px; letter-spacing:1.5px; color:#5f6a85; margin-bottom:12px; }
.agc-stage { transition:opacity .26s ease; }
.agc-lead { display:flex; align-items:center; gap:12px; background:#101a30; border:0.5px solid rgba(34,211,238,.16); border-radius:12px; padding:12px 14px; }
.agc-lead .ava { width:42px;height:42px;border-radius:11px;background:linear-gradient(135deg,#22d3ee,#6366f1);color:#06222b;font-weight:700;display:flex;align-items:center;justify-content:center;font-size:15px;flex:none; }
.agc-lead .nm { font-size:15px;color:#e7ebf5;font-weight:500; } .agc-lead .su { font-size:12px;color:#8a93ab;margin-top:2px; }
.agc-lead .sc { margin-left:auto;text-align:center; } .agc-lead .sc b { color:#22d3ee;font-size:18px;font-weight:700; } .agc-lead .sc span { color:#8a93ab;font-size:11px; }
.agc-qr { display:flex;align-items:center;gap:8px;font-size:13px;color:#cbd3e6;padding:6px 0; } .agc-qr .agc-ck { width:16px;height:16px;color:#22d3ee;flex:none; }
.agc-qbar { height:8px;border-radius:5px;background:rgba(255,255,255,.08);margin-top:8px;overflow:hidden; } .agc-qbar i { display:block;height:100%;width:87%;background:linear-gradient(90deg,#22d3ee,#6366f1);border-radius:5px; }
.agc-qsc { font-size:12px;color:#8a93ab;margin-top:6px; } .agc-qsc b { color:#22d3ee; }
.agc-bub { max-width:90%;padding:10px 13px;border-radius:13px;font-size:13px;line-height:1.5;margin-bottom:8px; }
.agc-bub.out { background:rgba(99,102,241,.16);border:0.5px solid rgba(99,102,241,.3);color:#dfe3f2;border-bottom-right-radius:4px;margin-left:auto; }
.agc-bub.in { background:#101a30;border:0.5px solid rgba(255,255,255,.1);color:#cbd3e6;border-bottom-left-radius:4px; }
.agc-off { background:#101a30;border:0.5px solid rgba(34,211,238,.16);border-radius:12px;padding:6px 14px; }
.agc-off .r { display:flex;justify-content:space-between;font-size:13px;color:#cbd3e6;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.06); }
.agc-off .r:last-child { border:0; } .agc-off .r.tot { color:#fff;font-weight:700; } .agc-off .r.tot span:last-child { color:#22d3ee; }
.agc-eml { background:#101a30;border:0.5px solid rgba(255,255,255,.1);border-radius:12px;padding:12px 14px;font-size:13px;color:#cbd3e6; }
.agc-eml .er { padding:2px 0; } .agc-eml .er b { color:#8a93ab;font-weight:500; }
.agc-eml .eb { margin-top:8px;padding-top:8px;border-top:1px solid rgba(255,255,255,.06);color:#aab3cc;line-height:1.5; }
.agc-cal { display:flex;align-items:center;gap:14px;background:#101a30;border:0.5px solid rgba(34,211,238,.16);border-radius:12px;padding:14px; }
.agc-cal .cd { width:54px;height:54px;border-radius:12px;background:rgba(34,211,238,.12);display:flex;flex-direction:column;align-items:center;justify-content:center;flex:none; }
.agc-cal .cd b { color:#22d3ee;font-size:11px;letter-spacing:1px; } .agc-cal .cd span { color:#fff;font-size:15px;font-weight:700; }
.agc-done { display:flex;align-items:center;gap:6px;font-size:12px;color:#22d3ee;margin-top:10px;font-family:Consolas,monospace; } .agc-done .agc-ck { width:14px;height:14px; }
.agc-foot { display:flex;gap:18px;flex-wrap:wrap;justify-content:center;padding:12px 16px;background:#0c1326;border-top:1px solid rgba(255,255,255,.06);font-family:Consolas,monospace;font-size:11px;color:#8a93ab; }
.agc-foot b { color:#22d3ee;font-weight:500; }
@media (max-width:620px){ .agc-body { grid-template-columns:1fr; } .agc-tl { border-right:0; border-bottom:1px solid rgba(255,255,255,.06); } .agc-meta { gap:10px; } }
/* Cogitavo: generierte Abschnitts-Labels groesser */
.section-head .eyebrow, .page-hero .eyebrow { font-size: 1rem; letter-spacing: .12em; }

/* ===== Cogitavo: AI-Agents Tabs + Chatbot- & Voice-Demo ===== */
.ai-tabs { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; margin-bottom:26px; }
.ai-tab { font-family:Consolas,monospace; font-size:.78rem; letter-spacing:.06em; text-transform:uppercase; color:#aab3cc; background:#0e1626; border:1px solid rgba(34,211,238,.22); border-radius:10px; padding:11px 18px; cursor:pointer; transition:all .25s; display:inline-flex; align-items:center; gap:8px; }
.ai-tab:hover { color:#fff; border-color:rgba(34,211,238,.55); }
.ai-tab.is-active { background:#22d3ee; color:#06222b; border-color:#22d3ee; }
.ai-panel { display:none; }
.ai-panel.is-active { display:block; }
.cbx, .vox { max-width:440px; margin:0 auto; background:#0b1322; border:0.5px solid rgba(34,211,238,.2); border-radius:18px; overflow:hidden; }
.cbx__top { display:flex; align-items:center; gap:10px; padding:13px 16px; background:#0e1626; border-bottom:1px solid rgba(255,255,255,.06); }
.cbx__ava { width:34px;height:34px;border-radius:50%;background:linear-gradient(135deg,#22d3ee,#6366f1);display:flex;align-items:center;justify-content:center;color:#06222b;font-weight:700;font-size:13px;flex:none; }
.cbx__name { font-size:14px;color:#e7ebf5;font-weight:500; } .cbx__status { font-size:11px;color:#22d3ee; }
.cbx__ch { margin-left:auto; display:flex; gap:6px; }
.cbx__chip { font-size:10px;color:#7fe6f5;background:rgba(34,211,238,.12);border-radius:6px;padding:4px 8px; font-family:Consolas,monospace; }
.cbx__body { padding:16px; display:flex; flex-direction:column; gap:10px; min-height:210px; }
.cbx__b { max-width:82%; padding:9px 13px; border-radius:14px; font-size:13px; line-height:1.5; }
.cbx__b.bot { background:#101a30; color:#cbd3e6; border-bottom-left-radius:4px; }
.cbx__b.usr { background:#22d3ee; color:#06222b; border-bottom-right-radius:4px; margin-left:auto; }
.cbx__type { display:inline-flex; gap:5px; padding:11px 14px; background:#101a30; border-radius:14px; border-bottom-left-radius:4px; align-self:flex-start; }
.cbx__type span { width:6px;height:6px;border-radius:50%;background:#22d3ee;animation:cbt 1.2s infinite; }
.cbx__type span:nth-child(2){animation-delay:.2s} .cbx__type span:nth-child(3){animation-delay:.4s}
@keyframes cbt { 0%,60%,100%{opacity:.3} 30%{opacity:1} }
.vox { padding:22px; text-align:center; }
.vox__call { display:flex;align-items:center;gap:12px;justify-content:center;margin-bottom:6px; }
.vox__ico { width:46px;height:46px;border-radius:50%;background:rgba(34,211,238,.12);display:flex;align-items:center;justify-content:center;color:#22d3ee; }
.vox__num { text-align:left; } .vox__num b { color:#e7ebf5;font-size:14px;display:block; } .vox__num span { color:#22d3ee;font-size:11px;font-family:Consolas,monospace; }
.vox__wave { display:flex;align-items:center;justify-content:center;gap:4px;height:46px;margin:14px 0 16px; }
.vox__wave i { width:4px;height:8px;background:#22d3ee;border-radius:2px;animation:vw 1s ease-in-out infinite; }
@keyframes vw { 0%,100%{height:8px;opacity:.5} 50%{height:32px;opacity:1} }
.vox__t { text-align:left; background:#101a30; border-radius:12px; padding:12px 14px; font-size:13px; color:#cbd3e6; line-height:1.55; }
.vox__t .ln { padding:3px 0; } .vox__t .ln b { color:#8a93ab; font-weight:500; }
.vox__done { display:flex;align-items:center;gap:6px;justify-content:center;font-size:12px;color:#22d3ee;margin-top:12px;font-family:Consolas,monospace; }
.vox__done svg, .cbx svg.ck2 { width:14px;height:14px; }
@media (prefers-reduced-motion: reduce){ .cbx__type span,.vox__wave i{ animation:none } }
/* ===== Cogitavo: Premium dunkle Unterseiten-Kopfbereiche (legal bleibt clean) ===== */
.page-hero { background: var(--c-bg-dark); border-bottom: 1px solid rgba(255,255,255,.08); position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:0; background-image:linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(34,211,238,.05) 1px, transparent 1px); background-size:42px 42px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #c7ccd8; }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: #8a93ab; }
.page-hero .breadcrumb a:hover { color: #22d3ee; }
.page-hero--plain { background: var(--c-bg-soft); }
.page-hero--plain::before { display: none; }
.page-hero--plain h1 { color: var(--c-ink); }
.page-hero--plain .lead { color: var(--c-muted); }
.page-hero--plain .eyebrow { color: #0e7490; }
.page-hero--plain .breadcrumb, .page-hero--plain .breadcrumb a { color: var(--c-muted); }

/* ===== Cogitavo: Card-Rhythmus + weicherer Schatten auf hellem Hintergrund ===== */
.card .tag { display: inline-block; margin: 0 0 16px; }
.card:has(.tag) .card__icon { margin-bottom: 14px; }
.card h3 { margin-bottom: .55em; }
.card { box-shadow: 0 12px 32px rgba(7,11,24,.14); }
.card:hover { box-shadow: 0 0 0 1px rgba(34,211,238,.22), 0 22px 48px rgba(7,11,24,.22); }
@media (max-width: 560px) {
  .grid { gap: 30px; }
  .card { padding: 26px 24px; }
}

/* ===== Cogitavo: Startseite Desktop-Feinschliff (weniger gross & eng) ===== */
@media (min-width: 992px) {
  .hero { padding: 74px 0 78px; }
  .hero h1 { font-size: 2.4rem; line-height: 1.22; margin-bottom: .55em; font-weight: 700; }
  .hero .lead { font-size: 1.05rem; line-height: 1.75; max-width: 35em; }
  .hero__cta { margin-top: 28px; }
  .hero__stats { margin-top: 40px; gap: 40px; }
  .hero__grid { gap: 72px; }
  .section-head h2 { line-height: 1.24; }
  .section-head { margin-bottom: 46px; }
}

/* ===== Cogitavo: AI-Agents gestapelt (kein Tab-Verstecken mehr) ===== */
.ai-stack { display: block; }
.ai-block { max-width: 880px; margin: 0 auto; background: #0e1626; border: 1px solid rgba(34,211,238,.20); border-radius: 22px; padding: 40px 36px 44px; box-shadow: 0 18px 48px rgba(7,11,24,.22); }
.ai-block + .ai-block { margin-top: 52px; }
@media (max-width: 560px) { .ai-block { padding: 26px 18px 30px; border-radius: 18px; } .ai-block + .ai-block { margin-top: 38px; } }
.ai-block__head { text-align: center; margin-bottom: 26px; }
.ai-block__head .tag { display:inline-block; margin-bottom: 14px; }
.ai-block__head h2 { font-size: 1.5rem; color: #fff; }
.ai-block__head .lead { margin: 0 auto; max-width: 46em; color: #c7ccd8; }

/* ===== Cogitavo: Chatbot im WhatsApp-Design (ueberschreibt .cbx) ===== */
.cbx { max-width: 360px; margin: 0 auto; background:#e5ddd5; border:none; border-radius:16px; overflow:hidden; box-shadow:0 26px 64px rgba(0,0,0,.55); }
.cbx__top { background:#075e54; border-bottom:none; padding:11px 13px; gap:11px; }
.cbx__back { color:#fff; opacity:.92; flex:none; display:flex; }
.cbx__ava { background:#cfd8dc; color:#075e54; width:38px; height:38px; }
.cbx__name { color:#fff; font-weight:600; }
.cbx__status { color:rgba(255,255,255,.82); }
.cbx__hicons { margin-left:auto; display:flex; gap:18px; color:#fff; opacity:.92; }
.cbx__hicons svg { width:19px; height:19px; }
.cbx__ch { display:none; }
.cbx__body { background-color:#e5ddd5; background-image:linear-gradient(rgba(229,221,213,.6),rgba(229,221,213,.6)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23d9cfc4' stroke-width='1'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M40 8h8M44 4v8'/%3E%3Cpath d='M8 44q6 6 12 0'/%3E%3Ccircle cx='46' cy='46' r='4'/%3E%3C/g%3E%3C/svg%3E"); min-height:330px; gap:8px; padding:14px 12px; }
.cbx__b { max-width:80%; padding:6px 9px 5px; border-radius:9px; font-size:13.5px; line-height:1.42; color:#111b21; box-shadow:0 1px .8px rgba(0,0,0,.16); position:relative; }
.cbx__b.bot { background:#fff; border-top-left-radius:2px; }
.cbx__b.usr { background:#d9fdd3; border-top-right-radius:2px; }
.cbx__txt { display:inline; }
.cbx__time { display:inline-block; float:right; font-size:10px; color:#667781; margin:6px 0 -2px 10px; line-height:1; }
.cbx__ck2 { color:#53bdeb; margin-left:2px; letter-spacing:-3px; font-size:11px; }
.cbx__type { background:#fff; border-bottom-left-radius:2px; box-shadow:0 1px .8px rgba(0,0,0,.16); }
.cbx__type span { background:#9aa7ad; }
.cbx__note { text-align:center; color:#8a93ab; font-size:12.5px; margin-top:16px; font-family:Consolas,'Cascadia Code',monospace; letter-spacing:.02em; }
.cbx__note b { color:#22d3ee; font-weight:500; }

/* ===== Cogitavo: illu-production inline + Zahlen-Generierung ===== */
.prod-illu { width:100%; height:auto; display:block; filter: drop-shadow(0 18px 40px rgba(34,211,238,.12)); }
.prod-illu text { font-family: "Segoe UI", system-ui, sans-serif; }

/* ===== Cogitavo: Footer ohne Gruppe-Spalte -> 3 Spalten auf Desktop ===== */
@media (min-width: 981px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }

/* ===== Cogitavo: Info-Punkte je AI-Agent ===== */
.ai-feats { list-style:none; padding:0; margin:0 auto 26px; max-width:560px; display:grid; gap:11px; }
.ai-feats li { position:relative; padding-left:30px; color:#aab3cc; font-size:.97rem; line-height:1.5; }
.ai-feats li::before { content:""; position:absolute; left:0; top:3px; width:19px; height:19px; border-radius:50%; background:#22d3ee; -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat; }