/* =============================================================================
   LeadShield · SOCIETY MODE
   Cinematic dark theme with looping bg video, pill nav, display typography,
   glass cards with mouse-tilt parallax, scroll-fold hero.
   Loaded AFTER main.css so it overrides cleanly.
   Remove the society.css <link> + #soc-bg + JS block to fully revert.
   ============================================================================= */

@import url('https://fonts.bunny.net/css2?family=Big+Shoulders+Display:wght@700;800;900&family=Archivo+Black&family=DM+Mono:wght@400;500&family=Inter:wght@400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────────────
   BG VIDEO LAYER  (sticky behind everything)
   ───────────────────────────────────────────────────────────── */
#soc-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #05080d;
  overflow: hidden;
}
#soc-bg video,
#soc-bg__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
#soc-bg__placeholder {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 184, 212, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(157, 0, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(255, 140, 60, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, #0a1828 0%, #050810 50%, #0a0e1a 100%);
}
#soc-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, transparent 70%, rgba(5, 8, 13, 0.7) 100%);
  pointer-events: none;
}

/* Global ambient light layer — sits above bg, below content.
   Soft orange-left + cyan-right glows that follow the viewport on scroll,
   so the hero lighting persists throughout the page. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 12% 28%, rgba(255, 138, 61, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 88% 68%, rgba(56, 201, 242, 0.20) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(56, 201, 242, 0.10) 0%, transparent 70%);
  animation: soc-ambient-drift 22s ease-in-out infinite alternate;
}
@keyframes soc-ambient-drift {
  0%   { background-position: 0% 0%, 0% 0%, 0% 0%; }
  100% { background-position: -4% 3%, 5% -3%, 0% -2%; }
}

/* ─────────────────────────────────────────────────────────────────
   BASE OVERRIDES — body, type, colors
   ───────────────────────────────────────────────────────────── */
body {
  background: transparent !important;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
}
main, section, .container { position: relative; z-index: 1; }

/* Society tokens */
:root {
  --soc-bg:       #05080d;
  --soc-fg:       #ffffff;
  --soc-muted:    rgba(255, 255, 255, 0.62);
  --soc-faint:    rgba(255, 255, 255, 0.42);
  --soc-cyan:     #38C9F2;
  --soc-cyan-dim: rgba(56, 201, 242, 0.55);
  --soc-orange:   #FF8A3D;
  --soc-glass:    rgba(8, 14, 22, 0.45);
  --soc-glass-2:  rgba(15, 22, 35, 0.55);
  --soc-border:   rgba(255, 255, 255, 0.12);
  --soc-border-2: rgba(255, 255, 255, 0.06);
  --soc-display:  'Big Shoulders Display', 'Archivo Black', 'Inter', sans-serif;
}

/* ─────────────────────────────────────────────────────────────────
   NAV — center pill style
   ───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: calc(100% - 32px);
  background: rgba(8, 12, 18, 0.6) !important;
  border: 1px solid var(--soc-border) !important;
  border-radius: 999px !important;
  padding: 6px !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.site-header::before, .site-header::after { display: none !important; }
.header__inner {
  height: auto !important;
  padding: 0 !important;
  gap: 28px !important;
  display: flex !important;
  align-items: center !important;
}

.header__logo {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.header__logo img {
  height: 40px !important;
  width: 40px !important;
}

.header__nav { gap: 18px !important; }
.nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 0 12px !important;
}
.nav-link::after { display: none !important; }
.nav-link:hover { color: #fff !important; }
.nav-link[data-path="sites"], .nav-link[data-path="filter"] {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600 !important;
}
.nav-link--cta {
  background: var(--soc-cyan) !important;
  color: #04181c !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  border: none !important;
  box-shadow: 0 0 24px rgba(56, 201, 242, 0.4) !important;
  text-shadow: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 32px rgba(56, 201, 242, 0.6) !important;
  color: #04181c !important;
}

/* ─────────────────────────────────────────────────────────────────
   HERO — huge display, two-color, scroll-fold
   ───────────────────────────────────────────────────────────── */
.hero {
  padding-top: 120px !important;
  padding-bottom: 60px !important;
  min-height: 100vh;          /* fallback */
  min-height: 100dvh;         /* iOS Safari — verhindert Layout-Jump bei Adressleiste */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 1200px;
}

/* Soft fade between hero and next section — symmetric atmospheric haze
   that blends both ways across the section boundary, no hard cutoff. */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -180px;
  height: 360px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(5, 8, 13, 0.18) 30%,
    rgba(5, 8, 13, 0.32) 50%,
    rgba(5, 8, 13, 0.18) 70%,
    transparent 100%);
}
.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 70%;
  max-width: 800px;
  transform: translateX(-50%);
  height: 1px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 138, 61, 0.4) 30%,
    rgba(56, 201, 242, 0.4) 70%,
    transparent 100%);
  box-shadow: 0 0 24px rgba(56, 201, 242, 0.3);
}

/* Next section after hero gets generous breathing room + entrance fade */
.two-paths {
  padding-top: 140px !important;
  position: relative;
}
.two-paths::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 100% at 50% 0%,
    rgba(56, 201, 242, 0.06) 0%, transparent 70%);
}
.hero__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
.hero__body { max-width: none !important; text-align: center; }
.hero__visual { display: none !important; }

.hero__pre {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--soc-border);
  border-radius: 999px;
  color: var(--soc-cyan) !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  margin: 0 auto 32px !important;
}
.hero__pre::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--soc-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--soc-cyan);
}

.hero__h1 {
  font-family: var(--soc-display) !important;
  font-weight: 900 !important;
  /* min(vw, vh) so headline never overflows a short viewport */
  font-size: clamp(48px, min(9vw, 14vh), 140px) !important;
  line-height: 0.88 !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase;
  margin: 0 0 32px !important;
  text-wrap: balance;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
}
.hero__h1-line {
  display: block;
  will-change: transform;
  transition: transform 0.08s linear;
  transform-origin: 50% 50%;
}
.hero__h1-line--coral {
  color: #fff !important;
  text-shadow: none !important;
}
.hero__h1-line--cyan {
  color: var(--soc-cyan) !important;
  text-shadow: 0 0 32px rgba(56, 201, 242, 0.4);
}
.hero__h1-line span {
  background: none !important;
  color: inherit !important;
  text-shadow: none !important;
}

.hero__sub {
  max-width: 64ch !important;
  margin: 0 auto !important;
  color: var(--soc-muted) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}
.hero__cta { justify-content: center !important; margin-top: 28px !important; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────
   GLOBAL SECTIONS — transparent over bg, lifted spacing
   ───────────────────────────────────────────────────────────── */
section { background: transparent !important; border-color: transparent !important; }
.paths, .system, .proof, .approach, .operator, .closer {
  background: transparent !important;
}
.section-head, .section-head--center {
  text-align: center !important;
  margin-inline: auto !important;
  max-width: 72ch !important;
}
.section-head__num {
  display: inline-flex !important;
  align-items: center;
  gap: 6px !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--soc-cyan) !important;
  text-align: center !important;
  justify-content: center !important;
}
.section-head__num::before {
  content: '–';
  margin-right: 4px;
  color: var(--soc-cyan);
  font-weight: 700;
  display: none;
}

