/* ============================================================
   T&B Reinigung — style.css
   Marineblau #14315f · Blau-Akzent #1e5bb8 · Weiss/Kühlgrau #f4f8fc
   Gedämpftes Rot #c0392b (nur sparsame Akzente) · Orange stark zurückgenommen
   Fonts: Baloo 2 (Headings) + Nunito Sans (Body)
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben — Blau dominant, Weiss/Kühlgrau als Grund, Rot sparsam als Akzent */
  --navy: #14315f;
  --navy-dark: #0c2447;
  --blue: #1e5bb8;
  --blue-dark: #174a94;
  --sky: #2563a8;
  --sky-soft: #dce8f7;
  --cream: #f4f8fc;
  --white: #ffffff;
  --red: #c0392b;
  --red-dark: #a53125;
  --orange: #e8622a;
  --orange-dark: #c74e1c;
  --wa-green: #25d366;
  --wa-green-dark: #1da851;

  /* Semantische Rollen (Light) */
  --bg: var(--cream);
  --bg-alt: var(--white);
  --surface: var(--white);
  --surface-2: #eaf1fb;
  --text: #17233a;
  --text-muted: #51637e;
  --heading: var(--navy);
  --border: #d8e3f2;
  --accent: var(--blue);
  --accent-contrast: #ffffff;
  --accent-warm: var(--red);
  --shadow-sm: 0 1px 3px rgba(12, 36, 71, 0.08);
  --shadow-md: 0 8px 24px rgba(12, 36, 71, 0.12);
  --shadow-lg: 0 18px 48px rgba(12, 36, 71, 0.18);

  /* Typo */
  --font-head: "Baloo 2", "Trebuchet MS", sans-serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;

  /* Spacing */
  --space-section: clamp(3.5rem, 8vw, 7rem);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1200px;

  /* Motion */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg: #0a1c38;
  --bg-alt: #0f2547;
  --surface: #123058;
  --surface-2: #173d6d;
  --text: #e9f1fc;
  --text-muted: #a9c1e0;
  --heading: #f2f7fe;
  --border: #234876;
  --blue: #316bb8;
  --blue-dark: #275893;
  --sky: #6fa8e0;
  --sky-soft: #b8d4f2;
  --red: #e0574a;
  --red-dark: #c8433a;
  --accent: var(--blue);
  --accent-contrast: #ffffff;
  --accent-warm: var(--red);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  --cream: #0a1c38;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition-interactive); }
a:hover { color: var(--blue-dark); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--heading); line-height: 1.12; font-weight: 700; }
ul { list-style: none; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: var(--space-section); position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem;
  color: var(--blue); margin-bottom: 0.6rem;
}
.bg-alt { background: var(--bg-alt); }
.bg-cream { background: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  padding: 0.85rem 1.6rem; border-radius: var(--radius-pill); border: 2px solid transparent;
  transition: background var(--transition-interactive), color var(--transition-interactive),
    box-shadow var(--transition-interactive), transform var(--transition-interactive),
    border-color var(--transition-interactive);
  text-align: center; line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
[data-theme="dark"] .btn-outline { color: var(--text); border-color: var(--sky); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
[data-theme="dark"] .btn-outline:hover { background: var(--sky); color: var(--navy-dark); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); color: #fff; transform: translateY(-2px); }

/* Kundenlogin-Button (Portal-Verlinkung) */
.nav-portal { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav-portal svg { flex-shrink: 0; }
@media (max-width: 960px) {
  .nav-portal { padding: 0.55rem 0.85rem; font-size: 0.95rem; }
}
.btn-wa { background: var(--wa-green); color: #fff; }
.btn-wa:hover { background: var(--wa-green-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { font-size: 1.15rem; padding: 1.05rem 2rem; }
.btn-block { width: 100%; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 600;
  padding: 0.45rem 1rem; border-radius: var(--radius-pill); font-size: 0.86rem;
  letter-spacing: 0.03em;
}
.badge-pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7); animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition-interactive), background 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 72px;
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 48px; width: auto; border-radius: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-head); color: var(--heading); font-size: 1.2rem; }
.brand-text span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: var(--text); padding: 0.45rem 0.7rem; border-radius: 10px;
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.nav-links a:hover { background: var(--surface-2); color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--heading); display: grid; place-items: center;
  transition: background var(--transition-interactive), transform var(--transition-interactive), border-color var(--transition-interactive);
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.05); border-color: var(--blue); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border);
  background: var(--surface); border-radius: 12px; color: var(--heading);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(180deg, color-mix(in srgb, var(--bg) 80%, transparent), var(--bg) 88%), var(--hero-bg, none);
  background-size: cover; background-position: center; opacity: 0.5;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center;
}
.hero-copy h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 1rem 0; }
.hero-copy h1 .accent { color: var(--blue); }
.hero-lead { font-size: 1.2rem; color: var(--text-muted); max-width: 34rem; margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; margin-bottom: 1.6rem; }

