/* ==========================================================================
   bulkify — Design System
   Anthrazit / Charcoal base, Noetri-style bento tiles, fresh lime accent
   ========================================================================== */

:root {
  /* --- Surfaces (Anthrazit) --- */
  --bg:          #14161B;
  --bg-2:        #181B21;
  --surface:     #1F232B;
  --surface-2:   #262B34;
  --surface-3:   #2E343E;
  --border:      rgba(255, 255, 255, 0.08);
  --border-2:    rgba(255, 255, 255, 0.14);

  /* --- Text --- */
  --text:        #F4F5F2;
  --text-soft:   #D2D6DC;
  --muted:       #969BA5;
  --muted-2:     #6C727C;

  /* --- Accents --- */
  --accent:      #C8F560;   /* lime — primary */
  --accent-deep: #A9DC3F;
  --accent-fg:   var(--accent);
  --accent-ink:  #1A2206;   /* text on accent */
  --mint:        #7FE3C0;
  --sky:         #8FB6F2;
  --amber:       #F0C77E;
  --lilac:       #C3A8F0;
  --coral:       #F2A18F;

  /* --- Glows / tints --- */
  --glow-accent: rgba(200, 245, 96, 0.16);

  /* --- Type --- */
  --font-head: "Jost", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* --- Radius --- */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* --- Layout --- */
  --maxw: 1240px;
  --gut: clamp(1rem, 3vw, 2rem);

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s;
  --t-mid: 0.34s;

  /* --- Shadow --- */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 14px 40px rgba(0,0,0,0.35);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
input, textarea, select, button { font-family: inherit; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* Ambient page glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60vw 50vh at 80% -10%, rgba(200,245,96,0.07), transparent 60%),
    radial-gradient(50vw 40vh at 0% 10%, rgba(143,182,242,0.05), transparent 55%);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  position: relative;
  z-index: 1;
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.display {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-soft); }
.muted { color: var(--muted); }
.accent-text { color: var(--accent-fg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-fg);
}
.eyebrow::before {
  content: "";
  width: 18px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head { max-width: 680px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head .lead { margin-top: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.97rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 28px var(--glow-accent); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 38px var(--glow-accent); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--border-2); transform: translateY(-2px); }

.btn--light { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.btn--light:hover { background: var(--surface-3); transform: translateY(-2px); }

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(20, 22, 27, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-mid), background var(--t-mid);
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(18, 20, 25, 0.9); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; display: block; }
.footer-brand .brand-logo { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 0.05rem; }
.nav-links a {
  padding: 0.5rem 0.6rem;
  border-radius: var(--r-pill);
  font-size: 0.94rem;
  color: var(--text-soft);
  font-weight: 450;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--accent-fg); }
.nav-actions { display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }

.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-2);
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.nav-cart:hover { background: var(--surface-2); }
.nav-cart svg { width: 17px; height: 17px; }
.cart-count {
  min-width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  border-radius: var(--r-pill);
  background: var(--accent); color: var(--accent-ink);
  font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-head);
}
.cart-count[data-empty="true"] { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--text);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 4rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
.hero-copy .display { margin-top: 1.4rem; }
.hero-copy .lead { margin-top: 1.5rem; max-width: 33ch; }
.hero-copy .btn-row { margin-top: 2.2rem; }
.hero-stats {
  display: flex; gap: 2.2rem; margin-top: 3rem; flex-wrap: wrap;
}
.hero-stat .num { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; letter-spacing: -0.02em; }
.hero-stat .lbl { font-size: 0.85rem; color: var(--muted); margin-top: 0.15rem; }

.hero-visual { position: relative; }
.hero-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(90px, auto);
  gap: 0.9rem;
}

/* ---------- Tiles / Bento ---------- */
.tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease), border-color var(--t-fast), background var(--t-fast);
}
.tile:hover { transform: translateY(-4px); border-color: var(--border-2); }
.tile--pad-lg { padding: 1.9rem; }

/* colored tints */
.tile[data-tint="lime"]  { background: linear-gradient(150deg, rgba(200,245,96,0.14), var(--surface) 62%); }
.tile[data-tint="mint"]  { background: linear-gradient(150deg, rgba(127,227,192,0.13), var(--surface) 62%); }
.tile[data-tint="sky"]   { background: linear-gradient(150deg, rgba(143,182,242,0.13), var(--surface) 62%); }
.tile[data-tint="amber"] { background: linear-gradient(150deg, rgba(240,199,126,0.13), var(--surface) 62%); }
.tile[data-tint="lilac"] { background: linear-gradient(150deg, rgba(195,168,240,0.13), var(--surface) 62%); }

.tile-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  margin-bottom: 1.1rem;
}
.tile-icon svg { width: 23px; height: 23px; color: var(--accent-fg); }
.tile h3 { margin-bottom: 0.5rem; }
.tile p { color: var(--muted); font-size: 0.96rem; }

