@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/fonts/OpenSans-Light.woff2') format('woff2'),
  src: url('/fonts/OpenSans-Light.woff') format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/OpenSans-Regular.woff2') format('woff2'),
  src: url('/fonts/OpenSans-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/OpenSans-Bold.woff2') format('woff2'),
  src: url('/fonts/OpenSans-Bold.woff') format('woff');
}

u {
  text-decoration-color: #ffa12e;
  }
/* Telefonnummern: keine Link-Deko, Farbe erben */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

/* E-Mail- und Weblinks: CADnetwork-Orange, keine Unterstreichung */
a[href^="mailto:"] {
  color: #ffa12e;
    text-decoration: none;
}
a[href^="http://"],
a[href^="https://"] {
    color: inherit;
    text-decoration: none;
}

/* Hover konsistent halten */
a[href^="mailto:"]:hover,
a[href^="http://"]:hover,
a[href^="https://"]:hover {
    
    text-decoration: none;
}


/* =========================
   Responsive Container Padding
   ========================= */
/* global: width inkl. padding/border */
*, *::before, *::after {
  box-sizing: border-box;
}

.hero-wrap{
  width:100%;
  overflow:hidden;
}

/* Bühne */
.hero-stage{
  max-width:1600px;
  margin:0 auto;
  padding-left:200px;
  padding-right:200px;
}

/* Mobile: Padding runter */
@media (max-width:1200px){
  .hero-stage{
    padding-left:24px;
    padding-right:24px;
  }
}

/* Bild skaliert immer innerhalb der Bühne */
.hero-stage img.hero{
  display:block;
  width:100% !important;
  height:auto !important;
}

/* Desktop 1600+ "Hero über die Bühne" */
@media (min-width: 1600px) {
  .hero-stage img.hero {
    width: 1600px !important;
    max-width: none !important;
    margin-left: -200px; /* entspricht 200px padding */
  }
}

/* Default Desktop Layout */
.inner-1200 {
  padding-left: 200px !important;
  padding-right: 200px !important;
}

.layout-row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.layout-right {
  width: 275px;
  flex-shrink: 0;
}

/* <=1200: Padding runter */
@media (max-width: 1200px) {
  .inner-1200 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* <=768: noch enger */
@media (max-width: 768px) {
  .inner-1200 {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* <=980: Rightbar unter Content */
@media (max-width: 980px) {
  .layout-row {
    flex-direction: column;
    gap: 18px;
  }

  .layout-right {
    width: 100%;
  }
}

.layout-main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }


h2 {
    font-size: 20px;
    font-weight: 600;
}

.config-product-header {
    margin-bottom: 18px;
}

.config-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    margin-top:30px;
}

.config-subline {
    margin-top: 4px;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 300;
    color: #666;
}


.cn-group { 
    margin: 20px 0;
    border: 1px solid #dcdcdc;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    padding: 10px;
}


.cn-group-head { margin-bottom: 8px; }
.cn-title { font-size: 16px; font-weight: 600; margin: 0; }


.cn-desc {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
}

.cn-body {
  
}

.cn-label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.cn-options { list-style: none; padding: 0; margin: 0; font-size: 15px; }
.cn-option { border-top: 1px solid #eee; }
.cn-option:first-child { border-top: 0; }
.cn-option:hover .opt-indicator {
    border-color: #ffa12e;
}
.cn-option:hover{
  background:#f7f7f7;
}


.cn-option label{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding: 10px 0;
  cursor: pointer;
}

.cn-option-left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.cn-option-title{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }


.cn-option-price {
  font-weight: 300;
  color: #555;
  margin-left: auto;
}

.opt-price.is-selected,
.price-label.is-selected {
  font-weight: 300;
  color: #ffa12e;
}


/* Old diff colors: positive red, negative/zero green */
.cn-price-pos { color: #b00; }
.cn-price-neg { color: #0a7a2f; }
.cn-price-zero { color: #0a7a2f; }

/* Select look */
.cn-select {
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
}

/* Slot box */
.cn-slot {
  border: 0;
  padding: 4px;
  margin-bottom: 0;
  background: #fff;
}

.cn-slot.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.cn-slot-row{
  display: grid;
  grid-template-columns: 50px 1fr;   /* Label fix, Field flexibel */
  gap: 12px;
  align-items: start;               /* wichtig: Label bleibt oben */
}

/* Label bleibt ruhig und bündig */
.cn-slot-label{
  line-height: 1.2;
  padding-top: 12px;                 /* optisch auf Trigger-Höhe */
  white-space: nowrap;
  color: #666;
  font-size: 14px;
}

/* Field nimmt Platz, Panel wächst nur hier */
.cn-slot-field{
  min-width: 0;                     /* verhindert Overflow/Schieben */
}

.cn-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cn-checkbox:checked + .opt-indicator {
    border-color: #ffa12e;
}

.cn-checkbox:checked + .opt-indicator::after {
    background: #ffa12e;
}



/* komplette Position ausgrauen */
.cn-group.is-disabled {
  opacity: .45;
  pointer-events: none;
}

/* einzelne Option ausgrauen */
.cn-option.is-disabled {
  opacity: .45;
  pointer-events: none;
}

/* custom select option disable */
.config-select-option.is-disabled {
  opacity: .45;
  pointer-events: none;
}

/* hide */
.cn-option.is-hidden,
.config-select-option.is-hidden {
  display: none !important;
}

/* Rule UI states */
.cn-option.is-hidden,
.config-select-option.is-hidden {
  display: none !important;
}

.cn-group.is-disabled {
  opacity: .55;
}

.cn-option.is-disabled,
.config-select-option.is-disabled {
  opacity: .45;
  pointer-events: none; /* click block */
}

.cn-option.is-disabled label {
  cursor: not-allowed;
}

.cn-option-title-row {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

.cn-option-badge {
    display: inline-flex;
    align-items: center;

    margin-left: 25px;   /* ← hier bequem einstellbar */

    padding: 2px 6px;

    border: 1px solid #ffa12e;
    border-radius: 0;
    background: transparent;

    color: #ffa12e;

    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
}

.cn-option-badge:empty {
    display: none;
}



.cn-option-hint {
    color: #666;
    font-size: 13px;
    line-height: 1.35;
}

.cn-option-hint p {
    margin: 0;
}

.config-select-option {
    align-items: flex-start;
    gap: 12px;
}

.config-select-option .opt-price {
    margin-left: auto;
    white-space: nowrap;
}


/* optional: “disabled look” in dropdown */
.config-select-option.is-disabled .opt-name {
  text-decoration: line-through;
}


.cn-conditional-html.is-hidden {
    display: none;
}




.cn-position-subtitle {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #6f6f6f;
    padding: 0px 20px 0px 0px;
}

.cn-position-subtitle p {
    margin: 0 0 8px 0;
}

.cn-position-subtitle p:last-child {
    margin-bottom: 0;
}

.cn-position-subtitle ul {
    margin: 6px 0 0 18px;
    padding: 0;
}

.cn-more {
    margin-top: 0.5rem;
}

.cn-more summary {
    list-style: none;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;

    width: fit-content;
    margin-left: auto;
    margin-right: 20px;

    padding: 0.18rem 0.5rem;

    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;

    color: #ffa12e;
    background: #ffffff;
    border: 1px solid #ffa12e;
    border-radius: 0;

    user-select: none;
    transition:
        color 0.16s ease,
        background-color 0.16s ease;
}

.cn-more summary:hover {
    color: #ffffff;
    background: #ffa12e;
}

.cn-more summary::-webkit-details-marker {
    display: none;
}

.cn-more summary::before {
    content: "";
    width: 0.38rem;
    height: 0.38rem;

    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;

    transform: rotate(45deg);
    transition: transform 0.16s ease;
}

.cn-more[open] summary::before {
    transform: rotate(225deg);
}

.cn-more[open] summary {
    margin-bottom: 0.45rem;
}

.cn-more p,
.cn-more ul,
.cn-more ol,
.cn-more div {
    text-align: left;
}

.cn-more-layout {
 display: flex;
 gap: clamp(22px, 4vw, 44px);
 align-items: flex-start;
 }
.cn-more-text {
 flex: 1 1 auto;
 min-width: 0;
 }
.cn-more-image {
 flex: 0 0 var(–cn-more-image-width, 32%);
 max-width: var(–cn-more-image-width, 32%);
 }
.cn-more-image img {
 display: block;
 width: 100%;
 height: auto;
 object-fit: contain;
 }
@media (max-width: 760px) {
 .cn-more-layout {
 display: block;
 }
.cn-more-image {
    max-width: 100%;
    margin-top: 18px;
}
}


.cn-creator-workflow-strip {
    max-width: 1180px;
    margin: 56px auto 72px;
    padding: 0 24px;
    overflow: hidden;
}

.cn-creator-workflow-head {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

.cn-creator-workflow-head h2 {
    margin: 0 0 16px;
}

.cn-creator-workflow-head p {
    margin: 0;
}

.cn-creator-workflow-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.cn-creator-workflow-marquee::before,
.cn-creator-workflow-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 2;
    width: 90px;
    height: 100%;
    pointer-events: none;
}

.cn-creator-workflow-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.cn-creator-workflow-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.cn-creator-workflow-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: cn-creator-workflow-scroll 68s linear infinite;
}


.cn-creator-workflow-track span {
    flex: 0 0 auto;
    color: #ddd;
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cn-creator-workflow-track span::after {
    content: "·";
    margin-left: 24px;
    color: #d6d6d6;
    font-weight: 400;
}




@keyframes cn-creator-workflow-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 760px) {
    .cn-creator-workflow-track {
        gap: 18px;
        animation-duration: 58s;
    }

    .cn-creator-workflow-track span {
        font-size: clamp(15px, 5vw, 22px);
    }

    .cn-creator-workflow-track span::after {
        margin-left: 18px;
    }

    
}


@media (prefers-reduced-motion: reduce) {
    .cn-creator-workflow-track {
        animation: none;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
    }
}


.cn-aiui-stage {
    position: relative;
    width: 100%;
    max-width: 1152px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    overflow: hidden;
    background: #171717;
}

.cn-aiui-stage .cn-aiui-screen {
    width: 1600px;
    height: 900px;
    max-width: none;
    aspect-ratio: auto;
    margin: 0;
    transform: scale(0.72);
    transform-origin: top left;
}


.cn-aiui-screen {
    --cn-aiui-bg: #171717;
    --cn-aiui-panel: #232323;
    --cn-aiui-panel-soft: #292929;
    --cn-aiui-line: rgba(255, 255, 255, 0.09);
    --cn-aiui-text: #f4f4f4;
    --cn-aiui-muted: #a8a8a8;
    --cn-aiui-muted-dark: #707070;
    --cn-aiui-orange: #ffa12e;
    --cn-aiui-green: #2ed573;

    position: relative;
    margin: 0 auto;
    overflow: hidden;
    color: var(--cn-aiui-text);
    background: var(--cn-aiui-bg);
    
}

.cn-aiui-rail {
    position: absolute;
    inset: 0 auto 0 0;
    width: 64px;
    background: #111111;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.cn-aiui-rail-logo {
    width: 22px;
    height: 22px;
    margin-top: 18px;
    display: grid;
    place-items: center;
    color: #161616;
    background: #f2f2f2;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.cn-aiui-rail-icons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 34px;
    color: #f2f2f2;
    font-size: 23px;
    line-height: 1;
}

.cn-aiui-rail-icons span {
    opacity: 0.9;
}

.cn-aiui-user-dot {
    position: absolute;
    left: 16px;
    bottom: 18px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: var(--cn-aiui-orange);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.cn-aiui-user-dot i {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 9px;
    height: 9px;
    background: var(--cn-aiui-green);
    border: 2px solid #111;
    border-radius: 50%;
}

.cn-aiui-main {
    position: absolute;
    inset: 0 0 0 64px;
}

.cn-aiui-topbar {
    position: absolute;
    inset: 0 0 auto 0;
    height: 78px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 26px 0 20px;
    z-index: 4;
}

.cn-aiui-title-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.cn-aiui-app-title {
    margin: 0;
    color: #fff;
    font-size: 23px;
    font-weight: 420;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cn-aiui-title-group p {
    margin: 7px 0 0;
    color: #9c9c9c;
    font-size: 13px;
    line-height: 1;
}

.cn-aiui-chevron {
    color: #d6d6d6;
    font-size: 20px;
    transform: translateY(-1px);
}

.cn-aiui-plus {
    color: #fff;
    font-size: 21px;
    font-weight: 300;
    margin-left: 4px;
}

.cn-aiui-top-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #d6d6d6;
    font-size: 20px;
}

.cn-aiui-avatar {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: var(--cn-aiui-orange);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
}

.cn-aiui-side-menu {
    position: absolute;
    left: 20px;
    bottom: 56px;
    width: 236px;
    padding: 15px 11px 16px;
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
    z-index: 6;
}

.cn-aiui-side-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 6px 12px;
}

.cn-aiui-side-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--cn-aiui-orange);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    font-weight: 520;
}

.cn-aiui-side-user strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.cn-aiui-side-user span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    color: #fff;
    font-size: 13px;
}

.cn-aiui-side-user span i {
    width: 9px;
    height: 9px;
    background: var(--cn-aiui-green);
    border-radius: 50%;
}

.cn-aiui-side-menu button {
    width: 100%;
    height: 31px;
    margin-bottom: 13px;
    color: #fff;
    background: #202020;
    border: 0;
    border-radius: 999px;
    font-size: 13px;
}

.cn-aiui-side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cn-aiui-side-menu li {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 37px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.cn-aiui-side-menu li:first-child {
    margin-top: 3px;
}

.cn-aiui-side-menu li span {
    font-size: 16px;
    font-weight: 400;
}

.cn-aiui-side-exit {
    margin-top: 13px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.cn-aiui-center {
    position: absolute;
    left: 335px;
    top: 150px;
    width: 850px;
    z-index: 2;
}

.cn-aiui-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
    text-align: center;
}

.cn-aiui-brand-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #171717;
    background: #fff;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.cn-aiui-brand-title {
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 420;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.cn-aiui-brand p {
    margin: 14px 0 0;
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.38;
}

.cn-aiui-prompt {
    position: relative;
    min-height: 112px;
    padding: 22px 126px 22px 24px;
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 26px;
    color: #707070;
    font-size: 18px;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cn-aiui-prompt-actions {
    position: absolute;
    left: 24px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 28px;
    color: #fff;
    font-size: 29px;
    font-weight: 300;
}

.cn-aiui-prompt-actions span:last-child {
    font-size: 22px;
}

.cn-aiui-prompt-voice {
    position: absolute;
    right: 18px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cn-aiui-prompt-voice span {
    color: #e6e6e6;
    font-size: 25px;
}

.cn-aiui-prompt-voice strong {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #151515;
    border-radius: 50%;
    font-size: 13px;
    letter-spacing: -0.18em;
}

.cn-aiui-suggestions {
    width: 460px;
    margin: 34px auto 0;
    color: #d5d5d5;
}

.cn-aiui-suggestions p {
    margin: 0 0 18px;
    color: #c6c6c6;
    font-size: 14px;
}

.cn-aiui-suggestions div {
    margin-bottom: 21px;
}

.cn-aiui-suggestions strong {
    display: block;
    color: #d8d8d8;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.cn-aiui-suggestions span {
    display: block;
    margin-top: 4px;
    color: #8c8c8c;
    font-size: 14px;
    line-height: 1.2;
}

/* =====================================================
   SYSTEMSTATUS CARD
====================================================== */

.cn-aiui-status-card {
    position: absolute;
    right: 60px;
    left: auto;
    bottom: 60px;
    z-index: 7;

    width: 450px;
    padding: 16px 16px 18px;
    color: var(--cn-aiui-text);
    background: #262626;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.cn-aiui-status-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.cn-aiui-status-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f3f3f3;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

.cn-aiui-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cn-aiui-orange);
    box-shadow: 0 0 12px rgba(255, 161, 46, 0.38);
}

.cn-aiui-status-shield {
    width: 35px;
    height: 35px;
    color: var(--cn-aiui-orange);
}

.cn-aiui-status-shield svg,
.cn-aiui-status-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cn-aiui-status-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 13px;
    min-height: 58px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.cn-aiui-status-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cn-aiui-status-row-main {
    min-height: 76px;
}

.cn-aiui-status-icon {
    width: 30px;
    height: 30px;
    color: #9a9a9a;
}

.cn-aiui-status-icon-orange {
    color: var(--cn-aiui-orange);
}

.cn-aiui-status-icon-muted {
    color: #9a9a9a;
}

.cn-aiui-status-row-main .cn-aiui-status-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1.5px solid rgba(255, 161, 46, 0.28);
    border-radius: 50%;
    background: rgba(255, 161, 46, 0.06);
}

.cn-aiui-status-row-main .cn-aiui-status-icon svg {
    width: 30px;
    height: 30px;
}

.cn-aiui-status-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cn-aiui-status-content strong {
    color: #f3f3f3;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.015em;
    overflow-wrap: anywhere;
}

.cn-aiui-status-content span {
    color: #a4a4a4;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.cn-aiui-status-content sup {
    top: -0.35em;
    position: relative;
    font-size: 0.5em;
    line-height: 0;
}




/* =====================================================
   INHOUSE PERFORMANCE HERO
====================================================== */

.cn-inhouse-hero {
    position: relative;
    width: min(1600px, calc(100vw - 32px));
    aspect-ratio: 16 / 5;
    margin: 0 auto 48px;

    left: 50%;
    transform: translateX(-50%);

    overflow: hidden;
    background: #10161a;
}

.cn-inhouse-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cn-inhouse-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
    pointer-events: none;
}

.cn-inhouse-hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;

    pointer-events: none;

    flex-direction: column;
    align-items: center;
    

    padding: 40px;
    text-align: center;
}

.cn-inhouse-hero-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 32px;
    text-align: center;
}