/* Kundenlogin-Button im Hero: dezenter, modernes Pill-Icon-Element */
.hero-portal-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.4rem 0.85rem 0.6rem;
  border-radius: 999px;
  background: var(--white, #fff);
  border: 1.5px solid rgba(23,51,92,0.14);
  color: var(--navy, #17335c);
  font-weight: 600; font-size: 0.98rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.06));
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hero-portal-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, 0 6px 18px rgba(0,0,0,0.1));
  border-color: var(--orange, #e8622a);
  color: var(--navy, #17335c);
}
.hero-portal-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange, #e8622a); color: #fff; flex-shrink: 0;
}
[data-theme="dark"] .hero-portal-btn { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); color: #fff; }
[data-theme="dark"] .hero-portal-btn:hover { border-color: var(--orange, #e8622a); }
.hero-usps { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; }
.hero-usp { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.hero-usp svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-fox {
  width: min(100%, 440px); filter: drop-shadow(0 20px 30px rgba(12,36,71,0.25));
  animation: fox-float 5s ease-in-out infinite;
}
@keyframes fox-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}
.hero-art .blob {
  position: absolute; z-index: -1; width: 78%; aspect-ratio: 1; border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
  background: radial-gradient(circle at 30% 30%, var(--sky), var(--sky-soft));
  opacity: 0.55; animation: blob-morph 12s ease-in-out infinite;
}
@keyframes blob-morph {
  0%,100% { border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%; }
  50% { border-radius: 58% 42% 46% 54% / 54% 58% 42% 46%; }
}

/* Sparkles */
.sparkle { position: absolute; color: var(--sky); pointer-events: none; animation: twinkle 2.6s ease-in-out infinite; }
.sparkle svg { width: 100%; height: 100%; }
.sparkle.s1 { top: 8%; left: 4%; width: 34px; animation-delay: 0s; color: var(--blue); }
.sparkle.s2 { top: 20%; right: 8%; width: 24px; animation-delay: 0.7s; }
.sparkle.s3 { bottom: 14%; left: 12%; width: 20px; animation-delay: 1.3s; }
.sparkle.s4 { bottom: 24%; right: 4%; width: 30px; animation-delay: 1.9s; color: var(--blue); }
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(90deg); }
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider { line-height: 0; position: relative; }
.wave-divider svg { width: 100%; height: 70px; display: block; }
.wave-divider .wave-path { fill: var(--sky); opacity: 0.4; }
.wave-divider .wave-path-2 { fill: var(--sky); opacity: 0.7; animation: wave-slide 14s linear infinite; }
@keyframes wave-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   LEISTUNGEN — Karten Grid
   ============================================================ */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sky); }
.service-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--blue) 14%, transparent); color: var(--blue); margin-bottom: 1rem;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.service-card p { color: var(--text-muted); font-size: 0.97rem; }
.service-price {
  display: inline-block; margin-top: 0.9rem; align-self: flex-start;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: var(--blue); background: color-mix(in srgb, var(--blue) 10%, transparent);
  padding: 0.3rem 0.8rem; border-radius: var(--radius-pill);
}
.service-actions { display: flex; gap: 0.6rem; margin-top: auto; padding-top: 1rem; }
.svc-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem 0.5rem; border-radius: 12px; font-family: var(--font-head); font-weight: 700;
  font-size: 0.9rem; text-decoration: none; transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}
.svc-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.svc-btn--wa { background: var(--wa-green); color: #fff; }
.svc-btn--wa:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 6px 16px rgba(37,211,102,.32); }
.svc-btn--mail { background: var(--blue); color: #fff; }
.svc-btn--mail:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.08); box-shadow: 0 6px 16px rgba(30,91,184,.3); }
.service-card .tag-new {
  position: absolute; top: 14px; right: 14px; background: var(--sky); color: var(--navy-dark);
  font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill); letter-spacing: 0.05em;
}

/* ============================================================
   PREISE
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-head {
  background: var(--navy); color: #fff; padding: 1.1rem 1.4rem; display: flex; align-items: center; gap: 0.7rem;
}
.price-card-head svg { width: 26px; height: 26px; color: var(--sky); flex-shrink: 0; }
.price-card-head h3 { color: #fff; font-size: 1.2rem; }
.price-card-head .sub { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.82rem; color: var(--sky-soft); }
.price-list { padding: 0.6rem 1.4rem 1.2rem; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 0.7rem 0; border-bottom: 1px dashed var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row .label { font-weight: 600; }
.price-row .amount { font-family: var(--font-head); font-weight: 700; color: var(--blue); white-space: nowrap; }
.price-misc { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.9rem; margin-top: 1.5rem; }
.price-misc-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.price-misc-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-misc-item .amount { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 1.35rem; display: block; }
.price-misc-item .label { font-weight: 600; }
.disclaimer {
  margin-top: 1.6rem; background: color-mix(in srgb, var(--sky) 16%, transparent);
  border: 1px solid var(--sky); border-radius: var(--radius); padding: 1.1rem 1.3rem;
  color: var(--text); font-size: 0.95rem; display: flex; gap: 0.7rem; align-items: flex-start;
}
[data-theme="dark"] .disclaimer { background: color-mix(in srgb, var(--sky) 12%, transparent); }
.disclaimer svg { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   BÜGELSERVICE — Timeline
   ============================================================ */
.buegel-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: start; }
.timeline { position: relative; padding-left: 0; }
.timeline-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 1rem; position: relative; padding-bottom: 1.6rem;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: ""; position: absolute; left: 27px; top: 56px; bottom: -4px; width: 2px;
  background: linear-gradient(var(--sky), var(--blue)); opacity: 0.5;
}
.timeline-step:last-child::before { display: none; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); position: relative; z-index: 1;
}
.timeline-step:nth-child(2) .timeline-num { background: var(--sky); color: var(--navy-dark); }
.timeline-step:nth-child(3) .timeline-num { background: var(--navy); }
.timeline-step:nth-child(4) .timeline-num { background: var(--wa-green); }
.timeline-body h4 { font-size: 1.15rem; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.5rem; }
.timeline-body h4 svg { width: 20px; height: 20px; color: var(--blue); }
.timeline-body p { color: var(--text-muted); font-size: 0.98rem; }

.buegel-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-md);
}
.buegel-card .badge { margin-bottom: 1rem; }
.buegel-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.buegel-price-list { margin: 1rem 0; }
.buegel-price-list .price-row .amount { color: var(--blue); }
.buegel-note {
  font-size: 0.9rem; color: var(--text-muted); margin: 0.8rem 0 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.buegel-note svg { width: 18px; height: 18px; color: var(--wa-green); flex-shrink: 0; }

/* ============================================================
   SHOP — Produkte
   ============================================================ */
.shop-intro-note {
  background: color-mix(in srgb, var(--blue) 10%, transparent); border: 1px solid color-mix(in srgb, var(--blue) 35%, transparent);
  border-radius: var(--radius); padding: 1rem 1.3rem; margin-bottom: 2rem; text-align: center;
  color: var(--text); font-size: 0.96rem;
}
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.4rem; }
.product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
  border-top: 3px solid var(--red);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky); border-top-color: var(--red); }