/* hero mini-tiles */
.htile { display: flex; flex-direction: column; justify-content: space-between; min-height: 130px; }
.htile .htile-top { display: flex; align-items: center; justify-content: space-between; }
.htile .htile-kpi { font-family: var(--font-head); font-size: clamp(1.6rem,2.6vw,2.1rem); font-weight: 600; letter-spacing: -0.02em; }
.htile .htile-lbl { font-size: 0.82rem; color: var(--muted); }
.htile-badge {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem; border-radius: var(--r-pill);
  background: var(--surface-2); color: var(--accent-fg); text-transform: uppercase;
}
.span-2 { grid-column: span 2; }

/* capsule deco */
.capsule-deco {
  display: flex; gap: 6px; align-items: center; margin-top: 0.8rem;
}
.capsule-deco i {
  display: block; height: 26px; border-radius: var(--r-pill);
  flex: 1;
  background: linear-gradient(180deg, var(--surface-3), var(--surface-2));
  border: 1px solid var(--border);
}
.capsule-deco i:nth-child(1){ background: linear-gradient(180deg, rgba(200,245,96,0.5), rgba(200,245,96,0.15)); }
.capsule-deco i:nth-child(2){ background: linear-gradient(180deg, rgba(127,227,192,0.45), rgba(127,227,192,0.12)); }
.capsule-deco i:nth-child(3){ background: linear-gradient(180deg, rgba(143,182,242,0.42), rgba(143,182,242,0.12)); }

/* ---------- Feature grid (bento) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.bento > .tile { grid-column: span 4; }
.bento > .tile.wide { grid-column: span 6; }
.bento > .tile.full { grid-column: span 12; }
.bento > .tile.half { grid-column: span 6; }

.feature-tile { display: flex; flex-direction: column; min-height: 220px; }
.feature-tile p { margin-top: auto; }
.feature-tag {
  position: absolute; top: 1.3rem; right: 1.3rem;
  font-size: 0.72rem; color: var(--muted); font-family: var(--font-head); letter-spacing: 0.05em;
}

/* big stat tile */
.stat-tile { display: flex; flex-direction: column; justify-content: center; min-height: 220px; text-align: left; }
.stat-tile .big { font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 600; letter-spacing: -0.03em; color: var(--accent-fg); line-height: 1; }
.stat-tile .lbl { margin-top: 0.6rem; color: var(--text-soft); font-size: 1rem; }

/* compact 2-col stat grid (does NOT inherit .bento span rules) */
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-grid .stat-tile { min-height: 148px; }
.stat-grid .stat-tile .big { font-size: clamp(2rem, 4vw, 2.8rem); }

/* ---------- Process / Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.6rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.95rem; color: var(--accent-fg);
  display: block; margin-bottom: 1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Timeline (Ablauf) ---------- */
.timeline { position: relative; display: flex; flex-direction: column; gap: 1.1rem; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(var(--accent), var(--border-2) 30%, var(--border-2)); opacity: 0.5; }
.tl-item { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.3rem; align-items: start; }
.tl-num {
  width: 56px; height: 56px; border-radius: 17px; flex-shrink: 0;
  background: var(--surface-2); border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--accent-fg);
  position: relative; z-index: 1;
}
.tl-body {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.4rem 1.6rem;
  transition: transform var(--t-mid) var(--ease), border-color var(--t-fast);
}
.tl-body:hover { transform: translateX(4px); border-color: var(--border-2); }
.tl-body h3 { font-size: 1.18rem; margin-bottom: 0.45rem; }
.tl-body p { color: var(--muted); font-size: 0.96rem; }
.tl-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.9rem; }
.tl-tags span {
  font-size: 0.74rem; padding: 0.28rem 0.65rem; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-soft);
}
@media (max-width: 560px) {
  .tl-item { grid-template-columns: 44px 1fr; gap: 0.9rem; }
  .tl-num { width: 44px; height: 44px; border-radius: 13px; font-size: 0.95rem; }
  .timeline::before { left: 21px; }
}

/* ---------- Marquee (trust strip) ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--border);
  padding-block: 1.4rem; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-size: 1.05rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap; }
.marquee-track span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(200,245,96,0.10), var(--surface) 60%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: auto -20% -60% -20%; height: 100%;
  background: radial-gradient(closest-side, var(--glow-accent), transparent);
  pointer-events: none;
}
.cta-band .btn-row { justify-content: center; margin-top: 1.8rem; }

/* ---------- Catalog / Rohstoffe ---------- */
.catalog-toolbar {
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  margin-bottom: 1.8rem;
}
.search-box {
  position: relative; flex: 1 1 280px; min-width: 240px;
}
.search-box svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 19px; height: 19px; color: var(--muted); }
.search-box input {
  width: 100%; padding: 0.85rem 1rem 0.85rem 2.8rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-pill); color: var(--text); font-size: 0.96rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.search-box input:focus { outline: none; border-color: var(--accent-fg); background: var(--surface-2); }
