/* ==========================================================================
   SCHARF Reinigungsservice — Landing Page
   Quicksand + Open Sans · DSGVO-freundlich (Schriften über bunny.fonts EU-CDN)
   ========================================================================== */

/* --- Design tokens --------------------------------------------------------- */
:root {
  --blue-primary: #2E8FE6;
  --blue-deep:    #1A6BB8;
  --blue-ink:     #0F3A66;
  --blue-soft:    #E6F1FC;

  --ink:          #1A2B3F;
  --text:         #2C3E50;
  --muted:        #5A6C82;
  --border:       #D8E3F0;
  --border-soft:  #EAF1F8;
  --bg:           #FFFFFF;
  --bg-alt:       #F5F8FC;
  --danger:       #DC2626;
  --success:      #10B981;

  --font-display: 'Quicksand', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Open Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --size-1: 0.25rem;  --size-2: 0.5rem;  --size-3: 0.75rem;
  --size-4: 1rem;     --size-5: 1.25rem; --size-6: 1.5rem;
  --size-8: 2rem;     --size-10: 2.5rem; --size-12: 3rem;
  --size-16: 4rem;    --size-20: 5rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 2px rgba(15,58,102,.05);
  --shadow-sm: 0 2px 10px rgba(15,58,102,.06);
  --shadow-md: 0 8px 24px rgba(46,143,230,.12);
  --shadow-lg: 0 20px 50px rgba(46,143,230,.15);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-base: 280ms;

  --container: 1200px;
  --container-narrow: 960px;
  --header-h: 72px;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: var(--blue-primary); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--blue-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 var(--size-4);
}
p { margin: 0 0 var(--size-4); }
:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Layout helpers ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--size-5);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--size-5);
}
.section { padding: var(--size-16) 0; }
.section-tight { padding: var(--size-12) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(135deg, var(--blue-ink) 0%, #082141 100%);
  color: rgba(255,255,255,.82);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.72); }
.section-dark .eyebrow { color: var(--blue-primary); }
.section-dark .section-head p { color: rgba(255,255,255,.65); }
.section-head {
  max-width: 720px;
  margin: 0 auto var(--size-12);
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: var(--size-4);
}
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: var(--size-3);
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--size-2);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(46,143,230,.3); }
.btn-primary { background: var(--blue-primary); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); color: #fff; }
.btn-dark { background: var(--blue-ink); color: #fff; }
.btn-dark:hover { background: var(--blue-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--blue-ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--blue-primary);
  color: #fff;
  border-color: var(--blue-primary);
}
.btn .icon { width: 18px; height: 18px; }

/* --- Header / Navbar (dark) ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(15,58,102,.25);
  background: rgba(15,58,102,.96);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--size-5);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
}
.logo-mark {
  height: 46px;
  width: 46px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: #fff;
  transition: color var(--dur-fast) var(--ease);
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  transition: color var(--dur-fast) var(--ease);
}
.logo:hover .logo-text { color: var(--blue-primary); }
.logo:hover .logo-sub  { color: rgba(255,255,255,.85); }
.nav-list {
  display: none;
  list-style: none;
  margin: 0; padding: 0;
  gap: var(--size-6);
}
.nav-list a {
  font-family: var(--font-display);
  color: rgba(255,255,255,.82);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--blue-primary);
  transition: width var(--dur-base) var(--ease);
}
.nav-list a:hover,
.nav-list a.is-active { color: #fff; }

/* Shop-Link im Menü: Icon + Pill-Akzent */
.nav-list a.nav-shop,
.mobile-panel a.nav-shop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-primary);
  font-weight: 600;
  padding: 6px 14px;
  border: 1.5px solid rgba(46,143,230,.35);
  border-radius: 999px;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.nav-list a.nav-shop::after { display: none; }