.product-img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #e8f0fa 0%, #d3e2f2 55%, #c3d6ec 100%);
  border-bottom: 1px solid rgba(20,49,95,.08);
  box-shadow: inset 0 -18px 30px -20px rgba(20,49,95,.18);
  display: grid; place-items: center; padding: 0.9rem; overflow: hidden;
}
.product-img img { max-height: 100%; width: auto; object-fit: contain; transition: transform 0.4s var(--ease-out); }
.product-card:hover .product-img img { transform: scale(1.06) rotate(-1deg); }
.product-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.08rem; margin-bottom: 0.35rem; line-height: 1.2; }
.product-desc { color: var(--text-muted); font-size: 0.9rem; flex: 1; margin-bottom: 0.7rem; }
.product-price { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 1.25rem; margin-bottom: 0.9rem; }
.product-price .unit { font-family: var(--font-body); font-weight: 400; color: var(--text-muted); font-size: 0.8rem; }
.product-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.product-ad-link {
  font-size: 0.82rem; color: var(--text-muted); text-align: center; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  transition: color var(--transition-interactive);
}
.product-ad-link:hover { color: var(--blue); text-decoration: underline; }
.product-ad-link svg { width: 15px; height: 15px; }

/* ============================================================
   NOTFALL (dunkel)
   ============================================================ */
.notfall {
  background: radial-gradient(circle at 20% 20%, var(--navy) 0%, var(--navy-dark) 70%);
  color: #fff; position: relative; overflow: hidden;
  border-top: 3px solid var(--red);
}
.notfall .section-head h2, .notfall h3 { color: #fff; }
.notfall .eyebrow { color: var(--red); }
.notfall .section-head p { color: var(--sky-soft); }
.notfall-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.notfall-what { display: grid; gap: 1rem; }
.notfall-item {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-left: 3px solid var(--red);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; display: flex; gap: 0.9rem; align-items: flex-start;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.notfall-item:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.notfall-item svg { width: 28px; height: 28px; color: var(--red); flex-shrink: 0; }
.notfall-item h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.2rem; }
.notfall-item p { color: var(--sky-soft); font-size: 0.92rem; }
.notfall-cta {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.notfall-cta .big-time { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.6rem,7vw,4rem); color: var(--red); line-height: 1; }
.notfall-cta p { color: var(--sky-soft); margin-bottom: 1.4rem; }
.notfall-cta .phone-num { font-family: var(--font-head); font-size: 1.5rem; color: #fff; margin: 0.6rem 0 1.2rem; display: block; }

/* ============================================================
   JOBS
   ============================================================ */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.1rem; margin-bottom: 2rem; }
.job-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.3rem; box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.job-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.job-card .job-ico { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--sky) 25%, transparent); color: var(--navy); display: grid; place-items: center; margin-bottom: 0.8rem; }
[data-theme="dark"] .job-card .job-ico { color: var(--sky); }
.job-card .job-ico svg { width: 24px; height: 24px; }
.job-card h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.job-card .job-avail { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--wa-green-dark); }
[data-theme="dark"] .job-card .job-avail { color: var(--wa-green); }
.job-card .job-avail::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wa-green); }
.jobs-banner {
  background: linear-gradient(120deg, var(--blue), var(--blue-dark)); color: #fff;
  border-radius: var(--radius-lg); padding: 2.2rem; text-align: center; box-shadow: var(--shadow-md);
}
.jobs-banner h3 { color: #fff; font-size: clamp(1.5rem,4vw,2.1rem); margin-bottom: 0.6rem; }
.jobs-banner p { color: rgba(255,255,255,0.92); max-width: 40rem; margin: 0 auto 1.4rem; }
.jobs-banner .btn-group { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ============================================================
   EINSATZGEBIET
   ============================================================ */
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.region-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.region-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.region-card .region-ico { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: color-mix(in srgb, var(--blue) 14%, transparent); color: var(--blue); margin-bottom: 0.9rem; }
.region-card .region-ico svg { width: 26px; height: 26px; }
.region-card h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.region-card p { color: var(--text-muted); font-size: 0.92rem; }
.region-note { text-align: center; margin-top: 1.8rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.5rem; }
.region-note svg { width: 20px; height: 20px; color: var(--blue); }
.region-note-wrap { text-align: center; }

/* ============================================================
   KI-CHAT
   ============================================================ */
.chat-wrap { max-width: 640px; margin: 0 auto; }
.chat-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.chat-header {
  background: var(--navy); color: #fff; padding: 1rem 1.3rem; display: flex; align-items: center; gap: 0.8rem;
}
.chat-header .chat-avatar { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
.chat-header .chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-header h3 { color: #fff; font-size: 1.1rem; }
.chat-header .chat-status { font-size: 0.8rem; color: var(--sky-soft); display: flex; align-items: center; gap: 0.4rem; }
.chat-header .chat-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wa-green); box-shadow: 0 0 0 0 rgba(37,211,102,0.6); animation: pulse-dot 1.8s infinite; }
.chat-body { padding: 1.3rem; height: 340px; overflow-y: auto; display: flex; flex-direction: column; gap: 0.8rem; background: var(--bg); }
.chat-msg { max-width: 82%; padding: 0.7rem 1rem; border-radius: 16px; font-size: 0.97rem; line-height: 1.5; }
.chat-msg.bot { background: var(--surface); border: 1px solid var(--border); border-bottom-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--blue); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-msg strong { font-family: var(--font-head); }
.chat-msg ul { margin: 0.4rem 0 0; padding-left: 0; }
.chat-msg ul li { position: relative; padding-left: 1.3rem; margin-bottom: 0.3rem; }
.chat-msg ul li::before { content: "✦"; position: absolute; left: 0; color: var(--blue); }
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0 1.3rem 0.9rem; background: var(--bg); }
.chat-chip {
  background: color-mix(in srgb, var(--sky) 22%, transparent); border: 1px solid var(--sky); color: var(--navy);
  border-radius: var(--radius-pill); padding: 0.4rem 0.9rem; font-size: 0.85rem; font-weight: 600;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
[data-theme="dark"] .chat-chip { color: var(--sky); }
.chat-chip:hover { background: var(--sky); color: var(--navy-dark); transform: translateY(-2px); }
.chat-input-row { display: flex; gap: 0.6rem; padding: 0.9rem 1.3rem 1.2rem; border-top: 1px solid var(--border); background: var(--surface); }
.chat-input-row input {
  flex: 1; border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 0.7rem 1.1rem;
  font-family: inherit; font-size: 0.95rem; background: var(--bg); color: var(--text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.chat-input-row input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 22%, transparent); }
.chat-send { width: 46px; height: 46px; border: none; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; flex-shrink: 0; transition: background var(--transition-interactive), transform var(--transition-interactive); }
.chat-send:hover { background: var(--blue-dark); transform: scale(1.05); }
.chat-send svg { width: 22px; height: 22px; }
.chat-disclaimer { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; }

/* Typing indicator */
.typing { display: inline-flex; gap: 4px; align-items: center; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted); animation: typing-bounce 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-5px); opacity: 1; } }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.2rem; align-items: start; }
.contact-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.contact-form > p { color: var(--text-muted); margin-bottom: 1.3rem; font-size: 0.95rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--heading); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 0.75rem 0.9rem;
  font-family: inherit; font-size: 0.98rem; background: var(--bg); color: var(--text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 20%, transparent);
}
.form-trust {
  background: color-mix(in srgb, var(--wa-green) 12%, transparent); border: 1px solid color-mix(in srgb, var(--wa-green) 40%, transparent);
  border-radius: 12px; padding: 0.85rem 1rem; margin-bottom: 1.2rem; display: flex; gap: 0.6rem; align-items: center;
  font-weight: 600; font-size: 0.92rem; color: var(--text);
}
.form-trust svg { width: 22px; height: 22px; color: var(--wa-green-dark); flex-shrink: 0; }
[data-theme="dark"] .form-trust svg { color: var(--wa-green); }
.form-confirm {
  display: none; margin-top: 1rem; background: color-mix(in srgb, var(--wa-green) 14%, transparent);
  border: 1px solid var(--wa-green); border-radius: 12px; padding: 1rem 1.2rem; color: var(--text);
  align-items: center; gap: 0.6rem;
}
.form-confirm.show { display: flex; }
.form-confirm svg { width: 24px; height: 24px; color: var(--wa-green-dark); flex-shrink: 0; }

