@media (max-width: 600px) {
  .fab-container {
    right: 24px;
    left: auto;
    transform: none;
    bottom: 24px;
  }
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
/* Zeilenumbruch in der Copyright-Zeile nur auf kleinen Bildschirmen */
.footer-copyright br {
  display: none;
}
@media (max-width: 480px) {
  .footer-copyright br {
    display: inline;
  }
}
/* ── Footer Professional ─────────────────────────────── */
/* Footer Responsive Optimierung */
.footer-row {
  width: 100%;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  justify-items: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 0 24px 0;
  min-height: 80px;
  position: relative;
  z-index: 2;
  font-size: 1em;
  text-align: center;
  row-gap: 8px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  margin-bottom: -2px;
}
.footer-copyright {
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--muted);
  white-space: normal;
  font-size: 1em;
  text-align: center;
  word-break: break-word;
}
@media (max-width: 400px) {
  .footer-copyright {
    font-size: 0.97em;
    display: block;
    max-width: 90vw;
    margin: 0 auto;
    line-height: 1.3;
  }
}
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 1em;
  transition: color 0.2s;
  word-break: break-word;
}
.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 480px) {
  .footer-row {
    grid-template-rows: auto auto auto;
    row-gap: 6px;
    padding-bottom: 70px; /* Abstand für FAB-Button */
    min-height: 100px;
  }
  .footer-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }
  .footer-links {
    gap: 10px;
    font-size: 1em;
  }
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(10,18,32,0.82) 60%, rgba(10,18,32,0.55) 100%),
    url("van.jpg") center center / cover no-repeat;
  opacity: 0.55;
}

body {
  position: relative;
  z-index: 1;
}

