/* ============================================
   SONNENKLAR GEBÄUDEREINIGUNG
   Modern Design System
   ============================================ */

/* Prevent horizontal scroll from reveal animations */
html, body { overflow-x: hidden; }

/* === INTRO ANIMATION ("Alles Sonnenklar?") – Premium === */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(160deg, #FAFBFD 0%, #F0F4F8 40%, #E8F0FE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-overlay.intro-done {
  pointer-events: none;
  animation: introFadeOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Warm ambient glow behind sun */
.intro-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%) scale(0.4);
  opacity: 0;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, rgba(245,166,35,0.06) 40%, transparent 70%);
  transition: opacity 0.8s ease, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}

.intro-overlay.intro-glow-on .intro-glow {
  opacity: 1;
  transform: translate(-50%, -55%) scale(1);
}

/* Intensified glow when particles get sucked in */
.intro-overlay.intro-burst .intro-glow {
  opacity: 1;
  transform: translate(-50%, -55%) scale(1.8);
  background: radial-gradient(circle, rgba(245,166,35,0.3) 0%, rgba(245,166,35,0.1) 40%, transparent 65%);
}

/* Soft wash layer */
.intro-wash {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.95) 0%, rgba(250,251,253,0.8) 50%, rgba(240,244,248,0.6) 100%);
  transition: opacity 0.6s ease;
}

.intro-overlay.intro-wash-out .intro-wash {
  opacity: 1;
}

.intro-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* SVG Sun */
.intro-sun-svg {
  width: 110px;
  height: 110px;
  margin-bottom: 32px;
  opacity: 0;
  transform: scale(0) rotate(-90deg);
  filter: drop-shadow(0 0 20px rgba(245,166,35,0.3)) drop-shadow(0 0 40px rgba(245,166,35,0.12));
  animation: introSunIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;
}

.intro-sun-svg .sun-rays {
  transform-origin: 60px 60px;
  animation: introSunSpin 12s linear infinite;
}

.intro-sun-svg .sun-pulse {
  animation: introSunPulse 2s ease-in-out infinite;
  transform-origin: 60px 60px;
}

/* Sun grows during burst (particles sucked in) */
.intro-overlay.intro-burst .intro-sun-svg {
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
  transform: scale(1.4) rotate(0deg);
  filter: drop-shadow(0 0 40px rgba(245,166,35,0.5)) drop-shadow(0 0 80px rgba(245,166,35,0.2));
}

/* Text */
.intro-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #1A1A2E;
  z-index: 2;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.intro-text .intro-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotateX(-80deg);
  animation: introLetterIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-text .intro-word-gold .intro-letter {
  color: #D4850F;
}

.intro-text .intro-word-gold {
  display: inline-block;
  position: relative;
}

.intro-text .intro-word-gold::after {
  content: '';
  position: absolute;
  inset: -4px -8px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.1), transparent);
  background-size: 200% 100%;
  animation: introShimmer 2s ease-in-out infinite;
  animation-delay: 1.2s;
  border-radius: 4px;
}

/* Particles – start scattered, float gently, then get SUCKED into sun */
.intro-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: introParticleFloat 2.5s ease-in-out infinite;
}

.intro-overlay.intro-glow-on .intro-particle {
  opacity: 0.7;
  transition: opacity 0.8s ease;
}

.intro-overlay.intro-burst .intro-particle {
  animation: none;
  transition: all 0.8s cubic-bezier(0.6, 0, 0.4, 1);
  left: 50% !important;
  top: 40% !important;
  transform: translate(-50%, -50%) scale(0) !important;
  opacity: 0 !important;
}

