/* ══════════════════════════════════════════════════
   GREENGLANZ FAHRZEUGAUFBEREITUNG – fv-styles.css
   Weiß × Neon-Grün (dominant) × Blau (Akzent)
   Mobile-safe von Anfang an
══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ──────────────────────────────────── */
:root {
  /* Base */
  --white:    #ffffff;
  --off:      #f7faf7;
  --surface:  #f0f5f0;

  /* Neon Green — DOMINANT */
  --ng:       #00e676;
  --ng-dim:   #00c853;
  --ng-pale:  #b9f6ca;
  --ng-mist:  #e8f5e9;
  --ng-alpha: rgba(0,230,118,0.1);
  --ng-glow:  rgba(0,230,118,0.35);
  --ng-glow2: rgba(0,230,118,0.12);

  /* Blue — accent only */
  --bl:       #1565c0;
  --bl-2:     #1976d2;
  --bl-pale:  #bbdefb;
  --bl-mist:  #e3f2fd;
  --bl-alpha: rgba(21,101,192,0.1);

  /* Text */
  --t1:  #0a120a;
  --t2:  #2e3d2e;
  --t3:  #6b7d6b;
  --t4:  #a5b5a5;

  /* Fonts */
  --fd: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* Shadows */
  --sh-sm:   0 2px 16px rgba(0,230,118,0.08);
  --sh-md:   0 8px 40px rgba(0,230,118,0.12);
  --sh-lg:   0 24px 80px rgba(0,230,118,0.16);
  --sh-neon: 0 0 20px rgba(0,230,118,0.4), 0 0 60px rgba(0,230,118,0.15);
  --sh-b:    0 8px 32px rgba(21,101,192,0.1);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--t1);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
em { font-style: italic; color: var(--ng-dim); }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 { font-family: var(--fd); line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { color: var(--t2); line-height: 1.78; }

/* ── Scroll Progress ────────────────────────────── */
.scroll-prog {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%; z-index: 9999; pointer-events: none;
  background: linear-gradient(90deg, var(--ng), var(--ng-dim), var(--bl-2));
  box-shadow: 0 0 10px var(--ng-glow);
  transition: width 0.1s linear;
}

/* ── Custom Cursor ──────────────────────────────── */
.cur {
  width: 8px; height: 8px;
  background: var(--ng);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 10px var(--ng-glow);
  transition: width 0.2s var(--ease), height 0.2s var(--ease);
}
.cur-ring {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(0,230,118,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
body.cur-lg .cur      { width: 40px; height: 40px; }
body.cur-lg .cur-ring { width: 52px; height: 52px; border-color: var(--ng); }

/* ── Loader ─────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--white); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-core { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }

.loader-drop {
  width: 70px; height: 90px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.loader-drop svg { width: 100%; height: 100%; }
.drop-path {
  stroke-dasharray: 220; stroke-dashoffset: 220;
  animation: dash-draw 1.4s var(--ease) 0.1s forwards;
}
.drop-inner {
  stroke-dasharray: 160; stroke-dashoffset: 160;
  animation: dash-draw 1s var(--ease) 0.6s forwards;
}
@keyframes dash-draw { to { stroke-dashoffset: 0; } }
.drop-glow {
  position: absolute; inset: -10px;
  border-radius: 40% 40% 50% 50%;
  background: radial-gradient(ellipse at 50% 60%, rgba(0,230,118,0.2), transparent 70%);
  animation: drop-pulse 2s ease-in-out infinite;
}
@keyframes drop-pulse { 0%,100%{ opacity: 0.5; transform: scale(1); } 50%{ opacity: 1; transform: scale(1.1); } }

.loader-brand {
  font-family: var(--fd);
  font-size: 1.9rem; font-weight: 800;
  display: flex; align-items: baseline; gap: 0;
  opacity: 0;
  animation: rise 0.6s var(--ease) 1s forwards;
}
@keyframes rise { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.lb-green { color: var(--ng-dim); }
.lb-dark  { color: var(--t1); font-weight: 400; }
.loader-sub {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--t4); opacity: 0;
  animation: rise 0.5s var(--ease) 1.2s forwards;
}
.loader-bar { width: 180px; height: 2px; background: var(--surface); border-radius: 2px; overflow: hidden; }
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ng), var(--ng-dim));
  box-shadow: 0 0 8px var(--ng-glow);
  transition: width 0.05s linear;
}

/* ── Navigation ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 1.4rem 2rem;
  transition: all 0.4s var(--ease);
}
.nav::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(0,230,118,0);
  transition: all 0.4s var(--ease); pointer-events: none;
}
.nav.scrolled { padding: 0.85rem 2rem; }
.nav.scrolled::before {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(0,230,118,0.15);
  box-shadow: 0 2px 20px rgba(0,230,118,0.06);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.65rem; }
.nl-icon {
  width: 28px; height: 36px;
  color: var(--ng-dim); flex-shrink: 0;
}
.nl-icon svg { width: 100%; height: 100%; }
.nl-text { display: flex; flex-direction: column; gap: 0.1rem; }
.nl-name { display: flex; align-items: baseline; gap: 0; }
.nl-g  { font-family: var(--fd); font-size: 1.25rem; font-weight: 800; color: var(--ng-dim); }
.nl-gl { font-family: var(--fd); font-size: 1.25rem; font-weight: 400; color: var(--t1); }
.nl-sub {
  font-size: 0.56rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--t4); display: block;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.86rem; color: var(--t3); font-weight: 400;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ng);
  transition: width 0.28s var(--ease);
  box-shadow: 0 0 6px var(--ng-glow);
}
.nav-links a:hover { color: var(--ng-dim); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--ng) !important; color: var(--t1) !important;
  padding: 0.5rem 1.3rem !important; border-radius: var(--r-xs) !important;
  font-weight: 600 !important; font-family: var(--fd) !important;
  box-shadow: 0 0 16px var(--ng-glow) !important;
  transition: background 0.25s, transform 0.25s var(--ease-spring), box-shadow 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ng-dim) !important; transform: translateY(-2px) !important; box-shadow: 0 4px 24px var(--ng-glow) !important; }

.burger { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--t1); border-radius: 2px; transition: all 0.3s var(--ease); transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* Mobile Menu */
.mob-menu {
  display: none; position: fixed; inset: 0;
  background: var(--white); z-index: 999;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 2.5rem;
}
.mob-menu.open { display: flex; }
.mm-links { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.mm-links a { font-family: var(--fd); font-size: 2rem; font-weight: 700; color: var(--t2); transition: color 0.2s; }
.mm-links a:hover { color: var(--ng-dim); }
.mm-contact a { font-size: 0.9rem; color: var(--t4); }

/* ── Buttons ────────────────────────────────────── */
.btn-neon {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--ng); color: var(--t1);
  padding: 0.95rem 2.2rem; border-radius: var(--r-xs);
  font-family: var(--fd); font-size: 0.95rem; font-weight: 700;
  position: relative; overflow: hidden;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  box-shadow: 0 4px 20px var(--ng-glow), 0 0 0 1px rgba(0,230,118,0.3);
}
.btn-neon:hover { transform: translateY(-3px); box-shadow: var(--sh-neon); }
.btn-neon-arrow { width: 18px; height: 18px; flex-shrink: 0; position: relative; z-index: 1; }
.btn-neon-text { position: relative; z-index: 1; }
.btn-neon-glow {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-neon:hover .btn-neon-glow { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(0,230,118,0.4); color: var(--ng-dim);
  padding: 0.95rem 1.8rem; border-radius: var(--r-xs);
  font-size: 0.95rem; font-weight: 500;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-spring);
}
.btn-ghost:hover { border-color: var(--ng); background: var(--ng-alpha); transform: translateY(-2px); box-shadow: 0 0 14px var(--ng-glow2); }

.btn-submit-neon {
  width: 100%; padding: 1.05rem;
  background: var(--ng); color: var(--t1);
  border-radius: var(--r-sm);
  font-family: var(--fd); font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  transition: background 0.25s, transform 0.25s var(--ease-spring), box-shadow 0.25s;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px var(--ng-glow);
}
.btn-submit-neon:hover { background: var(--ng-dim); transform: translateY(-2px); box-shadow: var(--sh-neon); }
.btn-submit-neon.loading .bsn-text, .btn-submit-neon.loading .bsn-arrow { opacity: 0; }
.btn-submit-neon.loading .bsn-loader { opacity: 1; }
.bsn-loader { position: absolute; width: 20px; height: 20px; border: 2px solid rgba(10,18,10,0.25); border-top-color: var(--t1); border-radius: 50%; animation: spin 0.8s linear infinite; opacity: 0; transition: opacity 0.2s; }
.bsn-glow { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent); pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════
   HERO — Mobile-safe
══════════════════════════════════════════════════ */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  max-width: 1240px; margin: 0 auto;
  padding: 9rem 2rem 5rem;
}
.hero-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
/* Animated background blobs */
.hero-blob {
  position: fixed; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.b1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,230,118,0.08), transparent 70%);
  top: -100px; right: -100px;
  animation: blob-float 14s ease-in-out infinite;
}
.b2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,83,0.06), transparent 70%);
  bottom: 10%; left: -80px;
  animation: blob-float 18s ease-in-out infinite reverse;
}
.b3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(21,101,192,0.05), transparent 70%);
  top: 40%; right: 20%;
  animation: blob-float 11s ease-in-out infinite 4s;
}
@keyframes blob-float {
  0%,100%{ transform: translate(0,0) scale(1); }
  33%{ transform: translate(30px,-40px) scale(1.06); }
  66%{ transform: translate(-20px,20px) scale(0.96); }
}
/* Neon grid */
.hero-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,230,118,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 0%, transparent 100%);
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ng-dim); background: var(--ng-alpha);
  border: 1px solid rgba(0,230,118,0.25);
  padding: 0.38rem 1rem; border-radius: 999px; margin-bottom: 2rem;
  font-weight: 500;
}
.eyebrow-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ng);
  box-shadow: 0 0 8px var(--ng-glow);
  animation: neon-pulse 2s ease-in-out infinite;
}
@keyframes neon-pulse {
  0%,100%{ box-shadow: 0 0 4px var(--ng-glow); transform: scale(1); }
  50%{ box-shadow: 0 0 12px var(--ng-glow), 0 0 20px var(--ng-glow2); transform: scale(1.3); }
}

