/* ==========================================================================
   Vydra House Cleaning Service — components.css
   Header, Hero, Cards, Steps, Stats, Features, CTA, FAQ, Formular,
   Kontakt, Prosa (Recht), Footer, Responsive
   ========================================================================== */

/* ---- Header / Navigation ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--sh-sm);
}
.nav {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 74px;
}
.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.2rem; color: var(--ink); letter-spacing: -.01em;
  margin-right: auto;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff; box-shadow: var(--sh-teal);
  flex-shrink: 0;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__logo { height: 42px; width: auto; display: block; flex-shrink: 0; }
@media (max-width: 480px) { .brand__logo { height: 36px; } }
.brand__name b { font-weight: 700; }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 600; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-700); }

.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  display: inline-block; padding: .55rem .8rem; border-radius: var(--r-pill);
  color: var(--ink-700); font-weight: 600; font-size: .98rem; white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__link:hover { background: var(--teal-50); color: var(--teal-800); }
.nav__link[aria-current="page"] { color: var(--teal-800); background: var(--teal-100); }

.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; color: var(--ink); white-space: nowrap;
}
.nav__phone svg { color: var(--teal-600); }
.nav__phone:hover { color: var(--teal-700); }

.nav__toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line-2); background: #fff;
  place-items: center; color: var(--ink);
}
.nav__toggle svg { width: 24px; height: 24px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---- Hero -------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 120% at 85% -10%, var(--teal-100), transparent 60%),
    radial-gradient(70% 90% at 0% 100%, var(--teal-50), transparent 60%),
    var(--bg);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title .accent { color: var(--teal-600); }
.hero__lead { font-size: 1.2rem; color: var(--ink-600); max-width: 46ch; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .6rem; }

.hero__media { position: relative; }
.hero__figure {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4 / 5;
  border: 6px solid #fff;
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
.hero__float {
  position: absolute; background: #fff; border-radius: var(--r);
  box-shadow: var(--sh-lg); padding: .85rem 1.1rem;
  display: flex; align-items: center; gap: .7rem;
  border: 1px solid var(--line);
}
.hero__float--tl { top: 8%; left: -6%; }
.hero__float--br { bottom: 7%; right: -5%; }
.hero__float .icon-badge { width: 40px; height: 40px; }
.hero__float b { display: block; color: var(--ink); font-size: 1.05rem; line-height: 1.2; }
.hero__float span { font-size: .82rem; color: var(--muted); }

/* dekorative Blobs / Tropfen */
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; pointer-events: none; z-index: 0; }
.blob--1 { width: 120px; height: 120px; background: radial-gradient(circle at 30% 30%, var(--teal-300), var(--teal-500)); top: 12%; right: 44%; animation: float 7s var(--ease) infinite; }
.blob--2 { width: 60px; height: 60px; background: radial-gradient(circle at 30% 30%, var(--honey), var(--honey-600)); bottom: 16%; left: 46%; animation: float 5.5s var(--ease) infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-16px) } }

/* Page-Hero (Unterseiten, kompakter) */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(2.75rem, 6vw, 4.5rem); background:
    radial-gradient(80% 140% at 90% -20%, var(--teal-100), transparent 60%), var(--bg); }