@keyframes introSunIn {
  0%   { opacity: 0; transform: scale(0) rotate(-90deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(10deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes introSunSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes introSunPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

@keyframes introLetterIn {
  0%   { opacity: 0; transform: translateY(100%) rotateX(-80deg); }
  100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

@keyframes introShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes introParticleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes introFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #1A4B8A;
  --color-primary-light: #2A6BC0;
  --color-primary-dark: #0F2D54;
  --color-accent: #F5A623;
  --color-accent-light: #FFD080;
  --color-accent-dark: #D48B10;
  --color-white: #FFFFFF;
  --color-bg: #FAFBFD;
  --color-bg-alt: #F0F4F8;
  --color-text: #1A1A2E;
  --color-text-light: #5A6177;
  --color-text-muted: #8E95A9;
  --color-border: #E2E8F0;
  --color-success: #22C55E;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px rgba(26, 75, 138, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 75, 138, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 75, 138, 0.12);
  --shadow-xl: 0 20px 60px rgba(26, 75, 138, 0.16);
  --shadow-glow: 0 0 40px rgba(245, 166, 35, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--color-text-light); max-width: 65ch; }

.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-center { text-align: center; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-fast);
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(26, 75, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 75, 138, 0.4);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: 0.875rem; }

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--transition-base);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img, .logo svg {
  height: 48px;
  width: auto;
}

.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.logo-text span:first-child { color: var(--color-accent); }
.logo-text span:last-child { color: var(--color-primary); font-size: 0.65rem; display: block; letter-spacing: 0.15em; font-weight: 600; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 8px; }

.nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav a:hover, .nav a.active {
  color: var(--color-primary);
  background: rgba(26, 75, 138, 0.06);
}

.nav-cta {
  margin-left: 8px;
  color: #fff !important;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10000;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: linear-gradient(165deg, var(--color-white) 0%, var(--color-bg) 50%, #E8F0FE 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 6px;
  background: rgba(26, 75, 138, 0.06);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 24px;
  border: 1px solid rgba(26, 75, 138, 0.1);
}

.hero-badge-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Hero Animations - Premium Visual */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 90%;
  z-index: 1;
  pointer-events: none;
}

/* === MORPHING GRADIENT BLOBS (Stripe/Apple style) === */
.blob-container {
  position: absolute;
  inset: 0;
  filter: blur(50px);
  opacity: 0.85;
}

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: normal;
  filter: blur(0px);
  animation: blobMorph ease-in-out infinite;
}

.gradient-blob:nth-child(1) {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 50%, rgba(26, 75, 138, 0.7), rgba(26, 75, 138, 0.15));
  top: 0%;
  left: 5%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.gradient-blob:nth-child(2) {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.6), rgba(245, 166, 35, 0.1));
  top: 15%;
  left: 40%;
  animation-duration: 10s;
  animation-delay: -3s;
}

.gradient-blob:nth-child(3) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 50% 50%, rgba(42, 107, 192, 0.55), rgba(42, 107, 192, 0.1));
  top: 45%;
  left: 10%;
  animation-duration: 14s;
  animation-delay: -6s;
}

.gradient-blob:nth-child(4) {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.45), transparent);
  top: 5%;
  left: 60%;
  animation-duration: 11s;
  animation-delay: -2s;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(30px, -50px) rotate(90deg) scale(1.05);
  }
  50% {
    border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%;
    transform: translate(-20px, 20px) rotate(180deg) scale(0.95);
  }
  75% {
    border-radius: 40% 60% 50% 40% / 60% 30% 60% 40%;
    transform: translate(20px, -30px) rotate(270deg) scale(1.02);
  }
}

/* === GLASSMORPHISM FLOATING CARDS === */
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(26, 75, 138, 0.12), inset 0 1px 0 rgba(255,255,255,0.5);
  animation: glassFloat ease-in-out infinite;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.glass-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.glass-card-icon.blue { background: rgba(26, 75, 138, 0.12); }
.glass-card-icon.orange { background: rgba(245, 166, 35, 0.15); }
.glass-card-icon.green { background: rgba(34, 197, 94, 0.12); }

.glass-card-text { font-size: 0.8rem; font-weight: 600; color: var(--color-text); line-height: 1.3; }
.glass-card-text span { display: block; font-weight: 800; font-size: 1.2rem; color: var(--color-primary); }
.glass-card-text .sub { font-size: 0.7rem; font-weight: 500; color: var(--color-text-muted); }

.glass-card:nth-child(3) {
  top: 25%;
  left: 15%;
  animation-duration: 7s;
}

.glass-card:nth-child(4) {
  top: 30%;
  left: 55%;
  animation-duration: 8s;
  animation-delay: -2s;
}

.glass-card:nth-child(5) {
  top: 60%;
  left: 10%;
  animation-duration: 9s;
  animation-delay: -4s;
}

.glass-card:nth-child(6) {
  top: 85%;
  left: 40%;
  animation-duration: 6s;
  animation-delay: -1s;
}