.hero-title { margin-bottom: 1.8rem; }
.ht-line { display: block; }
.ht-neon { color: var(--ng-dim); text-shadow: 0 0 40px rgba(0,200,83,0.3); }
.ht-sub  { color: var(--t3); font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 400; }

.hero-desc { max-width: 480px; margin-bottom: 2.5rem; font-size: 1.05rem; }
.hero-desc strong { color: var(--ng-dim); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  font-size: 0.76rem; font-weight: 500; padding: 0.3rem 0.85rem;
  border-radius: 999px; border: 1px solid;
}
.chip-green {
  color: var(--ng-dim); border-color: rgba(0,200,83,0.3);
  background: var(--ng-alpha);
}
.chip-blue {
  color: var(--bl-2); border-color: rgba(21,101,192,0.2);
  background: var(--bl-alpha);
}

/* Hero Right */
.hero-right { position: relative; z-index: 2; }

/* Scene */
.hero-scene {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 70px 75px 70px 55px;
  min-height: 460px;
}

/* Neon rings — purely decorative around center card */
.hs-ring {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.hs-ring.r1 {
  width: 360px; height: 360px;
  border: 1px solid rgba(0,230,118,0.12);
  animation: ring-spin 20s linear infinite;
}
.hs-ring.r2 {
  width: 290px; height: 290px;
  border: 1px dashed rgba(0,230,118,0.08);
  animation: ring-spin 14s linear infinite reverse;
}
.hs-ring.r3 {
  width: 220px; height: 220px;
  border: 1px solid rgba(21,101,192,0.08);
  animation: ring-spin 9s linear infinite;
}
@keyframes ring-spin { from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }

/* Center card */
.hs-card {
  position: relative; z-index: 3;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  width: 280px;
  box-shadow: var(--sh-md), 0 0 0 1px rgba(0,230,118,0.08);
  backdrop-filter: blur(12px);
}
.hs-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.hsc-live { display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; color: var(--ng-dim); font-weight: 500; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ng); box-shadow: 0 0 8px var(--ng-glow); animation: neon-pulse 1.5s ease-in-out infinite; }
.hsc-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t4); }

.hs-car-wrap { position: relative; text-align: center; margin: 0.8rem 0; overflow: hidden; border-radius: var(--r-sm); }
.hs-car { font-size: 3rem; display: block; padding: 0.5rem; animation: car-float 3s ease-in-out infinite; }
@keyframes car-float { 0%,100%{ transform: translateX(-3px); } 50%{ transform: translateX(3px) scale(1.03); } }
.hs-car-shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,230,118,0.12), transparent);
  animation: car-shine 4s ease-in-out infinite 2s;
}
@keyframes car-shine { 0%{ left: -100%; } 40%{ left: 150%; } 100%{ left: 150%; } }
.hs-scan-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ng), transparent);
  box-shadow: 0 0 8px var(--ng-glow);
  animation: scan 3s ease-in-out infinite;
}
@keyframes scan { 0%{ top: 0; opacity: 0; } 10%{ opacity: 1; } 90%{ opacity: 1; } 100%{ top: 100%; opacity: 0; } }

.hs-steps { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1rem; }
.hss { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--t4); }
.hss.done { color: var(--ng-dim); }
.hss.active { color: var(--bl-2); font-weight: 500; }
.hss-icon { color: var(--ng); font-size: 0.75rem; }
.hss-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bl-2); display: inline-block; animation: neon-pulse 1s ease-in-out infinite; }
.hss-o { color: var(--t4); font-size: 0.7rem; }

.hs-water-bar { border-top: 1px solid rgba(0,230,118,0.1); padding-top: 0.9rem; }
.hwb-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.35rem; font-size: 0.75rem; color: var(--t3); }
.hwb-val { font-family: var(--fd); font-size: 0.9rem; font-weight: 700; color: var(--ng-dim); }
.hwb-track { height: 5px; background: var(--surface); border-radius: 4px; overflow: hidden; }
.hwb-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--ng), var(--ng-dim));
  border-radius: 4px;
  box-shadow: 0 0 8px var(--ng-glow);
  transition: width 2s var(--ease);
}

/* Float cards — CORNER POSITIONED, no overlap */
.hs-float {
  position: absolute;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 1rem; z-index: 4; white-space: nowrap;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(12px);
}
.hs-float span:first-child { font-size: 1.2rem; flex-shrink: 0; }
.hs-float b { display: block; font-size: 0.85rem; color: var(--t1); font-family: var(--fd); }
.hs-float p { font-size: 0.7rem; color: var(--t3); margin: 0; }

/* Positions — no overlap with main card */
.sf-tl { top: 0; left: 0; }
.sf-br { bottom: 0; right: 0; }
.sf-bl { bottom: 0; left: 0; }

/* Hero scroll hint */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t4);
  z-index: 2; grid-column: 1 / -1;
}
.hs-line-anim {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--ng), transparent);
  box-shadow: 0 0 6px var(--ng-glow2);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%{ transform:scaleY(0); transform-origin:top; }
  50%{ transform:scaleY(1); transform-origin:top; }
  100%{ transform:scaleY(1); transform-origin:bottom; opacity:0; }
}

/* ══════════════════════════════════════════════════
   SECTIONS — z-index safe
══════════════════════════════════════════════════ */
.trust-bar, .section, .footer {
  position: relative; z-index: 2; isolation: isolate;
}

/* Reveal */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].on { opacity: 1; transform: none; }

