/* ==========================================
   BÜRO ERLEDIGT — Virtuelle Assistenz
   Design: Bordeaux / Creme / Beere
   Style konsistent zu heidiswebdesign.de
   ========================================== */

:root {
  --creme: #FAF7F5;
  --creme-dunkel: #F0E9E4;
  --weiss: #FFFFFF;

  --bordeaux: #7E2E4F;
  --bordeaux-dunkel: #5C1F38;
  --bordeaux-hell: #A54573;

  --flieder: #B19CD9;
  --flieder-hell: #E4DCF2;

  --beere: #4A1F3E;
  --beere-hell: #7A3D64;

  --text: #2C1E28;
  --text-hell: #6B5D68;

  --schatten-fein: 0 2px 12px rgba(74, 31, 62, 0.08);
  --schatten-mittel: 0 8px 30px rgba(74, 31, 62, 0.12);
  --schatten-stark: 0 20px 60px rgba(74, 31, 62, 0.18);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 4px;
  --radius-gross: 16px;
  --uebergang: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--creme);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--beere);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p {
  margin-bottom: 1em;
  color: var(--text);
}

a {
  color: var(--bordeaux);
  text-decoration: none;
  transition: color var(--uebergang);
}

a:hover { color: var(--bordeaux-dunkel); }

/* Layout */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-schmal {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.kicker {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--flieder-hell);
  color: var(--beere);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 247, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(74, 31, 62, 0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  color: var(--beere);
  text-decoration: none;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--beere);
  line-height: 1.1;
}

.logo-tag {
  font-size: 0.72rem;
  color: var(--text-hell);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--uebergang);
}

.nav-links a:hover { color: var(--bordeaux); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--beere);
  transition: transform var(--uebergang);
}

/* Hero */
.hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(180deg, var(--flieder-hell) 0%, var(--creme) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero .akzent {
  color: var(--bordeaux);
  font-style: italic;
}

.hero-slogan {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--bordeaux);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--text);
}

.btn-gruppe {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--uebergang);
  text-decoration: none;
}

.btn-primaer {
  background: var(--bordeaux);
  color: var(--creme);
}

.btn-primaer:hover {
  background: var(--bordeaux-dunkel);
  color: var(--creme);
  transform: translateY(-2px);
  box-shadow: var(--schatten-mittel);
}

.btn-sekundaer {
  background: transparent;
  color: var(--bordeaux);
  border-color: var(--bordeaux);
}

.btn-sekundaer:hover {
  background: var(--bordeaux);
  color: var(--creme);
}

/* Vertrauens-Zeile */
.vertrauen-zeile {
  background: var(--weiss);
  padding: 2rem 0;
  border-bottom: 1px solid var(--creme-dunkel);
}

.vertrauen-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.vertrauen-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--beere);
  font-weight: 500;
}

.vertrauen-item svg {
  color: var(--bordeaux);
  flex-shrink: 0;
}

/* Leistungen-Split */
.leistungen-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  background: var(--beere);
  color: var(--creme);
  padding: 3.5rem;
  border-radius: var(--radius-gross);
}

.leistungen-split h2 {
  color: var(--creme);
  font-style: italic;
}

.leistungen-split .akzent {
  color: var(--flieder-hell);
  font-style: italic;
}

.leistungen-liste {
  list-style: none;
  padding: 0;
}

.leistungen-liste li {
  padding: 0.9rem 0 0.9rem 2rem;
  position: relative;
  color: var(--creme);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(250, 247, 245, 0.15);
}

.leistungen-liste li:last-child { border-bottom: 0; }

.leistungen-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flieder-hell);
}

.leistungen-fuss {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--flieder-hell);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

/* System-Section (KI) */
.system-block {
  background: var(--flieder-hell);
  padding: 3.5rem;
  border-radius: var(--radius-gross);
  margin-top: 2rem;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.system-karte {
  background: var(--weiss);
  padding: 1.75rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--bordeaux);
}

.system-karte h4 {
  margin-bottom: 0.5rem;
  color: var(--beere);
}

.system-karte p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.system-fuss {
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--beere);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: center;
}

/* Für-wen-Grid */
.zielgruppe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.zielgruppe-karte {
  background: var(--weiss);
  padding: 2rem;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-fein);
  text-align: center;
  transition: transform var(--uebergang);
}

.zielgruppe-karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-mittel);
}

.zielgruppe-karte h4 {
  color: var(--beere);
  margin-bottom: 0.5rem;
}

.zielgruppe-karte p {
  font-size: 0.95rem;
  color: var(--text-hell);
  margin: 0;
}

/* Preise */
.preise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.preis-karte {
  background: var(--weiss);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-fein);
  text-align: center;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: all var(--uebergang);
}