.cn-inhouse-cave {
    width: min(72%, 900px);
    min-height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 9px solid rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.035);
    backdrop-filter: blur(1.5px);
}

.cn-inhouse-cave span {
    color: #fff;
    opacity: 0.9;
    font-size: clamp(38px, 4.7vw, 86px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 8px 42px rgba(0, 0, 0, 0.52);
    padding: 30px;
}

/*
.cn-inhouse-cave {
    position: relative;

    width: min(72%, 980px);
    min-height: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.035);
    backdrop-filter: blur(1.5px);
    padding: 30px;
}

.cn-inhouse-cave span {
    position: relative;
    z-index: 2;

    color: #fff;
    font-size: clamp(38px, 4.7vw, 86px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 8px 42px rgba(0, 0, 0, 0.52);
}

.cn-cave-corner {
    position: absolute;
    z-index: 1;

    width: 70px;
    height: 70px;

    border-color: rgba(255, 255, 255, 0.9);
    border-style: solid;
    border-width: 0;

    pointer-events: none;
    
}

.cn-cave-corner--tl {
    left: 0;
    top: 0;
    border-left-width: 9px;
    border-top-width: 9px;
}

.cn-cave-corner--tr {
    right: 0;
    top: 0;
    border-right-width: 9px;
    border-top-width: 9px;
}

.cn-cave-corner--bl {
    left: 0;
    bottom: 0;
    border-left-width: 9px;
    border-bottom-width: 9px;
}

.cn-cave-corner--br {
    right: 0;
    bottom: 0;
    border-right-width: 9px;
    border-bottom-width: 9px;
}

@media (max-width: 760px) {
    .cn-inhouse-cave {
        width: 86%;
        min-height: 150px;
    }

    .cn-inhouse-cave span {
        font-size: clamp(34px, 10vw, 56px);
        line-height: 1.08;
    }

    .cn-cave-corner {
        width: 72px;
        height: 48px;
    }

    .cn-cave-corner--tl,
    .cn-cave-corner--tr,
    .cn-cave-corner--bl,
    .cn-cave-corner--br {
        border-width: 0;
    }

    .cn-cave-corner--tl {
        border-left-width: 5px;
        border-top-width: 5px;
    }

    .cn-cave-corner--tr {
        border-right-width: 5px;
        border-top-width: 5px;
    }

    .cn-cave-corner--bl {
        border-left-width: 5px;
        border-bottom-width: 5px;
    }

    .cn-cave-corner--br {
        border-right-width: 5px;
        border-bottom-width: 5px;
    }
}

*/

.cn-inhouse-hero-categories {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(16px, 1.35vw, 23px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-shadow: 0 5px 28px rgba(0, 0, 0, 0.55);
}

.cn-inhouse-hero-claim {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.01em;
    text-shadow: 0 5px 24px rgba(0, 0, 0, 0.55);
}

@media (max-width: 760px) {
    .cn-inhouse-hero {
        width: 100vw;
        aspect-ratio: 4 / 5;
        margin-bottom: 52px;
    }

    .cn-inhouse-hero-content {
        padding: 28px 20px;
    }

    .cn-inhouse-cave {
        width: 86%;
        min-height: 150px;
        border-width: 5px;
    }

    .cn-inhouse-cave span {
        font-size: clamp(34px, 10vw, 56px);
        line-height: 1.08;
    }

    .cn-inhouse-hero-categories {
        max-width: 320px;
        margin-top: 22px;
    }
}


.cn-home-page {
  margin-top: -48px;
}



/* =====================================================
   HOME ENTRY WORLDS
====================================================== */

.cn-home-entry-worlds {
    max-width: 1200px;
    margin: 0 auto 96px;
    
}

.cn-home-entry-worlds-head {
    margin: 0 0 34px;
}

.cn-home-section-kicker {
    display: inline-block;
    margin-bottom: 14px;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cn-home-entry-worlds-head h2 {
    margin: 0;

    color: #111;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 760;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.cn-home-entry-worlds-head p {
    
    margin: 22px 0 0;

    color: #4f555a;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.55;
}

.cn-home-entry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cn-home-entry-card {
    position: relative;
    min-height: 330px;
    padding: 30px 28px 28px;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 248, 0.96));
    border: 1px solid rgba(16, 22, 26, 0.09);
    box-shadow: 0 20px 54px rgba(16, 22, 26, 0.08);

    overflow: hidden;
}

.cn-home-entry-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    
}

.cn-home-entry-card-kicker {
    display: block;
    margin-bottom: 22px;

    color: #ffa12e;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-align: center;
}