.contact-info { display: grid; gap: 1rem; }
.info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.15rem; margin-bottom: 0.9rem; }
.info-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.55rem 0; }
.info-item svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.info-item a, .info-item span { color: var(--text); font-weight: 600; }
.info-item .info-sub { display: block; font-weight: 400; font-size: 0.82rem; color: var(--text-muted); }
.info-card.highlight { background: var(--navy); color: #fff; }
.info-card.highlight h3 { color: #fff; }
.info-card.highlight p { color: var(--sky-soft); font-size: 0.95rem; }
.info-card.highlight .big-24 { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--sky); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); color: var(--sky-soft); padding-block: 3rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand img { height: 52px; border-radius: 10px; }
.footer-brand strong { font-family: var(--font-head); color: #fff; font-size: 1.3rem; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.8rem; }
.footer-col p, .footer-col a { color: var(--sky-soft); font-size: 0.94rem; display: block; margin-bottom: 0.5rem; }
.footer-col a:hover { color: #fff; }
.footer-tagline { font-size: 0.98rem; max-width: 24rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.3rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.86rem;
}
.footer-bottom a { color: var(--sky-soft); }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-tm { display: block; opacity: 0.62; font-size: 0.8rem; margin-top: 0.25rem; }

/* Floating WhatsApp button */
.fab-wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 58px; height: 58px;
  border-radius: 50%; background: var(--wa-green); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-lg); transition: transform var(--transition-interactive);
  animation: fab-bob 3s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.1); color: #fff; }
.fab-wa svg { width: 32px; height: 32px; }
@keyframes fab-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============================================================
   MODAL (Datenschutz / Impressum)
   ============================================================ */
.modal { border: none; padding: 0; border-radius: var(--radius-lg); max-width: 640px; width: 92%; box-shadow: var(--shadow-lg); background: var(--surface); color: var(--text); }
.modal::backdrop { background: rgba(12,26,48,0.6); backdrop-filter: blur(3px); }
.modal-inner { padding: 2rem; max-height: 80vh; overflow-y: auto; }
.modal-inner h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.modal-inner h4 { margin: 1.2rem 0 0.4rem; color: var(--blue); }
.modal-inner p { color: var(--text-muted); margin-bottom: 0.7rem; font-size: 0.95rem; }
.modal-close { position: sticky; top: 0; float: right; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg); color: var(--heading); display: grid; place-items: center; }
.modal-close svg { width: 20px; height: 20px; }

/* ============================================================
   SCROLL REVEAL (opacity/clip only — no CLS)
   ============================================================ */