.section-head__title,
.section-head__title--big {
  font-family: var(--soc-display) !important;
  font-weight: 900 !important;
  font-size: clamp(40px, 7vw, 88px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.01em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
.section-head__sub {
  color: var(--soc-muted) !important;
  font-size: 16px !important;
  max-width: 64ch;
}

.label {
  font-family: 'DM Mono', monospace !important;
  letter-spacing: 0.16em !important;
  color: var(--soc-muted) !important;
}
.label::before { display: none; }

p, li { color: var(--soc-muted) !important; }
h1, h2, h3, h4, h5 { color: #fff !important; }

/* ─────────────────────────────────────────────────────────────────
   CARDS — glass + mouse-tilt parallax
   Wrapped in JS-tracked .soc-tilt for 3D tilt
   ───────────────────────────────────────────────────────────── */
.path-card,
.pillar,
.proof-card,
.step,
.operator__photo-frame {
  background: var(--soc-glass) !important;
  border: 1px solid var(--soc-border) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.5) !important;
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transition: transform 0.18s ease-out, border-color 0.2s !important;
  position: relative;
  overflow: hidden;
  /* Stop flickering on scroll: pin to its own compositor layer + lock paint */
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  contain: paint;
  isolation: isolate;
}

/* Stable text inside cards — disable text shadow recomputation during scroll */
.proof-card__title,
.path-card__title,
.pillar__title {
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  /* Add subtle cyan glow instead of leaving flicker prone state */
  text-shadow: 0 0 24px rgba(56, 201, 242, 0.15);
}
.path-card:hover, .pillar:hover, .proof-card:hover {
  border-color: rgba(56, 201, 242, 0.45) !important;
}
.path-card::before, .proof-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(56, 201, 242, 0.12) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.path-card:hover::before, .proof-card:hover::before { opacity: 1; }

.path-card__strip { display: none !important; }
.path-card__num { color: var(--soc-cyan) !important; }
.path-card--filter .path-card__num { color: var(--soc-cyan) !important; }
.path-card__title {
  font-family: var(--soc-display) !important;
  font-weight: 800 !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
.path-card__list li::before {
  background: var(--soc-cyan) !important;
}
.path-card--filter .path-card__list li::before { background: var(--soc-cyan) !important; }
.path-card__link { color: var(--soc-cyan) !important; }

/* Sites card: orange accents (matches CTA orange) */
.path-card--sites .path-card__num { color: var(--soc-orange) !important; }
.path-card--sites .path-card__list li::before { background: var(--soc-orange) !important; }
.path-card--sites .path-card__link { color: var(--soc-orange) !important; }
.path-card--sites:hover { border-color: rgba(255, 138, 61, 0.5) !important; }
.path-card--sites::before {
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 138, 61, 0.14) 0%, transparent 50%) !important;
}

.pillar { text-align: center; }
.pillar__num {
  font-family: 'DM Mono', monospace !important;
  color: var(--soc-cyan) !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
  text-align: center !important;
  display: block !important;
}
.pillar__num::before { display: none; }
.pillar__title {
  font-family: var(--soc-display) !important;
  font-weight: 800 !important;
  font-size: 28px !important;
  text-transform: uppercase !important;
  text-align: center !important;
}
.pillar__body { color: var(--soc-muted) !important; text-align: center !important; max-width: 36ch; margin-inline: auto !important; }

/* Pillar cards — restyle to match filter-price-card aesthetic (glass bg, backdrop-blur, cyan accent) */
.pillar {
  background: linear-gradient(180deg, rgba(15, 22, 35, 0.55), rgba(8, 14, 22, 0.45)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 24px !important;
  backdrop-filter: blur(20px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
  padding: 40px 32px !important;
  position: relative;
  overflow: hidden !important;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% -10%, rgba(56, 201, 242, 0.10), transparent 65%);
  opacity: 0.8;
}
.pillar:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(56, 201, 242, 0.35) !important;
  box-shadow: 0 18px 60px -18px rgba(56, 201, 242, 0.45) !important;
}

/* CTA buttons inside the system section + closer — glass with colored accents */
.system .cta-row .btn, .closer .cta-row .btn, .hero__cta .btn {
  --btn-accent: rgba(255, 255, 255, 0.4);
  --btn-accent-soft: rgba(255, 255, 255, 0.08);
  background: rgba(15, 22, 35, 0.55) !important;
  color: #fff !important;
  border: 1.5px solid var(--btn-accent) !important;
  border-radius: 999px !important;
  padding-left: 40px !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition:
    border-color 0.3s cubic-bezier(.4, 0, .2, 1),
    transform 0.3s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.3s cubic-bezier(.4, 0, .2, 1),
    background 0.3s cubic-bezier(.4, 0, .2, 1) !important;
}
.system .cta-row .btn--coral, .closer .cta-row .btn--coral, .hero__cta .btn--coral {
  --btn-accent: var(--soc-orange);
  --btn-accent-soft: rgba(255, 138, 61, 0.18);
}
.system .cta-row .btn--cyan, .closer .cta-row .btn--cyan, .hero__cta .btn--cyan {
  --btn-accent: var(--soc-cyan);
  --btn-accent-soft: rgba(56, 201, 242, 0.18);
}

/* Pulsing colored dot prefix — the "color element within the button" */
.system .cta-row .btn::before, .closer .cta-row .btn::before, .hero__cta .btn::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--btn-accent);
  box-shadow: 0 0 14px var(--btn-accent), 0 0 6px var(--btn-accent);
  transform: translateY(-50%) scale(1);
  animation: soc-btn-pulse 2.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes soc-btn-pulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50% { transform: translateY(-50%) scale(1.55); }
}

/* Sliding color fill from left on hover */
.system .cta-row .btn::after, .closer .cta-row .btn::after, .hero__cta .btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--btn-accent-soft) 0%,
    var(--btn-accent-soft) 30%,
    transparent 100%);
  transform: translateX(-105%);
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
  z-index: 0;
}
.system .cta-row .btn:hover::after, .closer .cta-row .btn:hover::after, .hero__cta .btn:hover::after {
  transform: translateX(0);
}

/* Ensure text + arrow sit above the sliding bg */
.system .cta-row .btn > span, .closer .cta-row .btn > span, .hero__cta .btn > span,
.system .cta-row .btn > svg, .closer .cta-row .btn > svg, .hero__cta .btn > svg {
  position: relative;
  z-index: 1;
}

/* Arrow uses accent color + extra animation */
.system .cta-row .btn .btn__arrow, .closer .cta-row .btn .btn__arrow, .hero__cta .btn .btn__arrow {
  color: var(--btn-accent) !important;
  transition: transform 0.35s cubic-bezier(.4, 0, .2, 1) !important;
  filter: drop-shadow(0 0 4px var(--btn-accent));
}

/* Hover — full color elevation */
.system .cta-row .btn:hover, .closer .cta-row .btn:hover, .hero__cta .btn:hover {
  border-color: var(--btn-accent) !important;
  background: rgba(15, 22, 35, 0.75) !important;
  transform: translateY(-3px) !important;
  box-shadow:
    0 12px 40px color-mix(in srgb, var(--btn-accent) 45%, transparent),
    0 0 0 1px var(--btn-accent),
    inset 0 0 24px color-mix(in srgb, var(--btn-accent) 12%, transparent) !important;
}
.system .cta-row .btn:hover .btn__arrow, .closer .cta-row .btn:hover .btn__arrow, .hero__cta .btn:hover .btn__arrow {
  transform: translateX(8px) scale(1.1) !important;
}
.system .cta-row .btn:hover::before, .closer .cta-row .btn:hover::before, .hero__cta .btn:hover::before {
  animation-duration: 0.9s;
}

/* ─────────────────────────────────────────────────────────────────
   HERO CTAs — extra flashy (bigger, double-ring pulse, sheen sweep)
   ───────────────────────────────────────────────────────────── */
.hero__cta .btn {
  height: 60px !important;
  padding: 0 30px 0 48px !important;
  font-size: 15px !important;
  /* Constant glow even at rest */
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--btn-accent) 30%, transparent),
    0 8px 28px color-mix(in srgb, var(--btn-accent) 25%, transparent) !important;
}
.hero__cta .btn::before {
  width: 10px !important;
  height: 10px !important;
  left: 22px !important;
  box-shadow:
    0 0 18px var(--btn-accent),
    0 0 8px var(--btn-accent),
    0 0 0 0 var(--btn-accent) !important;
  animation: soc-hero-pulse 2s ease-out infinite !important;
}
@keyframes soc-hero-pulse {
  0%   { transform: translateY(-50%) scale(1);    box-shadow: 0 0 18px var(--btn-accent), 0 0 8px var(--btn-accent), 0 0 0 0 color-mix(in srgb, var(--btn-accent) 70%, transparent); }
  60%  { transform: translateY(-50%) scale(1.35); box-shadow: 0 0 22px var(--btn-accent), 0 0 10px var(--btn-accent), 0 0 0 14px color-mix(in srgb, var(--btn-accent) 0%, transparent); }
  100% { transform: translateY(-50%) scale(1);    box-shadow: 0 0 18px var(--btn-accent), 0 0 8px var(--btn-accent), 0 0 0 0 color-mix(in srgb, var(--btn-accent) 0%, transparent); }
}

/* Sheen sweep — diagonal light reflection that travels across, constant idle anim */
.hero__cta .btn {
  background-image: linear-gradient(
    100deg,
    transparent 30%,
    color-mix(in srgb, var(--btn-accent) 18%, transparent) 50%,
    transparent 70%) !important;
  background-size: 220% 100%;
  background-position: 200% 0;
  animation: soc-hero-sheen 4.5s ease-in-out infinite;
}
@keyframes soc-hero-sheen {
  0%   { background-position: 200% 0; }
  60%  { background-position: -120% 0; }
  100% { background-position: -120% 0; }
}

/* Hover — even more dramatic lift + accent glow */
.hero__cta .btn:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow:
    0 0 0 1px var(--btn-accent),
    0 18px 60px color-mix(in srgb, var(--btn-accent) 55%, transparent),
    0 0 80px color-mix(in srgb, var(--btn-accent) 30%, transparent),
    inset 0 0 32px color-mix(in srgb, var(--btn-accent) 15%, transparent) !important;
  animation-duration: 1.8s !important;
}
.hero__cta .btn:hover .btn__arrow {
  transform: translateX(12px) scale(1.2) !important;
  filter: drop-shadow(0 0 8px var(--btn-accent)) drop-shadow(0 0 16px var(--btn-accent)) !important;
}

/* ─────────────────────────────────────────────────────────────────
   PROOF SECTION — keep mockups but glass-frame them
   ───────────────────────────────────────────────────────────── */