.search-box input::placeholder { color: var(--muted-2); }

.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip {
  padding: 0.55rem 1rem; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-soft); font-size: 0.88rem; font-weight: 450;
  transition: all var(--t-fast);
}
.chip:hover { border-color: var(--border-2); color: var(--text); }
.chip.active { background: var(--accent); color: var(--accent-ink); border-color: var(--accent-fg); font-weight: 600; }

.catalog-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2rem; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.1rem;
}
.product {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.4rem;
  transition: transform var(--t-mid) var(--ease), border-color var(--t-fast);
}
.product:hover { transform: translateY(-4px); border-color: var(--border-2); }
.product-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.8rem; }
.product-mark {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--accent-ink);
}
.product-cat {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); font-family: var(--font-head); font-weight: 500;
}
.product h3 { font-size: 1.15rem; margin: 0.9rem 0 0.3rem; }
.product .sub { font-size: 0.85rem; color: var(--muted); }
.product-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 1.2rem; }
.spec-pill {
  font-size: 0.74rem; padding: 0.28rem 0.6rem; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-soft);
}
.product-foot { display: flex; gap: 0.6rem; margin-top: auto; }
.product-foot .btn { flex: 1; padding: 0.7rem 1rem; font-size: 0.9rem; }

.btn-add {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.7rem 1rem; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text);
  font-family: var(--font-head); font-weight: 500; font-size: 0.9rem;
  transition: all var(--t-fast);
}
.btn-add:hover { background: var(--surface-3); }
.btn-add.added { background: var(--accent); color: var(--accent-ink); border-color: var(--accent-fg); }
.btn-add svg { width: 16px; height: 16px; }

.catalog-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); grid-column: 1 / -1; }

/* many-category chips + counts + pagination */
.chips--wrap { margin-bottom: 1.4rem; }
.chip-n { font-size: 0.74rem; color: var(--muted-2); font-weight: 600; margin-left: 0.15rem; }
.chip--star { border-color: rgba(200,245,96,0.4); }
.chip--star:not(.active) { color: var(--accent-fg); }
.spec-pill.pill-top { background: var(--accent); color: var(--accent-ink); border-color: var(--accent-fg); font-weight: 600; }
.spec-pill.pill-brand { background: rgba(143,182,242,0.14); border-color: rgba(143,182,242,0.35); color: var(--sky); }
.chip.active .chip-n { color: var(--accent-ink); opacity: 0.6; }
.catalog-more { display: flex; justify-content: center; margin-top: 2.2rem; }
.product h3.clamp2 {
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.6em; font-size: 1.04rem; line-height: 1.28; margin-bottom: 0.2rem;
}
.product .sub { margin-top: 0; }
.product .sub--orig { font-size: 0.78rem; color: var(--muted-2); margin-top: 0.12rem; line-height: 1.3; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,9,12,0.7); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1.2rem;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: min(560px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--r-xl); padding: 2rem;
  box-shadow: var(--shadow-lg);
  animation: pop var(--t-mid) var(--ease);
}
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(0.98); } }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.modal-close {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  display: inline-flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--surface-2); }
.modal h2 { font-size: 1.5rem; margin-top: 0.3rem; }
.modal-table { width: 100%; border-collapse: collapse; margin-top: 1.4rem; }
.modal-table th, .modal-table td { text-align: left; padding: 0.7rem 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.modal-table th { color: var(--muted); font-weight: 450; width: 45%; }
.modal-table td { color: var(--text-soft); }
.modal .btn-row { margin-top: 1.6rem; }
.rez-ing { margin-top: 1.2rem; }
.rez-ing th, .rez-ing td { width: auto; }
.rez-ing thead th { color: var(--muted); font-family: var(--font-head); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; }
.rez-ing td:last-child, .rez-ing th:last-child { text-align: right; white-space: nowrap; color: var(--text); font-variant-numeric: tabular-nums; }
.rez-ing td:first-child { color: var(--text-soft); }

/* ---------- Forms ---------- */
.form-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.4rem);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: 0.88rem; color: var(--text-soft); margin-bottom: 0.45rem; font-weight: 450; }
.field label .req { color: var(--accent-fg); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-md); color: var(--text); font-size: 0.96rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-fg); background: var(--surface); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23969BA5' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.checkbox { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.86rem; color: var(--muted); }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent-fg); flex-shrink: 0; }
.checkbox a { color: var(--accent-fg); text-decoration: underline; }

.form-note { font-size: 0.82rem; color: var(--muted-2); margin-top: 1rem; }

.form-aside { display: flex; flex-direction: column; gap: 1rem; }
.aside-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.aside-card p { color: var(--muted); font-size: 0.92rem; }
.aside-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.4rem; }
.aside-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.92rem; color: var(--text-soft); }
.aside-list svg { width: 18px; height: 18px; color: var(--accent-fg); flex-shrink: 0; margin-top: 2px; }