.nav-list a.nav-shop:hover,
.mobile-panel a.nav-shop:hover {
  background: var(--blue-primary);
  color: #fff;
  border-color: var(--blue-primary);
}
.nav-list a.nav-shop svg,
.mobile-panel a.nav-shop svg { width: 16px; height: 16px; }
.mobile-panel a.nav-shop { align-self: flex-start; }
.nav-list a:hover::after,
.nav-list a.is-active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: var(--size-4); }
.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.nav-phone:hover { color: #fff; background: var(--blue-primary); }
.nav-phone .icon { width: 18px; height: 18px; color: var(--blue-primary); transition: color var(--dur-fast); }
.nav-phone:hover .icon { color: #fff; }
.nav-phone-text { display: none; }
@media (min-width: 900px) {
  .nav-phone {
    width: auto; height: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
  .nav-phone:hover { background: transparent; }
  .nav-phone-text { display: inline; }
}
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: #fff;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle .bar {
  width: 22px; height: 2px; background: currentColor;
  position: relative;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-fast);
}
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 2px; background: currentColor;
  transition: transform var(--dur-base) var(--ease);
}
.nav-toggle .bar::before { top: -7px; }
.nav-toggle .bar::after  { top:  7px; }
.nav[data-open="true"] .nav-toggle .bar { background: transparent; }
.nav[data-open="true"] .nav-toggle .bar::before { transform: translateY(7px) rotate(45deg); }
.nav[data-open="true"] .nav-toggle .bar::after  { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--blue-ink);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  padding: var(--size-5);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base);
}
.mobile-panel ul { list-style: none; padding: 0; margin: 0 0 var(--size-4); display: grid; gap: var(--size-3); }
.mobile-panel a { color: rgba(255,255,255,.85); font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; text-decoration: none; }
.mobile-panel a:hover { color: var(--blue-primary); }
.nav[data-open="true"] ~ .mobile-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .nav-list { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-panel { display: none; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(46,143,230,.10), transparent 55%),
    linear-gradient(180deg, var(--blue-soft) 0%, #fff 85%);
  padding: var(--size-16) 0 var(--size-20);
}
.hero-grid {
  display: grid;
  gap: var(--size-10);
  align-items: center;
  grid-template-columns: 1fr;
}
.hero-text .eyebrow {
  background: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(46,143,230,.15);
  margin-bottom: var(--size-5);
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
  margin-bottom: var(--size-5);
  color: var(--blue-ink);
}
.hero h1 span { color: var(--blue-primary); }
.hero .lead {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: var(--size-8);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--size-3); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue-soft);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual .badge {
  position: absolute;
  left: var(--size-5); bottom: var(--size-5);
  background: #fff;
  padding: var(--size-3) var(--size-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: var(--size-3);
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  color: var(--blue-ink);
}
.hero-visual .badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(16,185,129,.2);
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* --- Trust bar ------------------------------------------------------------ */
.trust {
  background: #fff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size-5);
  padding: var(--size-8) 0;
}
.trust-item {
  display: flex; align-items: center; gap: var(--size-3);
  color: var(--blue-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-item .icon {
  width: 22px; height: 22px;
  color: var(--blue-primary);
  flex-shrink: 0;
}
@media (min-width: 800px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Services grid -------------------------------------------------------- */
.services-grid {
  display: grid;
  gap: var(--size-5);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.service-card {
  background: #fff;
  padding: var(--size-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.service-card::after {
  content: "Mehr erfahren →";
  display: block;
  margin-top: var(--size-3);
  color: var(--blue-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
a.service-card:hover::after { opacity: 1; transform: translateX(0); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-primary);
}
.service-card .icon-wrap {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: var(--blue-soft);
  border-radius: var(--radius-md);
  margin-bottom: var(--size-4);
  color: var(--blue-primary);
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}
.service-card:hover .icon-wrap {
  background: var(--blue-primary);
  color: #fff;
}
.service-card .icon { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--size-2);
  color: var(--blue-ink);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--muted);
  margin: 0;
}

/* --- Pflegeheim feature --------------------------------------------------- */
.feature {
  display: grid;
  gap: var(--size-10);
  grid-template-columns: 1fr;
  align-items: center;
}
.feature-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--blue-soft);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
}
.feature-visual .placeholder-icon { width: 80px; height: 80px; opacity: 0.35; }
.feature-visual .stat {
  position: absolute;
  right: var(--size-4); top: var(--size-4);
  background: #fff;
  color: var(--blue-ink);
  padding: var(--size-3) var(--size-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.feature-visual .stat strong { display: block; font-size: 1.4rem; color: var(--blue-primary); }
.feature-text .eyebrow { color: var(--blue-primary); }
.feature-list {
  list-style: none; padding: 0; margin: var(--size-6) 0 0;
  display: grid; gap: var(--size-3);
}
.feature-list li {
  display: flex; gap: var(--size-3); align-items: flex-start;
  color: var(--text);
}
.feature-list .check {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--blue-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 0.9fr 1.1fr; }
}

/* --- Steps / Process ------------------------------------------------------ */
.steps {
  display: grid;
  gap: var(--size-5);
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--size-6);
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: var(--size-4); right: var(--size-5);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  opacity: 0.5;
}
.step:hover { transform: translateY(-4px); border-color: var(--blue-primary); }
.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--size-2);
}
.step p { color: var(--muted); margin: 0; font-size: 0.95rem; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* --- About ---------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: var(--size-10);
  grid-template-columns: 1fr;
  align-items: start;
}
.about-text p { margin-bottom: var(--size-5); }
.section-dark .about-text p { color: rgba(255,255,255,.78); }
.about-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  float: left;
  line-height: 1;
  padding: 0.2rem 0.6rem 0 0;
  color: var(--blue-primary);
  font-weight: 700;
}
.about-visual {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-ink);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-visual .caption {
  position: absolute;
  left: var(--size-4); bottom: var(--size-4);
  background: rgba(15,58,102,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: var(--size-3) var(--size-4);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,.1);
}
.about-visual .caption span { display: block; color: rgba(255,255,255,.7); font-weight: 400; font-size: 0.8rem; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.3fr 0.9fr; }
}

