/* ═══════════════════════════════════════════════════════════════
   Wäscherei SBIMA – styles.css
   Alle Klassen zentralisiert. Kein style="" in HTML nötig.
   ═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
  --bg:       #08111b;
  --bg-soft:  #101d2c;
  --panel:    #122235;
  --panel-2:  #0d1826;
  --text:     #eaf2fb;
  --muted:    #b8c7d8;
  --line:     rgba(255,255,255,.09);
  --primary:  #2e9eff;
  --primary-2:#65bbff;
  --accent:   #8fe2ff;
  --success:  #85d6b2;
  --shadow:   0 18px 50px rgba(0,0,0,.22);
  --shadow-lg:0 28px 72px rgba(0,0,0,.32);
  --radius:   22px;
  --max:      1200px;
  --ease:     cubic-bezier(.25,.46,.45,.94);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.65 Inter, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left,  rgba(46,158,255,.15), transparent 32%),
    radial-gradient(circle at top right, rgba(101,187,255,.12), transparent 24%),
    linear-gradient(180deg, #07111b 0%, #0b1624 100%);
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

/* ── ACCESSIBILITY ───────────────────────────────────────────── */
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  left: 16px; top: 16px; z-index: 999;
  padding: 12px 16px; border-radius: 999px;
  background: #fff; color: #000;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAV
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7,17,27,.82);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--text); text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand img   { width: 74px; height: 74px; border-radius: 18px; }
.brand-copy  { display: flex; flex-direction: column; gap: 2px; }
.brand-copy span  { font-weight: 800; font-size: 1.05rem; letter-spacing: .01em; }
.brand-copy small { color: var(--muted); }
.nav-links   { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-links a { color: var(--text); font-weight: 600; }
.nav-links a[aria-current="page"] {
  color: var(--primary-2); border-bottom: 2px solid var(--primary-2);
  padding-bottom: 2px;
}
.burger {
  display: none; border: 0; background: transparent; padding: 6px; cursor: pointer;
}
.burger span {
  display: block; width: 26px; height: 2px; background: #fff;
  margin: 5px 0; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}
.mobile-menu {
  display: none; padding: 0 16px 16px; flex-direction: column; gap: 10px;
}
.mobile-menu.open { display: flex; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS  — 3 Qualitätsstufen
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #001a31; font-weight: 800; text-decoration: none;
  box-shadow: 0 8px 24px rgba(46,158,255,.28);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
/* Shimmer */
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .55s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 16px 44px rgba(46,158,255,.42); }
.btn:hover::after { transform: translateX(110%); }
.btn:active { transform: translateY(0); }

.btn.ghost {
  background: transparent;
  border-color: rgba(255,255,255,.18);
  color: var(--text); box-shadow: none;
}
.btn.ghost::after { display: none; }
.btn.ghost:hover  { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.34); }

.btn.small { min-height: 40px; padding: 0 16px; font-size: .93rem; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: min(88vh, 780px);
  display: flex; align-items: center;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(3,9,16,.88)  0%,
    rgba(3,9,16,.62) 55%,
    rgba(3,9,16,.38) 100%
  );
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  /* Ken-Burns: sehr subtil, wirkt hochwertig */
  animation: kenBurns 22s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1)    translateX(0)    translateY(0); }
  to   { transform: scale(1.06) translateX(-1.5%) translateY(-1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
}
.hero-content {
  position: relative; z-index: 1;
  padding: clamp(80px, 11vw, 130px) 0 clamp(60px, 7vw, 90px);
}

/* Google-Sterne Bar */
.google-star-bar {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: 14px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  margin-bottom: 22px;
  opacity: 0;
  animation: slideInDown .7s .1s var(--ease) forwards;
}
.gs-stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.gs-score { font-weight: 800; color: #fff; }
.gs-via   { font-size: .82rem; color: var(--muted); }

.kicker, .eyebrow {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,17,27,.45);
  color: #d6ebff; font-weight: 700; font-size: .92rem;
}
.dot { opacity: .65; }

h1, h2, h3 { line-height: 1.14; margin: 0 0 16px; }
h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  max-width: 13ch; margin-top: 18px;
  opacity: 0;
  animation: slideInUp .8s .25s var(--ease) forwards;
}
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.grad {
  background: linear-gradient(135deg, #ffffff 0%, #8fd2ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead {
  max-width: 660px;
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  color: #ebf5ff; line-height: 1.7;
  opacity: 0;
  animation: slideInUp .8s .4s var(--ease) forwards;
}

.cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 20px;
  opacity: 0;
  animation: slideInUp .7s .55s var(--ease) forwards;
}
.hero-highlights, .inline-badges, .contact-list {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-highlights span, .inline-badges span {
  padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11);
  color: #e7f2fd; font-size: .88rem; font-weight: 600;
  opacity: 0;
  animation: slideInUp .7s .68s var(--ease) forwards;
}
.hero-note {
  max-width: 780px; color: #c4d8ee; font-size: .9rem; margin-top: 14px;
  opacity: 0;
  animation: fadeIn .8s .8s var(--ease) forwards;
}