.proof-grid--filter {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 360px)) !important;
  justify-content: center !important;
  gap: var(--space-3) !important;
  max-width: 760px;
  margin-inline: auto !important;
}
.proof-card { padding: 0 0 16px !important; }
.proof-card__visual { background: rgba(0, 0, 0, 0.3) !important; }
.proof-card__tag {
  font-family: 'DM Mono', monospace !important;
  color: var(--soc-cyan) !important;
}
.proof-card__title {
  font-family: var(--soc-display) !important;
  font-weight: 800 !important;
  font-size: 20px !important;
  text-transform: uppercase !important;
  color: #fff !important;
}
.proof-divider__label {
  font-family: 'DM Mono', monospace !important;
  color: var(--soc-cyan) !important;
  font-size: 12px !important;
}
.proof-divider__line {
  background: linear-gradient(90deg, transparent, var(--soc-cyan-dim), transparent) !important;
}

/* Coral variant — actually orange in society mode, lines included */
.proof-divider__label--coral {
  font-family: 'DM Mono', monospace !important;
  color: var(--soc-orange) !important;
  font-size: 12px !important;
  text-shadow: 0 0 18px rgba(255, 138, 61, 0.35);
}
.proof-divider:has(.proof-divider__label--coral) .proof-divider__line {
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 138, 61, 0.55),
    transparent) !important;
}

/* ─────────────────────────────────────────────────────────────────
   FILTER FUNNEL CARD — left-to-right funnel (replaces mkf-* layout)
   ───────────────────────────────────────────────────────────── */
.proof-card__shot[data-shot="filter"] {
  display: block !important;          /* override main.css flex column */
  padding: 14px 12px 12px !important;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255, 138, 61, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(56, 201, 242, 0.18) 0%, transparent 55%),
    linear-gradient(165deg, #0a1722 0%, #0b1929 55%, #08121c 100%) !important;
}

.lrf {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 6px;
  height: 100%;
}

.lrf__cap {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 138, 61, 0.95) !important;
  margin: 0 0 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.lrf__cap::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #FF8A3D;
  box-shadow: 0 0 8px rgba(255, 138, 61, 0.8);
}
.lrf__cap--out { color: rgba(56, 201, 242, 0.95) !important; }
.lrf__cap--out::before {
  background: #38C9F2;
  box-shadow: 0 0 8px rgba(56, 201, 242, 0.8);
}

.lrf__col { text-align: center; }
.lrf__leads {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 6px;
  justify-items: center;
}
.lrf__leads--out { grid-template-columns: 1fr; gap: 7px; }

.lrf__lead {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.lrf__lead--bad {
  background: rgba(255, 107, 74, 0.55);
}
.lrf__lead--good {
  background: #38C9F2;
  box-shadow: 0 0 10px rgba(56, 201, 242, 0.85);
  width: 11px;
  height: 11px;
}

.lrf__count {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 8px 0 0;
}
.lrf__count--out { color: rgba(56, 201, 242, 0.9) !important; }

.lrf__funnel {
  position: relative;
  height: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lrf__shape {
  position: absolute;
  inset: 6% 0;
  width: 100%;
  height: 88%;
  filter: drop-shadow(0 0 6px rgba(56, 201, 242, 0.25));
}
.lrf__rules {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.lrf__rules li {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78) !important;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  text-align: left;
  justify-content: center;
}
.lrf__rules li span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #38C9F2;
  box-shadow: 0 0 6px rgba(56, 201, 242, 0.7);
  flex-shrink: 0;
}
.lrf__label {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 7.5px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: rgba(56, 201, 242, 0.6) !important;
  margin: 0;
  pointer-events: none;
}

/* Hover: input bad dots dim, good outputs pulse, rules light up */
.proof-card--filter:hover .lrf__lead--bad { opacity: 0.3; }
.proof-card--filter:hover .lrf__lead--good {
  animation: lrf-pulse 1.4s ease-in-out infinite;
}
.proof-card--filter:hover .lrf__lead--good:nth-child(2) { animation-delay: 0.18s; }
.proof-card--filter:hover .lrf__lead--good:nth-child(3) { animation-delay: 0.36s; }
@keyframes lrf-pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 10px rgba(56, 201, 242, 0.85); }
  50%      { transform: scale(1.25); box-shadow: 0 0 18px rgba(56, 201, 242, 1); }
}

/* "Mehr Funnels in Produktion" — brighter title */
.mks-title {
  color: rgba(255, 255, 255, 0.98) !important;
  text-shadow: 0 0 24px rgba(56, 201, 242, 0.25);
}

/* ─────────────────────────────────────────────────────────────────
   ABOUT page — centered section labels + cyan email
   ───────────────────────────────────────────────────────────── */
.about-section__num--center {
  display: block !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: var(--soc-cyan) !important;
}

.about-contact__email {
  color: var(--soc-cyan) !important;
  border-bottom-color: rgba(56, 201, 242, 0.45) !important;
  text-shadow: 0 0 18px rgba(56, 201, 242, 0.35);
  transition: color 0.2s, border-color 0.2s, text-shadow 0.2s !important;
}
.about-contact__email:hover {
  color: #aef0ff !important;
  border-bottom-color: var(--soc-cyan) !important;
  text-shadow: 0 0 24px rgba(56, 201, 242, 0.6);
}

/* About page eyebrow labels — muted grey */
.about-hero__pre,
.about-contact__pre {
  color: rgba(255, 255, 255, 0.45) !important;
}

.about-hero__pre {
  text-align: center !important;
}

.about-section__num {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ── ABOUT HERO — wide 16:9 image + text right ────────────── */
.about-hero__grid--wide {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
  align-items: center !important;
}

.about-hero__media-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 22, 35, 0.55), rgba(8, 14, 22, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  position: relative;
}

.about-hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero__media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.about-hero__media-placeholder svg {
  opacity: 0.4;
}

.about-hero__media-placeholder small {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .about-hero__grid--wide {
    grid-template-columns: 1fr 1fr !important;
    gap: var(--space-4) !important;
  }
}

@media (max-width: 720px) {
  .about-hero__grid--wide {
    grid-template-columns: 1fr !important;
    gap: var(--space-4) !important;
  }
}

/* Product links in contact section — static color, hover adds glow */
.about-product-link {
  transition: color 0.25s ease, text-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease !important;
}
.about-product-link--coral {
  color: var(--soc-orange) !important;
}
.about-product-link--cyan {
  color: var(--soc-cyan) !important;
}
.about-product-link--coral:hover {
  color: var(--soc-orange) !important;
  text-shadow:
    0 0 12px rgba(255, 138, 61, 0.7),
    0 0 32px rgba(255, 138, 61, 0.45) !important;
}
.about-product-link--cyan:hover {
  color: var(--soc-cyan) !important;
  text-shadow:
    0 0 12px rgba(56, 201, 242, 0.7),
    0 0 32px rgba(56, 201, 242, 0.45) !important;
}
.about-product-link svg {
  transition: transform 0.25s ease, filter 0.25s ease;
}
.about-product-link--coral:hover svg {
  transform: translateX(4px);
  filter: drop-shadow(0 0 8px rgba(255, 138, 61, 0.8));
}
.about-product-link--cyan:hover svg {
  transform: translateX(4px);
  filter: drop-shadow(0 0 8px rgba(56, 201, 242, 0.8));
}

/* Nav link hover — Websites orange, Filter cyan */
.nav-link[data-path="sites"]:hover {
  color: var(--soc-orange) !important;
  text-shadow: 0 0 14px rgba(255, 138, 61, 0.55);
}
.nav-link[data-path="filter"]:hover {
  color: var(--soc-cyan) !important;
  text-shadow: 0 0 14px rgba(56, 201, 242, 0.55);
}

