/* ===== WOWOBOT – Brand & Dark Mode ===== */
/* Akzentfarbe: hellblau von wowobot.de – bei Bedarf exakten Hex aus CSS/Assets eintragen */
:root {
  --bg-deep: #0a0a0e;
  --bg-card: rgba(18, 22, 28, 0.75);
  --bg-elevated: rgba(24, 28, 36, 0.9);
  --text-primary: #e8ecf0;
  --text-secondary: #94a3b8;
  --accent: #06B6D4;
  --accent-dim: rgba(6, 182, 212, 0.25);
  --accent-glow: rgba(6, 182, 212, 0.4);
  --outline: rgba(255, 255, 255, 0.08);
  --glow: rgba(6, 182, 212, 0.35);
  --success: #22c55e;
  --border-radius: 12px;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 4rem; }
[id] { scroll-margin-top: 4rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none !important; filter: none !important; }
  .no-motion * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
body.cursor-bot-active { cursor: none; }

/* Aurora / Holographic subtle background (wie index.html) */
.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(6, 182, 212, 0.07) 0%, transparent 50%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.main-wrap { position: relative; z-index: 2; }

/* ----- Cursor Bot (wowobot icon + trail) ----- */
#cursor-bot-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  visibility: hidden;
}
body.cursor-bot-active #cursor-bot-wrap { visibility: visible; }
.cursor-bot {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  color: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent-glow));
  transition: transform 0.05s linear;
}
.cursor-bot-trail {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  color: var(--accent);
  opacity: 0.45;
  pointer-events: none;
}

/* ----- Navigation (1:1 wie wowobot.de) ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.6rem 1.5rem;
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Brand: Logo + Schriftzug wowobot */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}
.nav-brand:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav-brand svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent);
}
/* Claim im Header */
.nav-claim {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .nav-claim { display: none; }
}
.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links-wrap a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links-wrap a:hover, .nav-links-wrap a:focus-visible { color: var(--text-primary); background: var(--outline); }
.nav-links-wrap a.active { color: var(--accent); border-bottom: 1px solid var(--accent); }
.nav-links-wrap a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  margin-left: 0.25rem;
}
.nav-cta:hover { background: #0ea5e9; box-shadow: 0 0 16px var(--glow); }
/* Hamburger (Mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--outline);
  }
  .nav-links-wrap.open { display: flex; }
  .nav-links-wrap a { padding: 0.75rem; width: 100%; text-align: center; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
}

/* ----- Header (Index-Style: gleiches Menü wie Startseite) ----- */
header.index-style-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 14, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--outline);
}
header.index-style-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
header.index-style-header nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
header.index-style-header .brand-zone {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
header.index-style-header .logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header.index-style-header .brand-logo {
  width: 40px;
  height: 40px;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  object-fit: contain;
  image-rendering: auto;
}
header.index-style-header .logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
header.index-style-header .logo:hover { color: var(--text-primary); }
header.index-style-header .header-claim {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--outline);
}
header.index-style-header .header-claim-flag {
  width: 12px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  display: block;
}
header.index-style-header .header-claim-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: left;
}
header.index-style-header .header-claim-text span { display: block; }
header.index-style-header .nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  margin-left: auto;
  padding: 0;
}
header.index-style-header .nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: color 0.2s, background 0.2s;
}
header.index-style-header .nav-links a:hover {
  color: var(--text-primary);
  background: var(--outline);
}
header.index-style-header .dropdown { position: relative; }
header.index-style-header .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
header.index-style-header .dropdown-toggle::after {
  content: '';
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-left: 2px;
}
header.index-style-header .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--outline);
  border-radius: var(--border-radius);
  margin-top: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
header.index-style-header .dropdown:hover .dropdown-menu { display: block; }
header.index-style-header .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.2s;
}
header.index-style-header .dropdown-item:hover { background: var(--outline); }
header.index-style-header .dropdown-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
header.index-style-header .dropdown-icon img {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  object-fit: contain;
}
header.index-style-header .dropdown-content h4 { margin: 0 0 0.15rem; font-size: 0.95rem; }
header.index-style-header .dropdown-content p { margin: 0; font-size: 0.8rem; color: var(--text-secondary); }
header.index-style-header .live-demo-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
header.index-style-header .live-demo-btn:hover { box-shadow: 0 0 20px var(--accent-glow); }
header.index-style-header .mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
  color: var(--text-primary);
}
header.index-style-header .mobile-menu span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  display: block;
}
/* Mobile: 1:1 wie index.html – nur diese Regeln, nichts extra */
@media (max-width: 768px) {
  header.index-style-header .mobile-menu {
    display: flex;
  }
  header.index-style-header .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    padding: 1rem;
    border-bottom: 1px solid var(--outline);
  }
  header.index-style-header .nav-links.open {
    display: flex;
  }
  header.index-style-header .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 0.25rem;
  }
  header.index-style-header .nav-cta-mobile {
    display: list-item;
    list-style: none;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--outline);
    text-align: center;
  }
  header.index-style-header .nav-cta-mobile .live-demo-btn {
    display: block;
    text-align: center;
    margin: 0;
  }
}
header.index-style-header .nav-cta-mobile {
  display: none;
}