/* ── HERO ANIMATIONS ─ */
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section     { padding: 78px 0; }
.section-alt { background: rgba(255,255,255,.02); }
.section-head {
  max-width: 820px; margin-bottom: 34px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p  { color: var(--muted); }

/* ── GRID ─ */
.grid-2 { display: grid; gap: 22px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { display: grid; gap: 22px; grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-2-4 { /* hero authority: image | copy */
  display: grid; gap: 44px; grid-template-columns: 1fr 1fr; align-items: center;
}

/* ── CARDS ─ */
.card, .info-box {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow);
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { border-color: rgba(46,158,255,.25); }
.card p, .card li, .legal p, .legal li { color: var(--muted); }

/* ── ICON BOX ─ */
.icon-box {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.45rem;
  background: linear-gradient(135deg, rgba(46,158,255,.22), rgba(143,226,255,.16));
  border: 1px solid rgba(143,226,255,.22); margin-bottom: 14px;
}

/* ── CHECKLIST ─ */
.checklist, .link-list { padding: 0; margin: 16px 0 0; list-style: none; }
.checklist li, .link-list li {
  position: relative; padding-left: 24px; margin: 10px 0; color: var(--muted);
}
.checklist li::before, .link-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 900;
}

/* ═══════════════════════════════════════════════════════════════
   PAIN CARDS (problem block)
   ═══════════════════════════════════════════════════════════════ */
.pain-card {
  background: linear-gradient(135deg, rgba(239,68,68,.07), rgba(239,68,68,.03));
  border-color: rgba(239,68,68,.2);
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ef4444, transparent);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(239,68,68,.12); }
.pain-card h3 { color: #fca5a5; }
.pain-icon { font-size: 1.8rem; margin-bottom: 12px; }

/* ═══════════════════════════════════════════════════════════════
   STATS COUNTER
   ═══════════════════════════════════════════════════════════════ */
.stats { margin-bottom: 36px; }
.stats strong {
  display: block;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: #fff; line-height: 1.1; margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.stats p { margin: 0; color: var(--muted); font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP
   ═══════════════════════════════════════════════════════════════ */
.trust-strip-section {
  padding-top: 28px;
  padding-bottom: 18px;
}
.trust-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-pill {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.trust-pill strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: .96rem;
}
.trust-pill span {
  color: var(--muted);
  font-size: .88rem;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testi-card {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  transition: border-color .3s, transform .35s var(--ease);
}
.testi-card:hover { border-color: rgba(46,158,255,.28); transform: translateY(-4px); }
.testi-stars  { color: #fbbf24; margin-bottom: 12px; font-size: .97rem; letter-spacing: 1px; }
.testi-text   { font-size: .96rem; color: #d4e8f8; line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(46,158,255,.35), rgba(143,226,255,.2));
  border: 1px solid rgba(46,158,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #7dd3fc; font-size: .95rem;
}
.testi-av-name   { display: block; font-size: .92rem; color: #e8f4ff; font-weight: 700; }
.testi-av-role   { font-size: .8rem; color: var(--muted); }
.testi-source {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 5px;
  background: rgba(66,133,244,.12); border: 1px solid rgba(66,133,244,.2);
  border-radius: 999px; padding: 2px 9px; font-size: .74rem; font-weight: 700; color: #93b4f8;
}
.google-review-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: rgba(66,133,244,.1); border: 1px solid rgba(66,133,244,.25);
  color: #93b4f8; font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: background .25s, border-color .25s;
}
.google-review-link:hover { background: rgba(66,133,244,.2); text-decoration: none; color: #b8d0ff; }
.google-review-stars { color: #fbbf24; }

/* ═══════════════════════════════════════════════════════════════
   AUTHORITY SECTION
   ═══════════════════════════════════════════════════════════════ */
.authority-img {
  border-radius: var(--radius); overflow: hidden;
  position: relative; border: 1px solid var(--line);
}
.authority-img img { width: 100%; display: block; }
.authority-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(7,17,27,.92), transparent);
  padding: 28px 22px 18px; color: #d4e8f8; font-size: .88rem;
}
.authority-caption strong {
  display: block; font-size: 1rem; color: #fff; font-weight: 800; margin-bottom: 3px;
}
.authority-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.authority-tags span {
  padding: 6px 14px; border-radius: 999px; font-size: .84rem; font-weight: 600;
  background: rgba(46,158,255,.12); border: 1px solid rgba(46,158,255,.22);
  color: var(--primary-2);
}

.local-proof-grid { align-items: stretch; }
.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(46,158,255,.22);
  background: rgba(46,158,255,.08);
  color: #dff1ff;
  text-decoration: none;
  font-weight: 600;
  font-size: .88rem;
}
.contact-chip:hover {
  text-decoration: none;
  border-color: rgba(46,158,255,.45);
  background: rgba(46,158,255,.14);
}

/* ═══════════════════════════════════════════════════════════════
   LEISTUNGEN – Ergebniszeile
   ═══════════════════════════════════════════════════════════════ */
.ergebnis {
  font-style: italic; color: #a8d8f5; font-size: .88rem;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 10px; margin-top: 10px;
}
.leistung-card {
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s var(--ease);
}
.leistung-card:hover {
  border-color: rgba(46,158,255,.35);
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(46,158,255,.13);
}

/* ═══════════════════════════════════════════════════════════════
   LEAD MAGNET
   ═══════════════════════════════════════════════════════════════ */
.lead-magnet {
  background: linear-gradient(135deg, rgba(46,158,255,.12), rgba(46,158,255,.04));
  border: 1px solid rgba(46,158,255,.3); border-radius: var(--radius); padding: 36px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.lead-magnet-cta { text-align: center; padding: 10px 20px; }
.lm-icon  { font-size: 3.5rem; margin-bottom: 8px; }
.lm-label { font-size: 1.6rem; font-weight: 900; color: #fff; }
.lm-sub   { color: var(--muted); font-size: .88rem; margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════════ */
.process-grid { align-items: stretch; }
.process-card {
  position: relative;
  padding-top: 30px;
}
.step-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #001a31;
  font-weight: 900;
  font-size: .95rem;
  box-shadow: 0 8px 22px rgba(46,158,255,.28);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list { display: grid; gap: 10px; margin-top: 28px; }
.faq-item details {
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(255,255,255,.025); overflow: hidden;
  transition: border-color .25s;
}
.faq-item details:hover { border-color: rgba(46,158,255,.25); }
.faq-item details summary {
  padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: .97rem;
  list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after {
  content: '+'; font-size: 1.35rem; color: var(--primary);
  transition: transform .22s; flex-shrink: 0;
}
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 20px 18px; color: var(--muted); font-size: .93rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact-panel {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px;
}
.ci-list { display: flex; flex-direction: column; gap: 14px; margin: 18px 0; }
.ci-row  { display: flex; align-items: flex-start; gap: 12px; }
.ci-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.1rem;
  background: rgba(46,158,255,.14); border: 1px solid rgba(46,158,255,.22);
}
.ci-label { display: block; font-size: .84rem; color: var(--muted); margin-bottom: 2px; }
.ci-value { font-size: .97rem; font-weight: 600; color: #e8f4ff; }

/* ── FORM ─ */
.form { display: grid; gap: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 700; font-size: .88rem; color: #c0d8ee; }
.req  { color: #f87171; }
input, textarea, select {
  width: 100%; padding: 13px 15px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14); background: rgba(6,14,23,.7);
  color: var(--text); font: inherit; font-size: .95rem;
  transition: border-color .22s, box-shadow .22s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: rgba(46,158,255,.5);
  box-shadow: 0 0 0 3px rgba(46,158,255,.1);
}
select option { background: #0d1826; }
textarea { min-height: 130px; resize: vertical; }
.form-submit {
  width: 100%; min-height: 52px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #001a31; font: inherit; font-weight: 800; font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.form-submit::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-110%); transition: transform .5s var(--ease);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(46,158,255,.38); }
.form-submit:hover::after { transform: translateX(110%); }
.form-privacy {
  font-size: .78rem; color: rgba(255,255,255,.32); text-align: center; margin: 0;
}
.form-privacy a { color: rgba(255,255,255,.44); }
.form-success {
  margin-top: 8px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(133,214,178,.28);
  background: linear-gradient(180deg, rgba(133,214,178,.11), rgba(133,214,178,.05));
}
.form-error {
  margin-top: 8px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(248,113,113,.28);
  background: linear-gradient(180deg, rgba(248,113,113,.12), rgba(248,113,113,.05));
}
.form-success strong {
  display: block;
  margin-bottom: 6px;
  color: #f2fff8;
}
.form-error strong {
  display: block;
  margin-bottom: 6px;
  color: #fff3f3;
}
.form-success p {
  margin: 0;
  color: #cfe8d8;
  font-size: .9rem;
}
.form-error p {
  margin: 0;
  color: #ffd0d0;
  font-size: .9rem;
}
.form-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.form-success-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.form-success-actions a:hover {
  text-decoration: none;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}
.form-submit:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}
.check-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: .82rem;
  color: var(--muted);
}
.check-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ── MISC ─ */
.notice { border-left: 4px solid var(--primary); padding-left: 16px; color: #dcedfb; }
.page-hero {
  padding: 56px 0 26px; border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
}
.breadcrumbs { margin-bottom: 12px; color: var(--muted); font-size: .88rem; }
.breadcrumbs a { color: var(--muted); }
.map-frame { width: 100%; min-height: 320px; border: 0; border-radius: 22px; }
.legal h2 { font-size: 1.25rem; margin-top: 28px; }

/* ─ Contact list (footer-style) */
.contact-list { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-list span {
  padding: 9px 14px; border-radius: 999px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: #e7f2fd;
}

/* ─ Inline badges */
.inline-badges span {
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11);
  color: #e7f2fd;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL + STAGGER
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* Stagger: JS setzt --delay via data-stagger Attribut */
.stagger-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.stagger-group.visible > * { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   SEO PILL LINKS (Stadtteile / Umgebung)
   ═══════════════════════════════════════════════════════════════ */
.seo-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-pill {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid var(--line);
  color: var(--text); text-decoration: none;
  transition: border-color .22s, background .22s, transform .22s;
}
.seo-pill:hover {
  border-color: rgba(46,158,255,.42); background: rgba(46,158,255,.08);
  text-decoration: none; transform: translateY(-2px);
}
.seo-block-label {
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary-2); margin-bottom: 12px; display: block;
}

.reviews-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: .84rem;
}

.article-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .8rem;
}
.article-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.article-card p,
.article-body p,
.article-body li {
  color: var(--muted);
}
.article-card .btn {
  margin-top: auto;
  align-self: flex-start;
}
.seo-depth-section .section-head {
  max-width: 920px;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: stretch;
}
.story-block > * + * {
  margin-top: 14px;
}
.story-block p,
.story-block li {
  color: var(--muted);
}
.deep-link-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.deep-link-card {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.025));
  color: var(--text);
  text-decoration: none;
  transition: border-color .22s, transform .22s var(--ease), background .22s;
}
.deep-link-card strong {
  display: block;
  color: #f4fbff;
  font-size: .96rem;
}
.deep-link-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.55;
}
.deep-link-card:hover {
  text-decoration: none;
  border-color: rgba(46,158,255,.36);
  background: rgba(46,158,255,.09);
  transform: translateY(-2px);
}
.faq-mini {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.faq-mini-item {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.faq-mini-item h4 {
  margin: 0 0 8px;
  font-size: .98rem;
  color: #f1f8ff;
}
.faq-mini-item p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 24px;
}
.article-body > * + * {
  margin-top: 18px;
}
.article-body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin-bottom: 10px;
}
.article-body h3 {
  margin-bottom: 8px;
}
.article-list {
  padding-left: 18px;
}
.article-list li + li {
  margin-top: 8px;
}
.aside-stack {
  display: grid;
  gap: 18px;
}
.price-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.price-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(46,158,255,.22);
  background: rgba(46,158,255,.08);
  color: #dff1ff;
  font-weight: 600;
  font-size: .86rem;
}
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.grid-2-4 > *,
.contact-panel > *,
.intro-grid > *,
.adv-grid > *,
.map-contact-grid > *,
.article-grid > *,
.article-layout > *,
.story-grid > * {
  min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  background: rgba(0,0,0,.14);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 28px; margin-bottom: 32px;
}
.footer-brand p   { color: var(--muted); font-size: .88rem; line-height: 1.55; margin-top: 12px; }
.footer-brand img { border-radius: 14px; margin-bottom: 4px; }
.footer-contact   { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.footer-contact a, .footer-contact span { color: var(--muted); font-size: .86rem; }
.footer-contact .tel { color: var(--primary-2); font-weight: 700; font-size: .9rem; }

.footer-col-label {
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary-2); margin-bottom: 12px; display: block;
}
.footer-col a   { display: block; color: var(--muted); font-size: .88rem; margin-bottom: 7px; }
.footer-col a:hover { color: var(--text); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
}
.footer-bottom span, .footer-bottom a {
  color: var(--muted); font-size: .83rem;
}
.footer-bottom a:hover { color: var(--text); text-decoration: none; }
.footer-legal-links { display: flex; gap: 18px; }
.footer-cookie-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .83rem;
  cursor: pointer;
  padding: 0;
}
.footer-cookie-link:hover {
  color: var(--text);
}

/* ── Site Credit ─ */
.site-credit {
  text-align: center; padding: 10px 0 2px;
  font-size: .74rem; color: rgba(255,255,255,.22);
}
.site-credit a { color: rgba(255,255,255,.32); }
.site-credit a:hover { color: rgba(255,255,255,.55); text-decoration: none; }

/* ── Fixed elements ─ */
.wa-float, .to-top { position: fixed; right: 18px; z-index: 40; border-radius: 999px; }
.wa-float {
  bottom: 18px; padding: 14px 18px;
  background: #22c55e; color: #04130a; font-weight: 800;
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(34,197,94,.45); text-decoration: none; }
.to-top {
  bottom: 78px; width: 46px; height: 46px;
  border: 1px solid var(--line); background: rgba(7,17,27,.92);
  color: #fff; display: grid; place-items: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 18px;
}
.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 7, 12, .58);
  backdrop-filter: blur(6px);
}
.cookie-consent__panel {
  position: relative;
  width: min(100%, 860px);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(10,20,32,.98), rgba(7,16,26,.98));
  box-shadow: 0 28px 72px rgba(0,0,0,.42);
  padding: 24px;
}
.cookie-consent__header strong {
  display: block;
  font-size: 1.12rem;
  color: #f6fbff;
  margin-bottom: 10px;
}
.cookie-consent__header p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}
.cookie-consent__body {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.cookie-consent__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.cookie-consent__row p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
}
.cookie-consent__row--toggle {
  cursor: pointer;
}
.cookie-consent__label {
  color: #f2f8ff;
  font-weight: 800;
  font-size: .95rem;
}
.cookie-consent__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(46,158,255,.12);
  border: 1px solid rgba(46,158,255,.22);
  color: #d7ecff;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.cookie-toggle {
  position: relative;
  width: 52px;
  height: 30px;
  flex-shrink: 0;
}
.cookie-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.cookie-toggle__ui {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.16);
  transition: background .2s ease, border-color .2s ease;
}
.cookie-toggle__ui::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.cookie-toggle input:checked + .cookie-toggle__ui {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: rgba(46,158,255,.45);
}
.cookie-toggle input:checked + .cookie-toggle__ui::after {
  transform: translateX(22px);
}
.cookie-consent__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-consent__link {
  font-size: .86rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .trust-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-4   { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3   { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-panel, .grid-2-4 { grid-template-columns: 1fr; }
  .lead-magnet { grid-template-columns: 1fr; }
  .intro-grid,
  .adv-grid,
  .map-contact-grid,
  .article-grid,
  .article-layout,
  .story-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .trust-strip { grid-template-columns: 1fr; }
  .nav-links  { display: none; }
  .burger     { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .brand-copy small { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 50px 0 26px; }
  .page-hero h1 { max-width: none; }
  .table-like .row { grid-template-columns: 1fr; gap: 8px; }
  .lead-magnet { padding: 28px; }
  .mobile-menu {
    padding-bottom: 20px;
  }
  .mobile-menu .btn.small {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal-links { flex-wrap: wrap; gap: 10px 18px; }
  .section { padding: 62px 0; }
  .page-hero { padding: 42px 0 22px; }
  .page-hero h1 { font-size: clamp(1.9rem, 10vw, 2.7rem); }
  .card, .info-box, .adv-card, .lead-magnet { padding: 20px; }
  .brand img {
    width: 62px;
    height: 62px;
  }
  .brand-copy span {
    font-size: .98rem;
  }
  .cta-row > *,
  .form-success-actions a,
  .contact-chips > *,
  .seo-pills > * {
    width: 100%;
  }
  .cta-row .btn,
  .cta-row .btn.ghost,
  .contact-chip,
  .seo-pill {
    justify-content: center;
  }
  .deep-link-card {
    padding: 14px 16px;
  }
  .faq-mini-item {
    padding: 14px 16px;
  }
  .map-frame {
    min-height: 260px;
  }
  .cookie-consent {
    padding: 12px;
  }
  .cookie-consent__panel {
    padding: 18px;
    border-radius: 22px;
  }
  .cookie-consent__row,
  .cookie-consent__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent__actions,
  .cookie-consent__actions .btn {
    width: 100%;
  }
  .wa-float {
    right: 12px;
    bottom: 12px;
    padding: 12px 15px;
    font-size: .88rem;
  }
  .to-top {
    right: 12px;
    bottom: 66px;
    width: 42px;
    height: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; }
  .reveal, .stagger-group > *, h1, .lead, .cta-row, .hero-highlights span,
  .google-star-bar, .hero-note { animation: none; opacity: 1; transform: none; }
}

.reviews-cta{text-align:center;margin-top:28px;margin-bottom:0}

/* ═══════════════════════════════════════════════════════════════
   SUB-PAGE COMPONENTS (page-hero, breadcrumbs etc.)
   ═══════════════════════════════════════════════════════════════ */

/* ── PAGE HERO (Unterseiten) ─ */
.page-hero {
  padding: 64px 0 36px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), transparent);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  max-width: 16ch; margin-top: 12px; margin-bottom: 16px;
}
.page-hero .lead { max-width: 680px; color: #d8ecfb; }
.page-hero .inline-badges { margin-top: 18px; }

/* ── BREADCRUMBS ─ */
.breadcrumbs { margin-bottom: 14px; color: var(--muted); font-size: .86rem; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--text); text-decoration: none; }
.breadcrumbs span { color: var(--text); }

/* ── SUB-PAGE INTRO GRID ─ */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 8px;
}

/* ── ADVANTAGE CARDS ─ */
.adv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px;
}
.adv-card {
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid var(--line); border-radius: 20px; padding: 24px;
  transition: border-color .3s, transform .3s var(--ease);
}
.adv-card:hover { border-color: rgba(46,158,255,.32); transform: translateY(-4px); }
.adv-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.adv-card p  { color: var(--muted); font-size: .91rem; margin: 0; line-height: 1.6; }
.adv-link    { color: var(--primary-2); font-size: .88rem; margin-top: 10px; display: inline-block; }
.adv-link:hover { text-decoration: underline; }

