/* =========================================================
   Eventverleih – Design System
   Ruhig, hochwertig, vertrauenswürdig.
   ========================================================= */

:root {
  /* Farben */
  --bg:        #f7f5f1;   /* warmes Off-White */
  --surface:   #ffffff;
  --ink:       #1b2a2c;   /* dunkles Anthrazit-Petrol */
  --ink-soft:  #45565a;
  --petrol:    #11484c;   /* seriöses Petrol */
  --petrol-dk: #0c3438;
  --accent:    #c8924a;   /* warmer Akzent (Gold/Amber) */
  --accent-dk: #ad7a37;
  --line:      #e4e0d8;
  --ok:        #2f7d62;
  --shadow:    0 1px 2px rgba(16,30,32,.04), 0 8px 24px rgba(16,30,32,.06);

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1140px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.18; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 .6em; }
h3 { font-size: 1.2rem; margin: 0 0 .4em; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
a  { color: var(--petrol); text-decoration: none; }
a:hover { color: var(--accent-dk); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.bg-surface { background: var(--surface); }
.bg-petrol { background: var(--petrol); color: #eaf2f1; }
.bg-petrol h1, .bg-petrol h2, .bg-petrol h3 { color: #fff; }
.bg-petrol p { color: #cfe0de; }
.center { text-align: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  font-weight: 600; color: var(--accent-dk); margin: 0 0 .8em;
}
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(200,146,74,.32); }
.btn--primary:hover { background: var(--accent-dk); color:#fff; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color:#fff; }
.btn--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--petrol); color: var(--petrol); }
.btn--lg { padding: 1.05em 1.9em; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,241,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: .6em; font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -.01em; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--petrol); color: #fff; font-weight: 800; font-size: .95rem;
}
.brand-logo { height: 60px; width: auto; display: block; }
@media (max-width: 880px) { .brand-logo { height: 50px; } }
.site-footer .brand-logo { height: 72px; margin-bottom: 6px; }
.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink-soft); font-weight: 500; font-size: .96rem; }
.nav__links a:hover, .nav__links a.is-active { color: var(--petrol); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display:block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 880px) {
  .nav__links {
    position: absolute; top: 84px; left: 0; right: 0; flex-direction: column;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 14px 22px 22px; gap: 4px; align-items: stretch;
    transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { padding: 8px 0; border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: 0; padding-top: 12px; }
  .nav__cta { margin-left: 0; }
  .nav__toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(12,52,56,.93) 0%, rgba(12,52,56,.80) 46%, rgba(12,52,56,.44) 100%),
    url("../img/hero-festtafel.jpg") center 40% / cover no-repeat;
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(200,146,74,.28), transparent 70%); pointer-events: none;
}
.hero__inner { padding-top: 96px; padding-bottom: 104px; max-width: 720px; position: relative; z-index: 1; }
@media (max-width: 640px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(12,52,56,.88) 0%, rgba(12,52,56,.80) 55%, rgba(12,52,56,.80) 100%),
      url("../img/hero-festtafel.jpg") center / cover no-repeat;
  }
  .hero__inner { padding-top: 60px; padding-bottom: 68px; }
}
.hero h1 { color: #fff; }
.hero p { color: #d4e3e1; font-size: 1.18rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero__trust { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 40px; }
.hero__trust div { font-size: .92rem; color: #bcd2cf; }
.hero__trust b { display: block; font-size: 1.5rem; color: #fff; font-weight: 800; letter-spacing: -.02em; }
.hero__trust-sentence { max-width: 320px; font-size: .98rem !important; line-height: 1.5; }
.hero__trust-sentence b { display: inline; font-size: inherit; font-weight: 800; color: #fff; letter-spacing: normal; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.card--pad-lg { padding: 32px; }
/* Karte mit Foto-Hintergrund: weißer Verlauf von oben links (deckend) nach unten rechts (Foto klar) */
.card--foto {
  background-image: linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 40%, rgba(255,255,255,.55) 68%, rgba(255,255,255,.12) 100%);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.card--foto-lieferung {
  background-image: linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 40%, rgba(255,255,255,.55) 68%, rgba(255,255,255,.12) 100%),
    url("../img/lieferung-transporter.jpg");
}
.card--foto-aufbau {
  background-image: linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 40%, rgba(255,255,255,.55) 68%, rgba(255,255,255,.12) 100%),
    url("../img/aufbau-zelt.jpg");
}
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: #eef4f3; color: var(--petrol); margin-bottom: 14px; font-size: 1.4rem;
}

/* Anlass-Karten (Startseite) – Foto-Hintergrund, Luftballon-Farbe verläuft darüber
   (wie beim Hero: oben links volle Farbe, unten rechts das Foto am klarsten) */
.zweck-card {
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  border: 0; border-top: 2px solid; display: flex; flex-direction: column; color: #fff;
}
.zweck-card h3 { margin: 0 0 8px; color: #fff; }
.zweck-card p { margin: 0 0 20px; font-size: .95rem; color: rgba(255,255,255,.95); }
.zweck-card__spacer { height: 78px; margin-top: auto; }
.zweck-card--rot {
  border-color: #c0584e;
  background: linear-gradient(135deg, rgba(192,88,78,.97) 0%, rgba(192,88,78,.93) 40%, rgba(192,88,78,.5) 68%, rgba(192,88,78,.06) 100%),
    url("../img/anlass-kinder.jpg") center / cover no-repeat;
}
.zweck-card--gold {
  border-color: #c8924a;
  background: linear-gradient(135deg, rgba(200,146,74,.97) 0%, rgba(200,146,74,.93) 40%, rgba(200,146,74,.5) 68%, rgba(200,146,74,.06) 100%),
    url("../img/anlass-hochzeit.jpg") center / cover no-repeat;
}
.zweck-card--gruen {
  border-color: #2f8f86;
  background: linear-gradient(135deg, rgba(47,143,134,.97) 0%, rgba(47,143,134,.93) 40%, rgba(47,143,134,.5) 68%, rgba(47,143,134,.06) 100%),
    url("../img/anlass-firmen.jpg") center / cover no-repeat;
}

/* Produktkarten */
.product { display: flex; flex-direction: column; }
.product__media {
  height: 168px; border-radius: var(--radius-sm); margin-bottom: 18px;
  display: grid; place-items: center; font-size: 3.4rem; overflow: hidden;
  background: linear-gradient(140deg, #eef4f3, #e3ece9);
}
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__price { font-weight: 800; color: var(--petrol); font-size: 1.4rem; }
.product__price span { font-weight: 500; font-size: .92rem; color: var(--ink-soft); }
.product .badge { margin-top: 4px; }
.product .btn { margin-top: auto; }

.badge {
  display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .03em;
  padding: .3em .7em; border-radius: 999px; background: #eef4f3; color: var(--petrol);
}
.badge--accent { background: #f6ecdc; color: var(--accent-dk); }
.badge--busy { background: #fbe3e1; color: #b3261e; }
.badge--soon { background: #fdf3d0; color: #8a6d1a; }
.text-busy { color: #b3261e; font-weight: 700; }

/* ---------- Sortiment: Kategorie-Raster ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; justify-items: center; }
@media (max-width: 640px) { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; } }
.cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.cat-card__label {
  display: block; font-weight: 700; text-decoration: none; color: var(--petrol);
  font-size: 1rem; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .09em;
  text-shadow: 0 1px 2px rgba(27,42,44,.22);
}
.cat-card__media {
  aspect-ratio: 1 / 1; width: 92%; max-width: 230px; border-radius: 22px; border: 1px solid var(--line);
  background: linear-gradient(140deg, #eef4f3, #e3ece9);
  display: grid; place-items: center; font-size: 2.8rem; overflow: hidden;
  box-shadow: 0 2px 6px rgba(16,30,32,.10), 0 10px 26px rgba(16,30,32,.14);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card:hover .cat-card__media { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-section { scroll-margin-top: 100px; }
.cat-section > h2 { margin-top: 8px; }

/* ---------- Preis-Tabelle ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: #f0ede7; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 700; color: var(--petrol); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
/* Rechenbeispiel-Tabelle in der schmalen 2-Spalten-Ansicht (layout-split): nie über den
   Kasten hinausragen – feste Spaltenbreiten, Text bricht um. */
.layout-split .price-table { table-layout: fixed; }
.layout-split .price-table th, .layout-split .price-table td { padding: 12px 14px; overflow-wrap: break-word; }
.layout-split .price-table td:last-child { width: 104px; padding-left: 6px; }
@media (max-width: 620px) {
  .price-table { table-layout: fixed; }
  .price-table th, .price-table td { padding: 12px 12px; overflow-wrap: break-word; }
}

/* ---------- Forms / Wizard ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: .85rem; }
.field.is-disabled { opacity: .5; }
.field.is-disabled label { cursor: not-allowed; }
.input, .select, .textarea {
  width: 100%; min-width: 0; padding: .8em 1em; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: var(--surface); transition: border .15s ease, box-shadow .15s ease;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(17,72,76,.12); }
.textarea { min-height: 110px; resize: vertical; }
.row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.row > * { min-width: 0; }
@media (max-width: 560px) { .row { grid-template-columns: 1fr; } }

.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.stepper button { width: 40px; height: 40px; border: 0; background: var(--surface); font-size: 1.2rem; cursor: pointer; color: var(--petrol); }
.stepper button:hover { background: #f0ede7; }
.stepper input, .stepper select { width: 52px; text-align: center; border: 0; border-left: 1.5px solid var(--line); border-right: 1.5px solid var(--line); height: 40px; font: inherit; font-weight: 700; }
.stepper select { -webkit-appearance: none; appearance: none; background: var(--surface); border-radius: 0; padding: 0; text-align-last: center; color: var(--ink); cursor: pointer; }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper button:disabled:hover { background: var(--surface); }
.stepper input:disabled, .stepper select:disabled { opacity: .5; background: var(--surface); }

.qitem { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.qitem:last-child { border-bottom: 0; }
.qitem--busy .qitem__info b { color: var(--ink-soft); }
.qitem__info b { display: block; }
.qitem__info span { font-size: .9rem; color: var(--ink-soft); }
.qitem__info .badge--busy { margin-top: 4px; }

/* Wizard chrome */
.wizard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.wizard__bar { display: flex; gap: 0; background: #f0ede7; }
.wizard__bar .step {
  flex: 1; text-align: center; padding: 14px 8px; font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  position: relative; border-bottom: 3px solid transparent;
}
.wizard__bar .step.is-active { color: var(--petrol); border-bottom-color: var(--accent); background: var(--surface); }
.wizard__bar .step.is-done { color: var(--ok); }
.wizard__bar .step .num { display:inline-grid; place-items:center; width: 22px; height: 22px; border-radius: 50%; background: #ddd6cb; color: #fff; font-size: .75rem; margin-right: 6px; }
.wizard__bar .step.is-active .num { background: var(--accent); }
.wizard__bar .step.is-done .num { background: var(--ok); }
.wizard__body { padding: 30px; }
.wizard__panel { display: none; }
.wizard__panel.is-active { display: block; animation: fade .25s ease; }
.wizard__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to { opacity:1; transform:none; } }

@media (max-width: 620px) {
  .wizard__bar .step .label { display: none; }
  .wizard__bar .step .num { margin-right: 0; }
}

/* Sticky Preis-Summary */
.summary { position: sticky; top: 104px; }
.summary__total { display: flex; align-items: baseline; justify-content: space-between; margin: 14px 0 4px; }
.summary__total b { font-size: 1.8rem; color: var(--petrol); white-space: nowrap; }
.summary__row { display: flex; justify-content: space-between; font-size: .94rem; padding: 6px 0; color: var(--ink-soft); }
.summary__row span:last-child { font-weight: 600; color: var(--ink); }
.summary__divider { border: 0; border-top: 1px solid var(--line); margin: 12px 0; }

.layout-split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }
.layout-split > * { min-width: 0; }
@media (max-width: 920px) { .layout-split { grid-template-columns: 1fr; } }

/* Notice / Success */
.notice { padding: 16px 18px; border-radius: var(--radius-sm); border-left: 4px solid var(--accent); background: #fbf6ee; color: var(--ink-soft); font-size: .94rem; }
.notice--ok { border-left-color: var(--ok); background: #eef7f2; }
.success-box { text-align: center; padding: 30px; }
.success-box .check { width: 64px; height: 64px; border-radius: 50%; background: var(--ok); color: #fff; display: grid; place-items: center; font-size: 2rem; margin: 0 auto 18px; }

/* FAQ */
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent-dk); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--ink-soft); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--petrol), var(--petrol-dk)); color: #fff; border-radius: var(--radius); padding: 46px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe0de; max-width: 50ch; margin: 0 auto 22px; }

/* Steps / process */
.steps { counter-reset: s; display: grid; gap: 20px; }
.step-row { display: flex; gap: 18px; align-items: flex-start; }
.step-row__num { counter-increment: s; flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--petrol); color: #fff; display: grid; place-items: center; font-weight: 800; }
.step-row__num::before { content: counter(s); }

/* Footer */
.site-footer { background: var(--ink); color: #b9c6c7; padding: 56px 0 90px; margin-top: 40px; }
.site-footer h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.site-footer a { color: #b9c6c7; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 30px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about { color: #9fb0b1; font-size: .94rem; margin: 0; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; font-size: .94rem; }
/* Sortiment/Service: kleine Chevron-Pfeile */
.footer-links a { position: relative; padding-left: 16px; display: inline-block; }
.footer-links a::before {
  content: ''; position: absolute; left: 2px; top: .42em; width: 5px; height: 5px;
  border-right: 2px solid var(--accent); border-top: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform .15s ease;
}
.footer-links a:hover::before { transform: rotate(45deg) translate(1px, -1px); }
/* Kontakt-Spalte mit Icons */
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: .94rem; color: #b9c6c7; }
.footer-contact .fc-ico { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 1px; color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 20px; font-size: .85rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
/* Rechtliches: dezent, unten rechts */
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: #6f7d7e; font-size: .8rem; }
.footer-legal a:hover { color: #b9c6c7; }

/* Schwebender WhatsApp-Button (unten rechts, alle Größen) */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 8px 22px rgba(0,0,0,.34); }
.wa-fab svg { width: 34px; height: 34px; display: block; }
@media (max-width: 880px) { .wa-fab { width: 52px; height: 52px; right: 14px; bottom: 14px; } .wa-fab svg { width: 31px; height: 31px; } }

.muted { color: var(--ink-soft); font-size: .9rem; }

/* „Wie haben Sie uns gefunden?" – dezente, freiwillige Chips auf dem Bestätigungs-Screen */
.quelle-box { border-top: 1px solid var(--line); padding-top: 18px; }
.quelle-frage { font-size: .95rem; color: var(--ink-soft); margin: 0 0 12px; }
.quelle-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.quelle-chip {
  border: 1px solid var(--line); background: #fff; color: var(--petrol);
  border-radius: 999px; padding: 7px 14px; font-size: .88rem; font-family: inherit;
  cursor: pointer; transition: background .15s ease, border-color .15s ease;
}
.quelle-chip:hover { background: #eef4f3; border-color: var(--petrol); }
.quelle-danke { color: var(--petrol); font-weight: 600; margin: 4px 0 0; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 8px 0 8px 28px; position: relative; color: var(--ink-soft); }
.list-clean li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