/* ── Trust Bar ──────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid rgba(0,230,118,0.15);
  border-bottom: 1px solid rgba(0,230,118,0.15);
  padding: 1rem 0; overflow: hidden;
}
.tb-wrap { display: flex; overflow: hidden; }
.tb-track {
  display: flex; align-items: center; gap: 2.5rem;
  white-space: nowrap; animation: tb-run 18s linear infinite;
}
.tb-track span {
  font-family: var(--fd); font-size: 0.9rem;
  color: var(--t4); letter-spacing: 0.04em; transition: color 0.2s;
}
.tb-track span:hover { color: var(--ng-dim); }
.tbsep { color: var(--ng) !important; font-size: 0.45rem !important; }
@keyframes tb-run { from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ── Section Base ───────────────────────────────── */
.section { padding: 8rem 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.s-head { text-align: center; margin-bottom: 5rem; }
.s-head h2 { margin: 1rem 0; }
.s-head p  { color: var(--t3); max-width: 500px; margin: 0 auto; }
.s-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ng-dim); background: var(--ng-alpha);
  border: 1px solid rgba(0,200,83,0.25);
  padding: 0.28rem 0.9rem; border-radius: 999px;
}
.s-tag-light { background: rgba(255,255,255,0.18) !important; color: rgba(255,255,255,0.9) !important; border-color: rgba(255,255,255,0.3) !important; }

/* ── Nano Section ───────────────────────────────── */
.s-nano { background: var(--off); }
.nano-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 5rem; }

/* Atom */
.nano-atom {
  position: relative; width: 300px; height: 300px;
  margin: 0 auto; display: flex; align-items: center; justify-content: center;
}
.na-core {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--ng-alpha); border: 2px solid rgba(0,230,118,0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 5; position: relative;
}
.na-core-inner { display: flex; flex-direction: column; align-items: center; }
.na-symbol { font-family: var(--fd); font-size: 2rem; font-weight: 800; color: var(--ng-dim); line-height: 1; }
.na-formula { font-size: 0.6rem; color: var(--ng-dim); opacity: 0.7; }
.na-core-glow {
  position: absolute; inset: -12px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,0.2), transparent 70%);
  animation: core-pulse 2.5s ease-in-out infinite;
}
@keyframes core-pulse { 0%,100%{ transform:scale(1); opacity:0.6; } 50%{ transform:scale(1.2); opacity:1; } }

.na-orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(0,230,118,0.15);
  display: flex; align-items: flex-start; justify-content: center;
}
.o1 { width: 150px; height: 150px; animation: ring-spin 5s linear infinite; }
.o2 { width: 210px; height: 210px; animation: ring-spin 9s linear infinite reverse; }
.o3 { width: 280px; height: 280px; border-color: rgba(21,101,192,0.12); animation: ring-spin 13s linear infinite; }
.na-electron {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ng-alpha); border: 1px solid rgba(0,230,118,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: var(--ng-dim);
  margin-top: -13px;
  box-shadow: 0 0 8px var(--ng-glow2);
}
.o1 .na-electron { animation: ring-spin 5s linear infinite reverse; }
.o2 .na-electron { animation: ring-spin 9s linear infinite; }
.o3 .na-electron { animation: ring-spin 13s linear infinite reverse; }
.na-size {
  position: absolute; bottom: 8px;
  font-size: 0.68rem; color: var(--t4);
  background: var(--white); border: 1px solid rgba(0,230,118,0.2);
  padding: 0.2rem 0.7rem; border-radius: var(--r-xs);
}

/* Nano facts */
.nano-facts { display: flex; flex-direction: column; gap: 1.2rem; }
.nf-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.1rem; background: var(--white);
  border: 1px solid rgba(0,230,118,0.1); border-radius: var(--r-md);
  transition: all 0.3s var(--ease-spring);
}
.nf-item:hover { border-color: rgba(0,230,118,0.3); transform: translateX(5px); box-shadow: var(--sh-sm); }
.nfi-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}
.nf-item:hover .nfi-icon { transform: scale(1.12) rotate(5deg); }
.nfi-green { background: var(--ng-alpha); border: 1px solid rgba(0,230,118,0.25); }
.nfi-blue  { background: var(--bl-alpha); border: 1px solid rgba(21,101,192,0.2); }
.nf-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--t1); margin-bottom: 0.2rem; font-family: var(--fd); }
.nf-item p  { font-size: 0.85rem; margin: 0; }

/* Nano stats */
.nano-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--ng-alpha), rgba(21,101,192,0.06));
  border: 1px solid rgba(0,230,118,0.15); border-radius: var(--r-xl);
  padding: 3rem 2rem;
  box-shadow: 0 0 40px rgba(0,230,118,0.06);
}
.nstat { display: flex; flex-direction: column; align-items: center; }
.nstat-num {
  font-family: var(--fd); font-size: 3rem; font-weight: 800;
  color: var(--ng-dim); line-height: 1;
  text-shadow: 0 0 20px rgba(0,200,83,0.3);
}
.nstat-unit { font-size: 1.4rem; color: var(--ng-dim); opacity: 0.7; }
.nstat > p { font-size: 0.75rem; color: var(--t3); margin-top: 0.2rem; text-align: center; max-width: 90px; }
.nstat-div { width: 1px; height: 52px; background: rgba(0,230,118,0.15); }

/* ── Pakete ─────────────────────────────────────── */
.s-pakete { background: var(--white); }
.pakete-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.paket-card {
  background: var(--off); border: 1px solid rgba(0,230,118,0.12);
  border-radius: var(--r-lg); padding: 2rem;
  transition: all 0.3s var(--ease-spring);
  position: relative;
}
.paket-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(0,230,118,0.3); }
.pc-tier {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.22rem 0.7rem; border-radius: 999px; margin-bottom: 1rem;
  background: var(--surface); border: 1px solid rgba(0,230,118,0.15); color: var(--t3);
}
.pc-tier-blue { background: var(--bl-alpha) !important; border-color: rgba(21,101,192,0.2) !important; color: var(--bl-2) !important; }
.pc-tier-featured {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 999px; margin-bottom: 1rem;
  background: var(--ng); color: var(--t1);
  box-shadow: 0 0 12px var(--ng-glow);
}
.paket-featured {
  border-color: rgba(0,230,118,0.4);
  background: rgba(0,230,118,0.04);
  box-shadow: var(--sh-md), 0 0 40px rgba(0,230,118,0.08);
  transform: translateY(-8px);
}
.paket-featured:hover { transform: translateY(-14px); }
.pc-icon { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
.paket-card h3 { margin-bottom: 0.5rem; }
.pc-desc { font-size: 0.88rem; margin-bottom: 1.2rem; }
.pc-list { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.pc-list li {
  font-size: 0.82rem; color: var(--t3); padding-left: 1.1rem; position: relative;
}
.pc-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--ng-dim); font-size: 0.75rem;
}
.pc-price { font-family: var(--fd); font-size: 1.1rem; color: var(--t3); margin-bottom: 1rem; }
.pc-price strong { color: var(--t1); font-size: 1.5rem; }
.pc-price-featured { font-family: var(--fd); font-size: 1.1rem; color: var(--ng-dim); margin-bottom: 1rem; }
.pc-price-featured strong { color: var(--ng-dim); font-size: 1.5rem; text-shadow: 0 0 16px rgba(0,200,83,0.3); }
.pc-btn {
  display: inline-flex; align-items: center; font-size: 0.84rem; font-weight: 500;
  color: var(--ng-dim); padding: 0.5rem 1.2rem;
  border: 1.5px solid rgba(0,200,83,0.3); border-radius: var(--r-xs);
  transition: all 0.25s;
}
.pc-btn:hover { background: var(--ng-dim); color: white; border-color: var(--ng-dim); }
.pc-btn-blue { color: var(--bl-2) !important; border-color: rgba(21,101,192,0.3) !important; }
.pc-btn-blue:hover { background: var(--bl-2) !important; color: white !important; border-color: var(--bl-2) !important; }
.pc-btn-neon {
  display: inline-flex; align-items: center; font-size: 0.84rem; font-weight: 700;
  color: var(--t1); background: var(--ng);
  padding: 0.55rem 1.3rem; border-radius: var(--r-xs);
  border: none; transition: all 0.25s;
  box-shadow: 0 0 12px var(--ng-glow);
  font-family: var(--fd);
}
.pc-btn-neon:hover { background: var(--ng-dim); box-shadow: 0 0 20px var(--ng-glow); }