.reveal { opacity: 1; }
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}
@keyframes reveal-fade { to { opacity: 1; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.menu-open .nav-links {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 0.8rem 1.25rem 1.2rem; box-shadow: var(--shadow-md); gap: 0.15rem;
  }
  .site-header.menu-open .nav-links a { padding: 0.75rem 0.8rem; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .hero-cta, .hero-usps { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-fox { width: min(72%, 320px); }
  .buegel-wrap, .notfall-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .brand-text span { display: none; }
  .hero-usps { flex-direction: column; align-items: center; gap: 0.7rem; }
  .nav-actions .btn { display: none; }
  .nav-actions .nav-portal { display: inline-flex; padding: 0.45rem 0.75rem; font-size: 0.85rem; }
  .nav-actions .nav-portal span, .nav-actions .nav-portal { gap: 0.3rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@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 !important; }
}

/* ============================================================
   HERO ZWEI FÜCHSE ANIMATION
   Wrapper + Bild + Sparkles für das neue two-foxes.png Motiv.
   Nutzt bestehende CSS-Variablen (--blue, --sky, --white, --red).
   ============================================================ */
.fox-duo-wrap {
  position: relative;
  width: min(100%, 460px);
  margin-inline: auto;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.fox-duo-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(12, 36, 71, 0.22));
  animation:
    fox-duo-fade-in 0.9s ease-out both,
    fox-duo-float 4.6s ease-in-out 0.9s infinite;
}

@keyframes fox-duo-fade-in {
  0% { opacity: 0; transform: scale(0.95) translateY(6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fox-duo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Twinkelnde Sparkles rund um die beiden Füchse */
.fox-sparkle {
  position: absolute;
  pointer-events: none;
  color: var(--sky);
  opacity: 0;
  z-index: 2;
  animation: fox-duo-fade-in 0.6s ease-out both, fox-sparkle-twinkle 3.2s ease-in-out infinite;
}
.fox-sparkle svg { width: 100%; height: 100%; display: block; }

.fox-sparkle.fx1 { top: 2%;  left: 6%;  width: 26px; color: var(--blue); animation-delay: 0.2s, 0.2s; }
.fox-sparkle.fx2 { top: 14%; right: 4%; width: 20px; color: var(--white); animation-delay: 0.5s, 0.9s; }
.fox-sparkle.fx3 { bottom: 10%; left: 2%; width: 18px; color: var(--sky); animation-delay: 0.8s, 1.6s; }
.fox-sparkle.fx4 { bottom: 4%; right: 10%; width: 24px; color: var(--red); animation-delay: 1.1s, 2.2s; }
.fox-sparkle.fx5 { top: 44%; left: -2%; width: 16px; color: var(--blue); animation-delay: 1.4s, 2.8s; }

@keyframes fox-sparkle-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(90deg); }
}

@media (max-width: 960px) {
  .fox-duo-wrap { width: min(88%, 380px); }
}

@media (max-width: 640px) {
  .fox-duo-wrap { width: min(92%, 300px); }
  .fox-sparkle.fx5 { display: none; }
}

/* Respektiert reduzierte Bewegung: Bild bleibt statisch und sichtbar, keine Sparkles-Animation */
@media (prefers-reduced-motion: reduce) {
  .fox-duo-img {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .fox-sparkle {
    animation: none !important;
    opacity: 0.85;
    transform: none;
  }
}

/* === LEISTUNGSKARTEN ANKLICKBAR === */
a.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .18s cubic-bezier(.16,1,.3,1), border-color .18s;
}
a.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(20,49,95,.14);
}
a.service-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
a.service-card .service-more {
  display: inline-block;
  margin-top: .75rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--blue);
  opacity: .85;
  transition: transform .18s ease, opacity .18s ease;
}
a.service-card:hover .service-more {
  transform: translateX(4px);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  a.service-card, a.service-card .service-more { transition: none; }
  a.service-card:hover { transform: none; }
}

/* === NOTFALL DEFINITION + PREIS === */
.notfall-def {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}
.notfall-def h3 { margin: 0 0 .5rem; font-size: 1.15rem; }
.notfall-def p { margin: 0; opacity: .92; line-height: 1.6; }
.notfall-price {
  margin: .5rem 0 1rem;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: rgba(192,57,43,.16);
  border: 1px solid rgba(192,57,43,.4);
  font-size: 1.05rem;
  line-height: 1.4;
}
.notfall-price strong { font-size: 1.2rem; }
.notfall-price span { font-size: .82rem; opacity: .85; }

/* ============================================================
   SCHWEBENDER KI-FUCHS-CHAT
   ============================================================ */
.fox-chat { position: fixed; right: 22px; bottom: 22px; z-index: 95; }

/* Runder Fuchs-Button */
.fox-chat__fab {
  position: relative; width: 66px; height: 66px; border-radius: 50%;
  border: 3px solid var(--blue); background: #fff; padding: 0; cursor: pointer;
  box-shadow: 0 10px 26px rgba(12,36,71,.32); overflow: visible;
  display: grid; place-items: center;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  animation: fab-bob 3s ease-in-out infinite;
}
.fox-chat__fab img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.fox-chat__fab:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(12,36,71,.42); }
.fox-chat__ping {
  position: absolute; top: 2px; right: 2px; width: 15px; height: 15px; border-radius: 50%;
  background: var(--red); border: 2px solid #fff;
}
.fox-chat__ping::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid var(--red); animation: fox-ping 1.8s ease-out infinite;
}
@keyframes fox-ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.4); opacity: 0; } }