@keyframes glassFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(1deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

/* === ANIMATED VACUUM CLEANER === */
.vacuum-scene {
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  width: 300px;
  height: 380px;
  z-index: 2;
}

.vacuum-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 40px rgba(26, 75, 138, 0.2));
  animation: vacuumHover 4s ease-in-out infinite;
}

@keyframes vacuumHover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Suction vortex glow */
.vacuum-glow {
  position: absolute;
  top: 32%;
  left: -20%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 75, 138, 0.25), rgba(245, 166, 35, 0.1), transparent 70%);
  animation: vacuumGlow 2s ease-in-out infinite alternate;
  filter: blur(25px);
}

@keyframes vacuumGlow {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 1; }
}

/* Suction particles spiraling in */
.suction-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.suction-particle {
  position: absolute;
  border-radius: 50%;
}

.suction-particle:nth-child(1)  { width: 8px;  height: 8px;  background: rgba(26,75,138,0.4);   animation: suck1 2.5s ease-in infinite; }
.suction-particle:nth-child(2)  { width: 6px;  height: 6px;  background: rgba(245,166,35,0.5);  animation: suck2 3s ease-in infinite;   animation-delay: -0.5s; }
.suction-particle:nth-child(3)  { width: 10px; height: 10px; background: rgba(42,107,192,0.35); animation: suck3 2.8s ease-in infinite; animation-delay: -1s; }
.suction-particle:nth-child(4)  { width: 5px;  height: 5px;  background: rgba(26,75,138,0.5);   animation: suck4 2.2s ease-in infinite; animation-delay: -1.5s; }
.suction-particle:nth-child(5)  { width: 7px;  height: 7px;  background: rgba(245,166,35,0.4);  animation: suck1 3.2s ease-in infinite; animation-delay: -0.8s; }
.suction-particle:nth-child(6)  { width: 4px;  height: 4px;  background: rgba(42,107,192,0.6);  animation: suck2 2.6s ease-in infinite; animation-delay: -2s; }
.suction-particle:nth-child(7)  { width: 9px;  height: 9px;  background: rgba(26,75,138,0.3);   animation: suck3 3.5s ease-in infinite; animation-delay: -0.3s; }
.suction-particle:nth-child(8)  { width: 6px;  height: 6px;  background: rgba(200,195,180,0.5); animation: suck4 2.4s ease-in infinite; animation-delay: -1.2s; }
.suction-particle:nth-child(9)  { width: 12px; height: 12px; background: rgba(200,200,190,0.3); animation: suck1 3s ease-in infinite;   animation-delay: -1.8s; }
.suction-particle:nth-child(10) { width: 5px;  height: 5px;  background: rgba(245,166,35,0.5);  animation: suck2 2.7s ease-in infinite; animation-delay: -0.2s; }
.suction-particle:nth-child(11) { width: 7px;  height: 7px;  background: rgba(26,75,138,0.45);  animation: suck3 2.3s ease-in infinite; animation-delay: -0.6s; }
.suction-particle:nth-child(12) { width: 11px; height: 11px; background: rgba(200,195,180,0.35);animation: suck4 3.3s ease-in infinite; animation-delay: -1.1s; }
.suction-particle:nth-child(13) { width: 4px;  height: 4px;  background: rgba(245,166,35,0.6);  animation: suck1 2.1s ease-in infinite; animation-delay: -2.2s; }
.suction-particle:nth-child(14) { width: 8px;  height: 8px;  background: rgba(42,107,192,0.4);  animation: suck2 2.9s ease-in infinite; animation-delay: -0.9s; }
.suction-particle:nth-child(15) { width: 6px;  height: 6px;  background: rgba(26,75,138,0.55);  animation: suck3 2.4s ease-in infinite; animation-delay: -1.7s; }
.suction-particle:nth-child(16) { width: 9px;  height: 9px;  background: rgba(200,200,190,0.4); animation: suck4 3.1s ease-in infinite; animation-delay: -0.4s; }
.suction-particle:nth-child(17) { width: 5px;  height: 5px;  background: rgba(245,166,35,0.45); animation: suck1 2.8s ease-in infinite; animation-delay: -2.5s; }
.suction-particle:nth-child(18) { width: 13px; height: 13px; background: rgba(42,107,192,0.25); animation: suck2 3.6s ease-in infinite; animation-delay: -1.4s; }
.suction-particle:nth-child(19) { width: 3px;  height: 3px;  background: rgba(26,75,138,0.6);   animation: suck3 2.0s ease-in infinite; animation-delay: -0.1s; }
.suction-particle:nth-child(20) { width: 7px;  height: 7px;  background: rgba(200,195,180,0.5); animation: suck4 2.5s ease-in infinite; animation-delay: -1.9s; }