/* selected raw materials in form */
.cart-list { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.6rem 0 0; }
.cart-item {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  padding: 0.6rem 0.8rem; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-md); font-size: 0.9rem;
}
.cart-item button { background: none; border: none; color: var(--muted); display: inline-flex; }
.cart-item button:hover { color: var(--coral); }
.cart-empty-hint { font-size: 0.86rem; color: var(--muted-2); }

/* form feedback */
.form-status { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--r-md); font-size: 0.9rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(127,227,192,0.12); border: 1px solid rgba(127,227,192,0.3); color: var(--mint); }
.form-status.err { background: rgba(242,161,143,0.12); border: 1px solid rgba(242,161,143,0.3); color: var(--coral); }

/* ---------- Typeform-style Wizard ---------- */
.wizard { max-width: 720px; margin-inline: auto; }
.wz-progress { height: 4px; background: var(--surface-2); border-radius: 99px; overflow: hidden; margin-bottom: clamp(2rem, 5vw, 3rem); }
.wz-bar { height: 100%; width: 0; background: var(--accent); border-radius: 99px; transition: width 0.45s var(--ease); }
.wz-viewport { position: relative; }
.wz-step { display: none; animation: wzIn 0.42s var(--ease); }
.wz-step.active { display: block; }
@keyframes wzIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.wz-kicker { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent-fg); font-family: var(--font-head); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.wz-q { font-family: var(--font-head); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; font-size: clamp(1.5rem, 3.4vw, 2.15rem); }
.wz-help { color: var(--muted); margin-top: 0.75rem; font-size: 1.02rem; }
.wz-body { margin-top: clamp(1.4rem, 3vw, 2rem); }

.wz-options { display: flex; flex-direction: column; gap: 0.7rem; }
.wz-opt { display: flex; align-items: center; gap: 0.9rem; width: 100%; text-align: left; padding: 1rem 1.1rem; border-radius: var(--r-md); border: 1px solid var(--border-2); background: var(--surface); color: var(--text); font-size: 1.04rem; transition: transform var(--t-fast) var(--ease), border-color var(--t-fast), background var(--t-fast); }
.wz-opt:hover { border-color: var(--accent-fg); background: var(--surface-2); transform: translateY(-1px); }
.wz-opt.sel { border-color: var(--accent-fg); background: rgba(200,245,96,0.09); }
.wz-key { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-family: var(--font-head); font-weight: 600; color: var(--muted); flex-shrink: 0; transition: all var(--t-fast); }
.wz-opt:hover .wz-key { border-color: var(--accent-fg); color: var(--text); }
.wz-opt.sel .wz-key { background: var(--accent); color: var(--accent-ink); border-color: var(--accent-fg); }
.wz-opt .wz-check { margin-left: auto; opacity: 0; color: var(--accent-fg); }
.wz-opt.sel .wz-check { opacity: 1; }
.wz-opt .wz-check svg { width: 20px; height: 20px; }

.wz-input { width: 100%; background: transparent; border: none; border-bottom: 2px solid var(--border-2); color: var(--text); font-family: var(--font-head); font-size: clamp(1.25rem, 2.6vw, 1.7rem); padding: 0.5rem 0.1rem; transition: border-color var(--t-fast); }
.wz-input:focus { outline: none; border-color: var(--accent-fg); }
.wz-input::placeholder { color: var(--muted-2); }
.wz-textarea { width: 100%; background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-md); color: var(--text); font-family: var(--font-body); font-size: 1.1rem; padding: 1rem 1.1rem; min-height: 130px; resize: vertical; }
.wz-textarea:focus { outline: none; border-color: var(--accent-fg); }

.wz-fields { display: flex; flex-direction: column; gap: 1.25rem; }
.wz-field label { display: block; font-size: 0.84rem; color: var(--muted); margin-bottom: 0.35rem; }
.wz-field label .req { color: var(--accent-fg); }
.wz-field .wz-input { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.wz-nav { display: flex; align-items: center; gap: 1rem; margin-top: clamp(1.6rem, 4vw, 2.4rem); flex-wrap: wrap; }
.wz-back { background: none; border: none; color: var(--muted); display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.92rem; padding: 0.4rem 0; }
.wz-back svg { width: 17px; height: 17px; }
.wz-back:hover { color: var(--text); }
.wz-hint { color: var(--muted-2); font-size: 0.82rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.wz-enter { padding: 0.1rem 0.45rem; border: 1px solid var(--border-2); border-radius: 5px; font-family: var(--font-head); font-size: 0.72rem; color: var(--muted); }
.wz-err { color: var(--coral); font-size: 0.9rem; margin-top: 0.9rem; display: none; }
.wz-err.show { display: block; }

.wz-cart { display: flex; flex-direction: column; gap: 0.5rem; }
.wz-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.2rem 1.4rem; margin-bottom: 1.4rem; }
.wz-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; margin: 0; }
.wz-summary dt { color: var(--muted); font-size: 0.9rem; }
.wz-summary dd { margin: 0; color: var(--text-soft); font-size: 0.9rem; text-align: right; }