/* Sprechblase */
.fox-chat__bubble {
  position: absolute; right: 78px; bottom: 8px; width: max-content; max-width: 220px;
  background: #fff; color: var(--heading); border: 1px solid var(--border);
  border-radius: 16px 16px 4px 16px; padding: 11px 30px 11px 14px;
  font-size: .92rem; line-height: 1.35; box-shadow: 0 8px 22px rgba(12,36,71,.2);
  cursor: pointer; transform-origin: bottom right;
  animation: bubble-in .4s var(--ease-out) both;
}
.fox-chat__bubble strong { color: var(--blue); }
.fox-chat__bubble::after {
  content: ''; position: absolute; right: -7px; bottom: 10px; width: 14px; height: 14px;
  background: #fff; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transform: rotate(-45deg);
}
.fox-chat__bubble-close {
  position: absolute; top: 5px; right: 5px; width: 20px; height: 20px; border: none;
  background: transparent; color: var(--text-muted); cursor: pointer; padding: 0;
  display: grid; place-items: center; border-radius: 50%;
}
.fox-chat__bubble-close:hover { background: var(--surface-2); }
.fox-chat__bubble-close svg { width: 12px; height: 12px; }
.fox-chat[data-bubble="off"] .fox-chat__bubble { display: none; }
@keyframes bubble-in { from { opacity: 0; transform: scale(.7) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* Chat-Fenster */
.fox-chat__panel {
  position: absolute; right: 0; bottom: 82px; width: 350px; max-width: calc(100vw - 32px);
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  box-shadow: 0 18px 50px rgba(12,36,71,.32); overflow: hidden;
  display: none; flex-direction: column; transform-origin: bottom right;
}
.fox-chat[data-open="true"] .fox-chat__panel { display: flex; animation: panel-in .32s var(--ease-out) both; }
.fox-chat[data-open="true"] .fox-chat__bubble { display: none; }
@keyframes panel-in { from { opacity: 0; transform: scale(.9) translateY(14px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.fox-chat__head {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff;
}
.fox-chat__head-avatar img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); background:#fff; object-fit: cover; }
.fox-chat__head-text { flex: 1; line-height: 1.2; }
.fox-chat__head-text strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.fox-chat__status { font-size: .78rem; opacity: .85; }
.fox-chat__status::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #4ade80; margin-right: 5px; vertical-align: middle; }
.fox-chat__close { width: 32px; height: 32px; border: none; background: rgba(255,255,255,.14); color: #fff; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.fox-chat__close:hover { background: rgba(255,255,255,.28); }
.fox-chat__close svg { width: 18px; height: 18px; }

.fox-chat__body { padding: 14px; height: 300px; max-height: 46vh; overflow-y: auto; background: var(--bg); display: flex; flex-direction: column; gap: 10px; }
.fox-chat__chips { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 12px 10px; background: var(--bg); }
.fox-chip { font-size: .8rem; padding: 5px 11px; border-radius: 20px; border: 1px solid var(--border); background: var(--surface); color: var(--blue); cursor: pointer; transition: background var(--transition-fast); }
.fox-chip:hover { background: var(--sky-soft); }
.fox-chat__input { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--border); background: var(--surface); }
.fox-chat__input input { flex: 1; border: 1px solid var(--border); border-radius: 22px; padding: 9px 14px; font-family: var(--font-body); font-size: .92rem; background: var(--bg); color: var(--text); }
.fox-chat__input input:focus { outline: none; border-color: var(--blue); }
.fox-chat__send { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--blue); color: #fff; cursor: pointer; display: grid; place-items: center; flex-shrink: 0; transition: background var(--transition-fast); }
.fox-chat__send:hover { background: var(--navy); }
.fox-chat__send svg { width: 18px; height: 18px; }

/* WhatsApp-Button über den Fuchs schieben */
.fab-wa { bottom: 100px !important; }

@media (max-width: 600px) {
  .fox-chat { right: 12px; bottom: 12px; }
  /* Fuchs-Bubble auf Handy kleiner */
  .fox-chat__fab { width: 50px; height: 50px; border-width: 2px; box-shadow: 0 6px 18px rgba(12,36,71,.28); }
  .fox-chat__fab img { width: 44px; height: 44px; }
  .fox-chat__ping { width: 11px; height: 11px; top: 1px; right: 1px; }
  /* Sprechblase kompakter */
  .fox-chat__bubble { right: 60px; bottom: 4px; max-width: 180px; font-size: .82rem; padding: 8px 24px 8px 11px; border-radius: 12px 12px 3px 12px; }
  .fox-chat__bubble-close { width: 16px; height: 16px; top: 3px; right: 3px; }
  .fox-chat__bubble-close svg { width: 10px; height: 10px; }
  /* WhatsApp-Bubble kleiner und näher am Fuchs */
  .fab-wa { bottom: 72px !important; right: 12px; width: 46px !important; height: 46px !important; }
  .fab-wa svg { width: 24px; height: 24px; }
  .fox-chat__panel { bottom: 68px; }
}

/* ============================================================
   AUFFÄLLIGES BEWERBUNGSFORMULAR
   ============================================================ */
.apply-box {
  position: relative; margin-top: 2.5rem; padding: 2.4rem 2rem 2rem;
  background: linear-gradient(150deg, #fff 0%, #fff9e5 45%, #ffefc2 100%);
  border: 2px solid #f5b400;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(245,180,0,.18), 0 6px 18px rgba(20,49,95,.08);
  overflow: hidden;
}
.apply-box::before {
  content: ''; position: absolute; inset: -2px; border-radius: 22px; pointer-events: none;
  background: linear-gradient(135deg, transparent 0%, rgba(245,180,0,.25) 50%, transparent 100%);
  animation: apply-shine 6s linear infinite;
  z-index: 0;
}
@keyframes apply-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.apply-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f5b400, #ff8a00);
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .9rem;
  padding: 8px 20px; border-radius: 40px; letter-spacing: .5px;
  box-shadow: 0 6px 18px rgba(245,138,0,.4);
  animation: badge-pulse 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes badge-pulse {
  0%,100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.06); }
}
.apply-head { position: relative; z-index: 1; text-align: center; margin-bottom: 1.6rem; }
.apply-head h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: .5rem; }
.apply-head p { color: var(--text); max-width: 620px; margin: 0 auto; }

.apply-form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1rem; }
.apply-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.apply-field { display: flex; flex-direction: column; gap: 6px; }
.apply-field span { font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--navy); }
.apply-field input, .apply-field select, .apply-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e0d6b8; border-radius: 12px;
  background: #fff; color: var(--text); font-family: var(--font-body); font-size: .98rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.apply-field input:focus, .apply-field select:focus, .apply-field textarea:focus {
  outline: none; border-color: #f5b400; box-shadow: 0 0 0 3px rgba(245,180,0,.2);
}
.apply-consent { font-size: .88rem; color: var(--text); }
.apply-consent label { display: flex; gap: 8px; align-items: flex-start; cursor: pointer; }
.apply-consent input { margin-top: 3px; accent-color: #f5b400; }
.apply-consent a { color: var(--blue); text-decoration: underline; }

.apply-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: .4rem; }
.btn-apply {
  background: linear-gradient(135deg, #f5b400, #ff8a00) !important;
  color: #fff !important; border: none; box-shadow: 0 8px 22px rgba(245,138,0,.4);
}
.btn-apply:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 12px 28px rgba(245,138,0,.5); }
.apply-note { min-height: 1.4em; margin: .4rem 0 0; font-size: .92rem; color: var(--blue); font-weight: 600; }

