:root {
  --bg: #fdf7fa;          /* leicht rosa getöntes Off-White statt Reinweiß */
  --surface: #ffffff;
  --ink: #171215;
  --ink-soft: #6b5f66;
  --accent: #e51074;      /* exakt die Farbe aus logo.png */
  --accent-dark: #b80a5a; /* für kleine Texte und Links: höherer Kontrast */
  --dark: #1a1418;        /* Infoleiste und dunkle Buttons */
  --line: #f0dae7;
  --radius: 20px;
  --max: 74rem;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* --- Dunkle Infoleiste ganz oben --- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.82);
  font-size: .85rem;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .6rem;
  padding-bottom: .6rem;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.82); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .marke {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: .18rem .8rem;
  border-radius: 999px;
}

/* Wechselnder Hinweis, der als Kapsel direkt auf dem Hero-Foto liegt */
.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(15,8,12,.38);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: .6rem 1.3rem;
  margin-bottom: 1.7rem;
  text-decoration: none;
  color: #fff;
  font-size: .95rem;
  transition: opacity .5s ease, background-color .15s ease;
}
.hero-ticker:hover { background: rgba(15,8,12,.52); color: #fff; }
.hero-ticker.blenden { opacity: 0; }
.hero-ticker-kicker {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  font-size: .72rem;
  color: #ffb8de;
  white-space: nowrap;
}
.hero-ticker-titel { font-weight: 600; }
.hero-ticker-pfeil { opacity: .85; }

@media (max-width: 640px) {
  .hero-ticker {
    flex-wrap: wrap;
    padding: .55rem 1rem;
    margin-bottom: 1.3rem;
    font-size: .85rem;
  }
}

/* --- Kopfzeile --- */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253,247,250,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .85rem 1.5rem;
}
.logo { display: block; flex-shrink: 0; }
.logo img { height: 36px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}
nav a:hover { color: var(--accent-dark); }
nav .btn { color: #fff; }

/* --- Buttons: runde Pillen wie bei Lockexpress --- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .72rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .97rem;
  border: none;
  cursor: pointer;
  transition: background .15s ease;
}
.btn:hover { background: var(--accent-dark); }

.btn-dark { background: var(--dark); }
.btn-dark:hover { background: #332a2f; }

.btn-light { background: #fff; color: var(--accent-dark); }
.btn-light:hover { background: #ffeef7; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.65);
  padding: calc(.72rem - 2px) calc(1.5rem - 2px);
}
.btn-outline:hover { background: rgba(255,255,255,.16); }

/* --- Kicker-Zeile über der Überschrift --- */
.kicker {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0 0 1.1rem;
}
.kicker::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero .kicker { color: #fff; }
.hero .kicker::before { background: rgba(255,255,255,.8); }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, #cf0c68 0%, #e51074 45%, #ff5cb0 100%);
  color: #fff;
  padding: 5rem 0 5.5rem;
}

/* Hero mit Ladenfoto: Bild unten, pinker Schleier darüber, damit die Schrift lesbar bleibt */
.hero-foto {
  background:
    linear-gradient(100deg,
      rgba(16,8,13,.90) 0%,
      rgba(120,6,62,.78) 38%,
      rgba(229,16,116,.34) 72%,
      rgba(229,16,116,.20) 100%),
    url("hero.jpg") center 42% / cover no-repeat;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.05rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 0 0 1.2rem;
  max-width: 20ch;
}
.hero h1 em {
  font-style: normal;
  color: #ffdcee;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
  max-width: 50ch;
  margin: 0 0 2.2rem;
}
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

/* Vertrauens-Chips unter dem Hero */
.chips {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.chip {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .88rem;
  font-weight: 500;
}

/* --- Abschnitte --- */
section { padding: 4.5rem 0; }
.alt { background: var(--surface); }

/* Dunkler Abschnitt: schwarze Automaten vor pinker Wand, wie im Laden */
.dunkel { background: var(--dark); color: rgba(255,255,255,.82); }
.dunkel h2 { color: #fff; }
.dunkel .lead { color: rgba(255,255,255,.7); }
.dunkel .kicker { color: #ff8bcb; }
.dunkel .kicker::before { background: var(--accent); }
.dunkel .card {
  background: #241c21;
  border-color: rgba(255,255,255,.13);
}
.dunkel .card h3 { color: #fff; }
.dunkel .card p { color: rgba(255,255,255,.68); }

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin: 0 0 .7rem;
  max-width: 24ch;
}
.lead { color: var(--ink-soft); max-width: 58ch; margin: 0 0 2.6rem; font-size: 1.05rem; }

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

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.alt .card { background: var(--surface); }
.card h3 { margin: 0 0 .5rem; font-size: 1.12rem; font-weight: 700; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

.card-link { display: flex; flex-direction: column; }
.card-link p { margin-bottom: 1.4rem; }
.card-link .btn { align-self: flex-start; margin-top: auto; }

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* --- Auswahlkacheln vor dem Formular --- */
.wahlkarten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.wahlkarte {
  display: block;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .15s ease;
}
.wahlkarte:hover,
.wahlkarte:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.wahlkarte.aktiv {
  border-color: var(--accent);
  background: #fff2f8;
}
.wahlkarte strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}
.wahlkarte span { color: var(--ink-soft); font-size: .93rem; }
.wahlkarte.aktiv span { color: var(--ink); }

/* --- Aufklappbare Fragen --- */
.faq { max-width: 52rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: .7rem;
  overflow: hidden;
}
.faq details[open] { border-color: var(--accent); }

.faq summary {
  cursor: pointer;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 600;
  font-size: 1.01rem;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }

/* Plus-Zeichen rechts, das sich beim Aufklappen zum Minus dreht */
.faq summary::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background:
    linear-gradient(var(--accent), var(--accent)) center/12px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center/2px 12px no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { background-size: 12px 2px, 0 0; }

.faq summary:hover { color: var(--accent-dark); }
.faq details > p {
  margin: 0;
  padding: 0 1.3rem 1.25rem;
  color: var(--ink-soft);
  font-size: .97rem;
}
.faq details > p a { color: var(--accent-dark); }

/* Fragen im dunklen Abschnitt */
.dunkel .faq details {
  background: #241c21;
  border-color: rgba(255,255,255,.13);
}
.dunkel .faq details[open] { border-color: var(--accent); }
.dunkel .faq summary { color: #fff; }
.dunkel .faq summary:hover { color: #ff8bcb; }
.dunkel .faq details > p { color: rgba(255,255,255,.7); }
.dunkel .faq details > p a { color: #ff8bcb; }

/* --- Formular --- */
.formkarte {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 40rem;
}
.alt .formkarte { background: var(--bg); }

form { max-width: 40rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  margin: 1.2rem 0 .4rem;
}
input, textarea, select {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  background: var(--surface);
  color: var(--ink);
}
.alt input, .alt textarea, .alt select { background: #fff; }
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
  border-color: var(--accent);
}
textarea { min-height: 9rem; resize: vertical; }
select { appearance: none; background-image: none; cursor: pointer; }

input[type="file"] {
  padding: .6rem;
  background: var(--bg);
  cursor: pointer;
}
.alt input[type="file"] { background: var(--surface); }

fieldset {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem 1.3rem;
  margin: 1.8rem 0 0;
}
fieldset legend { font-weight: 600; font-size: .92rem; padding: 0 .4rem; }
.wahl {
  display: flex;
  gap: .6rem;
  align-items: center;
  font-weight: 400;
  margin: .7rem 0 0;
}
.wahl input { width: auto; flex-shrink: 0; accent-color: var(--accent); }

.hinweis { font-size: .86rem; color: var(--ink-soft); margin: .45rem 0 0; }

.consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: 1.6rem 0;
  font-size: .89rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.consent input { width: auto; margin-top: .25rem; flex-shrink: 0; accent-color: var(--accent); }
.consent a { color: var(--accent-dark); }

.fehler {
  background: #ffeef6;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: .9rem 1.1rem;
  margin: 0 0 1.5rem;
  font-size: .95rem;
  max-width: 40rem;
}

/* Direktkontakt neben dem Formular */
.direct {
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .97rem;
}
.direct a { color: var(--accent-dark); }

/* --- Fußzeile --- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 2.5rem 0;
  font-size: .9rem;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a { color: rgba(255,255,255,.7); margin-right: 1.4rem; }
footer a:hover { color: #fff; }

/* --- Rechtstexte --- */
.legal { padding: 3.5rem 0 4.5rem; max-width: 46rem; }
.legal h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 2rem; }
.legal h2 { font-size: 1.15rem; margin: 2.3rem 0 .5rem; max-width: none; }
.legal p { margin: .45rem 0; }
.legal a { color: var(--accent-dark); }

@media (max-width: 760px) {
  .topbar .wrap { justify-content: center; font-size: .8rem; }
  .bar { flex-direction: column; align-items: flex-start; gap: .75rem; }
  nav { gap: 1rem; }
  .hero { padding: 3.5rem 0 4rem; }
  .formkarte { padding: 1.4rem; }
  section { padding: 3.2rem 0; }
}