/* Active page — text matches its accent (and the underline) */
.nav-link[data-path="sites"][aria-current="page"] {
  color: var(--soc-orange) !important;
  border-bottom-color: var(--soc-orange) !important;
  text-shadow: 0 0 14px rgba(255, 138, 61, 0.45);
}
.nav-link[data-path="filter"][aria-current="page"] {
  color: var(--soc-cyan) !important;
  border-bottom-color: var(--soc-cyan) !important;
  text-shadow: 0 0 14px rgba(56, 201, 242, 0.45);
}
.nav-link[data-path="about"][aria-current="page"] {
  color: #fff !important;
  border-bottom-color: #fff !important;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}
.nav-link[data-path="about"]:hover {
  color: #fff !important;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}
.nav-link[data-path="about"] {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600 !important;
}

/* Hero h1 — give the white (non-accent) line a subtle glow,
   mirroring the cyan/orange line's soft halo */
.hero__h1-line {
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.22);
}
.hero__h1-line--coral { /* already white on this page set */
  text-shadow: 0 0 28px rgba(255, 138, 61, 0.35) !important;
}
.hero__h1-line--cyan {
  /* preserve existing cyan glow declared earlier */
}

/* ──────────────────────────────────────────────────────────────
   Highlight glow — auto-apply hero-style halo to any inline
   coloured span inside a title across all society subpages.
   Orange (#FF8A3D) and cyan (#38C9F2) highlights get the soft
   diffuse glow used on the homepage hero. Uses attribute-substring
   selectors so future spans inherit the effect for free.
   ────────────────────────────────────────────────────────────── */
.hero__h1 span[style*="FF8A3D"],
.section-head__title span[style*="FF8A3D"],
.about-section__title span[style*="FF8A3D"],
.about-hero__title span[style*="FF8A3D"],
.about-contact__title span[style*="FF8A3D"],
.operator__title span[style*="FF8A3D"],
.closer__title span[style*="FF8A3D"],
.proof-card__title span[style*="FF8A3D"],
h1 span[style*="FF8A3D"],
h2 span[style*="FF8A3D"],
h3 span[style*="FF8A3D"] {
  color: var(--soc-orange) !important;
  text-shadow: 0 0 28px rgba(255, 138, 61, 0.45),
               0 0 8px  rgba(255, 138, 61, 0.25) !important;
}

.hero__h1 span[style*="38C9F2"],
.section-head__title span[style*="38C9F2"],
.about-section__title span[style*="38C9F2"],
.about-hero__title span[style*="38C9F2"],
.about-contact__title span[style*="38C9F2"],
.operator__title span[style*="38C9F2"],
.closer__title span[style*="38C9F2"],
.proof-card__title span[style*="38C9F2"],
h1 span[style*="38C9F2"],
h2 span[style*="38C9F2"],
h3 span[style*="38C9F2"] {
  color: var(--soc-cyan) !important;
  text-shadow: 0 0 32px rgba(56, 201, 242, 0.5),
               0 0 8px  rgba(56, 201, 242, 0.3) !important;
}

/* Problem cards — glass card style with centered content */
.problem-card {
  text-align: center !important;
  background: linear-gradient(180deg, rgba(15, 22, 35, 0.55), rgba(8, 14, 22, 0.45)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 14px !important;
  padding: 22px 26px !important;
  isolation: isolate;
  overflow: hidden !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  position: relative;
  transition:
    border-color 0.32s var(--ease-out),
    transform    0.32s var(--ease-out),
    box-shadow   0.32s var(--ease-out) !important;
}

.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(56, 201, 242, 0.08), transparent 65%);
  opacity: 0;
  transition: opacity 0.32s ease-out;
}

.problem-card:hover {
  border-color: rgba(56, 201, 242, 0.45) !important;
  box-shadow:
    0 6px 28px rgba(56, 201, 242, 0.15),
    0 0 0 1px rgba(56, 201, 242, 0.2) !important;
  transform: translateY(-2px) !important;
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card__num {
  /* Match pillar__num — hashtag-style numbering */
  font-family: 'DM Mono', monospace !important;
  color: var(--soc-cyan) !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  line-height: 1 !important;
  margin: 0 auto 12px !important;
  text-align: center !important;
  display: block !important;
  position: relative;
  z-index: 3;
}
.problem-card__title {
  text-align: center !important;
  position: relative;
  z-index: 3;
}
.problem-card__body {
  text-align: center !important;
  max-width: 32ch;
  margin-inline: auto !important;
  position: relative;
  z-index: 3;
}

/* ─────────────────────────────────────────────────────────────────
   OPERATOR — glass photo + clean type
   ───────────────────────────────────────────────────────────── */
.operator__pre {
  color: rgba(255, 255, 255, 0.45) !important;
  text-align: center !important;
}
.operator__title {
  font-family: var(--soc-display) !important;
  font-weight: 900 !important;
  font-size: clamp(36px, 5vw, 64px) !important;
  text-transform: uppercase !important;
  line-height: 0.92 !important;
}
.operator__body .link-arrow {
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
}
.operator__photo-frame {
  background: rgba(8, 14, 22, 0.5) !important;
}
.operator__photo-frame--wide {
  aspect-ratio: 16 / 9 !important;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.operator__photo-placeholder-16x9 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.25);
}
.operator__photo-placeholder-16x9 svg {
  opacity: 0.4;
  display: block;
  max-width: none;
  height: auto;
}
.operator__photo-placeholder-16x9 small {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ─────────────────────────────────────────────────────────────────
   CLOSER
   ───────────────────────────────────────────────────────────── */
.closer__title {
  font-family: var(--soc-display) !important;
  font-weight: 900 !important;
  font-size: clamp(56px, 9vw, 128px) !important;
  text-transform: uppercase !important;
  line-height: 0.9 !important;
  color: #fff !important;
}
.closer__pre { color: var(--soc-cyan) !important; }

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.site-footer, .footer {
  background: linear-gradient(180deg,
    rgba(5, 8, 13, 0) 0%,
    rgba(5, 8, 13, 0.55) 30%,
    rgba(5, 8, 13, 0.85) 100%) !important;
  border-top: none !important;
  color: var(--soc-muted) !important;
}
.footer * { color: var(--soc-muted) !important; }
.footer a:hover { color: var(--soc-cyan) !important; }
.footer__head { color: var(--soc-cyan) !important; }

/* ─────────────────────────────────────────────────────────────────
   PRICING — glass cards + cyan accents
   Setup (one-time) and Wartung (monthly) read as a paired system,
   joined by a glowing "+" connector.
   ───────────────────────────────────────────────────────────── */
.pricing { padding: clamp(80px, 12vw, 140px) 0 !important; }

.pricing-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  position: relative;
  max-width: 1080px !important;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0 !important;
}

/* "+" connector — sits between the two cards on desktop */
.pricing-grid::before {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--soc-cyan);
  background: rgba(5, 8, 13, 0.92);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(56, 201, 242, 0.45);
  box-shadow:
    0 0 0 4px rgba(5, 8, 13, 0.92),
    0 0 28px rgba(56, 201, 242, 0.45),
    inset 0 0 14px rgba(56, 201, 242, 0.18);
  text-shadow: 0 0 12px rgba(56, 201, 242, 0.75);
  z-index: 3;
  animation: soc-plus-breath 3.2s ease-in-out infinite;
}
@keyframes soc-plus-breath {
  0%, 100% { box-shadow: 0 0 0 4px rgba(5,8,13,0.92), 0 0 28px rgba(56,201,242,0.45), inset 0 0 14px rgba(56,201,242,0.18); }
  50%      { box-shadow: 0 0 0 4px rgba(5,8,13,0.92), 0 0 46px rgba(56,201,242,0.75), inset 0 0 18px rgba(56,201,242,0.3); }
}

.filter-price-card {
  background: linear-gradient(180deg, rgba(15, 22, 35, 0.55), rgba(8, 14, 22, 0.45)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 24px !important;
  backdrop-filter: blur(20px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(120%) !important;
  position: relative;
  overflow: hidden !important;
  padding: 40px 36px !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* soft cyan halo from the top */
.filter-price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% -10%, rgba(56, 201, 242, 0.10), transparent 65%);
  opacity: 0.8;
}

.filter-price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 201, 242, 0.35) !important;
  box-shadow: 0 18px 60px -18px rgba(56, 201, 242, 0.45) !important;
}

.filter-price-card--main {
  border-color: rgba(56, 201, 242, 0.40) !important;
  box-shadow: 0 0 80px -18px rgba(56, 201, 242, 0.45) !important;
}
.filter-price-card--main::before {
  background: radial-gradient(ellipse 90% 100% at 50% -10%, rgba(56, 201, 242, 0.20), transparent 65%);
  opacity: 1;
}

.filter-price-card__head {
  padding: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
  padding-bottom: 26px !important;
  margin-bottom: 28px !important;
  position: relative;
  z-index: 1;
}

.filter-price-card__tag {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--soc-cyan) !important;
  margin-bottom: 18px !important;
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 6px 12px 6px 10px !important;
  border: 1px solid rgba(56, 201, 242, 0.35) !important;
  border-radius: 999px !important;
  background: rgba(56, 201, 242, 0.06) !important;
}
.filter-price-card__tag::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--soc-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--soc-cyan);
  animation: soc-tag-blink 2.4s ease-in-out infinite;
}
@keyframes soc-tag-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.85); }
}

.filter-price-card__name {
  font-family: var(--soc-display) !important;
  font-weight: 900 !important;
  font-size: clamp(36px, 4vw, 52px) !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  color: #fff !important;
  line-height: 0.95 !important;
  margin: 0 !important;
}

.filter-price-card__price {
  font-family: 'DM Mono', monospace !important;
  font-size: 14px !important;
  color: var(--soc-muted) !important;
  margin-top: 18px !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
}

.filter-price-card__price .price-prefix {
  color: var(--soc-muted) !important;
  font-size: 14px !important;
}

.filter-price-card__price strong,
.filter-price-card__price .price-amount {
  font-family: var(--soc-display) !important;
  font-weight: 900 !important;
  font-size: clamp(42px, 5vw, 56px) !important;
  color: var(--soc-cyan) !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  text-shadow: 0 0 22px rgba(56, 201, 242, 0.4);
}
.filter-price-card__price span,
.filter-price-card__price .price-suffix {
  color: var(--soc-faint) !important;
  font-size: 13px !important;
}