.page-hero__inner { max-width: 760px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.2rem; color: var(--ink-600); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb span { color: var(--line-2); }

/* ---- Icon Badge -------------------------------------------------------- */
.icon-badge {
  display: grid; place-items: center; flex-shrink: 0;
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-50));
  color: var(--teal-700); border: 1px solid var(--line-2);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge--honey { background: linear-gradient(135deg, #cfe8ff, #eef6ff); color: var(--honey-700); border-color: #bcdcff; }
.icon-badge--ink { background: rgba(255,255,255,.08); color: var(--teal-300); border-color: rgba(255,255,255,.14); }

/* ---- Cards ------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  transition: transform .28s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--teal-200); }
.card__body { padding: clamp(1.35rem, 3vw, 1.9rem); display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.card__title { margin: 0; }
.card__text { color: var(--muted); font-size: 1rem; margin: 0; }
.card__link {
  margin-top: auto; padding-top: .5rem; font-weight: 700; color: var(--teal-700);
  display: inline-flex; align-items: center; gap: .4rem;
}
.card__link svg { transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

.card--service .card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card--service .card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card--service:hover .card__media img { transform: scale(1.06); }

/* Feature-Karte mit Icon oben */
.card--feature .card__body { gap: .8rem; }

/* ---- Feature-Liste (Warum wir) ----------------------------------------- */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__body h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.feature__body p { color: var(--muted); margin: 0; }
.section--ink .feature__body p { color: #a9c4cd; }

/* ---- Steps (Ablauf) ---------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1.5rem; }
.step { position: relative; display: flex; gap: 1.1rem; align-items: flex-start; }
.step__num {
  counter-increment: step; flex-shrink: 0;
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 50%; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  color: #fff; background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  box-shadow: var(--sh-teal);
}
.step__num::before { content: counter(step); }
.step__body h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.step__body p { color: var(--muted); margin: 0; }

/* ---- Stats ------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.1rem); color: var(--ink); line-height: 1; }
.section--ink .stat__num { color: #fff; }
.stat__num .unit { color: var(--teal-500); }
.stat__label { color: var(--muted); font-weight: 600; margin-top: .4rem; }
.section--ink .stat__label { color: #a9c4cd; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---- CTA-Band ---------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(90% 160% at 100% 0%, rgba(46,134,255,.38), transparent 55%),
    radial-gradient(70% 130% at 0% 100%, rgba(56,198,255,.18), transparent 55%),
    var(--navy);
  color: #cfe0e6; box-shadow: var(--sh-lg);
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { max-width: 52ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---- Chips (Leistungs-Übersicht) --------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 600; color: var(--ink-700); box-shadow: var(--sh-sm);
}
.chip svg { color: var(--teal-500); width: 1.05em; height: 1.05em; }

/* ---- Check-Liste ------------------------------------------------------- */
.check-list { display: grid; gap: .8rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; }
.check-list li svg { flex-shrink: 0; color: var(--teal-500); margin-top: .2rem; width: 1.3em; height: 1.3em; }
.section--ink .check-list li svg { color: var(--teal-300); }

/* ---- Offers (Leistungspakete / Preise auf Anfrage) --------------------- */
.offer {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--sh-sm); height: 100%;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .28s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--teal-200); }
.offer--featured { border-color: var(--teal-400); box-shadow: var(--sh-teal); position: relative; }
.offer--featured::after { content: "Beliebt"; position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--honey); color: #04263f; font-size: .78rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: var(--r-pill); }
.offer__title { font-size: 1.35rem; }
.offer__price { font-family: var(--font-display); font-size: 1.1rem; color: var(--teal-700); font-weight: 600; }
.offer__list { display: grid; gap: .55rem; margin-top: .25rem; }
.offer__list li { display: flex; gap: .55rem; align-items: flex-start; color: var(--muted); }
.offer__list li svg { color: var(--teal-500); flex-shrink: 0; margin-top: .25rem; }
.price-note { font-size: .95rem; color: var(--muted); }

/* ---- Quote / Testimonial ----------------------------------------------- */
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--sh-sm); height: 100%;
  display: flex; flex-direction: column; gap: 1rem;
}
.quote__stars { color: #f5b301; display: flex; gap: .15rem; }
.quote__stars svg { width: 1.15em; height: 1.15em; }
.quote__text { font-size: 1.08rem; color: var(--ink-700); }
.quote__author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-50)); color: var(--teal-700);
  font-weight: 700; font-family: var(--font-display); border: 1px solid var(--line-2); }
.quote__author b { display: block; color: var(--ink); }
.quote__author span { font-size: .9rem; color: var(--muted); }