.cn-home-entry-card h3 {
    color: #15191d;
    font-size: 25px;
    font-weight: 720;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.cn-home-entry-card p {
    margin: 18px 0 0; !important

    color: #555d64;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    
}

.cn-home-entry-link {
    margin-top: auto;
    padding-top: 28px;

    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.cn-home-entry-link::after {
    content: " →";
    color: #ffa12e;
}

.cn-home-entry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 70px rgba(16, 22, 26, 0.13);
    border-color: #ffa12e;
}

.cn-home-entry-card,
.cn-home-entry-link {
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease;
}

.cn-home-entry-card:hover .cn-home-entry-link {
    color: #ffa12e;
}

@media (max-width: 1100px) {
    .cn-home-entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .cn-home-entry-worlds {
        margin-bottom: 72px;
        padding: 0 18px;
    }

    .cn-home-entry-worlds-head h2 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .cn-home-entry-worlds-head p {
        font-size: 17px;
    }

    .cn-home-entry-grid {
        grid-template-columns: 1fr;
    }

    .cn-home-entry-card {
        min-height: auto;
        padding: 28px 24px 26px;
    }
}

.cn-home-entry-icon {
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cn-home-entry-icon img {
    display: block;
  
    width: auto;
    height: auto;
    object-fit: contain;

    filter: saturate(0.92);
}



.cn-home-entry-icon img {
    transition: transform 180ms ease;
}


/* =====================================================
   HOME TRUST / EXPERTISE
====================================================== */

.cn-home-trust {
    max-width: 1200px;
    margin: 0 auto 104px;
    
}

.cn-home-trust-head {
    max-width: 860px;
    margin-bottom: 34px;
}

.cn-home-trust-head h2 {
    margin: 0;

    color: #111;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 760;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.cn-home-trust-head p {
    max-width: 780px;
    margin: 22px 0 0;

    color: #4f555a;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.62;
}

.cn-home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cn-home-trust-card {
    padding: 32px 30px 34px;

    background: #f6f7f8;
    border: 1px solid rgba(16, 22, 26, 0.08);
}

.cn-home-trust-number {
    display: block;
    margin-bottom: 24px;

    color: #ffa12e;
    font-size: clamp(26px, 2.1vw, 34px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
    text-align: center;
}

.cn-home-trust-card h3 {
    

    color: #15191d;
    font-size: 20px;
    font-weight: 720;
    text-align: center;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.cn-home-trust-card p {
    margin: 15px 0 0;

    color: #555d64;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.58;
    
}

.cn-home-workflow-strip {
    margin-top: 22px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    color: #4f555a;
}

.cn-home-workflow-strip span {
    display: inline-flex;
    align-items: center;

    padding: 9px 13px;

    background: #fff;
    border: 1px solid rgba(16, 22, 26, 0.09);

    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0.01em;
}

@media (max-width: 900px) {
    .cn-home-trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .cn-home-trust {
        margin-bottom: 76px;
        padding: 0 18px;
    }

    .cn-home-trust-card {
        padding: 28px 24px 30px;
    }

    .cn-home-trust-number {
        font-size: 38px;
    }
}






/* =====================================================
   BRAINSYSTEMS BENCH RESULTS
====================================================== */

.bs-bench {
    max-width: 1200px;
    margin: 0 auto 110px;
    padding: 72px 24px;

    color: #f4f5f6;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 161, 46, 0.15), transparent 34%),
        linear-gradient(180deg, #11171b, #0d1114);
}

.bs-eyebrow {
    margin: 0 0 16px;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bs-bench-head {
    max-width: 900px;
    margin-bottom: 36px;
}

.bs-bench-head h2 {
    margin: 0;

    color: #fff;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 780;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.bs-bench-lead {
    max-width: 820px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.62;
}

.bs-bench-key-result {
    max-width: 880px;
    margin-top: 28px;
    padding: 22px 24px;

    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 161, 46, 0.34);
}

.bs-bench-key-result strong {
    color: #ffa12e;
}

.bs-gpu-ref-grid,
.bs-bench-kpi-grid,
.bs-bench-chart-grid,
.bs-bench-context-grid,
.bs-bench-choice {
    display: grid;
    gap: 18px;
}

.bs-gpu-ref-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.bs-gpu-ref-card,
.bs-bench-kpi,
.bs-bench-chart-card,
.bs-bench-context-card,
.bs-bench-choice article,
.bs-bench-method {
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.105);
}

.bs-gpu-ref-card {
    padding: 26px 28px 28px;
}

.bs-gpu-label {
    display: block;
    margin-bottom: 16px;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bs-gpu-ref-card strong {
    display: block;

    color: #fff;
    font-size: 26px;
    font-weight: 780;
    line-height: 1.1;
}

.bs-gpu-ref-card > span:not(.bs-gpu-label) {
    display: block;
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}

.bs-gpu-ref-card p {
    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.58;
}

.bs-bench-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 42px;
}

.bs-bench-kpi {
    padding: 24px 22px 26px;
}

.bs-bench-kpi span {
    display: block;

    color: #ffa12e;
    font-size: clamp(28px, 2.8vw, 42px);
    font-weight: 820;
    line-height: 1;
    letter-spacing: -0.045em;
}

.bs-bench-kpi h3 {
    margin: 16px 0 0;

    color: #fff;
    font-size: 18px;
    font-weight: 720;
    line-height: 1.18;
}

.bs-bench-kpi p {
    margin: 10px 0 0;

    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.48;
}

.bs-bench-tabs {
    margin-top: 12px;
}

.bs-bench-tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.bs-bench-tab-button {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.72);

    padding: 13px 18px;

    font: inherit;
    font-size: 14px;
    font-weight: 760;
    cursor: pointer;
}

.bs-bench-tab-button.is-active {
    color: #111;
    background: #ffa12e;
    border-color: #ffa12e;
}

.bs-bench-tab-panel {
    display: none;
}

.bs-bench-tab-panel.is-active {
    display: block;
}

.bs-bench-panel-copy {
    max-width: 820px;
    margin-bottom: 20px;
}

.bs-bench-panel-copy h3 {
    margin: 0;

    color: #fff;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.bs-bench-panel-copy p {
    margin: 16px 0 0;

    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.62;
}

.bs-bench-important {
    margin: 18px 0 22px;
    padding: 18px 20px;

    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 161, 46, 0.12);
    border: 1px solid rgba(255, 161, 46, 0.35);

    font-size: 16px;
    font-weight: 650;
    line-height: 1.5;
}

.bs-bench-chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bs-bench-chart-card {
    padding: 22px 22px 18px;
}

.bs-bench-chart-head h4 {
    margin: 0;

    color: #fff;
    font-size: 20px;
    font-weight: 720;
    line-height: 1.18;
}

.bs-bench-chart-head p {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
    line-height: 1.4;
}

.bs-line-chart {
    margin-top: 18px;
    min-height: 260px;
}

.bs-line-chart svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.bs-chart-axis,
.bs-chart-grid-line {
    stroke: rgba(255, 255, 255, 0.14);
    stroke-width: 1;
}

.bs-chart-label {
    fill: rgba(255, 255, 255, 0.56);
    font-size: 11px;
}

.bs-chart-line-a {
    fill: none;
    stroke: #ffa12e;
    stroke-width: 3;
}

.bs-chart-line-b {
    fill: none;
    stroke: rgba(255, 255, 255, 0.82);
    stroke-width: 3;
    stroke-dasharray: 7 6;
}

.bs-chart-point-a {
    fill: #ffa12e;
}

.bs-chart-point-b {
    fill: #11171b;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 2;
}

.bs-chart-legend text {
    fill: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.bs-bench-table-wrap {
    margin-top: 18px;
    overflow-x: auto;
}

.bs-bench-table {
    width: 100%;
    border-collapse: collapse;

    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.bs-bench-table th,
.bs-bench-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bs-bench-table th {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 750;
}

.bs-bench-table td strong {
    color: #fff;
}

.bs-bench-context-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 42px;
}

.bs-bench-context-card {
    padding: 28px;
}

.bs-bench-context-card h3,
.bs-bench-choice h3 {
    margin: 0;

    color: #fff;
    font-size: 25px;
    font-weight: 740;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.bs-bench-context-card p,
.bs-bench-choice p {
    margin: 16px 0 0;

    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.58;
}

.bs-bar-list {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.bs-bar-row,
.bs-vram-row {
    display: grid;
    grid-template-columns: 70px minmax(120px, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.bs-bar-row span,
.bs-vram-row span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 700;
}

.bs-bar-row em,
.bs-vram-row em {
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
}

.bs-bar-track,
.bs-vram-track {
    position: relative;
    height: 12px;
    background: rgba(255, 255, 255, 0.09);
    overflow: hidden;
}

.bs-bar-track i,
.bs-bar-track b,
.bs-vram-track i {
    display: block;
    height: 100%;
    width: var(--w);
}

.bs-bar-track i {
    background: #ffa12e;
}

.bs-bar-track b {
    margin-top: 5px;
    height: 4px;
    background: rgba(255, 255, 255, 0.82);
}

.bs-vram-track i {
    background: #ffa12e;
}

.bs-bench-legend-note {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
}

.bs-bench-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.bs-bench-choice article {
    padding: 28px;
}

.bs-bench-choice span {
    display: block;
    margin-bottom: 14px;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bs-bench-method {
    margin-top: 18px;
    padding: 0;
}

.bs-bench-method summary {
    padding: 20px 24px;

    color: #fff;
    font-size: 16px;
    font-weight: 760;
    cursor: pointer;
}

.bs-bench-method-inner {
    padding: 0 24px 26px;
}

.bs-bench-method-inner p,
.bs-bench-disclaimer {
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.62;
}

@media (max-width: 1000px) {
    .bs-bench-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bs-bench-chart-grid,
    .bs-bench-context-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .bs-bench {
        padding: 52px 18px;
        margin-bottom: 80px;
    }

    .bs-gpu-ref-grid,
    .bs-bench-choice {
        grid-template-columns: 1fr;
    }

    .bs-bench-kpi-grid {
        grid-template-columns: 1fr;
    }

    .bs-bench-tab-buttons {
        flex-direction: column;
    }

    .bs-bar-row,
    .bs-vram-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }
}





/* =====================================================
   BRAINSYSTEMS MULTI GPU SCALING
====================================================== */

.bs-scale {
    max-width: 1200px;
    margin: 0 auto 110px;
    padding: 24px 24px;

    color: #15191d;
    background: #f9f9f9;
        
}

.bs-scale-head {
    max-width: 900px;
    margin-bottom: 36px;
}

.bs-scale-eyebrow {
    margin: 0 0 16px;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bs-scale-head h2 {
    margin: 0;

    color: #111;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 780;
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.bs-scale-head p {
    max-width: 820px;
    margin: 24px 0 0;

    color: #4f555a;
    font-size: 18px;
    line-height: 1.62;
}

.bs-scale-key {
    max-width: 880px;
    margin-top: 28px;
    padding: 22px 24px;

    color: #1b1f23;
    background: rgba(255, 161, 46, 0.13);
    border: 1px solid rgba(255, 161, 46, 0.38);

    font-size: 18px;
    font-weight: 720;
    line-height: 1.45;
}

.bs-scale-direct-grid,
.bs-scale-picker,
.bs-scale-direct-result-grid,
.bs-scale-bottom-grid,
.bs-scale-selection-grid {
    display: grid;
    gap: 18px;
}

.bs-scale-direct-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.bs-scale-direct-grid article,
.bs-scale-picker article,
.bs-scale-definition,
.bs-scale-model-panel,
.bs-scale-chart-card,
.bs-scale-factor-card,
.bs-scale-result-card,
.bs-scale-across,
.bs-scale-selection,
.bs-scale-note,
.bs-scale-method {
    background: #fff;
    border: 1px solid rgba(16, 22, 26, 0.09);
    box-shadow: 0 20px 54px rgba(16, 22, 26, 0.07);
}

.bs-scale-direct-grid article {
    padding: 26px 28px 28px;
}

.bs-scale-direct-grid span {
    display: block;
    margin-bottom: 14px;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bs-scale-direct-grid strong {
    display: block;

    color: #111;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 820;
    line-height: 1;
    letter-spacing: -0.05em;
}

.bs-scale-direct-grid p {
    margin: 10px 0 0;

    color: #555d64;
    font-size: 16px;
    font-weight: 650;
}

.bs-scale-definition {
    margin-bottom: 18px;
    padding: 28px 30px;
}

.bs-scale-definition h3,
.bs-scale-selection h3,
.bs-scale-across h3 {
    margin: 0;

    color: #111;
    font-size: 28px;
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.bs-scale-definition p,
.bs-scale-across p,
.bs-scale-selection p,
.bs-scale-note,
.bs-scale-method-inner p {
    margin: 14px 0 0;

    color: #555d64;
    font-size: 16px;
    line-height: 1.62;
}

.bs-scale-picker {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 42px;
}

.bs-scale-picker article {
    padding: 24px 22px 26px;
}

.bs-scale-picker span {
    display: block;
    margin-bottom: 14px;

    color: #ffa12e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bs-scale-picker strong {
    display: block;

    color: #111;
    font-size: 21px;
    font-weight: 760;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.bs-scale-picker p {
    margin: 10px 0 0;

    color: #5c646b;
    font-size: 14px;
    line-height: 1.45;
}

.bs-scale-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.bs-scale-tab-button {
    appearance: none;
    border: 1px solid rgba(16, 22, 26, 0.12);
    background: #fff;
    color: #3c4248;

    padding: 13px 16px;

    font: inherit;
    font-size: 14px;
    font-weight: 760;
    cursor: pointer;
}

.bs-scale-tab-button.is-active {
    color: #ffffff;
    background: #ffa12e;
    border-color: #ffa12e;
}

.bs-scale-tab-note {
    margin: 0 0 18px;

    color: #6a7278;
    font-size: 14px;
    line-height: 1.5;
}

.bs-scale-model-panel {
    padding: 30px;
}

.bs-scale-model-copy {
    max-width: 900px;
    margin-bottom: 24px;
}

.bs-scale-model-copy h3 {
    margin: 0;

    color: #111;
    font-size: clamp(28px, 2vw, 36px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.bs-scale-model-copy p {
    margin: 14px 0 0;

    color: #555d64;
    font-size: 16px;
    line-height: 1.6;
}

.bs-scale-direct-result-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.bs-scale-direct-result-grid article {
    padding: 22px 22px 24px;

    background: #f6f7f8;
    border: 1px solid rgba(16, 22, 26, 0.08);
}

.bs-scale-direct-result-grid span {
    display: block;
    margin-bottom: 12px;

    color: #6a7278;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bs-scale-direct-result-grid strong {
    display: block;

    color: #ffa12e;
    font-size: 38px;
    font-weight: 820;
    line-height: 1;
    letter-spacing: -0.05em;
}

.bs-scale-direct-result-grid p {
    margin: 10px 0 0;

    color: #555d64;
    font-size: 14px;
    line-height: 1.45;
}

.bs-scale-chart-card {
    padding: 24px;
}

.bs-scale-chart-head h4,
.bs-scale-factor-card h4,
.bs-scale-result-card h4 {
    margin: 0;

    color: #111;
    font-size: 22px;
    font-weight: 760;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.bs-scale-chart-head p {
    margin: 8px 0 0;

    color: #6a7278;
    font-size: 14px;
    line-height: 1.45;
}

.bs-scale-chart {
    margin-top: 20px;
    min-height: 330px;
}

.bs-scale-chart svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.bs-scale-axis,
.bs-scale-grid-line {
    stroke: rgba(16, 22, 26, 0.14);
    stroke-width: 1;
}

.bs-scale-label {
    fill: #687078;
    font-size: 12px;
}

.bs-scale-line-x1 {
    fill: none;
    stroke: rgba(16, 22, 26, 0.48);
    stroke-width: 3;
    stroke-dasharray: 5 6;
}

.bs-scale-line-x2 {
    fill: none;
    stroke: rgba(16, 22, 26, 0.72);
    stroke-width: 3;
}

.bs-scale-line-x4 {
    fill: none;
    stroke: #ffa12e;
    stroke-width: 4;
}

.bs-scale-point-x1 {
    fill: #fff;
    stroke: rgba(16, 22, 26, 0.58);
    stroke-width: 2;
}

.bs-scale-point-x2 {
    fill: rgba(16, 22, 26, 0.72);
}

.bs-scale-point-x4 {
    fill: #ffa12e;
}

.bs-scale-legend text {
    fill: #4f555a;
    font-size: 12px;
}

.bs-scale-bottom-grid {
    grid-template-columns: 0.95fr 1.05fr;
    margin-top: 18px;
}

.bs-scale-factor-card,
.bs-scale-result-card {
    padding: 26px 28px;
}

.bs-scale-factor-row {
    display: grid;
    grid-template-columns: 68px minmax(120px, 1fr) 64px;
    gap: 12px;
    align-items: center;

    margin-top: 16px;
}

.bs-scale-factor-row span {
    color: #555d64;
    font-size: 13px;
    font-weight: 750;
}

.bs-scale-factor-row div {
    height: 12px;

    background: #e8ebee;
    overflow: hidden;
}

.bs-scale-factor-row i {
    display: block;
    width: var(--w);
    height: 100%;

    background: #ffa12e;
}

.bs-scale-factor-row strong {
    color: #111;
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.bs-scale-result-card p {
    margin: 14px 0 0;

    color: #555d64;
    font-size: 15px;
    line-height: 1.58;
}

.bs-scale-across {
    margin-top: 18px;
    padding: 30px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 30px;
    align-items: center;
}

.bs-scale-big-number {
    padding: 24px;

    background: #11171b;
    color: #fff;
    text-align: center;
}

.bs-scale-big-number strong {
    display: block;

    color: #ffa12e;
    font-size: 44px;
    font-weight: 840;
    line-height: 1;
    letter-spacing: -0.05em;
}

.bs-scale-big-number span {
    display: block;
    margin-top: 10px;

    font-size: 14px;
    font-weight: 720;
}

.bs-scale-big-number em {
    display: block;
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-style: normal;
}

.bs-scale-selection {
    margin-top: 18px;
    padding: 30px;
}

.bs-scale-selection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.bs-scale-selection-grid article {
    padding: 22px;

    background: #f6f7f8;
    border: 1px solid rgba(16, 22, 26, 0.08);
}

.bs-scale-selection-grid span {
    display: block;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bs-scale-selection-grid p {
    margin: 12px 0 0;

    color: #555d64;
    font-size: 15px;
    line-height: 1.52;
}

.bs-scale-selection-key {
    margin-top: 22px !important;

    color: #15191d !important;
    font-size: 17px !important;
    font-weight: 720;
}

.bs-scale-note {
    margin-top: 18px;
    padding: 22px 24px;

    box-shadow: none;
    background: #fff;
}

.bs-scale-method {
    margin-top: 18px;
    box-shadow: none;
}

.bs-scale-method summary {
    padding: 20px 24px;

    color: #111;
    font-size: 16px;
    font-weight: 780;
    cursor: pointer;
}

.bs-scale-method-inner {
    padding: 0 24px 26px;
}

.bs-scale-method table {
    width: 100%;
    margin-top: 18px;
    border-collapse: collapse;

    color: #4f555a;
    font-size: 14px;
}

.bs-scale-method th,
.bs-scale-method td {
    padding: 13px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(16, 22, 26, 0.1);
}

.bs-scale-method th {
    color: #111;
    font-weight: 780;
}

@media (max-width: 1000px) {
    .bs-scale-picker {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bs-scale-bottom-grid,
    .bs-scale-across {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .bs-scale {
        padding: 54px 18px;
        margin-bottom: 80px;
    }

    .bs-scale-direct-grid,
    .bs-scale-direct-result-grid,
    .bs-scale-selection-grid {
        grid-template-columns: 1fr;
    }

    .bs-scale-picker {
        grid-template-columns: 1fr;
    }

    .bs-scale-tab-buttons {
        flex-direction: column;
    }

    .bs-scale-tab-button {
        width: 100%;
        text-align: left;
    }

    .bs-scale-model-panel {
        padding: 22px;
    }

    .bs-scale-factor-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .bs-scale-factor-row strong {
        text-align: left;
    }
}




/* =====================================================
   BRAINSYSTEMS SYSTEM SIZING
====================================================== */

.bs-sizing {
    max-width: 1200px;
    margin: 0 auto 110px;
    padding: 78px 24px;

    color: #15191d;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 161, 46, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff, #f6f7f8);
}

.bs-sizing-head {
    max-width: 920px;
    margin-bottom: 38px;
}

.bs-sizing-eyebrow {
    margin: 0 0 16px;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.bs-sizing-head h2 {
    margin: 0;

    color: #111;
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.bs-sizing-head p {
    max-width: 820px;
    margin: 24px 0 0;

    color: #4f555a;
    font-size: 18px;
    line-height: 1.62;
}

.bs-sizing-key {
    max-width: 900px;
    margin-top: 28px;
    padding: 22px 24px;

    color: #171b1f;
    background: rgba(255, 161, 46, 0.13);
    border: 1px solid rgba(255, 161, 46, 0.38);

    font-size: 18px;
    font-weight: 720;
    line-height: 1.45;
}

.bs-sizing-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.bs-sizing-card {
    position: relative;
    padding: 30px 28px 30px;

    background: #fff;
    border: 1px solid rgba(16, 22, 26, 0.09);
    box-shadow: 0 20px 54px rgba(16, 22, 26, 0.07);
    overflow: hidden;
}

.bs-sizing-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg, #ffa12e, rgba(255, 161, 46, 0));
}

.bs-sizing-card--featured {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(16, 22, 26, 0.11);
}

.bs-sizing-card-label {
    display: block;
    margin-bottom: 18px;

    color: #ffa12e;
    font-size: 13px;
    font-weight: 820;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bs-sizing-card strong {
    display: block;

    color: #111;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 820;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.bs-sizing-card-sub {
    margin: 10px 0 0 !important;

    color: #6a7278 !important;
    font-size: 15px !important;
    font-weight: 700;
    line-height: 1.35 !important;
}

.bs-sizing-card p {
    margin: 20px 0 0;

    color: #555d64;
    font-size: 15px;
    line-height: 1.58;
}

.bs-sizing-card-metric {
    margin-top: 24px;
    padding: 18px 18px 20px;

    background: #f6f7f8;
    border: 1px solid rgba(16, 22, 26, 0.08);
}

.bs-sizing-card-metric span {
    display: block;
    margin-bottom: 10px;

    color: #7a8289;
    font-size: 11px;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bs-sizing-card-metric b {
    display: block;

    color: #111;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.bs-sizing-card-metric em {
    display: block;
    margin-top: 8px;

    color: #ffa12e;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
}

.bs-sizing-chart-card {
    padding: 30px;
    width: 80%;
    background: #fff;
    border: 1px solid rgba(16, 22, 26, 0.09);
    box-shadow: 0 20px 54px rgba(16, 22, 26, 0.07);
}

.bs-sizing-chart-copy {
    max-width: 860px;
    margin-bottom: 22px;
}

.bs-sizing-chart-copy h3 {
    margin: 0;

    color: #111;
    font-size: clamp(28px, 2vw, 36px);
    font-weight: 780;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.bs-sizing-chart-copy p {
    margin: 16px 0 0;

    color: #555d64;
    font-size: 16px;
    line-height: 1.62;
}

.bs-sizing-chart-wrap {
    overflow-x: auto;
}

.bs-sizing-chart {
    min-width: 780px;
}

.bs-sizing-chart svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.bs-sizing-axis,
.bs-sizing-grid-line,
.bs-sizing-marker-guide {
    stroke: rgba(16, 22, 26, 0.14);
    stroke-width: 1;
}

.bs-sizing-marker-guide {
    stroke-dasharray: 5 5;
}

.bs-sizing-label {
    fill: #687078;
    font-size: 12px;
}

.bs-sizing-line-x1 {
    fill: none;
    stroke: rgba(16, 22, 26, 0.42);
    stroke-width: 3;
    stroke-dasharray: 5 7;
}

.bs-sizing-line-x2 {
    fill: none;
    stroke: rgba(16, 22, 26, 0.74);
    stroke-width: 3;
}

.bs-sizing-line-x4 {
    fill: none;
    stroke: #ffa12e;
    stroke-width: 4;
}

.bs-sizing-point-x1 {
    fill: #fff;
    stroke: rgba(16, 22, 26, 0.56);
    stroke-width: 2;
}

.bs-sizing-point-x2 {
    fill: rgba(16, 22, 26, 0.74);
}

.bs-sizing-point-x4 {
    fill: #ffa12e;
}

.bs-sizing-orientation-marker {
    fill: #fff;
    stroke: #ffa12e;
    stroke-width: 4;
}

.bs-sizing-marker-label {
    fill: #111;
    font-size: 13px;
    font-weight: 800;
}

.bs-sizing-marker-sub {
    fill: #687078;
    font-size: 11px;
}

.bs-sizing-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-top: 20px;

    color: #4f555a;
    font-size: 14px;
    font-weight: 700;
}

.bs-sizing-chart-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bs-sizing-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 999px;
}

.bs-sizing-dot--x1 {
    background: #fff;
    border: 2px solid rgba(16, 22, 26, 0.56);
}

.bs-sizing-dot--x2 {
    background: rgba(16, 22, 26, 0.74);
}

.bs-sizing-dot--x4 {
    background: #ffa12e;
}

.bs-sizing-dot--marker {
    background: #fff;
    border: 3px solid #ffa12e;
}

.bs-sizing-note {
    margin-top: 18px;
    padding: 22px 24px;
    width: 80%;
    margin-left: auto !important;
    margin-right: auto !important;

    color: #555d64;
    background: #fff;
    border: 1px solid rgba(16, 22, 26, 0.09);

    font-size: 14px;
    line-height: 1.58;
}

@media (max-width: 980px) {
    .bs-sizing-cards {
        grid-template-columns: 1fr;
    }

    .bs-sizing-card--featured {
        transform: none;
    }
}

@media (max-width: 760px) {
    .bs-sizing {
        padding: 54px 18px;
        margin-bottom: 80px;
    }

    .bs-sizing-chart-card {
        padding: 24px 18px;
    }

    .bs-sizing-chart {
        min-width: 720px;
    }
}


.cn-card-facts--configurator {
    /*margin-top: 18px;*/
}

.cn-card-facts--configurator .cn-card-fact-label {
    font-size: 15px;
    color: #555;
}

.cn-card-facts--configurator .cn-card-fact-value {
    font-size: 19px;
    line-height: 1.45;
}

.cn-card-facts--configurator .cn-ai-product-bars {
    margin: 3px 0 8px;
}

.cn-card-facts--configurator u {
    text-decoration-color: #ffa12e;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.16em;
}




/*
|--------------------------------------------------------------------------
| Brainsystems Inhouse KI Landingpage
|--------------------------------------------------------------------------
| 
*/

.bs-ai-lp {
    --bs-ai-accent: #ffa12e;
    --bs-ai-text: #202225;
    --bs-ai-muted: #6f747b;
    --bs-ai-line: #e4e5e7;
    --bs-ai-soft: #f7f7f7;
    --bs-ai-white: #ffffff;
    --bs-ai-dark: #17191e;
    --bs-ai-dark-soft: #20242b;

    color: var(--bs-ai-text);
    background: var(--bs-ai-white);
    font-weight: 300;
}

.bs-ai-lp *,
.bs-ai-lp *::before,
.bs-ai-lp *::after {
    box-sizing: border-box;
}

.bs-ai-lp__container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.bs-ai-lp__section {
    padding-block: clamp(64px, 8vw, 112px);
    border-top: 1px solid var(--bs-ai-line);
}

.bs-ai-lp__section--soft {
    background: var(--bs-ai-soft);
}

.bs-ai-lp__section--dark {
    background: var(--bs-ai-dark);
    color: #fff;
}

.bs-ai-lp__eyebrow {
    margin: 0 0 12px;
    color: var(--bs-ai-accent);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bs-ai-lp h1,
.bs-ai-lp h2,
.bs-ai-lp h3 {
    margin: 0;
    font-weight: 600;
    line-height: 1.12;
    text-transform: uppercase;
    text-wrap: balance;
}

.bs-ai-lp h1 {
    max-width: 920px;
    font-size: clamp(2rem, 5vw, 4.35rem);
}

.bs-ai-lp h2 {
    max-width: 900px;
    font-size: clamp(1.55rem, 3.2vw, 2.75rem);
}

.bs-ai-lp h3 {
    font-size: clamp(1rem, 1.6vw, 1.32rem);
}

.bs-ai-lp p {
    hyphens: auto;
}

.bs-ai-lp__lead {
    max-width: 820px;
    margin: 22px 0 0;
    color: var(--bs-ai-muted);
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    line-height: 1.72;
    text-align: justify;
}

.bs-ai-lp__section--dark .bs-ai-lp__lead {
    color: rgb(255 255 255 / 74%);
}

.bs-ai-lp__hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(78px, 9vw, 132px);
    background:
        radial-gradient(circle at 78% 20%, rgb(255 161 46 / 12%), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}

.bs-ai-lp__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: clamp(36px, 5vw, 74px);
    align-items: center;
}

.bs-ai-lp__brandline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--bs-ai-accent);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bs-ai-lp__brandline::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--bs-ai-accent);
}

.bs-ai-lp__claim-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.bs-ai-lp__claim-row li {
    padding: 8px 12px;
    border: 1px solid var(--bs-ai-line);
    background: #fff;
    color: var(--bs-ai-text);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.bs-ai-lp__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.bs-ai-lp__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 1px solid var(--bs-ai-accent);
    border-radius: 15px;
    color: var(--bs-ai-accent);
    background: #fff;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.bs-ai-lp__button--primary,
.bs-ai-lp__button:hover {
    background: var(--bs-ai-accent);
    color: #fff;
}

.bs-ai-lp__button--primary:hover {
    background: #fff;
    color: var(--bs-ai-accent);
}

.bs-ai-lp__machine-card {
    border: 1px solid #2d323a;
    border-left: 3px solid var(--bs-ai-accent);
    background: var(--bs-ai-dark);
    color: #fff;
    box-shadow: 0 22px 62px rgb(20 22 25 / 14%);
}

.bs-ai-lp__machine-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgb(255 255 255 / 9%);
}

.bs-ai-lp__machine-top strong {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.bs-ai-lp__status-dot {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--bs-ai-accent);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bs-ai-lp__status-dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--bs-ai-accent);
    box-shadow: 0 0 0 5px rgb(255 161 46 / 12%);
}

.bs-ai-lp__machine-body {
    padding: 24px 22px;
}

.bs-ai-lp__terminal-line {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    color: rgb(255 255 255 / 82%);
    font-size: .88rem;
}

.bs-ai-lp__terminal-line:last-child {
    border-bottom: 0;
}

.bs-ai-lp__terminal-line span:first-child {
    color: var(--bs-ai-accent);
}

.bs-ai-lp__terminal-foot {
    margin-top: 18px;
    padding: 13px 14px;
    background: rgb(255 161 46 / 10%);
    color: rgb(255 255 255 / 88%);
    font-size: .84rem;
    line-height: 1.55;
}

.bs-ai-lp__grid-4,
.bs-ai-lp__grid-3,
.bs-ai-lp__grid-2 {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.bs-ai-lp__grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bs-ai-lp__grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bs-ai-lp__grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bs-ai-lp__card {
    border: 1px solid var(--bs-ai-line);
    background: #fff;
    padding: 22px;
}

.bs-ai-lp__card--dark {
    border-color: rgb(255 255 255 / 12%);
    background: rgb(255 255 255 / 4%);
}

.bs-ai-lp__card h3 {
    margin-bottom: 12px;
}

.bs-ai-lp__card p {
    margin: 0;
    color: var(--bs-ai-muted);
    line-height: 1.62;
    text-align: justify;
}

.bs-ai-lp__section--dark .bs-ai-lp__card p {
    color: rgb(255 255 255 / 70%);
}

.bs-ai-lp__accent-number {
    display: block;
    margin-bottom: 16px;
    color: var(--bs-ai-accent);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bs-ai-lp__placeholder {
    margin-top: 32px;
    min-height: 440px;
    display: grid;
    place-items: center;
    border: 1px dashed rgb(255 161 46 / 72%);
    background:
        linear-gradient(135deg, rgb(255 161 46 / 9%), transparent 52%),
        #fff;
    text-align: center;
}

.bs-ai-lp__placeholder-inner {
    max-width: 640px;
    padding: 28px;
}

.bs-ai-lp__placeholder code {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 11px;
    border: 1px solid var(--bs-ai-line);
    background: #fff;
    color: var(--bs-ai-accent);
}

.bs-ai-lp__knowledge-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
    margin-top: 34px;
}

.bs-ai-lp__flow-box {
    min-height: 180px;
    padding: 22px;
    border: 1px solid var(--bs-ai-line);
    background: #fff;
}

.bs-ai-lp__flow-box--dark {
    border-color: #2d323a;
    background: var(--bs-ai-dark);
    color: #fff;
}

.bs-ai-lp__flow-arrow {
    display: grid;
    place-items: center;
    color: var(--bs-ai-accent);
    font-size: 2rem;
}

.bs-ai-lp__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.bs-ai-lp__tag-list li {
    padding: 6px 9px;
    border: 1px solid var(--bs-ai-line);
    background: #fff;
    font-size: .74rem;
}

.bs-ai-lp__flow-box--dark .bs-ai-lp__tag-list li {
    border-color: rgb(255 255 255 / 14%);
    background: rgb(255 255 255 / 7%);
}

.bs-ai-lp__product-card {
    position: relative;
    padding: 26px;
    border: 1px solid var(--bs-ai-line);
    background: #fff;
}

.bs-ai-lp__product-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--bs-ai-accent);
    opacity: .75;
}

.bs-ai-lp__product-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.bs-ai-lp__spec-line {
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid var(--bs-ai-line);
    color: var(--bs-ai-muted);
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bs-ai-lp__dummy-benchmark {
    margin-top: 34px;
    border: 1px solid var(--bs-ai-line);
    background: #fff;
    padding: 26px;
}

.bs-ai-lp__benchmark-row {
    display: grid;
    grid-template-columns: minmax(190px, .7fr) minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--bs-ai-line);
}

.bs-ai-lp__benchmark-row:last-child {
    border-bottom: 0;
}

.bs-ai-lp__bar {
    height: 10px;
    background: var(--bs-ai-soft);
    overflow: hidden;
}

.bs-ai-lp__bar span {
    display: block;
    height: 100%;
    background: var(--bs-ai-accent);
}

.bs-ai-lp__benchmark-note {
    margin: 20px 0 0;
    color: var(--bs-ai-muted);
    font-size: .9rem;
    line-height: 1.58;
    text-align: justify;
}

.bs-ai-lp__split-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.bs-ai-lp__split-list li {
    position: relative;
    padding-left: 18px;
    color: var(--bs-ai-muted);
    line-height: 1.5;
}

.bs-ai-lp__split-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65em;
    width: 6px;
    height: 6px;
    background: var(--bs-ai-accent);
}

.bs-ai-lp__section--dark .bs-ai-lp__split-list li {
    color: rgb(255 255 255 / 72%);
}

.bs-ai-lp__faq {
    margin-top: 28px;
    border-top: 1px solid var(--bs-ai-line);
}

.bs-ai-lp__faq details {
    border-bottom: 1px solid var(--bs-ai-line);
    padding: 18px 0;
}

.bs-ai-lp__faq summary {
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

.bs-ai-lp__faq p {
    max-width: 820px;
    margin: 14px 0 0;
    color: var(--bs-ai-muted);
    line-height: 1.62;
    text-align: justify;
}

.bs-ai-lp__final {
    text-align: left;
}

.bs-ai-lp__final .bs-ai-lp__lead {
    max-width: 780px;
}

@media (max-width: 980px) {
    .bs-ai-lp__hero-grid,
    .bs-ai-lp__grid-4,
    .bs-ai-lp__grid-3,
    .bs-ai-lp__grid-2,
    .bs-ai-lp__knowledge-flow {
        grid-template-columns: 1fr;
    }

    .bs-ai-lp__flow-arrow {
        transform: rotate(90deg);
        min-height: 34px;
    }

    .bs-ai-lp__machine-card {
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .bs-ai-lp__container {
        width: min(100% - 24px, 1200px);
    }

    .bs-ai-lp__section,
    .bs-ai-lp__hero {
        padding-block: 52px;
    }

    .bs-ai-lp__cta-row,
    .bs-ai-lp__button {
        width: 100%;
    }

    .bs-ai-lp__benchmark-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}








.content-page h1 {
    margin: 0 0 24px;
    font-size: clamp(28px, 2vw, 36px);
    text-align: center;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.content-page-body {
    font-size: 16px;
    line-height: 1.6;
}

.content-page-body p {
    margin: 0 0 16px;
}

.cn-eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center !important;
    color: #ffa12e;
    font-weight: 600;
}

.cn-lead {
    margin: 0 0 34px;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.45;
    color: #333;
}

.cn-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 75px 0 56px;
}

.cn-product-grid.cn-product-grid--two-wide {
    grid-template-columns: repeat(2, minmax(0, 430px));
    justify-content: center;
    gap: 48px 78px;
}

@media (max-width: 860px) {
    .cn-product-grid.cn-product-grid--two-wide {
        grid-template-columns: minmax(0, 1fr);
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
}



.cn-product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.cn-product-card-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 230px;
    padding: 0 8px 20px;
}
.cn-product-card-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 230px;
    padding: 0 38px 20px;
}

.cn-product-card-image img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


.cn-product-card-box {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;

    padding: 26px 24px 24px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
}

/* kleiner Pfeil / Sprechblasen-Zipfel */
.cn-product-card-box::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 50%;
    width: 24px;
    height: 24px;

    background: #fff;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;

    transform: translateX(-50%) rotate(45deg);
}

.cn-product-card-box h2 {
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.04em;
}

.cn-product-card-box p {
    margin: 0 0 18px;
    color: #333;
}

.cn-product-card-box .cn-button {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
}

.cn-feature-list {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.cn-feature-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.cn-feature-list li::before {
    content: "✓";
    color: #ffa12e;
    font-weight: 700;
}

.cn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: auto;
    padding: 11px 18px;
    border: 1px solid #ffa12e;
    color: #ffa12e;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
}

.cn-button:hover {
    background: #ffa12e;
    color: #fff;
}

.cn-card-facts {
    display: grid;
    gap: 12px;
    margin: 18px 0 24px;
}

.cn-card-fact {
    position: relative;
    padding: 10px 0 10px 30px;
    
}

.cn-card-fact::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    color: #ffa12e;
    font-size: 17.5px;
    font-weight: 700;
    line-height: 1;
}

.cn-card-fact-label {
    display: block;
    margin-bottom: 3px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: #999;
}

.cn-card-fact-value {
    display: block;

    font-size: 15px;
    font-weight: 300;
    line-height: 1.35;

    color: #333;
}



.cn-info-section {
    width: 100%;
    margin: 72px 0 34px;
    padding-left: 20px;
    padding-right: 20px;

    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.45;
    color: #333;
}

.cn-info-section > * {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.cn-info-section h2 {
    margin: 0 auto 16px;
    font-size: clamp(1.08rem, 2vw, 1.58rem);
    text-align: center;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0;
}

.cn-info-section p {
    text-align: justify;
    hyphens: auto;
}
.cn-info-section ul,
.cn-info-section ol {
    text-align: left;
}

@media (max-width: 900px) {
    .content-page {
        padding: 36px 18px 56px;
    }

    .cn-product-grid {
        grid-template-columns: 1fr;
    }
}

.cn-inline-video {
  display: block;
  width: 100%;
  max-width: 1040px;
  height: auto;
  margin: 34px auto 36px;

}

/* =========================================
   Content: Text neben Bild
========================================= */

.cn-media-section {
    width: 100%;
    max-width: 1200px;
    margin: 56px auto;
    margin-top: 72px;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items: center;
    gap: 52px;
}

/* Text bekommt Innenabstand */
.cn-media-text {
    min-width: 0;
    padding-left: 20px;
    
}

/* Text-Stil gemäß neuer Regel */
.cn-media-text p {
    margin: 0 0 16px;

    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.45;
    color: #333;

    text-align: justify;
    hyphens: auto;
    overflow-wrap: break-word;
}

.cn-media-text h2 {
    margin: 0 0 16px;
    font-size: clamp(1.08rem, 2vw, 1.58rem);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 0;
}

/* Bild darf bis an den Section-Rand */
.cn-media-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.cn-media-image img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
}

/* Optional: bei Framework-Logo-Bildern etwas luftiger */
.cn-media-section-frameworks .cn-media-image img {
    max-width: 560px;
}

@media (max-width: 900px) {
    .cn-media-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0;
    }

    .cn-media-image {
        order: -1;
    }

    .cn-media-text h2 {
        text-align: center;
    }
}


.cn-image-captioned {
    position: relative;
    width: 100%;
}

.cn-image-captioned img {
    display: block;
    width: 100%;
    height: auto;
}

.cn-image-label {
    position: absolute;
    right: clamp(8px, 1vw, 14px);
    bottom: clamp(8px, 1vw, 14px);

    padding: 3px 7px;

    background: rgba(255, 255, 255, 0.86);

    color: #777;
    font-size: clamp(9px, 0.75vw, 11px);
    font-weight: 300;
    line-height: 1.2;

    white-space: nowrap;
    pointer-events: none;
}



.cn-advice-box {
    margin: 120px auto 120px;
    text-align: center;
    max-width: 720px;
}

.cn-advice-label {
    display: block;
    margin-bottom: 4px;

    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;

    color: #222;
}

.cn-advice-note {
    display: block;
    margin-bottom: 6px;

    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 300;
    line-height: 1.35;

    color: #555;
}

.cn-advice-phone {
    display: inline-block;

    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 300;
    line-height: 1.2;

    color: #111;
    text-decoration: none;
}

.cn-advice-phone:hover {
    color: #ffa12e;
}

.cn-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 1.05em;
    height: 1.05em;

    margin-right: 0.25em;
    vertical-align: -0.08em;

    color: #111;
}

.cn-phone-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
    transform: scaleX(-1);
}

/* =========================================
   Screenshot Reveal
========================================= */

.cn-screenshot-reveal {
    max-width: 1180px;
    margin: 34px auto;
}

.cn-screenshot-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cn-screenshot-stage {
    position: relative;
    display: block;

    max-height: clamp(220px, 24vw, 380px);
    overflow: hidden;

    border: 1px solid #fff;
    
    /*background: #fff;*/

    /*box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 12px 34px rgba(0,0,0,0.10),
        0 24px 64px rgba(0,0,0,0.06);*/

    cursor: pointer;

    transition:
        max-height 160ms ease,
        border-color 80ms ease,
        box-shadow 80ms ease;
}

.cn-screenshot-stage:hover {
    border-color: #ffa12e;
    box-shadow:
        0 1px 2px rgba(0,0,0,0.05),
        0 14px 38px rgba(0,0,0,0.12),
        0 28px 72px rgba(0,0,0,0.07);
}

.cn-screenshot-stage img {
    display: block;
    width: 100%;
    height: auto;
}

.cn-screenshot-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 58px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0.96)
    );

    pointer-events: none;
    transition: opacity 30ms ease;
}

.cn-screenshot-toggle {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);

    width: 34px;
    height: 28px;

    color: #fff;

    pointer-events: none;
    transition: color 30ms ease;
}

.cn-screenshot-toggle::before,
.cn-screenshot-toggle::after {
    content: "";
    position: absolute;
    left: 50%;

    width: 16px;
    height: 16px;

    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;

    transform: translateX(-50%) rotate(45deg);
}

.cn-screenshot-toggle::before {
    top: 0;
}

.cn-screenshot-toggle::after {
    content: none;
}

.cn-screenshot-stage:hover .cn-screenshot-toggle {
    color: #ffa12e;
}

/* Expanded state */
.cn-screenshot-checkbox:checked + .cn-screenshot-stage {
    max-height: 2200px;
}

.cn-screenshot-checkbox:checked + .cn-screenshot-stage .cn-screenshot-fade {
    opacity: 0;
}

.cn-screenshot-checkbox:checked + .cn-screenshot-stage .cn-screenshot-toggle {
    display: none;
}

@media (max-width: 900px) {
    .cn-screenshot-stage {
        max-height: clamp(240px, 58vw, 420px);
    }

    .cn-screenshot-checkbox:checked + .cn-screenshot-stage {
        max-height: 1800px;
    }
}



/* =========================================
   Content Pages
========================================= */

.content-page {
    width: 100%;
    padding: 48px 24px 72px;
}

/* Wenn Rightbar vorhanden ist:
   normale lesbare Breite innerhalb des bestehenden Layouts */
.content-page-with-rightbar {
    max-width: 1180px;
    margin: 0 auto;
}

/* Wenn keine Rightbar vorhanden ist:
   Content darf die verfügbare Layout-Breite nutzen.
   inner-1200 bleibt dabei unverändert. */
.content-page-full {
    max-width: none;
    width: 100%;
    margin: 0;
}

/* Standard-Texte auf Full-Width-Seiten trotzdem lesbar halten */
.content-page-full h1,
.content-page-full .content-page-body > p,
.content-page-full .content-page-body > h2,
.content-page-full .content-page-body > h3,
.content-page-full .content-page-body > h4,
.content-page-full .content-page-body > ul,
.content-page-full .content-page-body > ol,
.content-page-full .content-module {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

/* Breite Content-Bereiche, z. B. Produktkarten/Grid */
.content-page-full .cn-wide {
    width: min(1400px, calc(100vw - 48px));
    max-width: none;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
}

/* Echte volle Breite, z. B. Hintergrundbänder */
.content-page-full .cn-full {
    width: 100vw;
    max-width: none;
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
}

/* Innenabstand für Full-Width-Bänder */
.content-page-full .cn-full-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 900px) {
    .content-page {
        padding: 36px 18px 56px;
    }

    .content-page-full .cn-wide,
    .content-page-full .cn-full {
        width: 100%;
        margin-left: 0;
        transform: none;
    }
}

/* =========================
   TOP NAV
========================= */

.top-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.top-nav-item {
    position: relative;
}

/* Hauptmenü-Link */
.top-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid transparent;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    background: transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
    text-transform: uppercase;
}

.top-nav-link:hover,
.top-nav-item:hover > .top-nav-link {
    color: #ffa12e;
    border-color: #ffa12e;
    background: transparent;
}



/* =========================
   DROPDOWN
========================= */

.top-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 5001;
    padding: 14px;
}

.top-nav > .top-nav-item:hover > .top-nav-dropdown {
    display: block;
}

.top-nav-dropdown .top-nav-item,
.top-nav-subdropdown .top-nav-item {
    position: relative;
}


/* =========================
   DROPDOWN HEADINGS
========================= */

.top-nav-dropdown .top-nav-item.is-heading,
.top-nav-subdropdown .top-nav-item.is-heading {
    padding-top: 30px;
    padding-bottom: 10px;
}

.top-nav-dropdown .top-nav-item.is-heading:first-child,
.top-nav-subdropdown .top-nav-item.is-heading:first-child {
    padding-top: 4px;
}

.top-nav-dropdown-heading {
    margin: 0 16px;
    color: #ffa12e;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


/* =========================
   DROPDOWN LINKS
========================= */

.top-nav-dropdown-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    padding: 11px 16px;
    border: 1px solid transparent;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
    background: #fff;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.top-nav-dropdown-link:hover,
.top-nav-dropdown .top-nav-item:hover > .top-nav-dropdown-link,
.top-nav-subdropdown .top-nav-item:hover > .top-nav-dropdown-link {
    border-color: #ffa12e;
    background: #fff;
}

.top-nav-link-text {
    display: block;
}

.top-nav-link-title {
    display: block;
    color: inherit;
}

.top-nav-link-subline {
    display: block;
    margin-top: 4px;
    color: #555;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    text-transform: none;
}

.top-nav-dropdown-link:hover .top-nav-link-title,
.top-nav-dropdown .top-nav-item:hover > .top-nav-dropdown-link .top-nav-link-title,
.top-nav-subdropdown .top-nav-item:hover > .top-nav-dropdown-link .top-nav-link-title {
    color: #ffa12e;
}

.top-nav-dropdown-link:hover .top-nav-link-subline,
.top-nav-dropdown .top-nav-item:hover > .top-nav-dropdown-link .top-nav-link-subline,
.top-nav-subdropdown .top-nav-item:hover > .top-nav-dropdown-link .top-nav-link-subline {
    color: #555;
}


/* =========================
   SUBDROPDOWN / FLYOUT
========================= */

.top-nav-subdropdown {
    display: none;
    position: absolute;
    top: -7px;
    left: 100%;
    min-width: 260px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 5002;
    padding: 14px;
}

.top-nav-dropdown .top-nav-item:hover > .top-nav-subdropdown,
.top-nav-subdropdown .top-nav-item:hover > .top-nav-subdropdown {
    display: block;
}


.cn-reg,
.cn-tm {
  font-size: 50%;
  line-height: 0;
  position: relative;
  top: -0.2em;
  font-weight: inherit;
}


.cn-render-logo-strip {
 max-width: 1180px;
 margin: 44px auto 72px;
 padding: 0 24px;
 text-align: center;
 }
.cn-render-logo-strip-label {
 margin: 0 0 24px;
font-size: 12px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.08em;
text-transform: uppercase;

color: #999;
}
.cn-render-logo-grid {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 22px 34px;
 }
.cn-render-logo-grid img {
 display: block;
 max-height: 34px;
 width: auto;
filter: grayscale(100%);
opacity: 0.45;

transition:
    opacity 0.16s ease,
    filter 0.16s ease;
}
.cn-render-logo-grid img:hover {
 opacity: 0.7;
 filter: grayscale(100%);
 }
@media (max-width: 760px) {
 .cn-render-logo-strip {
 margin: 34px auto 52px;
 padding: 0 18px;
 }
.cn-render-logo-grid {
    gap: 18px 24px;
}

.cn-render-logo-grid img {
    max-height: 28px;
}
}

/* =========================
   MOBILE HEADER
   Logo -> Navigation -> Language
========================= */

@media (max-width: 760px) {

    header .inner-1200 {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 12px 0 !important;
    }

    /*
     * Desktop fasst Logo + Sprache in einem rechten Bereich zusammen.
     * Mobile lassen wir dessen Kinder direkt am Header-Flex teilnehmen,
     * damit die Navigation dazwischen einsortiert werden kann.
     */
    .top-header-right {
        display: contents !important;
    }

    /* 1. Logo */
    .top-header-logo {
        order: 1;
        flex: 0 0 100%;
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-bottom: 3px;
    }

    /* 2. Hauptnavigation */
    .top-nav {
        order: 2;
        flex: 0 0 100%;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px 6px;
    }

    .top-nav-link {
        padding: 7px 9px;
        font-size: 15px;
    }

    /* 3. Sprachwahl */
    .top-header-language {
        order: 3;
        flex: 0 0 100%;
        justify-content: center !important;
        margin-top: 2px;
    }
}

/* =====================================================
CAD Slideshow
====================================================== */

.cn-cad-ui-showcase {
    max-width: 1180px;
    margin: 72px auto;
    padding: 0 24px;
}

.cn-cad-ui-showcase-head {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
}

.cn-cad-ui-showcase-head h2 {
    margin: 0 0 16px;
}

.cn-cad-ui-showcase-head p {
    margin: 0;
}

.cn-cad-ui-stage {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
}

.cn-cad-ui-slides {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #151515;
    
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.cn-cad-ui-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: translateX(18px) scale(1.01);
    animation: cn-cad-ui-cycle 15s infinite;
}

.cn-cad-ui-slide:nth-child(1) {
    animation-delay: 0s;
}

.cn-cad-ui-slide:nth-child(2) {
    animation-delay: 3s;
}

.cn-cad-ui-slide:nth-child(3) {
    animation-delay: 6s;
}

.cn-cad-ui-slide:nth-child(4) {
    animation-delay: 9s;
}

.cn-cad-ui-slide:nth-child(5) {
    animation-delay: 12s;
}

.cn-cad-ui-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.cn-cad-ui-slide figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 8px 12px;
    background: rgba(21, 21, 21, 0.82);
    border: 1px solid rgba(255, 161, 46, 0.45);
    color: #ffa12e;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.cn-cad-ui-stage:hover .cn-cad-ui-slide,
.cn-cad-ui-stage:hover .cn-cad-ui-dots span {
    animation-play-state: paused;
}

.cn-cad-ui-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.cn-cad-ui-dots span {
    width: 32px;
    height: 3px;
    background: #ddd;
    opacity: 0.55;
    animation: cn-cad-ui-dot-cycle 15s infinite;
}

.cn-cad-ui-dots span:nth-child(1) {
    animation-delay: 0s;
}

.cn-cad-ui-dots span:nth-child(2) {
    animation-delay: 3s;
}

.cn-cad-ui-dots span:nth-child(3) {
    animation-delay: 6s;
}

.cn-cad-ui-dots span:nth-child(4) {
    animation-delay: 9s;
}

.cn-cad-ui-dots span:nth-child(5) {
    animation-delay: 12s;
}

@keyframes cn-cad-ui-cycle {
    0% {
        opacity: 0;
        transform: translateX(18px) scale(1.01);
        z-index: 1;
    }

    5% {
        opacity: 1;
        transform: translateX(0) scale(1);
        z-index: 2;
    }

    18% {
        opacity: 1;
        transform: translateX(0) scale(1);
        z-index: 2;
    }

    23% {
        opacity: 0;
        transform: translateX(-18px) scale(0.99);
        z-index: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-18px) scale(0.99);
        z-index: 1;
    }
}

@keyframes cn-cad-ui-dot-cycle {
    0% {
        background: #ddd;
        opacity: 0.45;
    }

    5% {
        background: #ffa12e;
        opacity: 1;
    }

    18% {
        background: #ffa12e;
        opacity: 1;
    }

    23% {
        background: #ddd;
        opacity: 0.45;
    }

    100% {
        background: #ddd;
        opacity: 0.45;
    }
}

@media (max-width: 760px) {
    .cn-cad-ui-showcase {
        margin: 52px auto;
        padding: 0 18px;
    }

    .cn-cad-ui-showcase-head {
        margin-bottom: 24px;
        text-align: left;
    }

    .cn-cad-ui-slides {
        aspect-ratio: 4 / 3;
    }

    .cn-cad-ui-slide figcaption {
        left: 12px;
        bottom: 12px;
        font-size: 11px;
    }

    .cn-cad-ui-dots span {
        width: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cn-cad-ui-slide,
    .cn-cad-ui-dots span {
        animation: none;
    }

    .cn-cad-ui-slide:first-child {
        opacity: 1;
        transform: none;
        position: relative;
    }

    .cn-cad-ui-slide:not(:first-child) {
        display: none;
    }

    .cn-cad-ui-dots {
        display: none;
    }
}




/* =====================================================
RENDER MANAGER MOCKUP
====================================================== */

.cn-render-manager-mockup {
    overflow: hidden;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    background: #151515;
    border: 1px solid #2a2a2a;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    color: #e8e8e8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cn-render-manager-screen {
    width: 100%;
    margin: 34px auto 36px;
}

.cn-render-manager-screen .cn-render-manager-mockup {
    max-width: 1040px;
}


.cn-rm-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: #1d1d1d;
    border-bottom: 1px solid #2d2d2d;
}

.cn-rm-app {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
}

.cn-rm-sub {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 300;
    color: #aaa;
}

.cn-rm-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #cfcfcf;
    white-space: nowrap;
}

.cn-rm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffa12e;
    box-shadow: 0 0 0 4px rgba(255, 161, 46, 0.14);
}

.cn-rm-layout {
    display: grid;
    grid-template-columns: 145px 1fr;
    min-height: 350px;
}

.cn-rm-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 12px;
    background: #181818;
    border-right: 1px solid #292929;
}