/* Nav-Jobs Highlight */
.nav-jobs-highlight { position: relative; }
.nav-jobs-highlight::after {
  content: 'NEU'; position: absolute; top: -8px; right: -14px;
  background: linear-gradient(135deg, #f5b400, #ff8a00); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: .55rem; letter-spacing: .5px;
  padding: 2px 6px; border-radius: 6px;
  box-shadow: 0 2px 6px rgba(245,138,0,.4);
}

@media (max-width: 700px) {
  .apply-row { grid-template-columns: 1fr; }
  .apply-box { padding: 2rem 1.2rem 1.4rem; }
  .apply-badge { font-size: .8rem; padding: 6px 14px; }
}

/* ============================================================
   RATGEBER-TEASER
   ============================================================ */
.ratgeber-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.ratgeber-card {
  display: flex; flex-direction: column; gap: .5rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.ratgeber-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sky); }
.ratgeber-tag {
  align-self: flex-start; font-family: var(--font-head); font-weight: 700; font-size: .72rem;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--blue); background: color-mix(in srgb, var(--blue) 10%, transparent);
  padding: .25rem .7rem; border-radius: var(--radius-pill);
}
.ratgeber-card h3 { font-size: 1.15rem; color: var(--heading); margin: .2rem 0; line-height: 1.25; }
.ratgeber-card p { color: var(--text-muted); font-size: .95rem; flex: 1; }
.ratgeber-more { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: .92rem; margin-top: .4rem; }
.ratgeber-card--all {
  align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(150deg, var(--navy), var(--blue)); border: none;
}
.ratgeber-card--all h3, .ratgeber-card--all .ratgeber-more { color: #fff; }
@media (max-width: 900px) { .ratgeber-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ratgeber-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCHUTZ VOR AUTO-UEBERSETZUNG
   Browser-Uebersetzer lesen die Abkuerzung "T&B" als
   "Toilets & Bathrooms" und machen daraus "von Toiletten und
   Baedern". Deshalb sind alle Marken-Nennungen mit
   translate="no" / class="notranslate" markiert.

   Diese Regel stellt sicher, dass ein solcher Marker NIE das
   Aussehen veraendert - er erbt immer die Schrift des
   umgebenden Elements und bleibt auf allen Geraeten sichtbar.
   ============================================================ */
.notranslate {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  display: inline;
}

/* ============================================================
   NEUER LOKALER SEO-ABSCHNITT (#region)
   ============================================================ */
.region-text { max-width: 62rem; margin: 0 auto; }
.region-text p { margin: 0 0 1.1rem; line-height: 1.75; }
.region-text h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin: 2rem 0 0.7rem;
  color: var(--heading);
}
.region-list { margin: 0 0 1.4rem; padding-left: 1.2rem; }
.region-list li { margin-bottom: 0.6rem; line-height: 1.7; }
.region-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }

/* Platzhalter, solange ein Produktbild fehlt */
.product-img img.is-placeholder { opacity: 0.85; }

/* ============================================================
   SHOP: Launch-Banner ("Ab Herbst 2026")
   ============================================================ */