/* ----- Section ----- */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.visible h2.scanline { position: relative; }
.reveal.visible h2.scanline::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(56, 189, 248, 0.06) 50%, transparent 100%);
  animation: scanline 0.8s ease-out forwards;
  pointer-events: none;
}
@keyframes scanline {
  from { transform: scaleY(0); transform-origin: top; }
  to { transform: scaleY(1); transform-origin: top; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal.visible h2.scanline::after { display: none; }
}

/* ----- Hero (Sci-Fi Depth + Hologram Scanlines) ----- */
#start { padding-top: 2rem; padding-bottom: 4rem; }
.hero {
  position: relative;
  overflow: hidden;
}
.hero-parallax {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 55%);
  will-change: transform;
  transition: transform 0.15s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .hero-parallax { transition: none; }
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
}
.hero .hero-inner { position: relative; z-index: 1; }
.hero-tag {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem;
  line-height: 1.25;
}
.hero .lead {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}
.hero p { text-align: center; color: var(--text-secondary); margin: 0.5rem auto; max-width: 560px; }
.hero-cta { text-align: center; margin-top: 2rem; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}
.stat { padding: 1rem; background: var(--bg-card); border-radius: var(--border-radius); border: 1px solid var(--outline); }
.stat strong { display: block; font-size: 1.25rem; color: var(--text-primary); }
.stat span { font-size: 0.9rem; color: var(--text-secondary); }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover { background: #0ea5e9; box-shadow: 0 0 24px var(--glow); }
.btn:hover::after { transform: translateX(100%); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-light-sweep::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, transparent 35%, rgba(255,255,255,0.08) 50%, transparent 65%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-light-sweep:hover::before { transform: translateX(100%); }
@media (prefers-reduced-motion: reduce) {
  .btn-light-sweep::before { display: none; }
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--outline);
  color: var(--text-primary);
}
.btn-ghost:hover { border-color: var(--accent); background: var(--accent-dim); }

/* ----- Cards ----- */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--outline);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s ease;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03);
}
.card:hover { border-color: rgba(56, 189, 248, 0.2); box-shadow: 0 0 32px var(--accent-dim); }
/* Neon Edge Flow (nur bei Hover/Focus) */
.card-neon {
  position: relative;
}
.card-neon::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--border-radius) + 1px);
  padding: 1px;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent 30%, transparent 70%, var(--accent), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.card-neon:hover::before, .card-neon:focus-within::before {
  opacity: 0.6;
  animation: neon-rotate 4s linear infinite;
}
@keyframes neon-rotate {
  to { filter: hue-rotate(0deg); transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .card-neon:hover::before, .card-neon:focus-within::before { animation: none; opacity: 0.4; }
}
@media (prefers-reduced-motion: no-preference) {
  .card-tilt { transform-style: preserve-3d; }
}

h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 1.5rem; color: var(--text-primary); }
h3 { font-size: 1.2rem; margin: 0 0 0.75rem; color: var(--text-primary); }
h4 { font-size: 1rem; margin: 0 0 0.5rem; color: var(--text-secondary); }

#problem .card { max-width: 720px; margin: 0 auto; }
#problem p { margin: 0 0 1rem; color: var(--text-secondary); }