@keyframes suck1 {
  0%   { top: 15%; left: -40%; opacity: 0; transform: scale(1.5); }
  15%  { opacity: 0.9; }
  100% { top: 42%; left: 18%; opacity: 0; transform: scale(0) rotate(360deg); }
}
@keyframes suck2 {
  0%   { top: 5%; left: -15%; opacity: 0; transform: scale(1.5); }
  15%  { opacity: 0.8; }
  100% { top: 45%; left: 16%; opacity: 0; transform: scale(0) rotate(-360deg); }
}
@keyframes suck3 {
  0%   { top: 60%; left: -45%; opacity: 0; transform: scale(1.5); }
  15%  { opacity: 0.9; }
  100% { top: 43%; left: 18%; opacity: 0; transform: scale(0) rotate(400deg); }
}
@keyframes suck4 {
  0%   { top: 30%; left: -55%; opacity: 0; transform: scale(1.3); }
  15%  { opacity: 0.8; }
  100% { top: 40%; left: 17%; opacity: 0; transform: scale(0) rotate(-300deg); }
}

/* === SPARKLE PARTICLES === */
.sparkle-particle {
  position: absolute;
  z-index: 5;
}

.sparkle-particle svg {
  animation: sparklePulse ease-in-out infinite;
}

.sparkle-particle:nth-child(1) { top: 15%; left: 35%; }
.sparkle-particle:nth-child(1) svg { animation-duration: 2.5s; animation-delay: 0s; }
.sparkle-particle:nth-child(2) { top: 45%; left: 65%; }
.sparkle-particle:nth-child(2) svg { animation-duration: 3s; animation-delay: -0.8s; }
.sparkle-particle:nth-child(3) { top: 70%; left: 40%; }
.sparkle-particle:nth-child(3) svg { animation-duration: 2s; animation-delay: -1.5s; }
.sparkle-particle:nth-child(4) { top: 25%; left: 75%; }
.sparkle-particle:nth-child(4) svg { animation-duration: 3.5s; animation-delay: -0.3s; }
.sparkle-particle:nth-child(5) { top: 80%; left: 60%; }
.sparkle-particle:nth-child(5) svg { animation-duration: 2.8s; animation-delay: -2s; }
.sparkle-particle:nth-child(6) { top: 5%; left: 55%; }
.sparkle-particle:nth-child(6) svg { animation-duration: 3.2s; animation-delay: -1s; }

@keyframes sparklePulse {
  0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
  40% { transform: scale(1) rotate(90deg); opacity: 1; }
  60% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
  80% { transform: scale(0.5) rotate(270deg); opacity: 0; }
}

/* === FLOATING MICRO-BUBBLES === */
.micro-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(26, 75, 138, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 -2px 4px rgba(26, 75, 138, 0.05), 0 2px 8px rgba(26, 75, 138, 0.04);
  animation: microFloat ease-in-out infinite;
  z-index: 4;
}

.micro-bubble:nth-child(1) { width: 18px; height: 18px; top: 20%; left: 80%; animation-duration: 5s; }
.micro-bubble:nth-child(2) { width: 12px; height: 12px; top: 40%; left: 85%; animation-duration: 4s; animation-delay: -1s; }
.micro-bubble:nth-child(3) { width: 24px; height: 24px; top: 60%; left: 75%; animation-duration: 6s; animation-delay: -2s; }
.micro-bubble:nth-child(4) { width: 10px; height: 10px; top: 30%; left: 90%; animation-duration: 4.5s; animation-delay: -3s; }
.micro-bubble:nth-child(5) { width: 16px; height: 16px; top: 75%; left: 82%; animation-duration: 5.5s; animation-delay: -1.5s; }
.micro-bubble:nth-child(6) { width: 8px; height: 8px; top: 50%; left: 92%; animation-duration: 3.5s; animation-delay: -0.5s; }
.micro-bubble:nth-child(7) { width: 20px; height: 20px; top: 15%; left: 88%; animation-duration: 7s; animation-delay: -4s; }
.micro-bubble:nth-child(8) { width: 14px; height: 14px; top: 85%; left: 78%; animation-duration: 5s; animation-delay: -2.5s; }