.shop-launch-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 46rem;
  margin: 0.5rem auto 1.5rem;
  padding: 0.9rem 1.1rem;
  background: color-mix(in srgb, var(--blue) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--blue) 20%, transparent);
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.shop-launch-banner__badge {
  flex-shrink: 0;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.shop-launch-banner__text { color: var(--text); }
.shop-launch-banner__text strong { color: var(--heading); display: block; margin-bottom: 0.15rem; }
@media (max-width: 640px) {
  .shop-launch-banner { flex-direction: column; text-align: center; }
}

/* ===== Social Buttons (Header, Kontakt, Footer) ===== */
.social-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%;
  border:1px solid var(--border); background:transparent;
  color:var(--text); transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.social-icon svg{ width:19px; height:19px; }
.social-icon:hover{ background:var(--accent); border-color:var(--accent); color:var(--accent-contrast); transform:translateY(-2px); }
.nav-social{ flex:0 0 auto; width:34px; height:34px; }
.nav-social svg{ width:16px; height:16px; }
@media (max-width: 1300px){ .nav-social{ display:none; } }

.social-follow{
  margin-top:1rem; padding-top:1rem; border-top:1px dashed var(--border);
}
.social-follow-label{
  display:block; font-size:.82rem; font-weight:600; letter-spacing:.04em;
  text-transform:uppercase; opacity:.7; margin-bottom:.6rem;
}
.social-follow-links{ display:flex; flex-wrap:wrap; gap:.5rem; }
.social-btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.55rem .9rem; border-radius:999px;
  border:1px solid var(--border); background:transparent;
  color:var(--text); font-weight:600; font-size:.92rem; text-decoration:none;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.social-btn svg{ width:18px; height:18px; flex:0 0 auto; }
.social-btn-fb:hover{ background:#1877f2; border-color:#1877f2; color:#fff; transform:translateY(-2px); }
.social-btn-ig:hover{ background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); border-color:transparent; color:#fff; transform:translateY(-2px); }

.footer-social{ display:flex; gap:.55rem; margin-top:.9rem; }
.footer-social .social-icon{ width:38px; height:38px; }
.footer-social .social-icon svg{ width:17px; height:17px; }
.social-btn-google:hover{ background:#ea4335; border-color:#ea4335; color:#fff; transform:translateY(-2px); }
.social-btn-wa:hover{ background:#25d366; border-color:#25d366; color:#fff; transform:translateY(-2px); }

/* social buttons v1 */

/* ===== Grosser Google-Bewertungs-Aufruf beim Kontaktformular ===== */
.review-cta{
  margin-top:1.4rem; padding:1.1rem 1.2rem;
  border:1px solid var(--border); border-radius:var(--radius);
  background:linear-gradient(135deg, rgba(234,67,53,.06), rgba(66,133,244,.07));
  display:flex; flex-wrap:wrap; align-items:center; gap:.9rem 1.1rem;
}
.review-cta-stars{ font-size:1.5rem; line-height:1; color:#fbbc04; letter-spacing:.08em; }
.review-cta-text{ flex:1 1 220px; display:flex; flex-direction:column; gap:.2rem; }
.review-cta-text strong{ font-size:1.02rem; }
.review-cta-text span{ font-size:.9rem; opacity:.8; }
.review-cta-btn{
  display:inline-flex; align-items:center; gap:.55rem;
  background:#ea4335; color:#fff; border:none; text-decoration:none;
  font-weight:700; border-radius:999px; padding:.85rem 1.4rem;
  box-shadow:0 6px 18px rgba(234,67,53,.28);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.review-cta-btn svg{ width:20px; height:20px; flex:0 0 auto; }
.review-cta-btn:hover{ background:#d33426; transform:translateY(-2px); box-shadow:0 10px 24px rgba(234,67,53,.34); }
@media (max-width: 560px){
  .review-cta{ flex-direction:column; align-items:flex-start; }
  .review-cta-btn{ width:100%; justify-content:center; }
}

/* ===== Originalfarben & kompakte Grösse ===== */
.social-icon{ width:34px; height:34px; border:none; color:#fff; }
.social-icon svg{ width:16px; height:16px; }
.social-icon--wa{ background:#25D366; }
.social-icon--fb{ background:#1877F2; }
.social-icon--ig{ background:linear-gradient(45deg,#f9ce34 5%,#ee2a7b 55%,#6228d7 95%); }
.social-icon--go{ background:#fff; box-shadow:inset 0 0 0 1px var(--border); }
.social-icon--go svg{ width:15px; height:15px; }
.social-icon:hover{ background:inherit; color:#fff; transform:translateY(-2px); filter:brightness(1.08); }
.social-icon--go:hover{ filter:none; box-shadow:inset 0 0 0 1px #dadce0, 0 4px 10px rgba(0,0,0,.10); }
.nav-social, .footer-social .social-icon{ width:32px; height:32px; }
.nav-social svg, .footer-social .social-icon svg{ width:15px; height:15px; }

.social-btn{ padding:.42rem .8rem; font-size:.86rem; }
.social-btn svg{ width:15px; height:15px; }
.social-btn-fb svg{ color:#1877F2; }
.social-btn-fb:hover svg{ color:#fff; }

/* kleine Google-Bewertungszeile unter dem Formular */
.review-mini{
  display:inline-flex; align-items:center; gap:.45rem;
  margin-top:.9rem; font-size:.88rem; font-weight:600;
  color:var(--text); text-decoration:none; opacity:.85;
}
.review-mini svg{ width:16px; height:16px; flex:0 0 auto; }
.review-mini:hover{ opacity:1; text-decoration:underline; }

/* Auf Handy: G-Icon zwingend klein halten */
@media (max-width:600px){
  .review-mini{ font-size:.82rem; margin-top:.7rem; }
  .review-mini svg{ width:14px !important; height:14px !important; }
  .social-btn-google svg{ width:16px !important; height:16px !important; }
}

/* Navigation: keine Zeilenumbrüche, auf mittleren Bildschirmen etwas kompakter */
.nav-links a{ white-space:nowrap; }
@media (min-width: 981px) and (max-width: 1500px){
  .nav-links{ gap:0.15rem; }
  .nav-links a{ font-size:0.86rem; padding-left:0.45rem; padding-right:0.45rem; }
}

/* ============================================================
   KOPFBEREICH AUF DEM HANDY
   Der Offerte-Knopf ist der wichtigste Handlungsaufruf und bleibt
   deshalb auch auf schmalen Bildschirmen sichtbar. Kundenlogin
   wandert dort ins Menue, damit Logo, Offerte und Menue Platz haben.
   ============================================================ */
.brand { flex: 0 0 auto; }
.brand picture { display: flex; flex: 0 0 auto; }
.brand img { flex: 0 0 auto; }

/* Kundenlogin im aufgeklappten Menue — nur auf schmalen Bildschirmen */
.nav-links .nav-only-mobile { display: none; }

@media (max-width: 640px) {
  .nav-actions { gap: 0.4rem; }
  .nav-actions .btn.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .nav-actions .nav-portal { display: none; }
  .site-header.menu-open .nav-links .nav-only-mobile { display: block; }
  .brand-text strong { font-size: 1.05rem; }
}

@media (max-width: 380px) {
  .nav-actions .theme-toggle { display: none; }
  .brand img { height: 40px; }
  .nav-actions .btn.btn-primary { padding: 0.45rem 0.7rem; font-size: 0.85rem; }
}