/* --- Partners carousel ---------------------------------------------------- */
.partners {
  overflow: hidden;
  position: relative;
  padding: var(--size-8) 0;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.partners-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: partners-scroll 28s linear infinite;
  align-items: center;
}
.partners:hover .partners-track { animation-play-state: paused; }
.partners-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter var(--dur-base) var(--ease);
}
.partners-track img:hover { filter: grayscale(0%) opacity(1); }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

/* --- Shop promo section --------------------------------------------------- */
.shop-promo {
  background:
    radial-gradient(ellipse at top right, rgba(46,143,230,.10), transparent 55%),
    linear-gradient(180deg, var(--blue-soft) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  padding: var(--size-12);
}
.shop-categories {
  display: grid;
  gap: var(--size-5);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: var(--size-10);
}
.shop-cat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--size-5);
  text-align: center;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base);
}
.shop-cat:hover { transform: translateY(-3px); border-color: var(--blue-primary); }
.shop-cat .icon-wrap {
  width: 56px; height: 56px;
  margin: 0 auto var(--size-3);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft);
  color: var(--blue-primary);
  border-radius: var(--radius-md);
}
.shop-cat .icon-wrap svg { width: 28px; height: 28px; }
.shop-cat h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 var(--size-1);
  color: var(--blue-ink);
}
.shop-cat p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
}
.shop-cta-row {
  margin-top: var(--size-8);
  text-align: center;
}
.shop-cta-row .hint {
  margin-top: var(--size-3);
  font-size: .82rem;
  color: var(--muted);
}