/* ── Eco Section ────────────────────────────────── */
.s-eco { background: var(--t1); overflow: hidden; }
.eco-bg-wave {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,230,118,0.06), transparent 70%),
              radial-gradient(ellipse 30% 40% at 10% 80%, rgba(21,101,192,0.04), transparent 60%);
}
.eco-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.eco-left h2 { color: white; margin: 1rem 0 1.5rem; }
.eco-left > p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; }

.eco-compare { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.ec-row { display: flex; align-items: center; gap: 1rem; }
.ec-label { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.55); min-width: 110px; }
.ec-bar-wrap { flex: 1; }
.ec-bar {
  height: 38px; border-radius: var(--r-sm);
  display: flex; align-items: center; padding: 0 1rem;
  font-size: 0.78rem; font-weight: 700;
  width: 0%; transition: width 1.5s var(--ease);
}
.ec-bar-red   { background: rgba(231,76,60,0.15); border: 1px solid rgba(231,76,60,0.25); color: #ff6b6b; }
.ec-bar-neon  { background: rgba(0,230,118,0.12); border: 1px solid rgba(0,230,118,0.3); color: var(--ng); box-shadow: 0 0 12px rgba(0,230,118,0.15); }

.eco-certs { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.eco-certs span {
  font-size: 0.76rem; font-weight: 500; padding: 0.32rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(0,230,118,0.25); color: rgba(255,255,255,0.8);
  background: rgba(0,230,118,0.08);
  transition: background 0.2s, transform 0.2s var(--ease-spring);
}
.eco-certs span:hover { background: rgba(0,230,118,0.16); transform: translateY(-2px); }

/* Eco visual */
.eco-right { display: flex; align-items: center; justify-content: center; }
.eco-orb-wrap {
  position: relative;
  width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.eco-main-card {
  position: relative; z-index: 3;
  width: 190px; height: 190px; border-radius: 50%;
  background: rgba(0,230,118,0.1); border: 1.5px solid rgba(0,230,118,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.2rem;
  box-shadow: 0 0 60px rgba(0,230,118,0.15), inset 0 0 40px rgba(0,230,118,0.05);
  animation: eco-pulse 3s ease-in-out infinite;
}
@keyframes eco-pulse { 0%,100%{ box-shadow: 0 0 40px rgba(0,230,118,0.12); } 50%{ box-shadow: 0 0 70px rgba(0,230,118,0.2); } }
.emc-drop { font-size: 1.8rem; display: block; }
.emc-num {
  font-family: var(--fd); font-size: 3rem; font-weight: 800;
  color: var(--ng); line-height: 1;
  text-shadow: 0 0 20px var(--ng-glow);
}
.emc-pct { font-size: 1.4rem; color: rgba(0,230,118,0.7); }
.eco-main-card > p { font-size: 0.68rem; color: rgba(255,255,255,0.5); max-width: 100px; line-height: 1.4; margin: 0; }

.eco-sat {
  position: absolute;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--r-md); padding: 0.7rem 1rem; min-width: 110px;
  display: flex; flex-direction: column; gap: 0.15rem;
  backdrop-filter: blur(12px);
}
.eco-sat span:first-child { font-size: 1.1rem; }
.eco-sat strong { font-size: 0.84rem; color: white; font-family: var(--fd); }
.eco-sat p { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin: 0; }
/* Satellite positions — no overlap */
.s1 { top: 0; right: -10px; }
.s2 { bottom: 0; right: -10px; }
.s3 { bottom: 30px; left: -10px; }

/* ── Prozess ────────────────────────────────────── */
.s-prozess { background: var(--off); }
.prozess-timeline { position: relative; padding: 1rem 0 1rem 2.5rem; }
.ptl-line {
  position: absolute; top: 2rem; left: 2rem;
  width: 2px; height: calc(100% - 3rem);
  background: rgba(0,230,118,0.1); z-index: 0;
}
.ptl-progress {
  width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--ng), var(--ng-dim));
  transition: height 0.3s linear;
  box-shadow: 0 0 10px var(--ng-glow);
}
.ptl-step {
  display: flex; gap: 2rem; align-items: flex-start;
  margin-bottom: 2.5rem; position: relative; z-index: 1;
}
.ptl-step:last-child { margin-bottom: 0; }
.ptl-node {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%;
  background: var(--white); border: 2px solid rgba(0,230,118,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 0.9rem; font-weight: 700; color: var(--ng-dim);
  position: relative; z-index: 2;
  transition: background 0.3s, box-shadow 0.3s;
}
.ptl-step.active .ptl-node {
  background: var(--ng-alpha);
  box-shadow: 0 0 20px var(--ng-glow);
  border-color: rgba(0,230,118,0.5);
}
.ptl-ring {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(0,230,118,0.25); opacity: 0;
  animation: ring-pulse 2.5s ease-out infinite;
}
.ptl-step.active .ptl-ring { opacity: 1; }
@keyframes ring-pulse { 0%{ transform:scale(0.9); opacity:0.5; } 100%{ transform:scale(1.4); opacity:0; } }
.ptl-content {
  background: var(--white); border: 1px solid rgba(0,230,118,0.1);
  border-radius: var(--r-lg); padding: 1.6rem 1.8rem; flex: 1;
  transition: background 0.3s, border-color 0.3s;
}
.ptl-step.active .ptl-content { border-color: rgba(0,230,118,0.25); background: rgba(0,230,118,0.02); }
.ptl-content h3 { margin-bottom: 0.5rem; }
.ptl-content p  { font-size: 0.9rem; margin-bottom: 0.8rem; }
.ptl-time { font-size: 0.76rem; color: var(--ng-dim); font-weight: 500; }

/* ── Preise ─────────────────────────────────────── */
.s-preise { background: var(--white); }
.preise-table {
  border: 1px solid rgba(0,230,118,0.15); border-radius: var(--r-lg); overflow: hidden;
}
.pt-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 1rem 1.5rem; background: var(--off);
  font-family: var(--fd); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--t3);
  border-bottom: 1px solid rgba(0,230,118,0.1);
}
.pt-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0.9rem 1.5rem; border-bottom: 1px solid rgba(0,230,118,0.07);
  font-size: 0.88rem; color: var(--t2); transition: background 0.2s;
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: var(--ng-alpha); }
.pt-highlight {
  background: rgba(0,230,118,0.06) !important;
  border-color: rgba(0,230,118,0.2) !important;
}
.pt-highlight span:first-child { color: var(--ng-dim); font-weight: 600; font-family: var(--fd); }
.preise-note { font-size: 0.78rem; color: var(--t4); text-align: center; margin-top: 1.2rem; }

/* ── Kontakt ────────────────────────────────────── */
.s-kontakt { background: var(--off); overflow: hidden; }
.kontakt-bg-deco { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 50% at 80% 50%, rgba(0,230,118,0.05), transparent 70%); }
.kontakt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.kl h2 { margin: 1rem 0 1.4rem; }
.kl > p { font-size: 1.05rem; margin-bottom: 2rem; }
.kl-infos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 1.8rem; }
.kli {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.9rem; background: var(--white);
  border: 1px solid rgba(0,230,118,0.1); border-radius: var(--r-md);
  transition: all 0.3s;
}
.kli:hover { border-color: rgba(0,230,118,0.3); background: var(--ng-alpha); }
.kli span:first-child { font-size: 1.1rem; flex-shrink: 0; }
.kli b { display: block; font-size: 0.8rem; color: var(--t1); margin-bottom: 0.15rem; font-family: var(--fd); }
.kli p { font-size: 0.8rem; color: var(--t3); margin: 0; }
.kl-promise {
  display: flex; gap: 1.1rem; padding: 1.3rem;
  background: var(--ng-alpha); border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--r-md);
}
.klp-dot { font-size: 1.4rem; flex-shrink: 0; color: var(--ng-dim); }
.kl-promise b { display: block; margin-bottom: 0.5rem; color: var(--t1); font-size: 0.92rem; font-family: var(--fd); }
.kl-promise ul { display: flex; flex-direction: column; gap: 0.3rem; }
.kl-promise li { font-size: 0.82rem; color: var(--ng-dim); }