.cn-rm-sidebar span {
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 300;
    color: #aaa;
}

.cn-rm-sidebar .is-active {
    background: #242424;
    color: #fff;
    border-left: 3px solid #ffa12e;
}

.cn-rm-main {
    padding: 20px;
}

.cn-rm-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.cn-rm-kpis div {
    padding: 14px;
    background: #202020;
    border: 1px solid #303030;
}

.cn-rm-kpis strong {
    display: block;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}

.cn-rm-kpis span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 300;
    color: #aaa;
}

.cn-rm-table {
    border: 1px solid #303030;
    background: #1b1b1b;
}

.cn-rm-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.9fr 1.1fr 0.8fr;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #2b2b2b;
    font-size: 12px;
    font-weight: 300;
    color: #ddd;
}

.cn-rm-row:last-child {
    border-bottom: 0;
}

.cn-rm-head {
    background: #222;
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cn-rm-badge {
    display: inline-flex;
    justify-content: center;
    padding: 4px 8px;
    font-size: 11px;
    line-height: 1;
    border: 1px solid #444;
    color: #ccc;
}

.cn-rm-badge.is-rendering {
    border-color: rgba(255, 161, 46, 0.7);
    color: #ffa12e;
}

.cn-rm-badge.is-queued {
    color: #bbb;
}

.cn-rm-badge.is-done {
    color: #e8e8e8;
    opacity: 0.65;
}

.cn-rm-row i {
    display: block;
    position: relative;
    height: 7px;
    background: #303030;
    overflow: hidden;
}

.cn-rm-row i::before {
    content: "";
    display: block;
    width: var(--p);
    height: 100%;
    background: #ffa12e;
}

.cn-render-manager-caption {
    display: block;
    max-width: 1040px;
    margin: 10px auto 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.35;
    color: #888;
    text-align: center;
}


@media (max-width: 760px) {
    .cn-rm-layout {
        grid-template-columns: 1fr;
    }

    .cn-rm-sidebar {
        display: none;
    }

    .cn-rm-kpis {
        grid-template-columns: 1fr;
    }

    .cn-rm-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .cn-rm-head {
        display: none;
    }
}

/* =====================================================
ON-PREM KI MOCKUP
====================================================== */

.cn-ai-webui-mockup {
    overflow: hidden;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    background: #151515;
    border: 1px solid #2a2a2a;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    color: #e8e8e8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.cn-ai-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: #1d1d1d;
    border-bottom: 1px solid #2d2d2d;
}

.cn-ai-app {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
}

.cn-ai-sub {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 300;
    color: #aaa;
}

.cn-ai-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #cfcfcf;
    white-space: nowrap;
}