/* Inline Shop-Callout (in Über uns, Service-Seiten) */
.shop-callout {
  margin-top: var(--size-6);
  padding: var(--size-4) var(--size-5);
  background: rgba(46,143,230,.08);
  border-left: 3px solid var(--blue-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem;
  color: var(--text);
}
.section-dark .shop-callout {
  background: rgba(46,143,230,.12);
  color: rgba(255,255,255,.85);
}
.shop-callout a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.section-dark .shop-callout a { color: #7ab8f0; }

/* --- Google reviews card -------------------------------------------------- */
.google-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--size-10) var(--size-8);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
}
.google-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.google-card .google-icon {
  width: 64px; height: 64px;
  margin: 0 auto var(--size-5);
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
}
.google-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--size-2);
}
.google-card p {
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto var(--size-6);
}
.google-card .hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: var(--size-3) 0 0;
}

/* --- Contact / Form ------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: var(--size-8);
  grid-template-columns: 1fr;
}
.contact-info { display: grid; gap: var(--size-4); align-content: start; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--size-4) var(--size-5);
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: var(--size-1);
}
.contact-card p { color: var(--text); margin: 0; font-size: 0.95rem; }
.contact-card a { color: var(--blue-ink); font-weight: 600; }
.contact-card a:hover { color: var(--blue-primary); }

.form {
  background: #fff;
  color: var(--text);
  padding: var(--size-8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  gap: var(--size-5);
}
.field { display: grid; gap: 6px; }
.field-row { display: grid; gap: var(--size-5); }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue-ink);
}
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font: inherit;
  font-family: var(--font-body);
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(46,143,230,.15);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 0.85rem; display: none; }
.field.invalid .field-error { display: block; }

.checkbox { display: flex; align-items: flex-start; gap: var(--size-3); font-size: 0.92rem; line-height: 1.5; }
.checkbox input[type="checkbox"] {
  appearance: none;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.checkbox input[type="checkbox"]:checked {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
}
.checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 12px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.form-feedback {
  padding: var(--size-4);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}
.form-feedback.is-visible { display: block; }
.form-feedback.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-feedback.error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.8fr 1.2fr; }
}

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--blue-ink);
  color: rgba(255,255,255,.72);
  padding: var(--size-10) 0 var(--size-6);
  font-size: 0.92rem;
  font-family: var(--font-body);
}
.site-footer .container-narrow { padding: 0 var(--size-5); }
.footer-grid {
  display: grid;
  gap: var(--size-8);
  grid-template-columns: 1fr;
  padding-bottom: var(--size-6);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { color: rgba(255,255,255,.65); margin-top: var(--size-3); max-width: 280px; font-size: 0.9rem; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo:hover .logo-text { color: var(--blue-primary); }
.footer-brand .logo-mark { height: 42px; width: 42px; }
.footer-brand .logo-sub { color: rgba(255,255,255,.55); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--size-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--size-2); }
.footer-col a {
  color: rgba(255,255,255,.65);
  transition: color var(--dur-fast);
  font-size: 0.9rem;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: var(--size-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--size-3);
  color: rgba(255,255,255,.45);
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* --- Back to top --------------------------------------------------------- */
.back-top {
  position: fixed;
  right: var(--size-5); bottom: var(--size-5);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--dur-base), transform var(--dur-base), background var(--dur-fast);
  z-index: 50;
}
.back-top.is-visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.back-top:hover { background: var(--blue-deep); }

/* --- Scroll reveal -------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

/* --- Motion preferences -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --- Legal pages (Impressum, Datenschutz) --------------------------------- */
.legal-hero {
  background:
    radial-gradient(ellipse at top right, rgba(46,143,230,.08), transparent 55%),
    linear-gradient(180deg, var(--blue-soft) 0%, #fff 100%);
  padding: var(--size-16) 0 var(--size-10);
  text-align: center;
}
.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--size-3);
}
.legal-hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}
.legal-page {
  padding: var(--size-12) 0 var(--size-16);
}
.legal-page .container-narrow {
  max-width: 760px;
}
.legal-page h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin-top: var(--size-10);
  padding-top: var(--size-5);
  border-top: 2px solid var(--border-soft);
}
.legal-page > .container-narrow > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-page h3 {
  font-size: 1.2rem;
  margin-top: var(--size-8);
  color: var(--blue-ink);
}
.legal-page p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--size-4);
}
.legal-page ul, .legal-page ol {
  color: var(--text);
  line-height: 1.75;
  padding-left: 1.4rem;
  margin-bottom: var(--size-4);
}
.legal-page li { margin-bottom: var(--size-2); }
.legal-page strong { color: var(--blue-ink); font-weight: 700; }
.legal-page a { color: var(--blue-primary); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--blue-deep); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--size-6);
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
.legal-back:hover { color: var(--blue-primary); }
.legal-back svg { width: 16px; height: 16px; }