.filter-price-card__body {
  padding: 0 !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  position: relative;
  z-index: 1;
}

.price-feature {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.5 !important;
  gap: 14px !important;
  align-items: flex-start !important;
  display: flex !important;
  margin: 0 !important;
}

.price-feature::before {
  content: '' !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(56, 201, 242, 0.55) !important;
  background:
    radial-gradient(circle at 50% 50%, var(--soc-cyan) 0, var(--soc-cyan) 3px, transparent 3.5px) !important;
  box-shadow: 0 0 10px rgba(56, 201, 242, 0.35) !important;
  opacity: 1 !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr !important; gap: 60px !important; }
  .pricing-grid::before {
    top: auto;
    bottom: 50%;
    transform: translate(-50%, 50%);
    /* Sits in the gap between the stacked cards */
  }
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { top: 12px; }
  .header__nav { display: none !important; }
  .hero { padding-top: 120px !important; }
  .hero__h1 { font-size: clamp(48px, 14vw, 96px) !important; }
}


/* ═════════════════════════════════════════════════════════════════════════════
   SITES PAGE — SOCIETY OVERRIDES
   Comment fixes: process step hashtags, retro hover cards, detailed mockups
   ═════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   PROCESS STEPS — remove orange top line, #1/#2/#3 in orange,
   centered with text beneath (matches hero page pillar layout)
   ───────────────────────────────────────────────────────────── */
.process-step {
  border-top: 0 !important;
  background: linear-gradient(180deg, rgba(15, 22, 35, 0.55), rgba(8, 14, 22, 0.45)) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 14px !important;
  padding: 22px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 4px;
  isolation: isolate;
  overflow: hidden !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  transition:
    border-color 0.32s var(--ease-out),
    transform    0.32s var(--ease-out),
    box-shadow   0.32s var(--ease-out) !important;
  position: relative;
}

/* soft glow from center on hover */
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255, 138, 61, 0.08), transparent 65%);
  opacity: 0;
  transition: opacity 0.32s ease-out;
}

.process-step:hover {
  border-color: rgba(255, 138, 61, 0.45) !important;
  box-shadow:
    0 6px 28px rgba(255, 138, 61, 0.15),
    0 0 0 1px rgba(255, 138, 61, 0.2) !important;
  transform: translateY(-2px) !important;
}

.process-step:hover::before {
  opacity: 1;
}
.process-step__num {
  font-family: 'DM Mono', monospace !important;
  color: var(--soc-orange) !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 0 24px rgba(255, 138, 61, 0.45);
  margin: 0 0 8px !important;
  text-align: center !important;
  width: 100%;
  position: relative;
  z-index: 3;
}
.process-step__num::before { display: none !important; content: none !important; }
.process-step__title {
  font-family: var(--soc-display) !important;
  color: #fff !important;
  text-align: left !important;
  position: relative;
  z-index: 3;
}
.process-step__body {
  color: var(--soc-muted) !important;
  text-align: left !important;
  max-width: none;
  margin-inline: 0 !important;
  position: relative;
  z-index: 3;
}
.process-step__tag {
  color: var(--soc-orange) !important;
  border-color: rgba(255, 138, 61, 0.4) !important;
  background: rgba(255, 138, 61, 0.08) !important;
  margin-top: 8px;
  align-self: flex-start;
  position: relative;
  z-index: 3;
}


/* ─────────────────────────────────────────────────────────────────
   PRICING LIST — dim the row labels (default span is too white)
   ───────────────────────────────────────────────────────────── */
.pricing-list__item {
  border-color: transparent !important;
  background: rgba(8, 14, 22, 0.45) !important;
  border-radius: 8px !important;
  margin-bottom: 8px !important;
  padding: 0.875rem 1rem !important;
}
.pricing-list__item:first-child { padding-top: 0.875rem !important; }
.pricing-list__item > span:first-child {
  color: #fff !important;
  font-weight: 500;
}
.pricing-list__val {
  color: rgba(255, 255, 255, 0.65) !important;
}
.pricing-list__val--free {
  color: var(--soc-cyan) !important;
  text-shadow: 0 0 12px rgba(56, 201, 242, 0.35);
}

/* ── PRICING CARD — dark background for society theme
   ───────────────────────────────────────────────────────────── */
.pricing-card {
  background: linear-gradient(180deg, rgba(15, 22, 35, 0.85), rgba(8, 14, 22, 0.75)) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  backdrop-filter: blur(14px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(130%) !important;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4) !important;
}

.pricing-card__note {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ── PRICING FEATURES (new design for Websites pricing card)
   ───────────────────────────────────────────────────────────── */
.pricing-features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
}

.pricing-feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--soc-orange);
  opacity: 0.85;
}

.pricing-feature-text {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-feature-label {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-feature-badge {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  font-weight: 600;
}

.pricing-feature-badge--free {
  color: var(--soc-cyan);
  text-shadow: 0 0 12px rgba(56, 201, 242, 0.35);
}

.pricing-feature-badge--included {
  color: var(--soc-cyan);
  opacity: 0.8;
}


/* ─────────────────────────────────────────────────────────────────
   BRANCHEN CARDS — reset color/symbol style, retro full-card anims
   ───────────────────────────────────────────────────────────── */

/* Wipe the per-industry color tokens — neutral dark card for all */
.branchen-grid [data-branche] {
  --bi-bg:     rgba(12, 18, 26, 0.55);
  --bi-border: var(--soc-border);
  --bi-accent: var(--soc-orange);
  --bi-soft:   rgba(255, 138, 61, 0.10);
  --bi-glow:   none;
}

.branche-tag {
  position: relative;
  background: var(--bi-bg) !important;
  border: 1px solid var(--bi-border) !important;
  border-radius: 14px !important;
  padding: 18px 22px !important;
  min-height: 96px;
  min-width: 200px;
  flex: 1 1 200px;
  isolation: isolate;
  overflow: hidden !important;
  backdrop-filter: blur(14px) saturate(130%);
  transition:
    border-color 0.32s var(--ease-out),
    transform    0.32s var(--ease-out),
    box-shadow   0.32s var(--ease-out) !important;
}
.branche-tag:hover {
  border-color: rgba(255, 138, 61, 0.55) !important;
  box-shadow:
    0 6px 28px rgba(255, 138, 61, 0.18),
    0 0 0 1px rgba(255, 138, 61, 0.25) !important;
  transform: translateY(-2px) !important;
}
.branche-tag::before { display: none !important; }       /* kill spotlight */
.branche-tag__icon { display: none !important; }         /* kill old symbol */

.branche-tag__name {
  font-family: var(--soc-display) !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  letter-spacing: 0.005em !important;
  color: #fff !important;
  position: relative;
  z-index: 3;
  transition: color 0.28s, transform 0.28s;
}
.branche-tag__sub {
  font-family: 'DM Mono', monospace !important;
  font-size: 10.5px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55) !important;
  position: relative;
  z-index: 3;
  transition: color 0.28s;
}
.branche-tag:hover .branche-tag__name {
  color: #fff !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
}
.branche-tag:hover .branche-tag__sub {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

/* ── Full-card animation overlay (per industry) ────────────────── */
.branche-anim {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.28s ease-out;
  color: var(--soc-orange);
}
.branche-tag:hover .branche-anim { opacity: 1; }

/* Soft vignette behind text so labels remain legible during animation */
.branche-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.0) 0%, rgba(5, 8, 13, 0.65) 70%, rgba(5, 8, 13, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.28s ease-out;
  pointer-events: none;
  z-index: 2;
}
.branche-tag:hover::after { opacity: 1; }


/* ─── DACHDECKER — Dachziegel schieben sich von außen ein ─── */
.bra-tile {
  position: absolute;
  width: 26px;
  height: 16px;
  background: var(--soc-orange);
  border: 1.5px solid #0a0a0a;
  border-top-left-radius: 10px 12px;
  border-top-right-radius: 10px 12px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.25);
  opacity: 0;
}
.bra-tile::after {
  content: '';
  position: absolute;
  left: 50%; top: 4px;
  width: 1.5px; height: 6px;
  background: rgba(0, 0, 0, 0.35);
  transform: translateX(-50%);
}
[data-branche="dachdecker"]:hover .bra-tile {
  animation: tile-slide 0.7s cubic-bezier(0.18, 0.9, 0.3, 1) forwards;
}
[data-branche="dachdecker"]:hover .bra-tile--l1 { top: 6px;  left: -30px; animation-delay: 0.00s; --tx: 6px; --ty: 0; }
[data-branche="dachdecker"]:hover .bra-tile--l2 { top: 22px; left: -30px; animation-delay: 0.08s; --tx: 16px; --ty: 0; }
[data-branche="dachdecker"]:hover .bra-tile--l3 { top: 38px; left: -30px; animation-delay: 0.16s; --tx: 26px; --ty: 0; }
[data-branche="dachdecker"]:hover .bra-tile--r1 { top: 6px;  right: -30px; animation-delay: 0.06s; --tx: -6px; --ty: 0; }
[data-branche="dachdecker"]:hover .bra-tile--r2 { top: 22px; right: -30px; animation-delay: 0.14s; --tx: -16px; --ty: 0; }
[data-branche="dachdecker"]:hover .bra-tile--r3 { top: 38px; right: -30px; animation-delay: 0.22s; --tx: -26px; --ty: 0; }
[data-branche="dachdecker"]:hover .bra-tile--c1 { top: 14px; left: 50%; transform: translateX(-50%) translateY(-40px); animation-delay: 0.10s; --tx: -50%; --ty: 0; }
[data-branche="dachdecker"]:hover .bra-tile--c2 { top: 30px; left: 50%; transform: translateX(-50%) translateY(-40px); animation-delay: 0.20s; --tx: -50%; --ty: 0; }