.cn-ai-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #20c76a;
    box-shadow: 0 0 0 4px rgba(32, 199, 106, 0.14);
}

.cn-ai-layout {
    display: grid;
    grid-template-columns: 155px 1fr;
    min-height: 560px;
}

.cn-ai-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 12px;
    background: #181818;
    border-right: 1px solid #292929;
}

.cn-ai-sidebar span {
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 300;
    color: #aaa;
}

.cn-ai-sidebar .is-active {
    background: #242424;
    color: #fff;
    border-left: 3px solid #ffa12e;
}

.cn-ai-main {
    padding: 20px;
}

.cn-ai-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.cn-ai-kpis div {
    padding: 14px;
    background: #202020;
    border: 1px solid #303030;
}

.cn-ai-kpis strong {
    display: block;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}

.cn-ai-kpis span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 300;
    color: #aaa;
}

.cn-ai-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.85fr);
    gap: 14px;
    margin-bottom: 14px;
}

.cn-ai-panel {
    background: #1b1b1b;
    border: 1px solid #303030;
}

.cn-ai-prompt-panel {
    padding: 16px;
}

.cn-ai-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.cn-ai-panel-head h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.cn-ai-panel-head span {
    font-size: 11px;
    font-weight: 300;
    color: #999;
}

.cn-ai-prompt-box {
    min-height: 118px;
    padding: 14px;
    background: #202020;
    border: 1px solid #333;
}