.wz-success { text-align: center; padding: clamp(2rem, 6vw, 4rem) 0; }
.wz-success .wz-check-big { width: 76px; height: 76px; border-radius: 50%; background: rgba(127,227,192,0.14); border: 1px solid rgba(127,227,192,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.6rem; }
.wz-success .wz-check-big svg { width: 36px; height: 36px; color: var(--mint); }
.wz-success h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.wz-success p { color: var(--muted); margin-top: 0.8rem; max-width: 42ch; margin-inline: auto; }

.wz-direct { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 2.5rem; }
/* ---------- Etikett-Check (KI-Tool) ---------- */
.ec-wrap { max-width: 820px; margin-inline: auto; }
.ec-drop { position: relative; border: 2px dashed var(--border-2); border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 3.2rem); text-align: center; cursor: pointer; background: var(--surface); transition: border-color var(--t-fast), background var(--t-fast); }
.ec-drop:hover, .ec-drop.drag { border-color: var(--accent-fg); background: var(--surface-2); }
.ec-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.ec-drop .ec-ic { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 18px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.ec-drop .ec-ic svg { width: 30px; height: 30px; color: var(--accent-fg); }
.ec-drop h3 { font-size: 1.15rem; }
.ec-drop p { color: var(--muted); font-size: 0.92rem; margin-top: 0.4rem; }
.ec-file { display: none; align-items: center; gap: 0.8rem; justify-content: center; margin-top: 1rem; padding: 0.7rem 1rem; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 0.92rem; }
.ec-file.show { display: flex; }
.ec-file-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.35; min-width: 0; }
.ec-fileinfo { color: var(--muted); font-size: 0.8em; margin-top: 1px; }
.ec-file button { background: none; border: none; color: var(--muted); display: inline-flex; }
.ec-file button:hover { color: var(--coral); }
.ec-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }
.ec-loading { display: none; text-align: center; padding: 2.4rem 0; }
.ec-loading.show { display: block; }
.ec-spinner { width: 42px; height: 42px; margin: 0 auto 1rem; border: 3px solid var(--surface-2); border-top-color: var(--accent-fg); border-radius: 50%; animation: ecspin 0.8s linear infinite; }
@keyframes ecspin { to { transform: rotate(360deg); } }
.ec-loading p { color: var(--muted); }
.ec-status { display: none; margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--r-md); font-size: 0.9rem; }
.ec-status.show { display: block; }
.ec-status.err { background: rgba(242,161,143,0.12); border: 1px solid rgba(242,161,143,0.3); color: var(--coral); }
.ec-status.info { background: rgba(143,182,242,0.12); border: 1px solid rgba(143,182,242,0.3); color: var(--sky); }

.ec-result { display: none; margin-top: 2rem; }
.ec-result.show { display: block; animation: wzIn 0.4s var(--ease); }
.ec-res-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.4rem 1.6rem; }
.ec-res-head h2 { font-size: 1.4rem; }
.ec-res-head .sub { color: var(--muted); font-size: 0.9rem; margin-top: 0.2rem; }
.ec-ampel { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: var(--r-pill); font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; }
.ec-ampel .dot { width: 10px; height: 10px; border-radius: 50%; }
.ec-ampel.gruen { background: rgba(200,245,96,0.12); color: var(--accent-fg); } .ec-ampel.gruen .dot { background: var(--accent); }
.ec-ampel.gelb { background: rgba(240,199,126,0.14); color: var(--amber); } .ec-ampel.gelb .dot { background: var(--amber); }
.ec-ampel.rot { background: rgba(242,161,143,0.14); color: var(--coral); } .ec-ampel.rot .dot { background: var(--coral); }