@keyframes tile-slide {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  100% { opacity: 1; transform: translate(var(--tx, 0), var(--ty, 0)); }
}


/* ─── SANITÄR — Rohr zeichnet sich, Tropfen fallen ─── */
.bra-pipe {
  position: absolute;
  inset: 6px 0 auto 0;
  width: 100%;
  height: 60%;
  color: var(--soc-orange);
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
}
.bra-pipe-cap { opacity: 0; }
[data-branche="sanitaer"]:hover .bra-pipe {
  animation: pipe-draw 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
[data-branche="sanitaer"]:hover .bra-pipe-cap {
  animation: pipe-cap 0.3s ease-out 0.5s forwards;
}
@keyframes pipe-draw { to { stroke-dashoffset: 0; } }
@keyframes pipe-cap  { to { opacity: 1; } }

.bra-drop {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 9px;
  background: var(--soc-orange);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(0deg);
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(255, 138, 61, 0.55));
}
.bra-drop--1 { left: 22%; animation-delay: 0.6s; }
.bra-drop--2 { left: 50%; animation-delay: 0.85s; }
.bra-drop--3 { left: 70%; animation-delay: 1.0s; }
.bra-drop--4 { left: 35%; animation-delay: 1.2s; }
[data-branche="sanitaer"]:hover .bra-drop {
  animation: drop-fall 0.9s cubic-bezier(0.5, 0, 0.7, 1) infinite;
}
@keyframes drop-fall {
  0%   { opacity: 0; transform: translateY(0)   scale(0.7); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(50px) scale(1);   }
}


/* ─── ELEKTRIKER — Blitz durch Wolken ─── */
.bra-cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow:
    8px -3px 0 -2px rgba(255, 255, 255, 0.78),
    -8px -2px 0 -2px rgba(255, 255, 255, 0.78),
    16px 0 0 -4px rgba(255, 255, 255, 0.78);
  opacity: 0;
  transform: translateX(-30px);
}
.bra-cloud--1 { top: 10px; left: 18px; width: 26px; height: 9px; }
.bra-cloud--2 { top: 16px; right: 14px; width: 22px; height: 8px; }
.bra-cloud--3 { top: 4px;  left: 50%; width: 20px; height: 7px; transform: translateX(-80px); }

[data-branche="elektriker"]:hover .bra-cloud {
  animation: cloud-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
[data-branche="elektriker"]:hover .bra-cloud--1 { animation-delay: 0.0s;  }
[data-branche="elektriker"]:hover .bra-cloud--2 { animation-delay: 0.08s; }
[data-branche="elektriker"]:hover .bra-cloud--3 { animation-delay: 0.16s; }
@keyframes cloud-in { to { opacity: 1; transform: translateX(0); } }

.bra-bolt {
  position: absolute;
  top: 18px; left: 50%;
  width: 26px;
  height: 56px;
  margin-left: -13px;
  color: var(--soc-orange);
  filter: drop-shadow(0 0 12px rgba(255, 138, 61, 0.85));
  opacity: 0;
  transform: scale(0.4) translateY(-6px);
}
[data-branche="elektriker"]:hover .bra-bolt {
  animation: bolt-strike 1.4s steps(1) 0.35s infinite;
}
@keyframes bolt-strike {
  0%, 100%       { opacity: 0; transform: scale(0.4) translateY(-6px); }
  6%             { opacity: 1; transform: scale(1.08); }
  10%            { opacity: 0.2; }
  14%            { opacity: 1; transform: scale(1); }
  20%            { opacity: 1; }
  26%            { opacity: 0; }
}

.bra-flash {
  position: absolute;
  inset: 0;
  background: rgba(255, 220, 170, 0.5);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}
[data-branche="elektriker"]:hover .bra-flash {
  animation: bolt-flash 1.4s steps(1) 0.35s infinite;
}
@keyframes bolt-flash {
  0%, 8%, 100%   { opacity: 0; }
  6%             { opacity: 1; }
  14%            { opacity: 0.7; }
  20%            { opacity: 0; }
}


/* ─── MALER — Rolle streicht Farbe quer durchs Bild ─── */
.bra-paint {
  position: absolute;
  top: 30%;
  left: 0;
  width: 0;
  height: 40%;
  background:
    linear-gradient(90deg, transparent, var(--soc-orange) 8%, var(--soc-orange) 92%, transparent),
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(0,0,0,0.06) 6px 7px);
  background-blend-mode: multiply;
  filter: drop-shadow(0 0 8px rgba(255, 138, 61, 0.5));
}
[data-branche="maler"]:hover .bra-paint {
  animation: paint-sweep 0.9s cubic-bezier(0.55, 0.1, 0.3, 1) forwards;
}
@keyframes paint-sweep { to { width: 100%; } }

.bra-roller {
  position: absolute;
  top: 24%;
  left: -28px;
  width: 24px;
  height: 36px;
}
.bra-roller__cyl {
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 14px;
  background: #fff;
  border: 1.5px solid var(--soc-orange);
  border-radius: 3px;
  box-shadow: inset 0 -3px 0 rgba(255, 138, 61, 0.35);
}
.bra-roller__arm {
  position: absolute;
  left: 8px; top: 14px;
  width: 3px; height: 8px;
  background: #d6d6d6;
}
.bra-roller__handle {
  position: absolute;
  left: 5px; top: 22px;
  width: 9px; height: 14px;
  background: #2a2a2a;
  border-radius: 2px;
}
[data-branche="maler"]:hover .bra-roller {
  animation: roller-sweep 0.9s cubic-bezier(0.55, 0.1, 0.3, 1) forwards;
}
@keyframes roller-sweep { to { left: calc(100% - 4px); } }

.bra-splat {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--soc-orange);
  border-radius: 50%;
  opacity: 0;
}
.bra-splat--1 { left: 30%; top: 70%; }
.bra-splat--2 { left: 60%; top: 78%; width: 4px; height: 4px; }
[data-branche="maler"]:hover .bra-splat {
  animation: splat-pop 0.6s ease-out forwards;
}
[data-branche="maler"]:hover .bra-splat--1 { animation-delay: 0.55s; }
[data-branche="maler"]:hover .bra-splat--2 { animation-delay: 0.7s; }
@keyframes splat-pop {
  0%   { opacity: 0; transform: scale(0.2); }
  50%  { opacity: 1; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}


/* ─── SCHREINER — Holzplanken schieben sich ein, Säge fährt durch ─── */
.bra-plank {
  position: absolute;
  left: -120%;
  height: 14px;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.10) 0 1px,
      transparent 1px 18px),
    linear-gradient(180deg, #c97b3b 0%, #a05a23 100%);
  border: 1px solid rgba(0,0,0,0.4);
  border-radius: 2px;
  width: 100%;
}
.bra-plank--1 { top: 14px; }
.bra-plank--2 { top: 32px; }
.bra-plank--3 { top: 50px; }
[data-branche="schreiner"]:hover .bra-plank {
  animation: plank-slide 0.7s cubic-bezier(0.18, 0.9, 0.3, 1) forwards;
}
[data-branche="schreiner"]:hover .bra-plank--1 { animation-delay: 0.0s; }
[data-branche="schreiner"]:hover .bra-plank--2 { animation-delay: 0.1s; }
[data-branche="schreiner"]:hover .bra-plank--3 { animation-delay: 0.2s; }
@keyframes plank-slide { to { left: 0; } }

.bra-saw {
  position: absolute;
  left: -90px;
  top: 6px;
  width: 80px;
  height: 22px;
  color: #d8dde3;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}
[data-branche="schreiner"]:hover .bra-saw {
  animation: saw-pass 1.0s cubic-bezier(0.5, 0, 0.5, 1) 0.3s forwards;
}
@keyframes saw-pass {
  0%   { left: -90px; }
  100% { left: 110%; }
}

.bra-dust {
  position: absolute;
  top: 28px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #f5d59a;
  opacity: 0;
}
.bra-dust--1 { left: 30%; }
.bra-dust--2 { left: 50%; }
.bra-dust--3 { left: 70%; }
[data-branche="schreiner"]:hover .bra-dust {
  animation: dust-fall 0.7s ease-out forwards;
}
[data-branche="schreiner"]:hover .bra-dust--1 { animation-delay: 0.6s; }
[data-branche="schreiner"]:hover .bra-dust--2 { animation-delay: 0.75s; }
[data-branche="schreiner"]:hover .bra-dust--3 { animation-delay: 0.9s; }
@keyframes dust-fall {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(18px); }
}


