.klaire_d {
  color: #fff !important;
  font-weight: 600;
}

.klaire {
  color: #000 !important;
  font-weight: 600;
}

.klaire strong, .klaire_d strong {
  color: #ce0000 !important;
  font-weight: 800;
}

.reddot {
  color: #ce0000 !important;
  font-weight: 800;
}

/* -------------------------------------- */
/* 1. NEUE REGEL FÜR "Hallo," (Max 90px)
/* -------------------------------------- */
.intro-headline {
  font-weight: 800;
  line-height: 1.3em;
  font-size: clamp(4rem, 10vw, 5.625rem);
}

/* -------------------------------------- */
/* 2. ANGEPASSTE REGEL FÜR "ich bin" (Max 60px)
/* -------------------------------------- */
.intro-subheadline {
  font-weight: 800;
  line-height: 1.3em;
  font-size: clamp(2.5rem, 8vw, 3.75rem);
}

/* -------------------------------------- */
/* 2. BASIS-REGEL FÜR DAS WECHSELWORT
/* -------------------------------------- */
.wechselwort {
  border-right: 2px solid currentColor;
  animation: blink 0.7s steps(1) infinite;
  display: inline-block;
  white-space: nowrap;
  min-height: 1.3em; 
  vertical-align: bottom;
}

/* -------------------------------------- */
/* 3. MOBIL-REGEL FÜR DAS WECHSELWORT
/* -------------------------------------- */
@media (max-width: 1299px) {
  .wechselwort {
    display: block;
    width: fit-content; 
  }
}
@media (max-width: 690px) {
  .wechselwort {
    margin-left: auto;
    margin-right: auto;
  }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Punkt in k.laire bleibt rot */
.wechselwort .dot-red {
  color: #ce0000 !important;
}

/* sichtbarer, dezenter AI-Glow-Effekt */
.ai-highlight {
  display: inline-block;
  animation: glowAI 1.4s ease-out 1 forwards;
}

@keyframes glowAI {
  0% { text-shadow: 0 0 0 rgba(255, 0, 0, 0); color: #ffffff; }
  40% { text-shadow: 0 0 8px rgba(255, 70, 70, 0.8); color: #ffd6d6; }
  100% { text-shadow: 0 0 0 rgba(255, 0, 0, 0); color: #ffffff; }
}

/* Button-Basis */
.cta-bounce {
  transform-origin: center bottom;
  will-change: transform;
  text-shadow: 0 1px 2px rgba(0,0,0,.25), 0 6px 18px rgba(0,0,0,.15);
}

/* Einmalige komplexe Bounce-Animation */
@keyframes cta-bounce-once {
  0% {
    transform: translateY(0) scale(1);
    text-shadow: 0 1px 2px rgba(0,0,0,.25), 0 6px 18px rgba(0,0,0,.15);
    animation-timing-function: cubic-bezier(.22,.7,.33,1);
  }
  18% {
    transform: translateY(-10px) scale(1.06);
    text-shadow: 0 12px 24px rgba(0,0,0,.16), 0 24px 46px rgba(0,0,0,.12);
    animation-timing-function: cubic-bezier(.4,0,.7,.8);
  }
  30% {
    transform: translateY(0) scale(0.992);
    text-shadow: 0 1px 2px rgba(0,0,0,.25), 0 6px 18px rgba(0,0,0,.15);
    animation-timing-function: cubic-bezier(.22,.7,.33,1);
  }
  38% {
    transform: translateY(-4px) scale(1.02);
    text-shadow: 0 7px 16px rgba(0,0,0,.16), 0 14px 28px rgba(0,0,0,.11);
    animation-timing-function: cubic-bezier(.4,0,.7,.85);
  }
  46% {
    transform: translateY(0) scale(0.996);
    text-shadow: 0 1px 2px rgba(0,0,0,.25), 0 6px 18px rgba(0,0,0,.15);
    animation-timing-function: cubic-bezier(.22,.7,.33,1);
  }
  52% {
    transform: translateY(-1.5px) scale(1.008);
    text-shadow: 0 5px 12px rgba(0,0,0,.15), 0 10px 22px rgba(0,0,0,.10);
    animation-timing-function: cubic-bezier(.45,0,.7,.9);
  }
  58%, 100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 1px 2px rgba(0,0,0,.25), 0 6px 18px rgba(0,0,0,.15);
  }
}

/* Klasse, die per JS kurzzeitig hinzugefügt wird */
.cta-bounce.active-bounce {
  animation: cta-bounce-once 5s linear 1;
}

/* -------------------------------------- */
/* HARD RESET – verhindert vererbbare Störungen */
/* -------------------------------------- */
.klaire-usecase *,
.klaire-usecase *::before,
.klaire-usecase *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: normal;
}

/* -------------------------------------- */
/* WRAPPER */
/* -------------------------------------- */
.klaire-usecase {
  /*background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  padding: 1.2rem 1.2rem 1.4rem 1.2rem;
  margin-bottom: 2.2rem;*/
}

/* -------------------------------------- */
/* EINGABEFELD */
/* -------------------------------------- */
.klaire-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5em;
  padding: 1rem 1.4rem;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #ffffff;
  margin-bottom: 1.1rem;
}

.klaire-placeholder {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-right: 1.2rem;
  display: block;
}

.klaire-send {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #e5e5e5;
  color: #666;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .75;
}

/* -------------------------------------- */
/* ANTWORT */
/* -------------------------------------- */
.klaire-antwort {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin: 1.3rem 0;
  text-wrap: pretty;
}

/* -------------------------------------- */
/* NUTZEN-BLOCK */
/* -------------------------------------- */
.klaire-nutzen {
  display: inline-flex !important;
  align-items: top !important;
  background: #f3f3f3;
  padding: .5rem .75rem;
  border-radius: 6px;
  line-height: 1.4em;
  font-size: .8rem;
  font-weight: 500;
  color: #444;
}

.klaire-nutzen i {
  font-size: 1rem;
  color: #4aa35a;
  margin-right: .45rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kbrpricehl {
  font-size: 24px;
  font-weight: 600;
  background: #fff;
  color: #333;
  padding: 2px 15px 3px;
  border-radius: 20px;
}
.kbrpriceusr {
  font-size: 12px;
}
.kbrpriceusr i {
  font-size: 12px !important;
  color: #555 !important;
  margin-right: 2px !important;
}
.kbrprice {
  font-weight: 400;
  font-size: 12px;
}
.kbrprice strong {
  padding: 0 3px 0 0;
  font-weight: 600;
  font-size: 34px;
  color: #000;
}
.kbrpricedesc {
  font-size: 14px;
  line-height: 1.5em;
}

._form_element {
  margin: 15px 0 0 0;
}
._form_element label, ._row legend {
  font-weight: 600;
}
._form_element ._field-wrapper {
  margin: 3px 0 0 0;
}
._form_element ._html-code {
  margin-top: 20px;
  font-size: 0.7em;
}

._form_element ._checkbox-radio {
  margin: 5px 0 0 0;
  font-weight: 400 !important;
}

._form_element ._checkbox-radio span label {
  font-weight: 400;
  font-size: 14px;
}
._form_element label, ._row legend {
  margin-top: 10px;
}
._field-wrapper textarea {
  height: 150px;
}