/* --- Service pages (Leistungs-Unterseiten) -------------------------------- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--size-3);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: inline-flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-primary); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 6px; color: var(--border); }
.breadcrumb li[aria-current="page"] { color: var(--blue-ink); font-weight: 600; }

.service-hero {
  background:
    radial-gradient(ellipse at top right, rgba(46,143,230,.08), transparent 55%),
    linear-gradient(180deg, var(--blue-soft) 0%, #fff 100%);
  padding: var(--size-12) 0 var(--size-10);
}
.service-hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 0 0 var(--size-4);
  color: var(--blue-ink);
}
.service-hero .lead {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  color: var(--muted);
  max-width: 720px;
  margin-bottom: var(--size-6);
}

.target-grid {
  display: grid;
  gap: var(--size-4);
  grid-template-columns: 1fr;
}
.target-item {
  padding: var(--size-5);
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  gap: var(--size-3);
  align-items: flex-start;
  transition: border-color var(--dur-base), transform var(--dur-base);
}
.target-item:hover { border-color: var(--blue-primary); transform: translateY(-2px); }
.target-item .check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  background: var(--blue-soft);
  color: var(--blue-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.target-item span { color: var(--text); font-size: 0.95rem; }
@media (min-width: 700px) {
  .target-grid { grid-template-columns: repeat(3, 1fr); }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: var(--size-3);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}
.faq-item[open] { border-color: var(--blue-primary); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  padding: var(--size-5) var(--size-6);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue-ink);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 2px solid var(--blue-primary);
  border-bottom: 2px solid var(--blue-primary);
  transform: rotate(45deg) translateY(-3px);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq-item .faq-body {
  padding: 0 var(--size-6) var(--size-5);
  color: var(--text);
  line-height: 1.7;
}

.service-cta {
  background: linear-gradient(135deg, var(--blue-ink) 0%, #082141 100%);
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-lg);
  padding: var(--size-12);
  text-align: center;
}
.service-cta h2 { color: #fff; margin-bottom: var(--size-4); }
.service-cta p {
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto var(--size-6);
}
.service-cta .btn-row {
  display: flex; gap: var(--size-3); justify-content: center; flex-wrap: wrap;
}
.service-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.service-cta .btn-ghost:hover { background: #fff; color: var(--blue-ink); border-color: #fff; }

/* --- Dialog (Click-to-Load für Google) ----------------------------------- */
.dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,58,102,.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--size-4);
  z-index: 200;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.dialog-backdrop[hidden] { display: none; }
.dialog-backdrop.is-open { opacity: 1; }
.dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--size-8);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--dur-base) var(--ease);
  position: relative;
}
.dialog-backdrop.is-open .dialog { transform: translateY(0) scale(1); }
.dialog .close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--muted);
  border-radius: 50%;
}
.dialog .close:hover { background: var(--bg-alt); color: var(--blue-ink); }
.dialog-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  margin-bottom: var(--size-4);
}
.dialog h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 var(--size-3);
  color: var(--blue-ink);
}
.dialog p { color: var(--text); margin: 0 0 var(--size-3); line-height: 1.6; }
.dialog-actions {
  display: flex;
  gap: var(--size-3);
  margin-top: var(--size-6);
  flex-wrap: wrap;
}
.dialog-actions .btn { flex: 1 0 auto; justify-content: center; }

/* --- Honeypot (visually hidden, accessible to bots, ignored by humans) ---- */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* --- Utility -------------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