.cn-ai-prompt-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
    color: #e6e6e6;
}

.cn-ai-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.cn-ai-actions button {
    flex: 1;
    padding: 10px 12px;
    background: #202020;
    border: 1px solid #333;
    color: #ddd;
    font-size: 12px;
    font-weight: 300;
    font-family: inherit;
}

.cn-ai-actions .cn-ai-button-primary {
    background: #ffa12e;
    border-color: #ffa12e;
    color: #111;
    font-weight: 600;
}

.cn-ai-response {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #303030;
}

.cn-ai-response-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
}

.cn-ai-response-head span {
    color: #fff;
    font-weight: 600;
}

.cn-ai-response-head strong {
    font-size: 11px;
    font-weight: 300;
    color: #20c76a;
}

.cn-ai-result {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid #292929;
}

.cn-ai-result:last-child {
    border-bottom: 0;
}

.cn-ai-result b {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: #ffa12e;
    color: #111;
    font-size: 12px;
    font-weight: 700;
}

.cn-ai-result p {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    color: #ddd;
}

.cn-ai-sidepanels {
    display: grid;
    gap: 14px;
}

.cn-ai-sidepanels .cn-ai-panel {
    padding: 16px;
}

.cn-ai-badge {
    display: inline-flex;
    justify-content: center;
    padding: 4px 8px;
    font-size: 11px !important;
    line-height: 1;
    border: 1px solid rgba(255, 161, 46, 0.7);
    color: #ffa12e !important;
}

.cn-ai-badge.is-secure {
    border-color: rgba(32, 199, 106, 0.7);
    color: #20c76a !important;
}

.cn-ai-model strong {
    display: block;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
}

.cn-ai-model span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.35;
    color: #aaa;
}

.cn-ai-load {
    display: grid;
    gap: 12px;
}

.cn-ai-load div {
    display: grid;
    grid-template-columns: 42px 1fr 38px;
    gap: 9px;
    align-items: center;
    font-size: 11px;
    color: #aaa;
}

.cn-ai-load i {
    display: block;
    position: relative;
    height: 7px;
    background: #303030;
    overflow: hidden;
}

.cn-ai-load i::before {
    content: "";
    display: block;
    width: var(--p);
    height: 100%;
    background: #ffa12e;
}

.cn-ai-load b {
    font-weight: 300;
    text-align: right;
    color: #ddd;
}

.cn-ai-table {
    border: 1px solid #303030;
    background: #1b1b1b;
}

.cn-ai-row {
    display: grid;
    grid-template-columns: 1.7fr 0.7fr 0.8fr 0.9fr;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #2b2b2b;
    font-size: 12px;
    font-weight: 300;
    color: #ddd;
}

.cn-ai-row:last-child {
    border-bottom: 0;
}

.cn-ai-head {
    background: #222;
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 900px) {
    .cn-ai-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .cn-ai-layout {
        grid-template-columns: 1fr;
    }

    .cn-ai-sidebar {
        display: none;
    }

    .cn-ai-kpis {
        grid-template-columns: 1fr;
    }

    .cn-ai-actions {
        flex-direction: column;
    }

    .cn-ai-row {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .cn-ai-head {
        display: none;
    }
}


/* =====================================================
   ANSWER QUALITY VISUALS
====================================================== */

.cn-ai-answer-quality::after {
    content: "";
    display: block;
    clear: both;
}



.cn-ai-quality-viz {
    float: right;
    width: min(100%, 430px);
    margin: 4px 0 28px 38px;
}

.cn-ai-viz-box {
    margin: 0 0 18px;
    padding: 20px 20px 18px;
    border: 1px solid #2f2f2f;
    background: #080808;
    color: #fff;
}

.cn-ai-viz-box h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
}

.cn-ai-viz-row {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) 54px;
    gap: 10px;
    align-items: center;
    margin-bottom: 11px;
}