/* ----- Vorher/Nachher ----- */
#vorher-nachher h2 { text-align: center; margin-bottom: 2rem; }
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) { .comparison { grid-template-columns: 1fr; } }
.comparison .card { text-align: center; }
.comparison .value { font-size: 1.75rem; font-weight: 700; color: var(--accent); margin: 0.5rem 0; }
.comparison .label { font-size: 0.9rem; color: var(--text-secondary); }
.badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.badge {
  padding: 0.4rem 0.9rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-primary);
}
/* Glitch Micro (nur kurz beim Reveal) */
.glitch-micro {
  position: relative;
}
.glitch-micro.glitch-active {
  animation: glitch-micro 0.3s ease-out;
}
@keyframes glitch-micro {
  0% { transform: translate(0); filter: none; }
  15% { transform: translate(-1px, 1px); filter: drop-shadow(1px 0 var(--accent)); }
  30% { transform: translate(1px, -1px); filter: drop-shadow(-1px 0 var(--accent)); }
  45% { transform: translate(-1px, -1px); filter: drop-shadow(0 1px var(--accent)); }
  60% { transform: translate(1px, 1px); }
  100% { transform: translate(0); filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .glitch-micro.glitch-active { animation: none; }
}

/* ----- Pricing ----- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card { display: flex; flex-direction: column; position: relative; }
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 40px var(--accent-dim); }
.pricing-card .badge-top {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.pricing-card h3 { margin-top: 0.5rem; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 1rem; flex: 1; }
.pricing-card li { padding: 0.35rem 0; font-size: 0.95rem; color: var(--text-secondary); padding-left: 1.25rem; position: relative; }
.pricing-card li::before { content: '✓'; position: absolute; left: 0; color: var(--success); }
.pricing-card .price { font-size: 1.5rem; font-weight: 700; margin: 1rem 0; color: var(--text-primary); }
.pricing-card .btn { margin-top: auto; text-align: center; }

/* ----- Table ----- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
  border-radius: var(--border-radius);
  border: 1px solid var(--outline);
}
.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--bg-card);
}
.data-table th {
  position: sticky;
  top: 0;
  background: var(--bg-elevated);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--outline);
  white-space: nowrap;
}
.data-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--outline); color: var(--text-secondary); font-size: 0.9rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table .feature-name { color: var(--text-primary); font-weight: 500; }
.toggle-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.toggle-row span { color: var(--text-secondary); font-size: 0.95rem; }
.toggle-btn {
  padding: 0.4rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--outline);
  color: var(--text-primary);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}
.toggle-btn.active { border-color: var(--accent); background: var(--accent-dim); }
.toggle-btn:hover { border-color: var(--text-secondary); }
.table-view { display: none; }
.table-view.active { display: block; }

/* ----- Solution grid ----- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.solution-grid .card h3 { margin-bottom: 0.5rem; }
.solution-grid .card p { margin: 0; font-size: 0.95rem; color: var(--text-secondary); }
.savings-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.savings-block .stat { text-align: center; }

/* ----- Energy Divider (subtil animiert) ----- */
.divider { margin: 3rem 0; padding: 0 1.5rem; }
.divider svg { width: 100%; height: 2px; display: block; }
.divider .beam-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: divider-draw 2s ease-out forwards;
}
@keyframes divider-draw {
  to { stroke-dashoffset: 0; }
}
.divider .beam-glow {
  opacity: 0.6;
  animation: divider-pulse 3s ease-in-out infinite;
}
@keyframes divider-pulse {
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .divider .beam-line { animation: none; stroke-dashoffset: 0; }
  .divider .beam-glow { animation: none; }
}

/* ----- Nachhaltigkeit ----- */
.sustainability .card { max-width: 720px; margin: 0 auto; }
.sustainability ul { margin: 1rem 0; padding-left: 1.5rem; color: var(--text-secondary); }
.sustainability a { color: var(--accent); text-decoration: none; }
.sustainability a:hover { text-decoration: underline; }
.cert-links { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 1rem; }

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--accent);
  background: var(--bg-elevated);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ----- Kontakt ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info p { margin: 0.5rem 0; color: var(--text-secondary); }
.contact-info a { color: var(--accent); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.35rem; font-size: 0.9rem; color: var(--text-primary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--outline);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .required::after { content: ' *'; color: #f87171; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.5rem; }
.checkbox-group input { width: auto; margin-top: 0.25rem; }
.checkbox-group label { margin-bottom: 0; }
.checkbox-group a { color: var(--accent); }

/* ----- Footer ----- */
footer {
  border-top: 1px solid var(--outline);
  padding: 1.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: rgba(10, 10, 12, 0.9);
}
footer a { color: var(--text-secondary); text-decoration: none; margin: 0 0.5rem; }
footer a:hover { color: var(--text-primary); }

/* ----- Cookie Banner ----- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--outline);
  display: none;
}
#cookie-banner.show { display: block; }
#cookie-banner h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
#cookie-banner p { margin: 0.25rem 0; font-size: 0.9rem; color: var(--text-secondary); }
#cookie-banner .cookie-section { margin: 0.75rem 0; }
#cookie-banner .cookie-section h4 { margin: 0.25rem 0; font-size: 0.95rem; }
#cookie-banner .btn { margin-top: 1rem; margin-right: 0.5rem; }
.cookie-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}
.cookie-close:hover { color: var(--text-primary); }
#cookie-banner .inner { max-width: 800px; margin: 0 auto; position: relative; padding-right: 2rem; }

/* Page title (inner pages) */
.page-hero { text-align: center; padding: 2rem 1.5rem 1rem; }
.page-hero h1 { margin: 0 0 0.5rem; }