/* ---- FAQ (details/summary) --------------------------------------------- */
.faq { display: grid; gap: .9rem; max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-sm); overflow: hidden; }
.faq__item[open] { border-color: var(--teal-200); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.35rem; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
  color: var(--ink); cursor: pointer; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .faq__icon { flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; background: var(--teal-50); color: var(--teal-700); transition: transform .3s var(--ease), background .2s; }
.faq__item[open] .faq__q .faq__icon { transform: rotate(45deg); background: var(--teal-500); color: #fff; }
.faq__a { padding: 0 1.35rem 1.25rem; color: var(--muted); }

/* ---- Formular ---------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; color: var(--ink); font-size: .95rem; }
.field label .req { color: var(--honey-700); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--r-sm);
  border: 1px solid var(--line-2); background: #fff; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-400); box-shadow: 0 0 0 4px var(--teal-100);
}
.field input::placeholder, .field textarea::placeholder { color: #9fb3bd; }
.form__consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.form__consent input { width: 20px; height: 20px; margin-top: .15rem; accent-color: var(--teal-600); flex-shrink: 0; }
.form__note { font-size: .88rem; color: var(--muted); }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.contact-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--sh);
}

/* ---- Kontakt-Infos ----------------------------------------------------- */
.contact-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item__body h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.contact-item__body a { font-weight: 600; }
.contact-item__body p, .contact-item__body a { color: var(--ink-700); }
.contact-item__body span { display: block; color: var(--muted); font-size: .92rem; }

/* ---- Prosa (Impressum / Datenschutz) ----------------------------------- */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: .75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin-top: 1.75rem; margin-bottom: .5rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-700); }
.prose ul { margin: 0 0 1rem; display: grid; gap: .5rem; }
.prose ul li { padding-left: 1.4rem; position: relative; color: var(--ink-700); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-500); }
.prose a { font-weight: 600; word-break: break-word; }
.prose .lead { margin-bottom: 1.5rem; }
.legal-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--sh-sm); }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: var(--navy); color: #9fb8c2; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.5fr; gap: 2.5rem; align-items: start; }
.footer__brand .brand { color: #fff; margin-bottom: 1rem; }
.footer__brand .brand__name span { color: var(--teal-300); }
.footer__about { color: #90aab5; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__links { display: grid; gap: .6rem; }
.footer__links a { color: #9fb8c2; font-weight: 500; }
.footer__links a:hover { color: var(--teal-300); }
.footer__contact { display: grid; gap: .8rem; }
.footer__contact a, .footer__contact p { color: #cfe0e6; display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { color: var(--teal-400); flex-shrink: 0; margin-top: .2rem; }
.footer__contact a:hover { color: var(--teal-300); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .9rem; }
.footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__legal a { color: #9fb8c2; }
.footer__legal a:hover { color: #fff; }

/* ---- Floating WhatsApp Button ------------------------------------------ */
.wa-fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .2s var(--ease);
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover { transform: scale(1.08); color: #fff; }
.wa-fab::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45) } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0) } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0) } }
@media (prefers-reduced-motion: reduce) { .wa-fab::after { animation: none; } }