/* Form */
.kform {
  background: var(--white); border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--r-xl); padding: 2.2rem; position: relative;
  box-shadow: var(--sh-sm);
}
.kform-head { margin-bottom: 1.8rem; }
.kform-head h3 { font-family: var(--fd); font-size: 1.4rem; color: var(--t1); }
.kform-head p  { font-size: 0.82rem; color: var(--t3); }
.kf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.kfg { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
.kfg label { font-size: 0.78rem; font-weight: 500; color: var(--t2); }
.kfg input, .kfg select, .kfg textarea {
  padding: 0.7rem 0.9rem; background: var(--off);
  border: 1.5px solid rgba(0,230,118,0.12); border-radius: var(--r-sm);
  color: var(--t1); font-size: 0.9rem;
  transition: border-color 0.25s, box-shadow 0.25s; appearance: none;
}
.kfg input:focus, .kfg select:focus, .kfg textarea:focus {
  outline: none; border-color: var(--ng);
  box-shadow: 0 0 0 3px rgba(0,230,118,0.12), 0 0 12px rgba(0,230,118,0.08);
}
.kfg input::placeholder, .kfg textarea::placeholder { color: var(--t4); }
.kfg textarea { resize: vertical; min-height: 80px; }
.kfg select { color: var(--t2); }
.kf-check { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 1.3rem; }
.kf-check input { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; accent-color: var(--ng-dim); }
.kf-check label { font-size: 0.78rem; color: var(--t3); line-height: 1.5; }
.kf-check a { color: var(--ng-dim); text-decoration: underline; }
.kf-success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  gap: 0.5rem; padding: 2rem; position: absolute; inset: 0;
  background: var(--white); border-radius: var(--r-xl); justify-content: center;
}
.kf-success.show { display: flex; }
.kfs-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ng-alpha); border: 1.5px solid rgba(0,230,118,0.3);
  font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  color: var(--ng-dim); margin-bottom: 0.5rem;
  box-shadow: 0 0 20px var(--ng-glow2);
}
.kf-success strong { font-family: var(--fd); font-size: 1.3rem; color: var(--t1); }
.kf-success p { font-size: 0.88rem; color: var(--t3); }

/* ── Footer ─────────────────────────────────────── */
.footer { background: var(--t1); }
.ft-inner { max-width: 1240px; margin: 0 auto; padding: 4.5rem 2rem 3rem; display: grid; grid-template-columns: 260px 1fr; gap: 4rem; }
.ft-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.38); line-height: 1.7; margin-top: 1rem; }
.ft-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.ftc { display: flex; flex-direction: column; gap: 0.7rem; }
.ftc b { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.3rem; font-family: var(--fd); }
.ftc a, .ftc span { font-size: 0.86rem; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.ftc a:hover { color: var(--ng); }
.ft-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 1.3rem 2rem; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.77rem; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 0.5rem;
}
.ft-badge { color: var(--ng); }

/* ── Legal ──────────────────────────────────────── */
.legal-page { max-width: 860px; margin: 8rem auto 6rem; padding: 0 2rem; position: relative; z-index: 2; }
.legal-page h2 { font-size: 1.2rem; margin: 2rem 0 0.6rem; color: var(--ng-dim); }
.legal-page p, .legal-page li { font-size: 0.93rem; color: var(--t2); margin-bottom: 0.6rem; line-height: 1.75; }
.legal-page ul { padding-left: 1.5rem; list-style: disc; }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ng-dim); font-weight: 500; margin-bottom: 2.5rem; font-size: 0.9rem; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — Mobile-safe
══════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .ft-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Hero safe collapse */
  .hero {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto;
    padding: 8rem 1.5rem 4rem !important;
    gap: 0 !important; min-height: auto !important;
  }
  .hero-left {
    position: relative; z-index: 10 !important;
    grid-column: 1; grid-row: 1;
  }
  .hero-right { display: none !important; }
  .hero-scroll {
    position: relative; bottom: auto; left: auto; transform: none;
    grid-column: 1; grid-row: 2; margin-top: 2rem;
  }
  .hero-canvas, .hero-blob, .hero-grid { z-index: 0 !important; }

  /* Solid backgrounds */
  .trust-bar, .section, .footer { position: relative !important; z-index: 10 !important; isolation: isolate; }
  .s-nano    { background: #f7faf7 !important; }
  .s-pakete  { background: #ffffff !important; }
  .s-eco     { background: #0a120a !important; }
  .s-prozess { background: #f7faf7 !important; }
  .s-preise  { background: #ffffff !important; }
  .s-kontakt { background: #f7faf7 !important; }
  .trust-bar { background: #ffffff !important; }
  .footer    { background: #0a120a !important; }

  /* Layouts */
  .nano-layout    { grid-template-columns: 1fr; gap: 3rem; }
  .eco-layout     { grid-template-columns: 1fr; gap: 3rem; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 3rem; }
  .kl-infos       { grid-template-columns: 1fr; }
  .ft-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .ft-cols        { grid-template-columns: repeat(2, 1fr); }
  .ptl-line       { display: none; }
  .ptl-step       { flex-direction: column; gap: 1rem; }
  .nav-links      { display: none; }
  .burger         { display: flex; }
  .kf-row         { grid-template-columns: 1fr; }
  .nano-stats { gap: 1.5rem; }
  .nstat-div  { display: none; }
  .nano-stats { display: grid; grid-template-columns: repeat(2, 1fr); }
  .eco-sat { position: relative; top: auto; bottom: auto; left: auto; right: auto; }
  .eco-orb-wrap { height: auto; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
  .eco-main-card { position: relative; }
}

@media (max-width: 600px) {
  .hero { padding: 7rem 1.2rem 3rem !important; }
  h1 { font-size: clamp(2.4rem, 8vw, 3.2rem) !important; }
  .pakete-grid { grid-template-columns: 1fr; }
  .paket-featured { transform: none; }
  .container { padding: 0 1.2rem; }
  .section { padding: 4rem 0; }
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .pt-header span:nth-child(3), .pt-header span:nth-child(4),
  .pt-row span:nth-child(3), .pt-row span:nth-child(4) { display: none; }
  .pt-header, .pt-row { grid-template-columns: 1.5fr 1fr; }
  .kform { padding: 1.5rem; }
  .hero-chips { gap: 0.5rem; }
  .nano-atom { width: 240px; height: 240px; }
  .o2 { width: 170px; height: 170px; }
  .o3 { width: 230px; height: 230px; }
}

@media (hover: none) and (pointer: coarse) {
  .cur, .cur-ring { display: none !important; }
  body { cursor: auto !important; }
  button, a { cursor: pointer !important; }
}

/* ══════════════════════════════════════════════════
   LEGAL PAGES — Impressum & Datenschutz
══════════════════════════════════════════════════ */

.legal-main {
  padding-top: 7rem;
  padding-bottom: 6rem;
  position: relative;
  z-index: 2;
  background: var(--white);
  min-height: 100vh;
}

.legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Back link */
.legal-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--ng-dim); font-weight: 500;
  font-size: 0.88rem; margin-bottom: 2.5rem;
  transition: gap 0.2s var(--ease);
}
.legal-back svg { width: 18px; height: 18px; flex-shrink: 0; }
.legal-back:hover { gap: 0.8rem; }

/* Header */
.legal-header { margin-bottom: 3rem; }
.legal-header h1 {
  font-family: var(--fd); font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--t1); margin: 0.8rem 0 0.6rem; line-height: 1.1;
}
.legal-intro { font-size: 1.05rem; color: var(--t3); }

/* Section */
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-family: var(--fd); font-size: 1.1rem; font-weight: 700;
  color: var(--ng-dim); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.legal-section h2::before {
  content: '';
  display: inline-block; width: 3px; height: 1.1em;
  background: var(--ng); border-radius: 2px;
  box-shadow: 0 0 8px var(--ng-glow);
  flex-shrink: 0;
}
.legal-sub {
  font-family: var(--fd); font-size: 0.95rem; font-weight: 600;
  color: var(--t2); margin: 1.2rem 0 0.6rem;
}

/* Card */
.legal-card {
  background: var(--off);
  border: 1px solid rgba(0,230,118,0.1);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.8rem;
  transition: border-color 0.3s;
}
.legal-card:hover { border-color: rgba(0,230,118,0.22); }
.legal-card p { font-size: 0.93rem; color: var(--t2); line-height: 1.78; margin-bottom: 0.8rem; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card a { color: var(--ng-dim); text-decoration: underline; transition: color 0.2s; }
.legal-card a:hover { color: var(--ng); }
.legal-card strong { color: var(--t1); }

/* Grid card */
.legal-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.2rem;
}
.lcg-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.9rem;
  background: var(--white);
  border: 1px solid rgba(0,230,118,0.1);
  border-radius: var(--r-md);
  transition: all 0.25s;
}
.lcg-item:hover { border-color: rgba(0,230,118,0.28); background: var(--ng-alpha); }
.lcg-icon { font-size: 1.1rem; flex-shrink: 0; }
.lcg-item b { display: block; font-size: 0.8rem; font-weight: 600; color: var(--t1); margin-bottom: 0.2rem; font-family: var(--fd); }
.lcg-item p, .lcg-item a { font-size: 0.82rem; color: var(--t3); margin: 0; line-height: 1.5; }
.lcg-item a { color: var(--ng-dim); text-decoration: none; }
.lcg-item a:hover { text-decoration: underline; }

/* Rights list */
.legal-rights { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1rem; }
.lr-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(0,230,118,0.1);
  border-radius: var(--r-md);
  transition: all 0.25s var(--ease-spring);
}
.lr-item:hover { border-color: rgba(0,230,118,0.28); transform: translateX(4px); box-shadow: var(--sh-sm); }
.lr-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.lr-item b { display: block; font-size: 0.88rem; font-weight: 600; color: var(--t1); margin-bottom: 0.2rem; font-family: var(--fd); }
.lr-item p { font-size: 0.83rem; color: var(--t3); margin: 0; line-height: 1.5; }

/* Nano badge row */
.legal-nano-badge {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin: 3rem 0 1.5rem;
  padding: 1.4rem 1.8rem;
  background: var(--ng-alpha);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--r-lg);
}
.legal-nano-badge span {
  font-size: 0.8rem; font-weight: 600;
  color: var(--ng-dim); font-family: var(--fd);
  padding: 0.3rem 0.8rem;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 999px;
}

/* Stand */
.legal-stand {
  font-size: 0.78rem; color: var(--t4);
  text-align: right; margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  .legal-main { padding-top: 6rem; }
  .legal-card-grid { grid-template-columns: 1fr; }
  .legal-container { padding: 0 1.2rem; }
  .legal-header h1 { font-size: 2.2rem; }
}

/* ══════════════════════════════════════════════════
   LOGO IMAGE & NEW SECTIONS
══════════════════════════════════════════════════ */

/* Nav Logo Image */
.nav-logo-img-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  /* Weißer Hintergrund des JPEG ausblenden */
  mix-blend-mode: multiply;
  transition: opacity 0.25s var(--ease);
}
.nav-logo-img:hover { opacity: 0.85; }

/* Loader Logo Image */
.loader-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0;
  animation: rise 0.6s var(--ease) 1s forwards;
}