/* ─── KFZ — Reifen rollt von rechts durch's Bild ─── */
.bra-road {
  position: absolute;
  bottom: 14%;
  left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--soc-orange) 0 8px,
    transparent 8px 14px);
  opacity: 0;
}
[data-branche="kfz"]:hover .bra-road {
  animation: road-show 0.3s ease-out 0.0s forwards,
             road-pan 0.6s linear 0.15s infinite;
}
@keyframes road-show { to { opacity: 0.7; } }
@keyframes road-pan {
  0%   { background-position: 0 0; }
  100% { background-position: -14px 0; }
}

.bra-tire {
  position: absolute;
  bottom: 6%;
  right: -60px;
  width: 50px;
  height: 50px;
  color: var(--soc-orange);
  filter: drop-shadow(0 2px 6px rgba(255, 138, 61, 0.6));
}
[data-branche="kfz"]:hover .bra-tire {
  animation: tire-roll 1.1s cubic-bezier(0.55, 0.1, 0.3, 1) 0.05s forwards;
}
@keyframes tire-roll {
  0%   { right: -60px; transform: rotate(0deg); }
  100% { right: calc(100% + 10px); transform: rotate(-720deg); }
}

.bra-smoke {
  position: absolute;
  bottom: 18%;
  width: 8px; height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  opacity: 0;
}
.bra-smoke--1 { right: 18%; }
.bra-smoke--2 { right: 40%; }
.bra-smoke--3 { right: 60%; }
[data-branche="kfz"]:hover .bra-smoke {
  animation: smoke-puff 0.9s ease-out forwards;
}
[data-branche="kfz"]:hover .bra-smoke--1 { animation-delay: 0.2s; }
[data-branche="kfz"]:hover .bra-smoke--2 { animation-delay: 0.5s; }
[data-branche="kfz"]:hover .bra-smoke--3 { animation-delay: 0.8s; }
@keyframes smoke-puff {
  0%   { opacity: 0.8; transform: scale(0.4); }
  100% { opacity: 0; transform: scale(2.2) translateY(-10px); }
}


/* ─── PHYSIO — EKG-Linie zeichnet sich quer durchs Bild ─── */
.bra-ecg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 138, 61, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 61, 0.10) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0;
}
[data-branche="physio"]:hover .bra-ecg-grid {
  animation: ecg-grid 0.4s ease-out forwards;
}
@keyframes ecg-grid { to { opacity: 1; } }

.bra-ecg {
  position: absolute;
  inset: 25% 0 auto 0;
  width: 100%;
  height: 50%;
  color: var(--soc-orange);
  filter: drop-shadow(0 0 6px rgba(255, 138, 61, 0.65));
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
[data-branche="physio"]:hover .bra-ecg {
  animation: ecg-draw 1.4s linear 0.1s infinite;
}
@keyframes ecg-draw {
  0%   { stroke-dashoffset: 500; }
  60%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -500; }
}

.bra-pulse {
  position: absolute;
  bottom: 14%;
  right: 14%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--soc-orange);
  box-shadow: 0 0 10px var(--soc-orange);
  opacity: 0;
}
[data-branche="physio"]:hover .bra-pulse {
  animation: pulse-beat 1.0s ease-in-out 0.3s infinite;
}
@keyframes pulse-beat {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.4); }
}


/* ─── REINIGUNG — Seifenblasen + Squeegee wischt durch ─── */
.bra-bubble {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 220, 180, 0.2) 50%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
}
.bra-bubble--1 { left: 15%; width: 12px; height: 12px; animation-delay: 0.0s; }
.bra-bubble--2 { left: 30%; width: 8px;  height: 8px;  animation-delay: 0.2s; }
.bra-bubble--3 { left: 45%; width: 14px; height: 14px; animation-delay: 0.1s; }
.bra-bubble--4 { left: 60%; width: 10px; height: 10px; animation-delay: 0.35s; }
.bra-bubble--5 { left: 75%; width: 7px;  height: 7px;  animation-delay: 0.5s; }
.bra-bubble--6 { left: 88%; width: 11px; height: 11px; animation-delay: 0.25s; }
[data-branche="reinigung"]:hover .bra-bubble {
  animation: bubble-rise 1.6s ease-out infinite;
}
@keyframes bubble-rise {
  0%   { opacity: 0; transform: translateY(0)   scale(0.6); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.1); }
}

.bra-squeegee {
  position: absolute;
  top: 20%;
  left: -38px;
  width: 32px;
  height: 30px;
}
.bra-squeegee__blade {
  position: absolute;
  left: 0; top: 0;
  width: 30px; height: 6px;
  background: var(--soc-orange);
  border-radius: 1px 1px 4px 4px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}
.bra-squeegee__handle {
  position: absolute;
  left: 12px; top: 6px;
  width: 6px; height: 22px;
  background: #2a2a2a;
  border-radius: 2px;
}
[data-branche="reinigung"]:hover .bra-squeegee {
  animation: squeegee-wipe 1.0s cubic-bezier(0.5, 0.1, 0.3, 1) 0.3s forwards;
}
@keyframes squeegee-wipe { to { left: calc(100% + 8px); } }

.bra-streak {
  position: absolute;
  top: 22%;
  left: 0;
  width: 0;
  height: 18%;
  background: linear-gradient(180deg,
    transparent,
    rgba(255, 255, 255, 0.18) 50%,
    transparent);
  pointer-events: none;
}
[data-branche="reinigung"]:hover .bra-streak {
  animation: streak-wipe 1.0s cubic-bezier(0.5, 0.1, 0.3, 1) 0.3s forwards;
}
@keyframes streak-wipe { to { width: 100%; } }


/* ─── GARTEN — Pflanzen wachsen aus der Erde ─── */
.bra-soil {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 14px;
  background:
    repeating-linear-gradient(45deg,
      rgba(255, 138, 61, 0.6) 0 2px,
      rgba(255, 138, 61, 0.3) 2px 4px),
    linear-gradient(180deg, rgba(120, 60, 20, 0.4), rgba(60, 30, 10, 0.7));
  opacity: 0;
  transform: translateY(14px);
}
[data-branche="garten"]:hover .bra-soil {
  animation: soil-in 0.35s ease-out forwards;
}
@keyframes soil-in {
  to { opacity: 1; transform: translateY(0); }
}

.bra-plant {
  position: absolute;
  bottom: 12px;
  width: 26px;
  height: 0;
  color: var(--soc-orange);
  filter: drop-shadow(0 0 6px rgba(255, 138, 61, 0.5));
  transform-origin: bottom center;
}
.bra-plant--1 { left: 18%; }
.bra-plant--2 { left: 48%; height: 0; }
.bra-plant--3 { left: 76%; }
[data-branche="garten"]:hover .bra-plant {
  animation: plant-grow 0.9s cubic-bezier(0.18, 0.9, 0.3, 1) forwards;
}
[data-branche="garten"]:hover .bra-plant--1 { animation-delay: 0.25s; }
[data-branche="garten"]:hover .bra-plant--2 { animation-delay: 0.40s; }
[data-branche="garten"]:hover .bra-plant--3 { animation-delay: 0.55s; }
@keyframes plant-grow {
  0%   { height: 0;     opacity: 0; }
  35%  { opacity: 1; }
  100% { height: 56px;  opacity: 1; }
}

/* Honour reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .branche-anim * { animation: none !important; transition: none !important; }
  .branche-tag:hover .branche-anim { opacity: 0.35; }
}


/* ═════════════════════════════════════════════════════════════════════════════
   PROOF MOCKUPS — Detailed website previews (from hero / index-society)
   ═════════════════════════════════════════════════════════════════════════ */