/* ── CONTACT CARD (sub-pages) ─ */
.contact-card       { max-width: 760px; }
.contact-card h2    { margin-bottom: 8px; }
.contact-card-info  { margin: 18px 0; }
.contact-card-info span, .contact-card-info a {
  display: block; margin-bottom: 8px; color: var(--muted); font-size: .95rem;
}
.contact-card-info a:hover { color: var(--text); text-decoration: none; }
.contact-card-info strong  { color: var(--text); }

/* ── SEO RELATED SECTION ─ */
.related-section { padding: 56px 0; background: rgba(255,255,255,.018); }
.related-section h2 { font-size: 1.35rem; margin-bottom: 24px; }
.related-pills-group { margin-bottom: 26px; }

/* ── UMGEBUNG CONTACT PANEL ─ */
.map-contact-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px;
}
.map-frame { width: 100%; min-height: 300px; border: 0; border-radius: var(--radius); display: block; }

/* ── TABLE-LIKE ─ */
.table-like { display: grid; gap: 14px; }
.table-like .row {
  display: grid; grid-template-columns: 180px 1fr; gap: 18px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.table-like .row:last-child { border-bottom: 0; }

/* ── LEGAL PAGE ─ */
.legal h2 { font-size: 1.25rem; margin: 28px 0 10px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1rem; margin: 18px 0 6px; color: var(--text); }
.legal p, .legal li { color: var(--muted); line-height: 1.75; }

/* ── UTILITY ─ */
.cta-gap { margin-top: 20px; }
.mt-section { margin-top: 14px; }

@media (max-width: 820px) {
  .intro-grid, .map-contact-grid, .adv-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .table-like .row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .adv-grid { grid-template-columns: 1fr; }
}

.section-center-head{text-align:center;max-width:680px;margin:0 auto}
.lead-sub{color:var(--muted);margin-top:10px}
.link-primary{color:var(--primary-2)}
.text-muted{color:var(--muted)}
.text-muted-sm{color:var(--muted);font-size:.9rem;margin-bottom:4px}
.grid-gap-sm { gap: 10px; }