.cn-ai-viz-row > span {
    min-width: 0;
    color: #f2f2f2;
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.cn-ai-viz-row em {
    color: #cfcfcf;
    font-size: 12px;
    line-height: 1.25;
    font-style: normal;
    text-align: right;
    white-space: nowrap;
}

.cn-ai-viz-track {
    height: 12px;
    border: 1px solid #343434;
    background: #171717;
    overflow: hidden;
}

.cn-ai-viz-track i {
    display: block;
    width: var(--w);
    height: 100%;
    background: #ffa12e;
}

.cn-ai-viz-badge {
    display: inline-flex;
    width: fit-content;
    margin-top: 5px;
    padding: 3px 7px;
    border: 1px solid rgba(255, 161, 46, .65);
    color: #ffa12e;
    background: rgba(255, 161, 46, .10);
    font-size: 10px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cn-ai-viz-note {
    margin: 14px 0 0;
    color: #bdbdbd;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .cn-ai-quality-viz {
        float: none;
        width: 100%;
        margin: 22px 0 26px;
    }
}

@media (max-width: 560px) {
    .cn-ai-viz-box {
        padding: 18px 16px 16px;
    }

    .cn-ai-viz-row {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 14px;
    }

    .cn-ai-viz-row em {
        text-align: left;
    }
}



.cn-ai-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.cn-ai-reason-card {
    position: relative;
    padding: 22px 24px 22px 52px;
    border: 1px solid #dcdcdc;
    background: #fff;
}

.cn-ai-reason-card--wide {
    grid-column: 1 / -1;
}

.cn-ai-reason-card::before {
    content: "\2713";
    position: absolute;
    left: 24px;
    top: 24px;
    color: #ffa12e;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
}

.cn-ai-reason-card h3 {
    margin: 0 0 10px;
    color: #3f3f3f;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
}

.cn-ai-reason-card p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.65;
    hyphens: auto;
    text-align: justify;
}

@media (max-width: 780px) {
    .cn-ai-reasons-grid {
        grid-template-columns: 1fr;
    }

    .cn-ai-reason-card--wide {
        grid-column: auto;
    }
}

.cn-ai-product-bars {
    display: grid;
    /*gap: 10px;*/
    margin-top: 5px;
    margin-bottom: 5px;
}

.cn-ai-product-bar {
    display: grid;
    grid-template-columns: var(--left, 18%) var(--bar, 58%) var(--right, 24%);
    /*gap: 10px;*/
    align-items: center;
}

.cn-ai-product-bar span,
.cn-ai-product-bar em {
    color: #333;
    font-size: 15px;
    line-height: 1.2;
    font-style: normal;
}

.cn-ai-product-bar span {
    /*font-weight: 600;*/
    overflow-wrap: anywhere;
}

.cn-ai-product-bar em {
    /*text-align: right;*/
    white-space: nowrap;
}

.cn-ai-product-bar-track {
    height: 10px;
    border: 1px solid #ddd;
    background: transparent;
    overflow: hidden;
    margin-right: 10px;
}

.cn-ai-product-bar-track i {
    display: block;
    width: var(--w);
    height: 100%;
    background: #ffa12e;
}





.cn-ai-context-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 20px;
}

.cn-ai-context-flow span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid #dcdcdc;
    background: #fff;
    color: #444;
    font-size: 17px;
    line-height: 1.2;
}

.cn-ai-context-flow span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 7px;
    background: #ffa12e;
}

.cn-ai-model-disclaimer {
    margin-top: 18px;
    color: #777;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .cn-ai-quality-viz {
        float: none;
        width: 100%;
        margin: 22px 0 26px;
    }
}

@media (max-width: 560px) {
    .cn-ai-viz-box {
        padding: 18px 16px 16px;
    }

    .cn-ai-viz-axis {
        display: none;
    }

    .cn-ai-viz-row {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 14px;
    }

    .cn-ai-viz-row em {
        text-align: left;
    }
}




/* =====================================================
SELECT CARDS AS CONNECTED TABS
Modifier:
.cn-group--select-tabs
.cn-select-cards--tabs
====================================================== */

/* -----------------------------------------------------
GROUP: remove outer position box
------------------------------------------------------ */

.cn-group.cn-group--select-tabs {
border: 0 !important;
background: transparent !important;
padding: 0 !important;
box-shadow: none !important;
}

.cn-group.cn-group--select-tabs .cn-group-head {
margin-bottom: 18px;
}

/* -----------------------------------------------------
TAB WRAPPER
------------------------------------------------------ */

.cn-group--select-tabs .cn-select-cards.cn-select-cards--tabs {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
gap: 0;
align-items: stretch;
}

/* -----------------------------------------------------
TAB CARDS
------------------------------------------------------ */

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card {
order: 1;
position: relative;
display: flex;
flex-direction: column;
margin: 0;
padding: 18px 20px;

border: 1px solid #ddd !important;
border-right-width: 0 !important;

background: #f8f8f8;
box-shadow: none;
transform: none;
cursor: pointer;
z-index: 1;

transition:
    border-color 0.18s ease,
    background-color 0.18s ease;


}

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card:last-of-type {
border-right-width: 1px !important;
}

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card:hover {
background: #fff;
border-color: #cfcfcf !important;
transform: none;
}

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card input {
position: absolute;
opacity: 0;
pointer-events: none;
}

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card.is-selected,
.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card:has(input:checked) {
border-color: #ffa12e !important;
border-bottom-color: #fff !important;
border-right-width: 1px !important;
background: #fff;
box-shadow: none;
z-index: 3;
}



/* -----------------------------------------------------
CARD CONTENT
------------------------------------------------------ */

.cn-group--select-tabs .cn-select-card-content {
display: flex;
flex-direction: column;
flex: 1;
min-width: 0;
}

.cn-group--select-tabs .cn-select-card-content h3 {
margin: 0;
font-size: clamp(1.25rem, 1.9vw, 1.7rem);
font-weight: 300;
line-height: 1.08;
letter-spacing: -0.02em;
color: #222;
}

.cn-group--select-tabs .cn-select-card-content p {
margin: 0 0 8px;
font-size: 14px;
font-weight: 300;
line-height: 1.35;
color: #444;
}

.cn-group--select-tabs .cn-select-card-content p:last-child {
margin-bottom: 0;
}



/* -----------------------------------------------------
PRICE LABEL
------------------------------------------------------ */

.cn-group--select-tabs .cn-select-card .cn-option-price {
display: block;
margin-top: 12px;
padding-top: 10px;
border-top: 1px solid #eee;
font-size: 13px;
font-weight: 300;
line-height: 1.35;
color: #777;
}

/* -----------------------------------------------------
CONNECTED FEATURE BOX
------------------------------------------------------ */

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card-feature {
order: 2;
grid-column: 1 / -1;

margin-top: -1px;
padding: clamp(22px, 3vw, 34px);

border: 1px solid #ffa12e !important;
background: #fff;
box-shadow: none;
z-index: 2;


}

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card-feature.is-hidden {
display: none !important;
}

/* -----------------------------------------------------
FEATURE CONTENT
------------------------------------------------------ */

.cn-group--select-tabs .cn-select-card-feature h3 {
margin: 0 0 10px;
font-size: clamp(1.25rem, 2.2vw, 1.9rem);
font-weight: 300;
line-height: 1.12;
letter-spacing: -0.02em;
text-transform: none;
color: #222;
}

.cn-group--select-tabs .cn-select-card-feature h4 {
margin: 18px 0 8px;
font-size: 0.95rem;
font-weight: 600;
line-height: 1.2;
text-transform: uppercase;
color: #222;
}

.cn-group--select-tabs .cn-select-card-feature p {
margin: 0 0 12px;
max-width: 880px;
font-size: clamp(16px, 1.45vw, 18px);
font-weight: 300;
line-height: 1.45;
color: #333;
text-align: left;
hyphens: auto;
}

.cn-group--select-tabs .cn-select-card-feature p:last-child {
margin-bottom: 0;
}

.cn-group--select-tabs .cn-select-card-feature ul {
margin: 14px 0 0;
padding: 0;
list-style: none;
}

.cn-group--select-tabs .cn-select-card-feature li {
position: relative;
margin: 0 0 7px;
padding-left: 17px;
font-size: 15px;
font-weight: 300;
line-height: 1.4;
color: #444;
}

.cn-group--select-tabs .cn-select-card-feature li::before {
content: "";
position: absolute;
left: 0;
top: 0.62em;
width: 6px;
height: 6px;
border-radius: 50%;
background: #ffa12e;
}

/* -----------------------------------------------------
OPTIONAL COMPACT FEATURE LAYOUT
usable inside feature_html / feature_html_en
------------------------------------------------------ */

.cn-select-feature-compact {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
gap: clamp(22px, 3vw, 38px);
align-items: start;
}

.cn-select-feature-kicker {
margin: 0 0 8px;
font-size: 12px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffa12e;
}

.cn-select-feature-facts {
display: grid;
gap: 1px;
border: 1px solid #ddd;
background: #ddd;
}

.cn-select-feature-facts > div {
padding: 14px 16px;
background: #f8f8f8;
}

.cn-select-feature-facts strong {
display: block;
margin: 0 0 6px;
font-size: 12px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffa12e;
}

.cn-select-feature-facts span {
display: block;
font-size: 14px;
font-weight: 300;
line-height: 1.35;
color: #333;
}

/* -----------------------------------------------------
MOBILE
------------------------------------------------------ */

@media (max-width: 760px) {
.cn-group--select-tabs .cn-select-cards.cn-select-cards--tabs {
grid-template-columns: 1fr;
gap: 10px;
}


.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card {
    border-right-width: 1px !important;
}

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card.is-selected,
.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card:has(input:checked) {
    border-bottom-color: #ffa12e !important;
}

.cn-group--select-tabs .cn-select-cards--tabs .cn-select-card-feature {
    margin-top: 0;
}

.cn-select-feature-compact {
    grid-template-columns: 1fr;
}


}

/* =====================================================
SELECT CARD: IMAGE + NAME ONLY
====================================================== */

.cn-group--select-tabs .cn-select-card {
justify-content: center;
text-align: center;
}

.cn-group--select-tabs .cn-select-card-media {
    display: flex;
    align-items: center;
    justify-content: center;  
    
    width: 100%;
    aspect-ratio: 1 / 1;
    
    max-width: 210px;
    margin: 0 auto 14px;
}

.cn-group--select-tabs .cn-select-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    
    object-fit: contain;
}


.cn-group--select-tabs .cn-select-card-content h3 {
margin: 0;
font-size: clamp(1.05rem, 1.45vw, 1.35rem);
font-weight: 300;
line-height: 1.08;
letter-spacing: -0.02em;
text-align: center;
color: #222;
}

.cn-group--select-tabs .cn-select-card .cn-option-price {
display: none;
}

/* =====================================================
FEATURE SECTION: COMPACT INTRO + DETAILS
====================================================== */

.cn-select-feature-intro {
max-width: 980px;
}

.cn-select-feature-kicker {
margin: 0 0 8px;
font-size: 12px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffa12e;
}

.cn-select-feature-intro h3 {
margin: 0 0 10px;
font-size: clamp(1.25rem, 2.2vw, 1.9rem);
font-weight: 300;
line-height: 1.12;
letter-spacing: -0.02em;
text-transform: none;
color: #222;
}

.cn-select-feature-intro > p {
margin: 0;
max-width: 860px;
font-size: clamp(16px, 1.45vw, 18px);
font-weight: 300;
line-height: 1.45;
color: #333;
text-align: left;
}

/* Details / Expand */

.cn-select-feature-more {
margin-top: 16px;
}

.cn-select-feature-more summary {
list-style: none;
cursor: pointer;

display: inline-flex;
align-items: center;
gap: 0.45rem;

padding: 0.22rem 0.58rem;

border: 1px solid #ffa12e;
background: #fff;

color: #ffa12e;
font-size: 14px;
font-weight: 500;
line-height: 1.25;

user-select: none;

}

.cn-select-feature-more summary:hover {
background: #ffa12e;
color: #fff;
}

.cn-select-feature-more summary::-webkit-details-marker {
display: none;
}

.cn-select-feature-more summary::before {
content: "";
width: 0.38rem;
height: 0.38rem;

border-right: 1px solid currentColor;
border-bottom: 1px solid currentColor;

transform: rotate(45deg);
transition: transform 0.16s ease;

}

.cn-select-feature-more[open] summary::before {
transform: rotate(225deg);
}

.cn-select-feature-more-content {
margin-top: 18px;
}

.cn-select-feature-more-content p {
margin: 18px 0 0;
max-width: 860px;
font-size: 16px;
font-weight: 300;
line-height: 1.5;
color: #333;
text-align: left;
}

/* Facts inside expanded part */

.cn-select-feature-facts {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1px;
border: 1px solid #ddd;
background: #ddd;
}

.cn-select-feature-facts > div {
padding: 14px 16px;
background: #f8f8f8;
}

.cn-select-feature-facts strong {
display: block;
margin: 0 0 6px;
font-size: 12px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffa12e;
}

.cn-select-feature-facts span {
display: block;
font-size: 14px;
font-weight: 300;
line-height: 1.35;
color: #333;
}

@media (max-width: 760px) {
.cn-select-feature-facts {
grid-template-columns: 1fr;
}

.cn-group--select-tabs .cn-select-card-media {
    min-height: 90px;
}

}


.cn-group--select-tabs .cn-select-card-selected-label {
    display: block;

    margin-top: 6px;

    font-size: 15px;
    font-weight: 300;
    line-height: 1.2;

    color: #ffa12e;

    opacity: 0;
    transition: opacity 0.14s ease;
}

.cn-group--select-tabs .cn-select-card.is-selected .cn-select-card-selected-label,
.cn-group--select-tabs .cn-select-card:has(input:checked) .cn-select-card-selected-label {
    opacity: 1;
}










/* Wrapper = die ganze Box */
.config-select{
  width: 100%;
  background: #fff;
  border: 1px solid #dcdcdc;
  /* kein radius laut deinem Wunsch */
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  position: relative;
  font-size: 15px;
}

/* Trigger = obere Zeile */
.config-select-trigger{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 7px 12px;
  background:#fff;
  cursor:pointer;
  user-select:text; /* wichtig für Copy-Paste */
}

.config-select-value{
  flex: 1 1 auto;
  min-width:0;
}

.config-select-arrow{
  flex: 0 0 auto;
  opacity:.6;
}

/* Panel = Teil der Box, IM Flow */
.config-select-panel{
  display:block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 160ms cubic-bezier(.4,0,.2,1),
    opacity 120ms linear;
}

.config-select.is-open .config-select-panel{
  max-height: 520px; /* großzügig */
  opacity: 1;
  padding: 3px 0;             /* open state padding */
}


/* Optionen */
.config-select-option{
  display:flex;
  align-items: center;
  gap:12px;
  padding: 10px 14px;
  cursor:pointer;
}

.opt-name {
  flex: 1 1 auto;
  line-height: 1.2;
}