@keyframes microFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.4; }
  25% { transform: translate(5px, -20px); opacity: 0.7; }
  50% { transform: translate(-8px, -35px); opacity: 0.5; }
  75% { transform: translate(3px, -15px); opacity: 0.6; }
}

.sparkle:nth-child(1) { top: 20%; left: 40%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 50%; left: 65%; animation-delay: -0.5s; }
.sparkle:nth-child(3) { top: 75%; left: 25%; animation-delay: -1s; }
.sparkle:nth-child(4) { top: 35%; left: 80%; animation-delay: -1.5s; }

@keyframes sparkle {
  0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
  50% { transform: scale(1) rotate(180deg); opacity: 1; }
}

/* Squeegee / Wiper Animation */
.wiper-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.wiper-line {
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(26, 75, 138, 0.15), transparent);
  animation: wiperMove 6s ease-in-out infinite;
}

.wiper-line:nth-child(1) { animation-delay: 0s; }
.wiper-line:nth-child(2) { animation-delay: -2s; }
.wiper-line:nth-child(3) { animation-delay: -4s; }

@keyframes wiperMove {
  0% { left: -5%; opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.5; }
  100% { left: 105%; opacity: 0; }
}

/* --- Section Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 20px; }

.section-header p {
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 75, 138, 0.08), rgba(26, 75, 138, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; }

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.service-card:hover .learn-more { gap: 12px; }

/* --- Why Us / Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 40px 24px;
}

.feature-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.feature-item h3 { margin-bottom: 12px; }
.feature-item p { margin: 0 auto; font-size: 0.95rem; }

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0.2;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(26, 75, 138, 0.25);
}

.process-step h3 { margin-bottom: 8px; }
.process-step p { margin: 0 auto; font-size: 0.95rem; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--color-text-muted); }

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  background: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 { color: var(--color-white); margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,0.8); margin: 0 auto 40px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer h4 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--color-accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--color-accent);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--color-accent); }

/* --- Scroll Reveal Animations (schnell) --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-25px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(25px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

[data-delay="1"] { transition-delay: 0.05s; }
[data-delay="2"] { transition-delay: 0.1s; }
[data-delay="3"] { transition-delay: 0.15s; }
[data-delay="4"] { transition-delay: 0.2s; }
[data-delay="5"] { transition-delay: 0.25s; }
[data-delay="6"] { transition-delay: 0.3s; }

/* --- Page Header (for subpages) --- */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(165deg, var(--color-bg) 0%, #E8F0FE 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-white), transparent);
}

.page-header .overline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
}

.page-header h1 { margin-bottom: 20px; }

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumbs a { color: var(--color-primary); font-weight: 500; }
.breadcrumbs a:hover { text-decoration: underline; }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 75, 138, 0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Contact Info Sidebar */
.contact-info-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
}

.contact-info-text h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-text p { font-size: 0.9rem; margin: 0; }
.contact-info-text a { color: var(--color-primary); font-weight: 500; }
.contact-info-text a:hover { text-decoration: underline; }

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- B2B Section --- */
.b2b-hero {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.b2b-hero::before {
  display: none;
}

.b2b-hero h1 { color: var(--color-white); }
.b2b-hero p { color: rgba(255,255,255,0.8); }

.b2b-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.b2b-benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.b2b-benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.b2b-benefit-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-bg), #E8F0FE);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.about-image-placeholder {
  width: 80%;
  height: 80%;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 75, 138, 0.06), rgba(245, 166, 35, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 75, 138, 0.08), rgba(245, 166, 35, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.value-card h3 { margin-bottom: 12px; }

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 100px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-border);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  max-width: none;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* --- Mop Animation --- */
.mop-animation {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  pointer-events: none;
  transition: bottom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mop-animation.active {
  bottom: -20px;
}

/* --- Loading / Page Transition --- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Clients / Trust --- */
.clients-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
  opacity: 0.4;
  filter: grayscale(1);
  flex-wrap: wrap;
}