.preis-karte.hervorgehoben {
  border-color: var(--bordeaux);
  box-shadow: var(--schatten-mittel);
  transform: scale(1.02);
}

.preis-label {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--flieder-hell);
  color: var(--beere);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.preis-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--beere);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.preis-untertitel {
  color: var(--text-hell);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.preis-betrag {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--bordeaux);
  line-height: 1;
  font-weight: 500;
}

.preis-betrag .cent {
  font-size: 1.5rem;
  color: var(--text-hell);
}

.preis-hinweis {
  color: var(--text-hell);
  font-size: 0.85rem;
  margin: 0.5rem 0 1.5rem;
}

.preis-features {
  list-style: none;
  padding: 0;
  text-align: left;
  flex: 1;
  margin-bottom: 1.5rem;
}

.preis-features li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}

.preis-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bordeaux);
  font-weight: 700;
}

.stundensatz-block {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  background: var(--creme-dunkel);
  border-radius: var(--radius-gross);
  text-align: center;
}

.stundensatz-block h4 {
  color: var(--beere);
  margin-bottom: 0.5rem;
}

.stundensatz-betrag {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--bordeaux);
  margin: 0.5rem 0;
  font-weight: 600;
}

.stundensatz-block p {
  color: var(--text-hell);
  font-size: 0.95rem;
  margin: 0;
}

/* Ablauf */
.ablauf-liste {
  max-width: 720px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.25rem;
}

.ablauf-schritt {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--weiss);
  padding: 1.75rem;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-fein);
}

.ablauf-nummer {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--creme);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ablauf-schritt h4 {
  margin-bottom: 0.35rem;
  color: var(--beere);
}

.ablauf-schritt p {
  color: var(--text-hell);
  font-size: 0.95rem;
  margin: 0;
}

/* Plattform-Panel */
.plattform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.plattform-karte {
  background: var(--weiss);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-fein);
  text-align: center;
  color: var(--beere);
  text-decoration: none;
  transition: all var(--uebergang);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.plattform-karte:hover {
  transform: translateY(-3px);
  box-shadow: var(--schatten-mittel);
  color: var(--bordeaux);
}

.plattform-karte.platzhalter {
  opacity: 0.5;
  cursor: default;
}

.plattform-karte.platzhalter:hover {
  transform: none;
  box-shadow: var(--schatten-fein);
}

.plattform-name {
  font-weight: 600;
  font-size: 1rem;
}

.plattform-hinweis {
  font-size: 0.8rem;
  color: var(--text-hell);
  font-style: italic;
}

.plattform-icon {
  width: 40px;
  height: 40px;
  color: var(--bordeaux);
}

/* Kontakt */
.kontakt-block {
  background: var(--bordeaux);
  color: var(--creme);
  padding: 5rem 0;
  text-align: center;
}

.kontakt-block h2 {
  color: var(--creme);
  margin-bottom: 1rem;
}

.kontakt-block p {
  color: var(--flieder-hell);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.formular {
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: left;
  background: var(--weiss);
  padding: 2.5rem;
  border-radius: var(--radius-gross);
  color: var(--text);
}

.form-gruppe {
  margin-bottom: 1.25rem;
}

.form-gruppe label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: var(--beere);
  font-size: 0.95rem;
}

.form-gruppe input,
.form-gruppe select,
.form-gruppe textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--creme-dunkel);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--creme);
  transition: border-color var(--uebergang);
}

.form-gruppe input:focus,
.form-gruppe select:focus,
.form-gruppe textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  background: var(--weiss);
}

.form-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-hell);
}

.form-check input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.form-check label {
  margin: 0;
  font-weight: 400;
  color: var(--text);
}

/* Portrait-Platzhalter */
.portrait-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 720px;
  margin: 2rem auto 0;
  background: var(--weiss);
  padding: 2rem;
  border-radius: var(--radius-gross);
  box-shadow: var(--schatten-fein);
}

.portrait-platzhalter {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--flieder-hell);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beere);
  font-size: 3rem;
  font-family: var(--font-serif);
}

.portrait-text h3 {
  margin-bottom: 0.5rem;
  color: var(--beere);
}

.portrait-text p {
  color: var(--text-hell);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--beere);
  color: var(--flieder-hell);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--creme);
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: var(--flieder-hell);
  font-size: 0.95rem;
}

.footer a:hover { color: var(--creme); }

.footer p {
  color: var(--flieder-hell);
  font-size: 0.95rem;
  margin: 0.35rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 245, 0.15);
  color: var(--flieder-hell);
  font-size: 0.85rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .leistungen-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  .portrait-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portrait-platzhalter {
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--weiss);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--creme-dunkel);
    box-shadow: var(--schatten-fein);
  }

  .nav-links.offen {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 7rem 0 3.5rem;
  }

  .system-block,
  .leistungen-split {
    padding: 2rem 1.5rem;
  }

  .formular {
    padding: 1.5rem;
  }

  .preis-karte.hervorgehoben {
    transform: none;
  }

  .ablauf-schritt {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
}