.ec-section { margin-top: 1.8rem; }
.ec-section h3 { font-size: 1.1rem; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.ec-checklist { display: flex; flex-direction: column; gap: 0.55rem; }
.ec-item { display: flex; gap: 0.85rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 0.85rem 1.1rem; }
.ec-item .ec-mark { width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ec-item .ec-mark svg { width: 15px; height: 15px; }
.ec-item.vorhanden .ec-mark { background: rgba(200,245,96,0.15); color: var(--accent-fg); }
.ec-item.fehlt .ec-mark { background: rgba(242,161,143,0.16); color: var(--coral); }
.ec-item.unklar .ec-mark { background: rgba(240,199,126,0.16); color: var(--amber); }
.ec-item b { font-size: 0.96rem; display: block; }
.ec-item span { color: var(--muted); font-size: 0.88rem; }
.ec-list { display: flex; flex-direction: column; gap: 0.5rem; }
.ec-list li { color: var(--text-soft); padding-left: 1.4rem; position: relative; line-height: 1.6; }
.ec-list li::before { content: ""; position: absolute; left: 2px; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.ec-disclaimer { margin-top: 1.8rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1rem 1.2rem; font-size: 0.84rem; color: var(--muted); }

/* ---------- Magazin / Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--t-mid) var(--ease), border-color var(--t-fast); }
.post-card:hover { transform: translateY(-4px); border-color: var(--border-2); }
.post-thumb { aspect-ratio: 16 / 9; position: relative; overflow: hidden; }
.post-thumb svg { width: 100%; height: 100%; display: block; }
.post-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-fg); }
.post-card h3 { font-size: 1.18rem; margin: 0.6rem 0 0.5rem; line-height: 1.25; }
.post-card p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.post-meta { display: flex; gap: 0.8rem; color: var(--muted-2); font-size: 0.82rem; margin-top: 1rem; }
.post-card--feature { grid-column: span 3; display: grid; grid-template-columns: 1.1fr 1fr; }
.post-card--feature .post-thumb { aspect-ratio: auto; height: 100%; min-height: 280px; }
.post-card--feature .post-body { padding: clamp(1.6rem, 3vw, 2.6rem); justify-content: center; }
.post-card--feature h3 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.post-card--feature p { font-size: 1.02rem; color: var(--text-soft); }
@media (max-width: 860px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .post-card--feature, .post-card--feature .post-thumb { grid-column: span 2; } .post-card--feature { grid-template-columns: 1fr; } .post-card--feature .post-thumb { min-height: 200px; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } .post-card--feature, .post-card--feature .post-thumb { grid-column: span 1; } }

/* Artikel */
.article { max-width: 768px; margin-inline: auto; }
.article-meta { display: flex; gap: 0.9rem; align-items: center; flex-wrap: wrap; color: var(--muted); font-size: 0.9rem; margin-top: 1.2rem; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.article-cover { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); margin: clamp(1.6rem, 4vw, 2.6rem) 0; aspect-ratio: 16 / 9; }
.article-cover svg { width: 100%; height: 100%; }
.prose-article > p { color: var(--text-soft); font-size: 1.07rem; line-height: 1.8; margin-bottom: 1.35rem; }
.prose-article > p:first-of-type { font-size: 1.18rem; color: var(--text); }
.prose-article h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.6rem 0 1rem; }
.prose-article h3 { font-size: 1.22rem; margin: 1.9rem 0 0.7rem; }
.prose-article ul { margin: 0 0 1.4rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.prose-article li { color: var(--text-soft); padding-left: 1.5rem; position: relative; line-height: 1.7; }
.prose-article li::before { content: ""; position: absolute; left: 2px; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.prose-article strong { color: var(--text); }
.prose-article a { color: var(--accent-fg); text-decoration: underline; }
.article-quote { border-left: 3px solid var(--accent); padding: 0.2rem 0 0.2rem 1.3rem; margin: 2rem 0; font-family: var(--font-head); font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.4; color: var(--text); letter-spacing: -0.01em; }
.pull-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.pull-stats .ps { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.3rem; }
.pull-stats .ps b { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--accent-fg); letter-spacing: -0.02em; }
.pull-stats .ps span { color: var(--muted); font-size: 0.86rem; }
@media (max-width: 600px) { .pull-stats { grid-template-columns: 1fr; } }
.article-sources { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--border); font-size: 0.86rem; color: var(--muted); }
.article-sources a { color: var(--text-soft); }
.article-note { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 1rem 1.2rem; font-size: 0.86rem; color: var(--muted); margin-top: 1.6rem; }
.article-back { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--muted); font-size: 0.92rem; }
.article-back:hover { color: var(--text); }
.article-back svg { width: 17px; height: 17px; }

/* Produktformen-Raster (Leistungen) */
.forms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 760px) { .forms-grid { grid-template-columns: repeat(2, 1fr); } }
.form-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.5rem 1.1rem; text-align: center; transition: transform var(--t-mid) var(--ease), border-color var(--t-fast); }
.form-tile:hover { transform: translateY(-4px); border-color: var(--border-2); }
.form-tile .fi { width: 58px; height: 58px; margin: 0 auto 0.9rem; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.form-tile .fi svg { width: 30px; height: 30px; }
.form-tile h4 { font-size: 1.04rem; font-family: var(--font-head); }
.form-tile small { color: var(--muted); font-size: 0.8rem; display: block; margin-top: 0.25rem; }

/* Fulfillment-Ablauf (Leistungen) */
.fl-flow { display: flex; flex-direction: column; gap: 0.55rem; }
.fl-step { display: flex; align-items: center; gap: 0.9rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 0.85rem 1.1rem; }
.fl-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fl-ic svg { width: 22px; height: 22px; }
.fl-step strong { display: block; font-family: var(--font-head); font-size: 1rem; letter-spacing: -0.01em; }
.fl-step small { color: var(--muted); font-size: 0.82rem; }
.fl-arrow { display: flex; justify-content: center; }
.fl-arrow svg { width: 22px; height: 22px; }

.wz-send { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 0.6rem; }
.wz-send .btn { width: 100%; }
@media (max-width: 520px) { .wz-send { grid-template-columns: 1fr; } }
.wz-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* mode-select cards (Produkt vs Rohstoff) */
.wz-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wz-mode { text-align: left; padding: 1.6rem; border-radius: var(--r-lg); border: 1px solid var(--border-2); background: var(--surface); color: var(--text); transition: transform var(--t-fast) var(--ease), border-color var(--t-fast), background var(--t-fast); }
.wz-mode:hover { transform: translateY(-3px); border-color: var(--accent-fg); background: var(--surface-2); }
.wz-mode .wz-mode-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.wz-mode .wz-mode-ic svg { width: 24px; height: 24px; color: var(--accent-fg); }
.wz-mode h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.wz-mode p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 560px) { .wz-modes { grid-template-columns: 1fr; } }