.clients-bar span {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid,
  .values-grid,
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  .process-steps::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .about-intro,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .b2b-benefits { grid-template-columns: 1fr; }

  .hero-visual { display: none; }
  .wiper-container { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 9999;
  }

  .nav.active { display: flex; }

  .nav a {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .menu-toggle { display: flex; }

  /* Bigger logo on mobile */
  .logo img, .logo svg { height: 52px; width: auto; }

  .hero-content { padding: 40px 0; }

  .b2b-hero { padding: 120px 0 60px; }
  .b2b-hero h1 { font-size: 2rem; margin-bottom: 16px; }
  .b2b-hero p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
    margin-top: 40px;
    padding-top: 28px;
  }
  .hero-stats > div {
    padding: 0 12px;
    border-right: 1px solid var(--color-border);
  }
  .hero-stats > div:last-child { border-right: none; }
  .hero-stat-number { font-size: 1.4rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }

  .page-header { padding: 120px 0 60px; }
  .page-header h1 { font-size: 1.75rem; word-break: break-word; hyphens: auto; }
  .page-header p { font-size: 0.95rem; }

  /* Global mobile typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }

  .overline { font-size: 0.7rem !important; margin-bottom: 10px !important; }
  .section-header h2 { margin-bottom: 14px; }
  .section-header p { font-size: 0.95rem; }

  /* About-intro sections (Leistungen + Über uns) */
  .about-intro h2 { font-size: 1.5rem; margin-bottom: 12px; }
  .about-intro p { font-size: 0.9rem; line-height: 1.7; }
  .about-intro ul li { font-size: 0.9rem; }

  /* Service cards */
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.85rem; }

  /* Value cards */
  .value-card h3 { font-size: 1.05rem; }
  .value-card p { font-size: 0.85rem; }

  /* Feature / facts items */
  .feature-number { font-size: 2.5rem; }
  .feature-item h3 { font-size: 1rem; }
  .feature-item p { font-size: 0.85rem; }

  /* Process steps */
  .process-step h3 { font-size: 1.05rem; }
  .process-step p { font-size: 0.85rem; }

  /* CTA section */
  .cta-content h2 { font-size: 1.5rem; }
  .cta-content p { font-size: 0.9rem; }

  /* B2B benefits */
  .b2b-benefit-card h3 { font-size: 1.05rem; }
  .b2b-benefit-card p { font-size: 0.85rem; }

  /* Legal content (Datenschutz, Impressum) */
  .legal-content h2 { font-size: 1.25rem; }
  .legal-content h3 { font-size: 1.05rem; }
  .legal-content p, .legal-content li { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 28px; }
}

/* --- Cookie Consent Banner (DSGVO) --- */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  z-index: 9998;
  transform: translateY(calc(100% + 60px));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--color-border);
}

.cookie-consent.visible { transform: translateY(0); }

.cookie-consent-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-consent-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: none;
}

.cookie-consent-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-settings-toggle {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 8px 4px;
  text-decoration: underline;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.cookie-settings-toggle:hover { color: var(--color-primary); }

/* Cookie Details/Settings Panel */
.cookie-consent-details {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.cookie-consent-details.open { display: block; }

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  gap: 16px;
}

.cookie-category:last-of-type { border-bottom: none; }

.cookie-category-info strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
}

.cookie-category-info p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}

.cookie-always-active {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-success);
  white-space: nowrap;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Toggle Switch */
.cookie-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input { opacity: 0; width: 0; height: 0; position: absolute; }

.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-border);
  border-radius: 24px;
  transition: background var(--transition-fast);
}

.cookie-switch-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--color-primary);
}

.cookie-switch input:checked + .cookie-switch-slider::before {
  transform: translateX(20px);
}

.cookie-save-row {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

/* Cookie Consent Mobile */
@media (max-width: 600px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 20px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }

  .cookie-consent-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }

/* --- Selection --- */
::selection {
  background: rgba(26, 75, 138, 0.15);
  color: var(--color-primary-dark);
}

/* --- Animated Counter --- */
.counter { display: inline-block; }

/* --- Gradient Divider --- */
.gradient-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border: none;
  margin: 0;
}