/* ==========================================
   Chatbot Heidis Helferin
   ========================================== */
.hw-chatbot-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--beere) 100%);
  color: var(--creme);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 7px 22px rgba(74, 31, 62, 0.38);
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: none;
}
.hw-chatbot-toggle svg { width: 38px; height: 38px; }
.hw-chatbot-toggle:hover { transform: scale(1.08); }
.hw-chatbot-toggle.hw-toggle-versteckt { opacity: 0; pointer-events: none; transform: scale(0.8); }
.hw-chatbot-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--flieder);
  color: var(--beere);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--weiss);
}
.hw-chatbot-fenster {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 440px;
  max-width: calc(100vw - 24px);
  height: 680px;
  max-height: calc(100vh - 40px);
  background: var(--weiss);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(74, 31, 62, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hw-chatbot-fenster.hw-offen {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hw-chatbot-header {
  background: linear-gradient(135deg, var(--beere) 0%, var(--bordeaux) 100%);
  color: var(--creme);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hw-chatbot-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; }
.hw-chatbot-status { font-size: 0.75rem; color: var(--flieder-hell); display: flex; align-items: center; gap: 0.4rem; }
.hw-chatbot-status::before {
  content: '';
  width: 8px; height: 8px;
  background: #6ac47f;
  border-radius: 50%;
  display: inline-block;
}
.hw-chatbot-schliessen {
  background: transparent; border: none; color: var(--creme);
  font-size: 1.6rem; cursor: pointer; padding: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.hw-chatbot-schliessen:hover { background: rgba(255,255,255,0.15); }
.hw-chatbot-nachrichten {
  flex: 1; padding: 1rem; overflow-y: auto;
  background: var(--creme);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.hw-msg {
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 88%;
  word-wrap: break-word;
}
.hw-msg-bot {
  background: var(--weiss); color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.hw-msg-user {
  background: var(--bordeaux); color: var(--creme);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.hw-msg-bot a { color: var(--bordeaux); font-weight: 600; }
.hw-chatbot-fragen {
  padding: 0.75rem;
  background: var(--creme-dunkel);
  max-height: 200px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.hw-frage-btn {
  background: var(--weiss);
  color: var(--beere);
  border: 1px solid var(--flieder-hell);
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-align: left;
  transition: all 0.2s;
  display: block;
}
.hw-frage-btn:hover { background: var(--flieder-hell); border-color: var(--bordeaux); }
.hw-chatbot-form {
  display: flex;
  padding: 0.6rem;
  background: var(--weiss);
  border-top: 1px solid var(--creme-dunkel);
  gap: 0.5rem;
}
.hw-chatbot-form input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--creme-dunkel);
  border-radius: 24px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--creme);
  outline: none;
}
.hw-chatbot-form input:focus {
  border-color: var(--bordeaux);
  background: var(--weiss);
  box-shadow: 0 0 0 3px var(--flieder-hell);
}
.hw-chatbot-senden {
  background: var(--bordeaux); color: var(--weiss);
  border: none; width: 38px; height: 38px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.hw-chatbot-senden:hover { background: var(--beere); transform: scale(1.05); }
.hw-typing { display: flex !important; gap: 4px; padding: 1rem !important; width: fit-content; }
.hw-typing span {
  width: 8px; height: 8px;
  background: var(--beere-hell);
  border-radius: 50%;
  animation: hw-blink 1.4s infinite ease-in-out both;
}
.hw-typing span:nth-child(1) { animation-delay: -0.32s; }
.hw-typing span:nth-child(2) { animation-delay: -0.16s; }
@keyframes hw-blink {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.hw-vorschlaege-label {
  font-size: 0.75rem;
  color: var(--text-hell);
  padding: 0 0.25rem 0.3rem;
  font-weight: 500;
}
.hw-chatbot-footer {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  color: var(--text-hell);
  text-align: center;
  background: var(--weiss);
  border-top: 1px solid var(--creme-dunkel);
}
.hw-chatbot-footer a { color: var(--bordeaux); }
@media (max-width: 700px) {
  .hw-chatbot-toggle {
    bottom: 12px; right: 12px;
    width: 52px; height: 52px;
    box-shadow: 0 6px 20px rgba(74, 31, 62, 0.35);
  }
  .hw-chatbot-toggle svg { width: 28px; height: 28px; }
  .hw-chatbot-badge { top: -4px; right: -4px; width: 22px; height: 22px; font-size: 0.85rem; }
}
@media (max-width: 500px) {
  .hw-chatbot-fenster {
    width: calc(100vw - 24px);
    right: 12px; bottom: 12px;
    height: calc(100vh - 100px);
  }
}