.config-select-options{
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.config-select-option:hover{
  background:#f7f7f7;
}

/* Linke Seite (Icon + Text) */
.opt-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

/* Radio Kreis */
.opt-radio {
  width: 16px;
  height: 16px;
  border: 1.5px solid #999;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color .15s ease;
}

/* Innerer Punkt */
.opt-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #ffa12e;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .15s ease;
}

/* Hover */
.config-select-option:hover .opt-radio {
  border-color: #ffa12e;
}

/* Ausgewählt */
.config-select-option.is-selected .opt-radio {
  border-color: #ffa12e;
}

.config-select-option.is-selected .opt-radio::after {
  opacity: 1;
}

/* Indicator */
.opt-indicator {
    width: 14px;
    height: 14px;
    border: 1px solid #bbb;
    display: inline-block;
    flex: 0 0 14px;
    position: relative;
}

/* Inner Fill */
.opt-indicator::after {
    content: "";
    position: absolute;
    inset: 2px;            /* 1px padding zum Border */
    background: transparent;
}

/* Hover */
.config-select-option:hover .opt-indicator {
    border-color: #ffa12e;
}

/* Selected */
.config-select-option[aria-selected="true"] .opt-indicator {
    border-color: #ffa12e;
}

.config-select-option[aria-selected="true"] .opt-indicator::after {
    background: #ffa12e;
}



/* Preis rechts */
.opt-price {
  font-weight: 300;
  color: #555;
  margin-left: auto;
}

.opt-price.is-selected {
  font-weight: 300;
  color: #ffa12e;
}

.opt-price.is-up,
.opt-price.is-down {
  color: #555; /* neutral */
}

.cn-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #ffa12e;
}

/* Native Radio ausblenden */
.cn-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 1px solid #bbb;
    border-radius: 50%;
    position: relative;
    flex: 0 0 14px;
    cursor: pointer;
}

/* Hover */
.cn-option:hover input[type="radio"] {
    border-color: #ffa12e;
}

/* Checked */
.cn-option input[type="radio"]:checked {
    border-color: #ffa12e;
}

/* Inner Dot */
.cn-option input[type="radio"]::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: transparent;
    border-radius: 50%;
}

.cn-option input[type="radio"]:checked::after {
    background: #ffa12e;
}



/* =========================================
   CADnetwork Form System (neutral)
========================================= */

.form-card {
    margin-top: 28px;
    padding: 28px 30px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    background: #fff;
}

.form-title {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: -0.4px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 480px){
.form-title {
    font-size: 20px;
    }
}

.form-subtitle {
    font-size: 16px;
    color: #6f6f6f;
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 980px) {
    .form-grid.two {
        grid-template-columns: 1fr 1fr;
        column-gap: 14px;
    }
}

.form-span-2 { grid-column: 1 / -1; }
.form-span-1 { grid-column: auto; }

.form-field{
  position: relative;
  }

/* Base Control (Input/Select/Textarea) */
.form-control{
  width: 100%;
  height: 52px;
  box-sizing: border-box;

  padding: 16px 12px 6px;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  background: #fff;

  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;

  outline: none;
}

.form-control:hover{
  border-color: #ffa12e;
}

.form-control:focus{
  border-color: #ffa12e;
  }

/* Floating label */
.form-label{
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;

  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #777;
  opacity: .85;

  transition: all 140ms cubic-bezier(.4,0,.2,1);
}

/* Float on focus or filled (inputs) */
.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label{
  top: 2px;
  transform: translateY(0);
  font-size: 12px;
  color: #666;
}

/* Select: float once valid (required + chosen) */
select.form-control:valid + .form-label{
  top: 6px;
  transform: translateY(0);
  font-size: 12px;
  color: #666;
}

/* Invalid state */
.form-field.is-invalid .form-control{
  border-color: #ffa12e;
  box-shadow: 0 0 0 3px rgba(255,161,46,0.1);
}

.is-invalid .input,
.is-invalid .select {
    border-color: #ffa12e;
    box-shadow: 0 0 0 3px rgba(255,161,46,0.1);
}

.error-text {
    font-size: 14px;
    color: #ffa12e;
    margin-top: 6px;
}

.form-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #6f6f6f;
}

.button-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    box-sizing: border-box;

    padding: 10px;
    border-radius: 0px;

    border: 1px solid #ffa12e;
    background: #ffa12e;
    color: #fff;
    
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.18s ease;
    margin-bottom: 5px;
}

.button-primary:hover {
    background: #fff;
    color: #ffa12e;
}

.form-note {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6f6f6f;
    text-align:center;
}
    
    
    
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 640px;
    border-radius: 0;
    padding: 40px 40px 36px 40px;
    position: relative;
    animation: fadeIn .15s ease-out;
}

@keyframes fadeIn {
    from { opacity:0; transform: translateY(8px); }
    to   { opacity:1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 16px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}


/* =========================================
   Gesamtpreis Rightbar
========================================= */

.rightbar-sticky{
    position: sticky;
    top: 16px;
    z-index: 5;
}
.price-card {
    margin-top: 50px;
    background: #ebebeb;
    border-radius: 0;
    padding: 22px 20px;
    position: static;
    top: 20px;
    box-shadow: 
          0 1px 2px rgba(0,0,0,0.04),
          0 8px 24px rgba(0,0,0,0.06),
          0 16px 48px rgba(0,0,0,0.04);
}

.price-title {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
    text-align: center;
}

.price-divider {
    height: 1px;
    background: #ddd;
    margin: 14px 0;
}

.price-row{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-bottom:6px;
  margin-right:6px;
}

.price-card-label{
  flex:1 1 auto;
  min-width:0;
  font-size:12px;
}

/* gemeinsamer Right-Block (Ausrichtung + „Zahl + € bleibt zusammen“) */
.price-amount{
  flex:0 0 auto;
  display:inline-flex;
  align-items:baseline;
  justify-content:flex-end;
  gap:6px;
  white-space:nowrap;
  text-align:right;
}

/* Netto spezifisch */
.price-netto{
  font-weight:700;
  font-size:22px;
  line-height:1;
}

/* Brutto spezifisch */
.price-brutto{
  font-weight:300;   /* oder was du willst */
  font-size:22px;
  line-height:1;
}

/* € immer gleich groß wie die jeweilige Zahl */
.price-cur{
  font-size:inherit;
  font-weight:inherit;
  line-height:1;
}


    
.price-main {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-top: 6px;
}

.price-highlight {
    border: 1px solid #ffa12e;
    padding: 10px;
    text-align: center;
    margin: 14px 0;
    font-size: 14px;
}

.price-note {
    text-align: center;
    font-size: 13px;
    margin-bottom: 4px;
}

.button-green {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    box-sizing: border-box;

    padding: 10px;
    border-radius: 0px;

    border: 1px solid #76b900;
    background: #76b900;
    color: #fff;
    
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.18s ease;
    margin-bottom: 5px;
}

.button-green:hover {
    background: #fff;
    color: #76b900;
}

.button-orange {
    display: block;
    background: #f28c00;
    color: #111;
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.button-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    box-sizing: border-box;

    padding: 10px;
    border-radius: 0px;
    
    border: 1px solid #5bc0de;
    background: #5bc0de;
    color: #fff;
    
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.18s ease;
}

.button-blue:hover {
    background: #fff;
    color: #5bc0de;
}

.btn-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

/* Power/Watt Card */
.power-card{
  padding:30px 30px 24px; /* etwas luftiger */
}

/* Header: Icon + Title zentriert */
.power-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  margin-bottom:10px;
  text-align:center;
}

/* Icon nice size */
.power-icon{
  display:inline-flex;
  width:30px;
  height:30px;
  flex:0 0 30px;
  margin-top: 2px;
}
.power-icon svg{
  width:100%;
  height:100%;
  display:block;
}

/* Titel (oben) */
.energy-title{
  font-size:16px;
  font-weight:600;
  line-height:1.15;
  max-width:220px;      /* optional: erzwingt hübschen Umbruch */
  white-space:normal;
}

/* Wert (groß, light, zentriert, darunter) */
.energy-value{
  font-size:22px;
  font-weight:300;
  text-align:center;
  line-height:1.1;
  letter-spacing:0.2px;
}

/* Mobile: Titel etwas kleiner, Value minimal kleiner */
@media (max-width:480px){
  .energy-title{ font-size:15px; max-width:200px; }
  .energy-value{ font-size:20px; }
  .power-icon{ width:20px; height:20px; flex-basis:20px; }
}


/* =====================================================
PRODUCT PAGE
====================================================== */

.cn-product-page {
width: 100%;
max-width: 1180px;
margin: 0 auto 72px;
}

/* =====================================================
PRODUCT HEADLINE
====================================================== */

.cn-product-headline {
max-width: 900px;
margin: 42px auto 34px;
text-align: center;
}

.cn-product-headline h1 {
margin: 0;
font-size: clamp(2.6rem, 6vw, 5.4rem);
font-weight: 300;
line-height: 0.95;
letter-spacing: -0.045em;
text-transform: none;
}

.cn-product-subline {
margin: 18px auto 0;
max-width: 760px;
font-size: clamp(1.25rem, 2.2vw, 2rem);
font-weight: 300;
line-height: 1.25;
color: #333;
}

/* =====================================================
PRODUCT IMAGE
====================================================== */

.cn-product-stage {
margin: 0 auto 42px;
text-align: center;
}

.cn-product-image {
display: flex;
justify-content: center;
align-items: center;
}

.cn-product-image img {
display: block;
width: min(100%, var(--cn-product-image-width, 520px));
height: auto;
}

/* =====================================================
PRODUCT MAIN AREA
====================================================== */

.cn-product-main {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
gap: clamp(24px, 4vw, 42px);
align-items: stretch;
}

/* =====================================================
PRODUCT TEASER
====================================================== */

.cn-product-teaser {
padding: clamp(28px, 4vw, 44px);
border: 1px solid #ddd;
background: #fff;
}

.cn-product-teaser h2 {
margin: 0 0 18px;
font-size: clamp(1.08rem, 2vw, 1.55rem);
font-weight: 600;
line-height: 1.15;
text-transform: uppercase;
}

.cn-product-teaser p {
margin: 0 0 16px;
font-size: clamp(17px, 1.7vw, 21px);
font-weight: 300;
line-height: 1.48;
color: #333;
text-align: justify;
hyphens: auto;
}

.cn-product-teaser p:last-child {
margin-bottom: 0;
}

/* =====================================================
PRODUCT CONFIG BOX
====================================================== */

.cn-product-config-box {
display: flex;
flex-direction: column;
justify-content: center;
padding: clamp(26px, 3.5vw, 38px);
border: 1px solid #ddd;
background: #f8f8f8;
}

.cn-product-config-eyebrow {
margin: 0 0 10px;
font-size: 12px;
font-weight: 600;
line-height: 1.2;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #ffa12e;
}

.cn-product-config-box h2 {
margin: 0 0 24px;
font-size: clamp(1.1rem, 1.8vw, 1.45rem);
font-weight: 600;
line-height: 1.18;
text-transform: uppercase;
}

.cn-product-config-price {
margin: 0 0 26px;
}

.cn-product-config-price-label {
display: block;
margin-bottom: 4px;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #888;
}

.cn-product-config-price-value {
display: block;
font-size: clamp(2rem, 3.4vw, 3rem);
font-weight: 300;
line-height: 1;
color: #222;
}

.cn-product-config-price-note {
display: block;
margin-top: 8px;
font-size: 13px;
font-weight: 300;
color: #777;
}

.cn-product-config-actions {
display: grid;
gap: 12px;
}

.cn-product-config-actions .cn-button {
width: 100%;
justify-content: center;
text-align: center;
}

/* =====================================================
RESPONSIVE
====================================================== */

@media (max-width: 900px) {
.cn-product-page {
margin-bottom: 54px;
}


.cn-product-main {
    grid-template-columns: 1fr;
}

.cn-product-headline {
    margin-top: 30px;
}

.cn-product-teaser p {
    text-align: left;
}


}




/* =========================================
   Config Footbar (sticky bottom) immer sichtbar


body.has_config_footbar {
    padding-bottom: 80px;
}

/* Wrapper zentriert die gesamte Leiste */
/*.config_footbar-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    justify-content: center;

    z-index: 9998;
}

/* MAX 1600px */
/*.config_footbar {
    width: 100%;
    max-width: 1600px;
    height: 80px;

    background: #f0f0f0;
    border-top: 1px solid #e2e2e2;
    box-shadow: 0 -6px 18px rgba(0,0,0,0.06);

    display: flex;
    align-items: center;
}

/* INNER MAX 1200px */
/*.config_footbar-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 24px;
}


/* ======================================
   Config Footbar sichtbar bei erster Preisänderung
====================================== */

.config_footbar_wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;

  /* hidden state */
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;

  transition: opacity 260ms ease, transform 260ms ease;
}

/* Visible */
.config_footbar_wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Outer frame: max 1600px, centered, still not full width */
.config_footbar_outer {
  max-width: 1600px;
  margin: 0 auto;
  padding: 10px 14px; /* breathing room */
}

/* The bar look */
.config_footbar_inner {
  max-width: 1200px;
  margin: 0 auto;

  background: #f0f0f0;
  border: 1px solid #e2e2e2;
  border-radius: 0;
  box-shadow: 
          0 1px 2px rgba(0,0,0,0.04),
          0 8px 24px rgba(0,0,0,0.06),
          0 16px 48px rgba(0,0,0,0.04);
  box-sizing: border-box;
  padding: 12px 16px;
}

/* Typography */
.config_footbar_text {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: #222;
  line-height: 1.35;
}

.config_footbar_line1 {
  font-size: 16px;
}

.config_footbar_line2 {
  font-size: 13px;
  color: #555;
  margin-top: 2px;
}


/* Footer Layout */
.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 24px 26px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 80px;
  row-gap: 34px;
}

/* Typography */
.footer-title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-text{
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.92;
}

.footer-gap{
  margin-top: 18px;
}

/* Key-Value rows (Kontakt) */
.footer-kv{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-k{
  min-width: 120px;
  opacity: 0.85;
}

/* Link list (Rechtliches) */
.footer-list{
  display: grid;
  gap: 10px;
}

.footer-link{
  color: inherit !important;
  text-decoration: none !important;
  opacity: 0.92;
}

.footer-link:hover{
  text-decoration: underline;
  opacity: 1;
}

/* Bottom line */
.footer-bottom{
  margin-top: 28px;
}

.footer-divider{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 18px;
}

.footer-copy{
  font-size: 13px;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .footer-k{
    min-width: 110px;
  }
}