main, header, .page-bg, .site-header, .hero, .feature-grid, .testimonials, .process, .price-notes, .section-heading, .trust-row, .btn, .lead, .eyebrow {
  position: relative;
  z-index: 1;
}
/* Kalkulator Berechnungs-Widget */
.calc-widget {
  background: linear-gradient(120deg,rgba(58,160,255,0.13),rgba(13,94,255,0.10)),#101a2a;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(58,160,255,0.10);
  padding: 18px 18px 12px 18px;
  margin-top: 8px;
  font-size: 1.08rem;
  display: grid;
  gap: 7px;
  border: 1.5px solid var(--accent);
  animation: kalkulator-fade-in 0.7s cubic-bezier(.77,0,.18,1) 1;
}
.calc-widget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.calc-widget-divider {
  border-bottom: 1.5px solid var(--accent);
  margin: 7px 0 7px 0;
}
.calc-widget-sum {
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 1.13rem;
}
.calc-widget-meta {
  margin-top: 8px;
  color: var(--accent);
  font-size: 1.01rem;
  text-align: center;
  font-weight: 600;
}
/* Kalkulator Modern Select */
.modern-select-wrapper {
  position: relative;
  display: block;
}
.modern-select {
  width: 100%;
  padding: 12px 44px 12px 14px;
  border-radius: 10px;
  background: linear-gradient(120deg,rgba(58,160,255,0.10),rgba(13,94,255,0.08)),#101a2a;
  color: #f2f6fb;
  border: 1.5px solid var(--accent);
  font-size: 1.07rem;
  font-weight: 500;
  appearance: none;
  outline: none;
  transition: border 0.2s;
}
.modern-select:focus {
  border: 1.5px solid var(--accent-deep);
}
.modern-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modern-select-arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--accent);
}
.kalkulator-panel strong {
  color: var(--accent-deep);
  font-size: 1.25rem;
  font-weight: 700;
}
.kalkulator-panel ul {
  margin-top: 8px;
  padding-left: 18px;
  font-size: 0.98em;
  color: #a8b6c7;
}
.kalkulator-panel {
  animation: kalkulator-fade-in 0.7s cubic-bezier(.77,0,.18,1) 1;
}
@keyframes kalkulator-fade-in {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
:root {
  color-scheme: only light;
  --bg-dark: #05080d;
  --bg-mid: #0b111a;
  --bg-light: #121c2a;
  --accent: #3aa0ff;
  --accent-deep: #0d5eff;
  --text: #f2f6fb;
  --muted: #a8b6c7;
  --card: rgba(10, 16, 26, 0.88);
  --glass: rgba(255, 255, 255, 0.06);
  --stroke: rgba(58, 160, 255, 0.3);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(58, 160, 255, 0.12), transparent 45%),
    radial-gradient(circle at 82% 14%, rgba(12, 72, 255, 0.2), transparent 40%),
    linear-gradient(140deg, #05070c 0%, #0a121c 50%, #05070c 100%);
  z-index: -2;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  opacity: 0.6;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 4vw, 64px);
  gap: 24px;
  position: sticky;
  top: 0;
  background: rgba(12, 20, 28, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(140deg, #0f1b2b, #101a2a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d6e6ff;
  font-weight: 700;
}

.brand-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.nav-menu a {
  display: inline-block;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 10px;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--text);
  background: rgba(58, 160, 255, 0.1);
}

.nav-menu a[data-active] {
  color: var(--accent);
  background: rgba(58, 160, 255, 0.15);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(14px, 14px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

/* ── Floating Action Button ────────────────────────────────────── */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  font-size: 1rem;
}

.fab-main {
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(145deg, #102341, #0b1730);
  color: #f4f8ff;
  border: 1px solid rgba(58, 160, 255, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 32px rgba(6, 14, 30, 0.55);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s ease;
  white-space: nowrap;
}

.fab-main:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 48px rgba(58, 160, 255, 0.35);
}

.fab-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
}

.fab-main-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.fab-main-icon {
  width: 18px;
  height: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.88;
  transition: transform 0.3s ease;
}

.fab-main[aria-expanded="true"] .fab-main-icon {
  transform: rotate(180deg);
}

.fab-main[aria-expanded="true"] .fab-status-dot {
  background: #38bdf8;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.16);
}

.fab-menu {
  position: absolute;
  bottom: 72px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fab-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.fab-item svg {
  width: 24px;
  height: 24px;
}

.fab-item.whatsapp {
  background: #25d366;
  color: #fff;
}

.fab-item.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.fab-item.phone {
  background: #3aa0ff;
  color: #fff;
}

.fab-item.phone:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(58, 160, 255, 0.5);
}


main {
  padding: 24px clamp(24px, 5vw, 96px) 80px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-size: 0.78rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  color: #f4f8ff;
  box-shadow: 0 18px 40px rgba(58, 160, 255, 0.28);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border: 1px solid var(--stroke);
  color: var(--text);
  background: transparent;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.trust-value {
  font-size: 1.5rem;
  font-weight: 600;
}

.trust-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 360px;
  background: linear-gradient(140deg, rgba(7, 12, 20, 0.6), rgba(7, 16, 28, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.van-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(5, 8, 13, 0.75), rgba(5, 8, 13, 0.25)),
    url("../assets/van.jpg") center right / cover no-repeat;
  opacity: 0.6;
  filter: saturate(0.85) contrast(1.05);
}

.key-orbit {
  position: relative;
  width: min(360px, 70vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  z-index: 1;
}

.key-card {
  width: 72%;
  aspect-ratio: 1;
  background: var(--card);
  border-radius: 32px;
  padding: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.key-card svg {
  width: 100%;
  height: 100%;
}

.key-card img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
  margin: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit 10s linear infinite;
  box-shadow: 0 0 20px rgba(245, 194, 102, 0.6);
}

.orbit-dot.alt {
  width: 10px;
  height: 10px;
  top: auto;
  bottom: 8%;
  animation-direction: reverse;
  background: #95c8ff;
}

.feature-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card,
.service-card,
.contact-card,
.note-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
}

.feature-card h3,
.service-card h3 {
  margin-bottom: 12px;
}

.price-tag {
  margin-top: 18px;
  font-weight: 600;
  color: var(--accent);
}

.section-heading {
  max-width: 520px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.process-steps article {
  background: var(--glass);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-steps span {
  font-weight: 700;
  color: var(--accent);
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(130deg, rgba(58, 160, 255, 0.2), rgba(13, 94, 255, 0.18));
  border: 1px solid rgba(58, 160, 255, 0.35);
}

.page-hero {
  padding: 32px 0 12px;
}

.services-hero {
  padding-bottom: 8px;
}

.services-overview,
.services-stack,
.pricing-side-notes {
  display: grid;
  gap: 28px;
}

.scope-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(58, 160, 255, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(10, 18, 30, 0.96), rgba(9, 15, 24, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
}

.scope-label,
.panel-label,
.service-kicker {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  font-size: 0.78rem;
}

.scope-banner h2,
.service-detail h2 {
  margin-top: 8px;
}

.scope-banner p:last-child {
  margin-top: 12px;
  color: var(--muted);
  max-width: 720px;
}

.scope-badge {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(58, 160, 255, 0.24);
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.info-panel {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.info-panel-accent {
  background:
    radial-gradient(circle at top right, rgba(58, 160, 255, 0.18), transparent 30%),
    var(--card);
}

.info-panel h3 {
  margin: 8px 0 14px;
}

.info-panel p {
  color: var(--muted);
}

.info-panel p + p {
  margin-top: 12px;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.info-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
}

.info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.services-stack {
  gap: 18px;
}

.service-detail {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(9, 16, 27, 0.96), rgba(8, 13, 22, 0.94));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.service-detail[open] {
  border-color: rgba(58, 160, 255, 0.24);
}

.service-detail summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  cursor: pointer;
}

.service-detail summary::-webkit-details-marker {
  display: none;
}

.service-detail summary h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.service-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  flex-shrink: 0;
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-detail[open] .service-toggle::after {
  opacity: 0;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 0 28px 28px;
}

.service-visual {
  min-height: 160px;
  border-radius: 22px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.visual-entry {
  background: linear-gradient(145deg, #173a67, #295893);
}

.visual-lock {
  background: linear-gradient(145deg, #254866, #476d8d);
}

.visual-cylinder {
  background: linear-gradient(145deg, #5b6a85, #8998b4);
}

.visual-mailbox {
  background: linear-gradient(145deg, #49606e, #6e8d98);
}

.visual-garage {
  background: linear-gradient(145deg, #6a543d, #9d7751);
}

.visual-car {
  background: linear-gradient(145deg, #23486a, #2f6fa4);
}

.service-copy {
  display: grid;
  gap: 16px;
}

.service-intro {
  color: var(--text);
  font-size: 1.05rem;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.rate-card,
.single-price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px 20px;
}

.rate-card h3 {
  margin-bottom: 12px;
}

.rate-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.rate-card li {
  display: grid;
  gap: 6px;
}

.rate-card span,
.single-price-card p {
  color: var(--muted);
}

.rate-card strong,
.single-price-card strong {
  font-size: 1.4rem;
  color: var(--text);
}

.single-price-card {
  max-width: 420px;
}

.surcharge-note {
  font-weight: 600;
  color: var(--text);
}

.tax-note {
  color: var(--muted);
  font-style: italic;
}

.price-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.price-notes ul {
  margin-top: 16px;
  padding-left: 20px;
  color: var(--muted);
}

.section-grid {
  margin-top: 28px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
textarea {
  background: rgba(10, 16, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58, 160, 255, 0.18);
}

/* ── Kontaktformular Zustände ───────────────────────────────────── */

/* Honeypot verstecken */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Feld-Fehler-Styling */
.contact-form label.has-error input,
.contact-form label.has-error textarea {
  border-color: #e05555;
  box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.18);
}

.field-error {
  display: block;
  color: #e05555;
  font-size: 0.84rem;
  font-weight: 500;
  min-height: 1.2em;
  transition: opacity 0.2s ease;
}

.field-error:empty {
  display: none;
}

/* Globales Feedback-Banner */
.form-feedback {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  display: none;
}

.form-feedback:not([hidden]) {
  display: block;
}

.form-feedback--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.form-feedback--error {
  background: rgba(224, 85, 85, 0.1);
  border: 1px solid rgba(224, 85, 85, 0.38);
  color: #f87171;
}

/* Lade-Zustand des Submit-Buttons */
.btn--loading {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.btn--loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.map-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: center;
}

.map-embed {
  background: var(--glass);
  border: 1px solid rgba(58, 160, 255, 0.28);
  border-radius: 24px;
  min-height: 260px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
  gap: 24px;
  padding: 32px clamp(24px, 5vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(9, 14, 19, 0.7);
}

.site-footer > div > a {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.contact-card p a,
.site-footer p a {
  display: inline;
  margin-top: 0;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(58, 160, 255, 0.35);
  text-underline-offset: 3px;
}

.contact-card p a:hover,
.site-footer p a:hover {
  text-decoration-color: var(--accent);
}

.footer-label {
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes orbit {
  0% {
    transform: translateX(-50%) rotate(0deg) translateX(140px);
  }
  100% {
    transform: translateX(-50%) rotate(360deg) translateX(140px);
  }
}

/* ── Testimonials ──────────────────────────────────────────────── */
.testimonials-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.google-rating-badge:hover {
  border-color: var(--stroke);
  transform: translateY(-2px);
}

.google-g {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  font-weight: 800;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: "Google Sans", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.stars-row {
  color: #fbbc04;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.rating-label {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.testimonial-track.marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0;
}

.marquee-inner {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  transition: box-shadow 0.3s;
}

.testimonial-card {
  min-width: 320px;
  max-width: 340px;
  flex: 0 0 auto;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--stroke);
  transform: translateY(-4px);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--av-color, var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.tc-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.tc-meta {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 1px;
}

.tc-stars {
  color: #fbbc04;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.tc-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.testimonials-cta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: nowrap;
    align-items: center;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand > div {
    min-width: 0;
  }

  .brand-name,
  .brand-tag {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    width: auto;
    flex: 0 0 auto;
    margin-left: auto;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(5, 8, 13, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    padding: 0 clamp(20px, 5vw, 24px);
    gap: 8px;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55),
      opacity 0.2s ease,
      transform 0.25s ease,
      padding 0.25s ease,
      border-color 0.25s ease;
    z-index: 9;
  }

  .nav-menu.is-open {
    max-height: 400px;
    padding: 20px clamp(20px, 5vw, 24px);
    border-bottom-color: rgba(255, 255, 255, 0.06);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .scope-banner,
  .service-detail-body {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 120px;
  }

  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    padding: 18px 20px;
    gap: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-tag {
    font-size: 0.8rem;
  }

  .nav-menu {
    top: 84px;
  }

  .hero-actions,
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .scope-banner,
  .info-panel,
  .service-detail summary,
  .service-detail-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .scope-banner {
    gap: 16px;
  }

  .scope-badge {
    width: 100%;
    text-align: center;
  }

  .service-detail summary {
    align-items: flex-start;
  }

  .service-toggle {
    width: 38px;
    height: 38px;
  }

  .service-detail summary h2 {
    font-size: 1.45rem;
  }

  .rate-card strong,
  .single-price-card strong {
    font-size: 1.2rem;
  }

  .testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .testimonial-track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-width: 280px;
    scroll-snap-align: start;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .fab-container {
    bottom: 16px;
    right: 16px;
  }

  .fab-main {
    height: 52px;
    padding: 0 16px;
  }

  .fab-main-label {
    font-size: 0.88rem;
  }

  .fab-main-icon {
    width: 16px;
    height: 16px;
  }

  .fab-menu {
    bottom: 68px;
  }

  .fab-item {
    width: 52px;
    height: 52px;
  }

  .fab-item svg {
    width: 22px;
    height: 22px;
  }
}