/* ---- Split (Text + Bild) ----------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 6px solid #fff; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }
.split__title { margin-bottom: 1rem; }

/* ---- Responsive Navigation & Layout ------------------------------------ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero__float--tl { left: 0; }
  .hero__float--br { right: 0; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__toggle { display: grid; }
  .nav__actions .nav__phone span { display: none; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem; box-shadow: var(--sh);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .site-header.nav-open .nav__links { transform: none; opacity: 1; visibility: visible; }
  .nav__link { padding: .8rem 1rem; font-size: 1.05rem; }
  .nav { flex-wrap: wrap; position: relative; }
  .nav__actions { margin-left: auto; }
}

@media (max-width: 560px) {
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__float { display: none; }
}

/* ---- Logo-Integration -------------------------------------------------- */
.hero__figure--brand { aspect-ratio: 1 / 1; background: var(--navy); border-color: #12243b; }
.hero__figure--brand img { object-fit: contain; padding: 3%; }
/* Freigestelltes Logo im Hero (schwebend) */
.hero__media--logo img { display: block; width: 100%; max-width: 520px; margin-inline: auto;
  filter: drop-shadow(0 18px 40px rgba(10,40,90,.28)); }
.footer__logo { display: inline-block; line-height: 0; }
.footer__logo img { width: 172px; height: auto; border-radius: 18px; }
@media (max-width: 560px) { .footer__logo img { width: 148px; } }

/* Footer-Karte */
.footer__map-link { position: relative; display: block; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--sh-sm); }
.footer__map-link img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.footer__map-link:hover img { transform: scale(1.06); }
.footer__map-cta { position: absolute; left: .6rem; bottom: .6rem; display: inline-flex; align-items: center; gap: .4rem;
  background: var(--teal-600); color: #fff; font-weight: 700; font-size: .82rem; padding: .4rem .8rem; border-radius: var(--r-pill); box-shadow: var(--sh); }
.footer__map-cta svg { width: 1em; height: 1em; }

/* Waagerechte Kontaktleiste (kleine Icons) */
.footer__contactbar { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.75rem;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; }
.footer__contact-item { display: inline-flex; align-items: center; gap: .5rem; color: #cfe0e6; font-weight: 500; font-size: .95rem; }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--teal-400); flex-shrink: 0; }
a.footer__contact-item:hover { color: var(--teal-300); }

/* ======================================================================
   Theme-Umschalter + Dark Mode
   ====================================================================== */
.theme-toggle {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink);
  display: grid; place-items: center;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.theme-toggle:hover { background: var(--teal-50); border-color: var(--teal-300); color: var(--teal-700); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle__sun { display: none; }
[data-theme="dark"] .theme-toggle__moon { display: none; }
[data-theme="dark"] .theme-toggle__sun { display: block; }
[data-theme="dark"] .theme-toggle:hover { color: var(--teal-300); }

/* ---- Dark-Mode Tokens ---- */
[data-theme="dark"] {
  color-scheme: dark;
  --bg:        #0b1622;
  --surface:   #10233a;
  --surface-2: #0d1d31;
  --ink:       #eaf2fb;
  --ink-700:   #c6d5e6;
  --ink-600:   #a9bccf;
  --muted:     #8aa0b5;
  --line:   rgba(255,255,255,.10);
  --line-2: rgba(255,255,255,.18);
  --teal-50:  #10273f;
  --teal-100: #143050;
  --sh-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.3);
  --sh:    0 6px 18px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.35);
  --sh-lg: 0 18px 40px rgba(0,0,0,.55), 0 6px 14px rgba(0,0,0,.4);
}

/* ---- Dark-Mode Komponenten-Feinschliff ---- */
[data-theme="dark"] .site-header { background: rgba(11,22,34,.85); }
[data-theme="dark"] .hero__title .accent { color: var(--teal-400); }
[data-theme="dark"] a { color: var(--teal-300); }
[data-theme="dark"] .eyebrow { color: var(--teal-300); }
[data-theme="dark"] .card__link { color: var(--teal-300); }
[data-theme="dark"] .icon-badge { color: var(--teal-300); }
[data-theme="dark"] .icon-badge--honey { background: linear-gradient(135deg,#123049,#0f2740); color: var(--teal-300); border-color: rgba(255,255,255,.14); }
[data-theme="dark"] .pill { color: var(--teal-200); }
[data-theme="dark"] .faq__q .faq__icon { color: var(--teal-300); }
[data-theme="dark"] .quote__avatar { color: var(--teal-300); }
[data-theme="dark"] .nav__link:hover { color: var(--teal-200); }
[data-theme="dark"] .nav__link[aria-current="page"] { color: #fff; background: rgba(255,255,255,.08); }
[data-theme="dark"] .nav__toggle { background: rgba(255,255,255,.06); }
[data-theme="dark"] .field input,
[data-theme="dark"] .field select,
[data-theme="dark"] .field textarea { background: #0c1d31; }
[data-theme="dark"] .field input:focus,
[data-theme="dark"] .field select:focus,
[data-theme="dark"] .field textarea:focus { box-shadow: 0 0 0 4px rgba(46,134,255,.18); }
[data-theme="dark"] .section--soft { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }
[data-theme="dark"] .hero__figure,
[data-theme="dark"] .split__media { border-color: #17324c; }
[data-theme="dark"] .hero__float { background: var(--surface); }
[data-theme="dark"] .breadcrumb a:hover { color: var(--teal-300); }
[data-theme="dark"] ::selection { background: var(--teal-600); color: #fff; }

@media (max-width: 860px) {
  [data-theme="dark"] .nav__links { background: #0c1d31; border-bottom-color: var(--line); }
}

/* ======================================================================
   Mobile-Header & Hero-Feinschliff
   ====================================================================== */
.nav__links-cta { display: none; }
@media (max-width: 860px) {
  .nav__actions .btn--primary { display: none; }   /* CTA wandert ins Menü */
  .nav__links-cta { display: block; margin-top: .6rem; }
  .nav__links-cta .btn { width: 100%; }
}
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__content, .hero__media { min-width: 0; }
}
@media (max-width: 480px) {
  .brand__name span { display: none; }
}

/* ---- Google-Bewertungen: kontinuierliches Laufband (Marquee) ----------- */
.reviews { overflow: hidden; }
.reviews__track {
  display: flex; gap: 1.5rem; width: max-content; padding: .5rem;
  will-change: transform;
  animation-name: reviews-marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  /* animation-duration wird per JS gesetzt */
}
.reviews:hover .reviews__track { animation-play-state: paused; }
.reviews__card { flex: 0 0 clamp(280px, 78vw, 360px); }
@keyframes reviews-marquee { to { transform: translateX(calc(-1 * var(--rev-shift, 50%))); } }
@media (prefers-reduced-motion: reduce) { .reviews__track { animation: none; } }