/* Footer Logo Image */
.ft-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: brightness(0) invert(1) opacity(0.85);
  margin-bottom: 1rem;
  display: block;
}

/* ── Leistungsübersicht Box ─────────────────────── */
.leistungen-uebersicht {
  background: var(--off);
  border: 1px solid rgba(0,230,118,0.15);
  border-radius: var(--r-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 2.5rem;
}
.leistungen-uebersicht-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,230,118,0.2);
}
.lu-title {
  font-family: var(--fd); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ng-dim); margin-bottom: 1rem;
}
.lu-title-light { color: rgba(255,255,255,0.6) !important; }
.lu-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.lu-item {
  font-size: 0.82rem; font-weight: 500;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  background: var(--ng-alpha); border: 1px solid rgba(0,230,118,0.2);
  color: var(--ng-dim);
}
.lu-item-light {
  background: rgba(0,230,118,0.1) !important;
  border-color: rgba(0,230,118,0.25) !important;
  color: rgba(255,255,255,0.85) !important;
}

/* ── Preistabelle (Mini in Karte) ───────────────── */
.preistabelle {
  background: var(--white);
  border: 1px solid rgba(0,230,118,0.1);
  border-radius: var(--r-md);
  overflow: hidden; margin-bottom: 1.3rem;
}
.preistabelle-dark {
  background: rgba(255,255,255,0.06) !important;
  border-color: rgba(0,230,118,0.15) !important;
}
.pt-mini-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 1rem; border-bottom: 1px solid rgba(0,230,118,0.07);
  font-size: 0.84rem;
}
.pt-mini-row:last-child { border-bottom: none; }
.pt-mini-row span { color: var(--t3); }
.pt-mini-row strong { color: var(--t1); font-family: var(--fd); font-weight: 700; }
.pt-mini-dark span  { color: rgba(255,255,255,0.5) !important; }
.pt-mini-dark strong { color: white !important; }

/* ── Gold Paket ─────────────────────────────────── */
.paket-gold {
  background: linear-gradient(135deg, rgba(255,215,0,0.04), rgba(255,180,0,0.02)) !important;
  border-color: rgba(255,200,0,0.25) !important;
}
.paket-gold:hover { border-color: rgba(255,200,0,0.45) !important; box-shadow: 0 8px 40px rgba(255,200,0,0.1) !important; }
.pc-tier-gold {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: 999px; margin-bottom: 1rem;
  background: rgba(255,200,0,0.15); color: #b8860b;
  border: 1px solid rgba(255,200,0,0.3);
}
.pc-btn-gold {
  display: inline-flex; align-items: center; font-size: 0.84rem; font-weight: 700;
  color: #b8860b; padding: 0.5rem 1.3rem; border-radius: var(--r-xs);
  border: 1.5px solid rgba(255,200,0,0.4);
  font-family: var(--fd); transition: all 0.25s;
}
.pc-btn-gold:hover { background: rgba(255,200,0,0.15); border-color: rgba(255,200,0,0.6); }

/* ── Außenreinigung Section ─────────────────────── */
.s-aussen { background: var(--t1); overflow: hidden; }
.aussen-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,230,118,0.06), transparent 70%),
              radial-gradient(ellipse 30% 40% at 10% 80%, rgba(21,101,192,0.04), transparent 60%);
}
.pakete-grid-2 { grid-template-columns: repeat(2, 1fr) !important; max-width: 900px; margin: 0 auto; }