/* raw-material picker */
.wz-picker .search-box { margin-bottom: 0.8rem; }
.wz-pick-results { display: flex; flex-direction: column; gap: 0.4rem; }
.wz-pick-res { display: flex; align-items: center; gap: 0.7rem; width: 100%; text-align: left; padding: 0.7rem 0.9rem; border-radius: var(--r-md); border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 0.96rem; transition: border-color var(--t-fast), background var(--t-fast); }
.wz-pick-res:hover { border-color: var(--accent-fg); background: var(--surface-2); }
.wz-pick-res .wz-pick-cat { margin-left: auto; font-size: 0.74rem; color: var(--muted); white-space: nowrap; }
.wz-pick-res .wz-pick-plus, .wz-pick-res .wz-pick-added { width: 24px; height: 24px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; flex-shrink: 0; }
.wz-pick-res .wz-pick-plus { background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); }
.wz-pick-res .wz-pick-added { background: var(--accent); color: var(--accent-ink); }
.wz-pick-none { color: var(--muted); font-size: 0.92rem; padding: 0.6rem 0.2rem; }
.wz-pick-selected { margin-top: 1rem; }
.wz-pick-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.wz-chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.4rem 0.4rem 0.85rem; border-radius: var(--r-pill); background: rgba(200,245,96,0.1); border: 1px solid rgba(200,245,96,0.3); color: var(--text); font-size: 0.88rem; }
.wz-chip button { width: 20px; height: 20px; border-radius: 50%; border: none; background: var(--surface-2); color: var(--muted); display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; line-height: 1; }
.wz-chip button:hover { color: var(--coral); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-hero .display { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-top: 1.2rem; }
.page-hero .lead { margin-top: 1.2rem; max-width: 52ch; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb a:hover { color: var(--text); }

/* ---------- Content blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.prose p { color: var(--text-soft); margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }

.value-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.value-list li { display: flex; gap: 1rem; }
.value-list .vl-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value-list .vl-icon svg { width: 21px; height: 21px; color: var(--accent-fg); }
.value-list h4 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.value-list p { font-size: 0.92rem; color: var(--muted); }

.media-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem; position: relative; overflow: hidden;
}

/* spec table generic */
.spec-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.spec-table th, .spec-table td { padding: 0.95rem 1.2rem; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.spec-table thead th { background: var(--surface-2); color: var(--text); font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; letter-spacing: 0.03em; }
.spec-table td { color: var(--text-soft); }
.spec-table tr:last-child td { border-bottom: none; }

/* faq */
.faq { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; background: none; border: none; color: var(--text); font-family: var(--font-head); font-weight: 500; font-size: 1.02rem; text-align: left; }
.faq-q svg { width: 20px; height: 20px; color: var(--accent-fg); flex-shrink: 0; transition: transform var(--t-fast); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t-mid) var(--ease); }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: clamp(3rem, 6vw, 5rem); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 1rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; font-weight: 500; }
.footer-col a { display: block; color: var(--text-soft); font-size: 0.94rem; padding: 0.3rem 0; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--accent-fg); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.85rem; }
.footer-bottom .legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--text); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.07s; }
[data-reveal-delay="2"] { transition-delay: 0.14s; }
[data-reveal-delay="3"] { transition-delay: 0.21s; }
[data-reveal-delay="4"] { transition-delay: 0.28s; }