/* Frame layout: chrome bar + mockup canvas inside .proof-card__visual */
.proof-card__visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: rgba(0, 0, 0, 0.45) !important;
}
.mock-chrome--mini {
  position: absolute;
  inset: 0 0 auto 0;
  height: 22px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 3;
}
.mock-chrome--mini span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.mock-chrome--mini span:nth-child(1) { background: #FF5F57; }
.mock-chrome--mini span:nth-child(2) { background: #FEBC2E; }
.mock-chrome--mini span:nth-child(3) { background: #28C840; }

/* Match chrome background to mockup background */
.proof-card__shot[data-shot="dachdecker"] + .mock-chrome--mini {
  background: #2D2A2E;
}
.proof-card__shot[data-shot="sanitaer"] + .mock-chrome--mini {
  background: #1B2A3A;
}
.proof-card__shot[data-shot="elektriker"] + .mock-chrome--mini {
  background: #1A1A1A;
}

.proof-card__shot {
  position: absolute;
  inset: 22px 0 0 0;
  overflow: hidden;
  padding: 12px 14px 14px;
  color: #fff;
  font-family: var(--soc-display, 'Big Shoulders Display', sans-serif);
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: linear-gradient(135deg, #0a1018 0%, #0d1722 100%);
}

/* Shared nav row */
.mk-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mk-logo {
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
}
.mk-logo i {
  font-style: normal;
  opacity: 0.55;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.mk-menu { display: flex; flex-direction: column; gap: 2px; }
.mk-menu i { width: 11px; height: 1.2px; background: rgba(255, 255, 255, 0.55); display: block; }


/* ─── MOCKUP 1 — Dachdecker (warm hero + rain on hover) ─── */
.proof-card__shot[data-shot="dachdecker"] {
  background:
    linear-gradient(165deg, rgba(15, 10, 8, 0.78) 0%, rgba(30, 18, 10, 0.55) 50%, rgba(80, 32, 12, 0.4) 100%),
    url('https://images.unsplash.com/photo-1605450099279-533bd3ce379a?w=900&q=70&fm=jpg&auto=format&fit=crop') center/cover no-repeat;
}
.mk1-logo { color: #f1d4a8; }
.mk1-hero {
  margin-top: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mk1-meta {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.mk1-chip {
  font-family: 'DM Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 220, 180, 0.35);
  color: #f6e4cc;
  font-weight: 500;
}
.mk1-chip--alt {
  background: rgba(255, 107, 74, 0.18);
  border-color: rgba(255, 107, 74, 0.55);
  color: #ffe1d4;
}
.mk1-title {
  font-size: clamp(14px, 1.6vw, 22px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}
.mk1-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mk1-cta {
  display: inline-block;
  background: #FF6B4A;
  color: #1a0807;
  font-size: 8.5px;
  padding: 4px 8px;
  border-radius: 2px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 800;
  font-family: 'DM Mono', monospace;
  transition: transform 200ms, box-shadow 200ms;
}
.mk1-tel {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  color: #f1d4a8;
  font-weight: 700;
}
.proof-card:hover .mk1-cta {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -2px rgba(255, 107, 74, 0.7);
}
.mk1-roof {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28%;
  background:
    repeating-linear-gradient(45deg,
      rgba(0, 0, 0, 0.22) 0 4px,
      transparent 4px 9px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  clip-path: polygon(0 35%, 12% 18%, 28% 35%, 42% 12%, 58% 32%, 74% 16%, 88% 30%, 100% 18%, 100% 100%, 0 100%);
  pointer-events: none;
}
.mk1-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 250ms ease;
}
.mk1-rain i {
  position: absolute;
  top: -20%;
  width: 1px;
  height: 14px;
  background: linear-gradient(180deg, transparent, rgba(220, 240, 255, 0.7));
  animation: mk1-rain-fall 1.2s linear infinite;
}
.mk1-rain i:nth-child(1)  { left: 6%;  animation-delay: 0.00s; }
.mk1-rain i:nth-child(2)  { left: 16%; animation-delay: 0.25s; }
.mk1-rain i:nth-child(3)  { left: 26%; animation-delay: 0.50s; }
.mk1-rain i:nth-child(4)  { left: 36%; animation-delay: 0.10s; }
.mk1-rain i:nth-child(5)  { left: 46%; animation-delay: 0.35s; }
.mk1-rain i:nth-child(6)  { left: 56%; animation-delay: 0.60s; }
.mk1-rain i:nth-child(7)  { left: 66%; animation-delay: 0.15s; }
.mk1-rain i:nth-child(8)  { left: 76%; animation-delay: 0.45s; }
.mk1-rain i:nth-child(9)  { left: 86%; animation-delay: 0.30s; }
.mk1-rain i:nth-child(10) { left: 94%; animation-delay: 0.55s; }
.proof-card:hover .mk1-rain { opacity: 1; }
@keyframes mk1-rain-fall { to { transform: translateY(180%); } }


/* ─── MOCKUP 2 — Sanitär (chips + stats + water flow) ─── */
.proof-card__shot[data-shot="sanitaer"] {
  background:
    linear-gradient(165deg, rgba(8, 22, 34, 0.80) 0%, rgba(15, 50, 75, 0.62) 55%, rgba(30, 95, 130, 0.42) 100%),
    url('https://images.unsplash.com/photo-1765766556463-180500e61ea8?w=900&q=70&fm=jpg&auto=format&fit=crop') center/cover no-repeat;
}
.mk2-logo { color: #d4ecf7; }
.mk2-phone {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(180, 225, 240, 0.4);
  color: #e6f4fa;
  font-size: 7.5px;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: 'DM Mono', monospace;
}
.mk2-h {
  margin-top: 4px;
  font-size: clamp(13px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.mk2-chips {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.mk2-chips span {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(180, 225, 240, 0.35);
  color: #e6f4fa;
  font-size: 7.5px;
  padding: 3px 7px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: 'DM Mono', monospace;
  transition: transform 400ms cubic-bezier(.2,.7,.3,1), background 200ms, border-color 200ms;
}
.mk2-chips span:nth-child(1) { transition-delay: 0ms; }
.mk2-chips span:nth-child(2) { transition-delay: 70ms; }
.mk2-chips span:nth-child(3) { transition-delay: 140ms; }
.proof-card:hover .mk2-chips span {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(180, 225, 240, 0.7);
  transform: translateY(-2px);
}
.mk2-stats {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding: 6px 0;
  border-top: 1px solid rgba(180, 225, 240, 0.25);
  border-bottom: 1px solid rgba(180, 225, 240, 0.25);
}
.mk2-stats span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  color: rgba(220, 235, 245, 0.7);
  text-transform: uppercase;
}
.mk2-stats b {
  font-family: var(--soc-display, 'Big Shoulders Display', sans-serif);
  font-weight: 800;
  font-size: 11px;
  color: #aee0ef;
  letter-spacing: -0.01em;
}
.mk2-pipe {
  height: 4px;
  background: linear-gradient(180deg, #5fb5d9, #1f5e80);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.mk2-drop {
  position: absolute;
  top: 0;
  left: -25%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #aeeaff 50%, transparent);
}
.proof-card:hover .mk2-drop {
  animation: mk2-flow 1.3s linear infinite;
}
@keyframes mk2-flow { to { transform: translateX(500%); } }


/* ─── MOCKUP 3 — Elektriker (service grid + bolt) ─── */
.proof-card__shot[data-shot="elektriker"] {
  background:
    linear-gradient(165deg, rgba(5, 5, 5, 0.86) 0%, rgba(20, 18, 12, 0.72) 50%, rgba(40, 32, 14, 0.55) 100%),
    url('https://images.unsplash.com/photo-1758101755915-462eddc23f57?w=900&q=70&fm=jpg&auto=format&fit=crop') center/cover no-repeat;
}
.mk3-logo { color: #F5C518; }
.mk3-status {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.06em;
  font-family: 'DM Mono', monospace;
}
.mk3-led {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5be072;
  box-shadow: 0 0 4px #5be072;
  animation: mk3-led 1.6s ease-in-out infinite;
}
@keyframes mk3-led { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.mk3-h {
  font-size: clamp(12px, 1.4vw, 17px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fff;
  margin-top: 2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.mk3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.mk3-cell {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.22);
  color: #F5C518;
  font-size: 8.5px;
  letter-spacing: 0.06em;
  padding: 6px 7px;
  font-weight: 700;
  border-radius: 2px;
  font-family: 'DM Mono', monospace;
  transition: border-color 200ms, background 200ms, transform 200ms;
}
.mk3-cell:nth-child(1) { transition-delay: 0ms; }
.mk3-cell:nth-child(2) { transition-delay: 60ms; }
.mk3-cell:nth-child(3) { transition-delay: 120ms; }
.mk3-cell:nth-child(4) { transition-delay: 180ms; }
.proof-card:hover .mk3-cell {
  border-color: rgba(245, 197, 24, 0.7);
  background: rgba(245, 197, 24, 0.10);
  transform: translateY(-1px);
}
.mk3-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid rgba(245, 197, 24, 0.18);
}
.mk3-meister {
  font-family: 'DM Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.mk3-cta {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1a1a1a;
  background: #F5C518;
  padding: 3px 7px;
  border-radius: 2px;
}
.mk3-bolt {
  position: absolute;
  right: 12%;
  top: 28%;
  width: 18px;
  height: 36px;
  fill: rgba(245, 197, 24, 0.15);
  stroke: #F5C518;
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  opacity: 0;
  pointer-events: none;
}
.proof-card:hover .mk3-bolt {
  animation: mk3-bolt 720ms cubic-bezier(.4, .0, .2, 1) forwards;
}
@keyframes mk3-bolt {
  0%   { stroke-dashoffset: 90; opacity: 0; filter: drop-shadow(0 0 0 transparent); }
  35%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; filter: drop-shadow(0 0 6px rgba(245, 197, 24, 0.8)); }
}