/* Dark Paket Card */
.paket-card-dark {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(0,230,118,0.15) !important;
}
.paket-card-dark:hover { background: rgba(255,255,255,0.07) !important; border-color: rgba(0,230,118,0.3) !important; }
.paket-aussen-premium {
  border-color: rgba(0,230,118,0.35) !important;
  box-shadow: 0 8px 40px rgba(0,230,118,0.08) !important;
}
.pc-tier-dark {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.22rem 0.7rem; border-radius: 999px; margin-bottom: 1rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
}
.pc-list-dark li { color: rgba(255,255,255,0.65) !important; }
.pc-list-dark li::before { color: var(--ng) !important; }
.pc-btn-outline-light {
  display: inline-flex; align-items: center; font-size: 0.84rem; font-weight: 600;
  color: white; padding: 0.5rem 1.2rem; border-radius: var(--r-xs);
  border: 1.5px solid rgba(255,255,255,0.3);
  font-family: var(--fd); transition: all 0.25s;
}
.pc-btn-outline-light:hover { border-color: var(--ng); color: var(--ng); background: rgba(0,230,118,0.08); }

/* ── Preise Blocks ──────────────────────────────── */
.preise-block { margin-bottom: 2.5rem; }
.pb-header {
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.pb-title {
  font-family: var(--fd); font-size: 1.1rem; font-weight: 700;
  color: var(--t1);
}

/* ── CoresetupStudio Credit ─────────────────────── */
.ft-credit {
  max-width: 1240px; margin: 0 auto;
  padding: 0.8rem 2rem 1.2rem;
  font-size: 0.76rem; color: rgba(255,255,255,0.2);
  text-align: center;
}
.ft-credit a {
  color: var(--ng);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, text-shadow 0.2s;
}
.ft-credit a:hover {
  color: var(--ng);
  text-shadow: 0 0 12px var(--ng-glow);
}

/* ── Mobile Responsive additions ───────────────── */
@media (max-width: 900px) {
  .pakete-grid-2 { grid-template-columns: 1fr !important; }
  .lu-grid { gap: 0.5rem; }
}
@media (max-width: 600px) {
  .nav-logo-img { height: 34px; }
  .ft-logo-img  { height: 40px; }
  .preistabelle { font-size: 0.8rem; }
}

/* ══════════════════════════════════════════════════
   ERGÄNZUNGEN — ans Ende von fv-styles.css anhängen
   Alle neuen Klassen für Logo, WhatsApp, Fahrzeugklassen,
   Leistungsübersicht, Preistabelle, Zahlung, Footer-Extras
══════════════════════════════════════════════════ */

/* ── Logo Image ─────────────────────────────────── */
.nav-logo-img-wrap { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.nav-logo-img { height:42px; width:auto; object-fit:contain; mix-blend-mode:multiply; transition:opacity .25s; }
.nav-logo-img:hover { opacity:.82; }
.loader-logo-img { height:56px; width:auto; object-fit:contain; mix-blend-mode:multiply; opacity:0; animation:rise .6s cubic-bezier(.4,0,.2,1) 1s forwards; }
.ft-logo-img { height:48px; width:auto; object-fit:contain; filter:brightness(0) invert(1) opacity(.82); margin-bottom:1rem; display:block; }

/* ── WhatsApp Float ─────────────────────────────── */
.wa-float { position:fixed; bottom:2rem; right:2rem; z-index:8000; width:58px; height:58px; border-radius:50%; background:#25d366; display:flex; align-items:center; justify-content:center; text-decoration:none; box-shadow:0 4px 20px rgba(37,211,102,.4); animation:wa-pulse 2.5s ease-in-out infinite; transition:transform .25s cubic-bezier(.34,1.56,.64,1); }
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width:30px; height:30px; fill:white; }
.wa-tooltip { position:absolute; right:68px; background:rgba(10,18,10,.88); color:white; font-family:'DM Sans',sans-serif; font-size:.8rem; font-weight:500; white-space:nowrap; padding:.38rem .85rem; border-radius:8px; pointer-events:none; opacity:0; transform:translateX(6px); transition:opacity .2s,transform .2s; }
.wa-float:hover .wa-tooltip { opacity:1; transform:translateX(0); }
@keyframes wa-pulse { 0%,100%{ box-shadow:0 4px 20px rgba(37,211,102,.4),0 0 0 0 rgba(37,211,102,.35); } 50%{ box-shadow:0 4px 20px rgba(37,211,102,.4),0 0 0 10px rgba(37,211,102,0); } }
.kli-wa-link { display:block; font-size:.82rem; color:#25d366; text-decoration:none; font-weight:500; transition:opacity .2s; }
.kli-wa-link:hover { opacity:.8; }
.ft-wa-link { display:inline-flex; align-items:center; gap:.45rem; margin-top:.8rem; font-size:.84rem; color:#25d366; font-family:'DM Sans',sans-serif; font-weight:500; text-decoration:none; transition:opacity .2s; }
.ft-wa-link:hover { opacity:.8; }
.ftc-wa { color:#25d366 !important; }
.ftc-wa:hover { color:#4ade80 !important; }

/* ── Fahrzeugklassen ────────────────────────────── */
.s-fahrzeuge { background:#f7faf7; position:relative; z-index:2; isolation:isolate; }
.fz-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; }
.fz-card { background:white; border:1px solid rgba(0,230,118,.15); border-radius:20px; padding:1.8rem 1.4rem; text-align:center; transition:transform .3s cubic-bezier(.34,1.56,.64,1),border-color .3s,box-shadow .3s; }
.fz-card:hover { transform:translateY(-6px); border-color:rgba(0,230,118,.38); box-shadow:0 12px 36px rgba(0,230,118,.1); }
.fz-emoji { font-size:2.8rem; display:block; margin-bottom:.8rem; }
.fz-class { font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:800; color:#00c853; margin-bottom:.25rem; }
.fz-label { font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:#a5b5a5; display:block; margin-bottom:.9rem; }
.fz-examples { display:flex; flex-direction:column; gap:.3rem; }
.fz-examples span { font-size:.82rem; color:#6b7d6b; padding:.22rem .7rem; background:rgba(0,230,118,.06); border-radius:999px; }

/* ── Leistungsübersicht ─────────────────────────── */
.leistungen-uebersicht { background:#f7faf7; border:1px solid rgba(0,230,118,.15); border-radius:20px; padding:1.6rem 1.8rem; margin-bottom:2.5rem; }
.leistungen-uebersicht-dark { background:rgba(255,255,255,.05); border-color:rgba(0,230,118,.2); }
.lu-title { font-family:'Syne',sans-serif; font-size:.76rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#00c853; margin-bottom:1rem; }
.lu-title-light { color:rgba(255,255,255,.55) !important; }
.lu-grid { display:flex; flex-wrap:wrap; gap:.55rem; }
.lu-item { font-size:.82rem; font-weight:500; padding:.32rem .85rem; border-radius:999px; background:rgba(0,230,118,.08); border:1px solid rgba(0,230,118,.2); color:#00c853; }
.lu-item-light { background:rgba(0,230,118,.1) !important; border-color:rgba(0,230,118,.22) !important; color:rgba(255,255,255,.82) !important; }

/* ── Preistabelle Mini ──────────────────────────── */
.preistabelle { background:white; border:1px solid rgba(0,230,118,.1); border-radius:12px; overflow:hidden; margin-bottom:1.3rem; }
.preistabelle-dark { background:rgba(255,255,255,.06) !important; border-color:rgba(0,230,118,.15) !important; }
.pt-mini-row { display:flex; justify-content:space-between; align-items:center; padding:.52rem 1rem; border-bottom:1px solid rgba(0,230,118,.07); font-size:.84rem; }
.pt-mini-row:last-child { border-bottom:none; }
.pt-mini-row span { color:#6b7d6b; }
.pt-mini-row strong { color:#0a120a; font-family:'Syne',sans-serif; font-weight:700; }
.pt-mini-dark span { color:rgba(255,255,255,.5) !important; }
.pt-mini-dark strong { color:white !important; }

/* ── Gold Paket ─────────────────────────────────── */
.paket-gold { background:rgba(255,215,0,.03); border-color:rgba(255,200,0,.22) !important; }
.paket-gold:hover { border-color:rgba(255,200,0,.42) !important; box-shadow:0 12px 40px rgba(255,200,0,.08) !important; }
.pc-tier-gold { display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:.24rem .78rem; border-radius:999px; margin-bottom:1rem; background:rgba(255,200,0,.12); color:#b8860b; border:1px solid rgba(255,200,0,.28); }
.pc-btn-gold { display:inline-flex; align-items:center; font-size:.84rem; font-weight:700; color:#b8860b; padding:.5rem 1.2rem; border-radius:4px; border:1.5px solid rgba(255,200,0,.38); font-family:'Syne',sans-serif; transition:all .25s; text-decoration:none; }
.pc-btn-gold:hover { background:rgba(255,200,0,.12); border-color:rgba(255,200,0,.55); }

/* ── Außen Dark Section ─────────────────────────── */
.s-aussen { background:#0a120a; }
.aussen-h2 { color:white !important; }
.pakete-grid-2 { grid-template-columns:repeat(2,1fr) !important; max-width:900px; margin:0 auto; }
.paket-card-dark { background:rgba(255,255,255,.04) !important; border:1px solid rgba(0,230,118,.15) !important; }
.paket-card-dark:hover { background:rgba(255,255,255,.07) !important; border-color:rgba(0,230,118,.3) !important; }
.paket-aussen-premium { border-color:rgba(0,230,118,.32) !important; box-shadow:0 8px 36px rgba(0,230,118,.07) !important; }
.h3-white { color:white !important; }
.pc-desc-dark { color:rgba(255,255,255,.58) !important; }
.pc-tier-dark { background:rgba(255,255,255,.08) !important; border-color:rgba(255,255,255,.14) !important; color:rgba(255,255,255,.58) !important; }
.pc-list-dark li { color:rgba(255,255,255,.62) !important; }
.pc-list-dark li::before { color:#00e676 !important; }
.pc-btn-outline-light { display:inline-flex; align-items:center; font-size:.84rem; font-weight:700; color:white; padding:.5rem 1.2rem; border-radius:4px; border:1.5px solid rgba(255,255,255,.28); font-family:'Syne',sans-serif; transition:all .25s; text-decoration:none; }
.pc-btn-outline-light:hover { border-color:#00e676; color:#00e676; background:rgba(0,230,118,.08); }

/* ── Preise Blocks ──────────────────────────────── */
.preise-block { margin-bottom:2.5rem; }
.pb-header { display:flex; align-items:center; margin-bottom:1rem; }
.pb-title { font-family:'Syne',sans-serif; font-size:1.05rem; font-weight:700; color:#0a120a; }

/* ── Zahlungsarten ──────────────────────────────── */
.s-zahlung { background:white; padding:3.5rem 2rem; border-top:1px solid rgba(0,230,118,.12); position:relative; z-index:2; isolation:isolate; }
.zahlung-inner { max-width:1240px; margin:0 auto; text-align:center; }
.zahlung-title { font-family:'Syne',sans-serif; font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:#a5b5a5; margin-bottom:1.5rem; }
.zahlung-grid { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:.9rem; }
.zahlung-item { display:flex; align-items:center; gap:.55rem; padding:.62rem 1.3rem; background:#f7faf7; border:1px solid rgba(0,230,118,.14); border-radius:999px; font-family:'DM Sans',sans-serif; font-size:.86rem; font-weight:500; color:#3d5238; transition:border-color .22s,background .22s,transform .22s cubic-bezier(.34,1.56,.64,1); }
.zahlung-item:hover { border-color:rgba(0,230,118,.38); background:rgba(0,230,118,.06); transform:translateY(-2px); }
.zahlung-icon { font-size:1.15rem; }

/* ── CoresetupStudio Credit ─────────────────────── */
.ft-credit { max-width:1240px; margin:0 auto; padding:.7rem 2rem 1.2rem; font-size:.75rem; color:rgba(255,255,255,.2); text-align:center; font-family:'DM Sans',sans-serif; }
.ft-credit a { color:#00e676; font-weight:600; text-decoration:none; transition:text-shadow .2s; }
.ft-credit a:hover { text-shadow:0 0 10px rgba(0,230,118,.5); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width:1100px) { .fz-grid { grid-template-columns:repeat(2,1fr); } }

@media (max-width:900px) {
  .hero { display:grid !important; grid-template-columns:1fr !important; grid-template-rows:auto; padding:8rem 1.5rem 4rem !important; gap:0 !important; min-height:auto !important; }
  .hero-left { position:relative; z-index:10 !important; grid-column:1; grid-row:1; }
  .hero-right { display:none !important; }
  .hero-scroll { position:relative !important; bottom:auto !important; left:auto !important; transform:none !important; margin-top:2rem; grid-column:1; }
  .hero-canvas,.hero-blob,.hero-grid { z-index:0 !important; }
  .trust-bar,.section,.s-zahlung,.footer { position:relative !important; z-index:10 !important; isolation:isolate; }
  .s-fahrzeuge  { background:#f7faf7 !important; }
  .s-pakete     { background:#ffffff !important; }
  .s-aussen     { background:#0a120a !important; }
  .s-nano       { background:#f7faf7 !important; }
  .s-eco        { background:#0a120a !important; }
  .s-prozess    { background:#f7faf7 !important; }
  .s-preise     { background:#ffffff !important; }
  .s-kontakt    { background:#f7faf7 !important; }
  .s-zahlung    { background:#ffffff !important; }
  .trust-bar    { background:#ffffff !important; }
  .footer       { background:#0a120a !important; }
  .fz-grid          { grid-template-columns:repeat(2,1fr); gap:.9rem; }
  .pakete-grid-2    { grid-template-columns:1fr !important; max-width:100%; }
  .kontakt-layout   { grid-template-columns:1fr; gap:3rem; }
  .nano-layout      { grid-template-columns:1fr; gap:3rem; }
  .eco-layout       { grid-template-columns:1fr; gap:3rem; }
  .kl-infos         { grid-template-columns:1fr; }
  .ft-inner         { grid-template-columns:1fr; gap:2.5rem; }
  .ft-cols          { grid-template-columns:repeat(2,1fr); }
  .nav-links { display:none; }
  .burger    { display:flex; }
  .kf-row    { grid-template-columns:1fr; }
  .nano-stats { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
  .nstat-div  { display:none; }
  .eco-sat { position:relative; top:auto; bottom:auto; left:auto; right:auto; }
  .eco-orb-wrap { flex-direction:column; height:auto; align-items:center; gap:1rem; }
  .eco-main-card { position:relative; }
  .ptl-line { display:none; }
  .ptl-step { flex-direction:column; gap:.8rem; }
  .wa-float { bottom:1.2rem; right:1.2rem; width:52px; height:52px; }
  .wa-float svg { width:26px; height:26px; }
  .nav-logo-img { height:34px; }
}

@media (max-width:600px) {
  .hero { padding:7rem 1.2rem 3rem !important; }
  h1    { font-size:clamp(2.4rem,8vw,3.2rem) !important; }
  .fz-grid { grid-template-columns:1fr 1fr; gap:.8rem; }
  .fz-card { padding:1.2rem .8rem; }
  .fz-emoji { font-size:2.2rem; }
  .zahlung-grid { gap:.5rem; }
  .zahlung-item { padding:.5rem .9rem; font-size:.78rem; }
  .lu-item { font-size:.76rem; padding:.26rem .7rem; }
  .container { padding:0 1.2rem; }
  .section   { padding:4rem 0; }
  .ft-cols   { grid-template-columns:1fr 1fr; }
  .kform     { padding:1.5rem; }
  .pt-header span:nth-child(3),.pt-header span:nth-child(4),
  .pt-row span:nth-child(3),.pt-row span:nth-child(4) { display:none; }
  .pt-header,.pt-row { grid-template-columns:1.5fr 1fr; }
}

@media (hover:none) and (pointer:coarse) {
  .cur,.cur-ring { display:none !important; }
  body { cursor:auto !important; }
  button,a { cursor:pointer !important; }
}