/* ---------- Mobile nav panel ---------- */
.mobile-panel {
  position: fixed; inset: 74px 0 0 0; z-index: 99;
  background: var(--bg); padding: 1.5rem var(--gut);
  transform: translateX(100%); transition: transform var(--t-mid) var(--ease);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel a { padding: 1rem 0.5rem; font-size: 1.15rem; font-family: var(--font-head); border-bottom: 1px solid var(--border); }
.mobile-panel .btn { margin-top: 1.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: 0; }
  .form-wrap { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .bento > .tile, .bento > .tile.wide, .bento > .tile.half { grid-column: span 6; }
  .bento > .tile.full { grid-column: span 12; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cart-label { display: none; }
  .nav-toggle { display: inline-flex; }
  .bento > .tile, .bento > .tile.wide, .bento > .tile.half, .bento > .tile.full { grid-column: span 12; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================================
   Light Mode — nur Neutralfarben getauscht; Lime-Flaechen bleiben erhalten
   ========================================================================== */
[data-theme="light"] {
  --bg:          #F3F4EF;
  --bg-2:        #ECEEE7;
  --surface:     #FFFFFF;
  --surface-2:   #F4F5F0;
  --surface-3:   #E7E9E1;
  --border:      rgba(20, 22, 27, 0.10);
  --border-2:    rgba(20, 22, 27, 0.18);
  --text:        #16181D;
  --text-soft:   #353A42;
  --muted:       #5C636D;
  --muted-2:     #888E98;
  --accent-fg:   #3F6D12;
  --glow-accent: rgba(200, 245, 96, 0.22);
  --shadow-sm: 0 2px 8px rgba(20,22,27,0.06);
  --shadow-md: 0 14px 40px rgba(20,22,27,0.10);
  --shadow-lg: 0 30px 80px rgba(20,22,27,0.14);
}
[data-theme="light"] .site-header { background: rgba(244, 245, 239, 0.82); }
[data-theme="light"] .site-header.scrolled { background: rgba(244, 245, 239, 0.94); }
[data-theme="light"] body::before {
  background:
    radial-gradient(60vw 50vh at 80% -10%, rgba(200,245,96,0.10), transparent 60%),
    radial-gradient(50vw 40vh at 0% 10%, rgba(143,182,242,0.07), transparent 55%);
}

/* Theme-Umschalter */
.theme-toggle { position: fixed; left: 1.1rem; bottom: 1.1rem; z-index: 90; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-2); background: var(--surface); color: var(--text); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast); }
.theme-toggle:hover { background: var(--surface-2); border-color: var(--accent); transform: translateY(-2px); }
.theme-toggle svg { width: 19px; height: 19px; }
/* Kacheln/Karten bleiben auch im Light-Mode dunkel (nur Seite + Flaechentext getauscht) */
[data-theme="light"] .tile,
[data-theme="light"] .product,
[data-theme="light"] .post-card,
[data-theme="light"] .media-card,
[data-theme="light"] .cta-band,
[data-theme="light"] .form-tile {
  --surface:   #1F232B;
  --surface-2: #262B34;
  --surface-3: #2E343E;
  --bg-2:      #181B21;
  --border:    rgba(255, 255, 255, 0.08);
  --border-2:  rgba(255, 255, 255, 0.14);
  --text:      #F4F5F2;
  --text-soft: #D2D6DC;
  --muted:     #969BA5;
  --muted-2:   #6C727C;
  --accent-fg: var(--accent);
  color: var(--text);
}
/* Echte Bilder in Magazin-Kacheln und Artikel-Covern */
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Vollbild-Bildbanner (Leistungen, Qualitaet usw.) */
.media-shot { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.media-shot img { width: 100%; display: block; aspect-ratio: 16 / 6; object-fit: cover; }
@media (max-width: 700px) { .media-shot img { aspect-ratio: 16 / 9; } }
/* Video-Banner (stummer Loop) */
.media-video { margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); position: relative; }
.media-video video { width: 100%; display: block; aspect-ratio: 16 / 8; object-fit: cover; background: var(--bg-2); }
@media (max-width: 700px) { .media-video video { aspect-ratio: 16 / 10; } }
/* Vertikales Video-Showcase (Behind the Scenes) */
.video-split { display: grid; grid-template-columns: 1fr 0.72fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.video-split .vframe { margin: 0; max-width: 330px; justify-self: center; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-2); box-shadow: var(--shadow-lg); }
.video-split .vframe video { width: 100%; display: block; aspect-ratio: 9 / 16; object-fit: cover; background: var(--bg-2); }
@media (max-width: 760px) { .video-split { grid-template-columns: 1fr; } .video-split .vframe { max-width: 300px; } }
/* Solide Anthrazit-Boxen (kein Tint-Verlauf) — einheitlich wie Rohstoffe/Rezepturen */
.tile[data-tint] { background: var(--surface); }
.cta-band { background: var(--surface); }
/* Kapsel-Balken in Schwarz-Rot-Gold (Deutsche Produktion) */
.capsule-deco i:nth-child(1) { background: linear-gradient(180deg, #3a3e47, #0f1115); }
.capsule-deco i:nth-child(2) { background: linear-gradient(180deg, #e4262b, #af0610); }
.capsule-deco i:nth-child(3) { background: linear-gradient(180deg, #ffd24a, #efbe00); }