/* Selbst gehostete Schriften — lokal ausgeliefert, kein Google-CDN/Drittanbieter-Request (DSGVO/TTDSG) */
@font-face{font-family:'Geist Mono';font-style:normal;font-weight:400 500;font-display:swap;src:url(../fonts/geist-mono.woff2) format('woff2');}   /* Schnitte: 400, 500 */
@font-face{font-family:'Inter';font-style:normal;font-weight:400 600;font-display:swap;src:url(../fonts/inter.woff2) format('woff2');}   /* Schnitte: 400, 500, 600 */
@font-face{font-family:'Space Grotesk';font-style:normal;font-weight:500 700;font-display:swap;src:url(../fonts/space-grotesk.woff2) format('woff2');}   /* Schnitte: 500, 700 */

/* ==========================================================================
   PackFlow — style.css
   Mobile-first. Design tokens & rules per CLAUDE.md (Brand Book Edition 2026).
   Struktur:
     1. Design Tokens (:root)
     2. Reset & Base
     3. Typografie
     4. Layout (Container, Sections)
     5. Utilities (Eyebrow, a11y)
     6. Komponenten (Buttons, Cards, Chips, Stat)
     7. Header & Navigation
     8. Sektionen (Hero, Problem, Lösung, Ablauf, Automation, Team, Beweis, CTA)
     9. Footer
    10. Motion & Reveal
    11. Responsive Breakpoints
   ========================================================================== */

/* 1. Design Tokens ------------------------------------------------------- */
:root {
  /* Marke / Flächen */
  --forest: #0D2239;
  --forest-panel: #17314B;
  --forest-deep: #011128;

  /* Neutral hell */
  --canvas: #FFFFFF;
  --canvas-soft: #F3F6F1;

  /* Akzent — PackFlow Green (einziger Akzent) */
  --lime: #00B51A;
  --lime-hover: #12CC2B;
  --lime-deep: #00801A;
  --lime-pale: #DFF7E2;
  --on-primary: #011128;

  /* Text */
  --on-dark: #FFFFFF;
  --on-dark-mute: #9FB2C6;
  --ink: #0E1A12;
  --body: #3E4B43;
  --mute: #7C887F;

  /* Semantik / Nebenfarben */
  --negative: #E0524A;
  --blueprint: #6FA8D8;
  --positive: #1FA968;

  /* Schrift */
  --fd: 'Space Grotesk', system-ui, sans-serif;
  --fb: 'Inter', system-ui, sans-serif;
  --fm: 'Geist Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --radius: 10px;
  --radius-lg: 16px;
  --hairline: 1px solid rgba(255, 255, 255, .10);
  --section-pad-y: clamp(56px, 7vw, 96px);
  --section-pad-x: clamp(20px, 6vw, 88px);
  --gap: clamp(16px, 2vw, 24px);

  --header-h: 72px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* 2. Reset & Base ------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--forest-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, p { margin: 0; }

button { font: inherit; cursor: pointer; }

::selection { background: var(--lime); color: var(--on-primary); }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 3. Typografie --------------------------------------------------------- */
.display {
  font-family: var(--fd);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

h1 { font-family: var(--fd); font-weight: 700; }
h2 { font-family: var(--fd); font-weight: 700; }
h3 { font-family: var(--fd); font-weight: 700; }

.section__title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: 20ch;
}

.section__lead {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
  margin-top: 16px;
}

/* Mono-Zahl — die Zahlen-Signatur */
.num {
  font-family: var(--fm);
  font-weight: 500;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* 4. Layout ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 32px);
}

.section {
  padding-block: var(--section-pad-y);
}

.section--light { background: var(--canvas); color: var(--ink); }
.section--soft  { background: var(--canvas-soft); color: var(--ink); }
.section--navy  { background: var(--forest); color: var(--on-dark); }
.section--deep  { background: var(--forest-deep); color: var(--on-dark); }

/* 5. Utilities ---------------------------------------------------------- */
.eyebrow {
  font-family: var(--fm);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin: 0 0 20px;
}

.section--navy .eyebrow,
.section--deep .eyebrow { color: var(--lime); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 1000;
  background: var(--lime);
  color: var(--on-primary);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: top .16s var(--ease);
}
.skip-link:focus { top: 16px; }

.text-mute-dark { color: var(--on-dark-mute); }
.text-body { color: var(--body); }

/* 6. Komponenten -------------------------------------------------------- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .12s ease, transform .12s ease, border-color .12s ease, color .12s ease;
}
.btn:active { transform: scale(.98); }

.btn--primary { background: var(--lime); color: var(--on-primary); }
.btn--primary:hover { background: var(--lime-hover); }

.btn--ghost-dark {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, .45);
}
.btn--ghost-dark:hover { background: var(--forest-panel); }

.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-light:hover { background: var(--ink); color: var(--canvas); }

/* Eyebrow-Label as inline (numbered) */
.kicker {
  font-family: var(--fm);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lime);
}

/* Cards */
.card {
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .16s var(--ease), border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.card--light {
  background: var(--canvas);
  border: 1px solid rgba(14, 26, 18, .12);
}
.card--light:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 26, 18, .22);
  box-shadow: 0 12px 28px rgba(13, 34, 57, .10);
}
.card--navy {
  background: var(--forest-panel);
  border: var(--hairline);
  color: var(--on-dark);
}
.card--navy:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .22);
}
@media (prefers-reduced-motion: reduce) {
  .card--light:hover,
  .card--navy:hover { transform: none; }
}

.card__title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.3px;
  margin-bottom: 10px;
}
.card--navy .card__title { color: var(--on-dark); }
.card__text { font-size: 15px; line-height: 1.53; color: var(--body); }
.card--navy .card__text { color: var(--on-dark-mute); }

/* Chips (Integrations) */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--fm);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--blueprint);
  border: 1px solid var(--blueprint);
  border-radius: 8px;
  padding: 9px 16px;
}

/* Feature block w/ top rule */
.feature {
  border-top: 2px solid var(--lime);
  padding-top: 20px;
}
.feature__title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.3px;
  margin-bottom: 10px;
}
.feature__text { font-size: 15px; line-height: 1.53; color: var(--body); }
.section--navy .feature__title,
.section--deep .feature__title { color: var(--on-dark); }
.section--navy .feature__text,
.section--deep .feature__text { color: var(--on-dark-mute); }

/* Grids */
.grid { display: grid; gap: var(--gap); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }

/* 7. Header & Navigation ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--forest-deep) 88%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: var(--hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 28px; width: auto; }

.primary-nav { display: none; }
.primary-nav ul { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark-mute);
  text-decoration: none;
  transition: color .12s ease;
}
.primary-nav a:hover { color: var(--on-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 11px 18px; }
.header-cta-desktop { display: none; }

/* Mobile menu toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--on-dark);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

/* Mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: var(--forest-deep);
  padding: 32px clamp(20px, 5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.mobile-nav[data-open="true"] { opacity: 1; transform: none; visibility: visible; }
.mobile-nav a {
  font-family: var(--fd);
  font-weight: 500;
  font-size: 22px;
  color: var(--on-dark);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: var(--hairline);
}
.mobile-nav__label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--lime);
  margin: 4px 0 0;
}
.mobile-nav .btn { margin-top: 20px; justify-content: center; }

/* 8. Sektionen ---------------------------------------------------------- */

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 80% 0%, var(--forest) 0%, var(--forest-deep) 60%);
  color: var(--on-dark);
  padding-block: clamp(56px, 9vw, 120px);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 100%);
}
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.hero__title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  hyphens: none;
  text-wrap: balance;
}
.hero__claim {
  display: block;
  color: var(--lime);
}
.hero__claim-rotator {
  display: inline-block;
  min-height: 1.05em;
}
.claim-caret {
  display: inline-block;
  width: .06em;
  height: .9em;
  margin-left: .04em;
  background: var(--lime);
  vertical-align: -.08em;
  animation: caret-blink 1s steps(1) infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
.hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--on-dark-mute);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__pct { color: var(--lime); font-family: var(--fd); font-weight: 700; letter-spacing: -.01em; }
.hero__sub {
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--on-dark-mute);
  max-width: 54ch;
  margin: 22px 0 32px;
}
.hero__brand-inline {
  height: 1.1em;
  width: auto;
  vertical-align: -.16em;
  margin-right: .1em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Claim + Typewriter als Intro von "So arbeitet PackFlow" */
.steps-claim {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--on-dark);
  max-width: 22ch;
  margin: 0 0 32px;
}
.steps-claim .hero__claim { margin-top: .08em; }

/* Brand-Element: Kartonkarte — realistische Wellpappe (glatte Decklage + Schnittkante) */
.kartonkarte {
  /* Flöten-Profil der Schnittkante — gerundet über viele Stops, Pitch 11 px */
  --flute: repeating-linear-gradient(90deg,
    #5c4529 0px,
    #6d5535 1.4px,
    #886a42 2.8px,
    #ac8f5b 4.2px,
    #d6c295 5.5px,
    #ac8f5b 6.8px,
    #886a42 8.2px,
    #6d5535 9.6px,
    #5c4529 11px);
  --wave: 12px;  /* Wellenperiode der Schnittkante */
  --amp: 6px;    /* Wellenhöhe der Schnittkante */
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Kraft-Decklage: warmer Grundverlauf + weiche Papier-Wolken (Mottle) */
  background:
    radial-gradient(135% 80% at 20% 8%, rgba(255, 250, 238, .50), transparent 42%),
    radial-gradient(85% 65% at 86% 24%, rgba(120, 92, 52, .12), transparent 55%),
    radial-gradient(95% 70% at 55% 96%, rgba(120, 92, 52, .15), transparent 60%),
    linear-gradient(158deg, #D9C098 0%, #CEB388 52%, #C2A575 100%);
  border-radius: 2px;
  padding: clamp(26px, 4vw, 36px) clamp(26px, 4vw, 36px) calc(clamp(26px, 4vw, 36px) + 20px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 250, 238, .38);
  transform: rotate(-1.4deg);
  transition: transform .3s var(--ease);
  /* unregelmäßig gewellte Unterkante (zwei phasenversetzte Wellenlagen) */
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - var(--amp)) no-repeat,
    radial-gradient(circle var(--amp) at 50% 100%, #000 calc(var(--amp) - .8px), transparent calc(var(--amp) - .3px)) bottom left / var(--wave) var(--wave) repeat-x,
    radial-gradient(circle 3px at 50% 100%, #000 2.2px, transparent 2.7px) bottom left 5px / 7px 7px repeat-x;
  mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - var(--amp)) no-repeat,
    radial-gradient(circle var(--amp) at 50% 100%, #000 calc(var(--amp) - .8px), transparent calc(var(--amp) - .3px)) bottom left / var(--wave) var(--wave) repeat-x,
    radial-gradient(circle 3px at 50% 100%, #000 2.2px, transparent 2.7px) bottom left 5px / 7px 7px repeat-x;
}
.kartonkarte:hover { transform: rotate(0deg); }
/* feine vertikale Papierfasern auf der Decklage (dezent) */
.kartonkarte__rib {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .9;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='k'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='0.16' intercept='0.84'/%3E%3CfeFuncG type='linear' slope='0.16' intercept='0.84'/%3E%3CfeFuncB type='linear' slope='0.16' intercept='0.84'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23k)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, rgba(110, 86, 50, .05) 0 1px, transparent 1px 4px);
  background-size: 220px 220px, auto;
}
/* obere Lichtkante der Decklage */
.kartonkarte__seam {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 1;
  background: linear-gradient(rgba(255, 253, 245, .6), rgba(255, 253, 245, 0));
  pointer-events: none;
}
/* Wellpappe-Schnittkante unten: Flöten zwischen zwei Decklagen, mit Tiefenschatten */
.kartonkarte::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 24px;
  z-index: 1;
  background:
    linear-gradient(#efe4c8, #e0cfad) top / 100% 3px no-repeat,
    linear-gradient(180deg, rgba(40, 26, 12, 0) 48%, rgba(40, 26, 12, .45) 100%),
    var(--flute);
  box-shadow: inset 0 2px 3px rgba(40, 26, 12, .30);
  pointer-events: none;
}
.kartonkarte > :not(.kartonkarte__rib):not(.kartonkarte__seam) { position: relative; z-index: 2; }
.kartonkarte__label {
  font-family: var(--fm);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #75654A;
  margin-bottom: 12px;
}
.kartonkarte__num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 56px);
  line-height: 1;
  letter-spacing: -1px;
  color: #2E2A1F;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
/* Zähl-Zahl in fester Box → nur die Ziffern ändern sich, "%" bleibt stehen (flüssiger Count-up) */
.kartonkarte__count {
  display: inline-block;
  min-width: 1.35em;
  text-align: left;
}
.kartonkarte__caption {
  font-size: 14px;
  line-height: 1.5;
  color: #5C513C;
  margin: 14px 0 20px;
  max-width: 44ch;
}
.kartonkarte__list { display: grid; gap: 11px; }
.kartonkarte__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #4A4133;
}
.check {
  flex: none;
  width: 22px; height: 22px;
  color: var(--lime-deep);
  margin-top: 1px;
}
.contact__trust .check,
.savings-dark .check { color: var(--lime); }

/* Problem list */
.pain-list { display: grid; gap: 16px; margin-top: 8px; }
.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--canvas);
  border: 1px solid rgba(14, 26, 18, .12);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform .16s var(--ease), border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.pain-item:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 26, 18, .22);
  box-shadow: 0 12px 28px rgba(13, 34, 57, .10);
}
@media (prefers-reduced-motion: reduce) {
  .pain-item:hover { transform: none; }
}
.pain-item__icon { flex: none; width: 26px; height: 26px; color: var(--negative); }
.pain-item h3 {
  font-family: var(--fb);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
}
.pain-item p { font-size: 15px; line-height: 1.53; color: var(--body); }

/* Steps */
.steps { list-style: none; padding-left: 0; }
.steps > li { list-style: none; }
/* Kopfzeile der Step-Karte: Icon links, grüne Schrittzahl rechts */
.step-head {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.step-head .feature-icon { margin-bottom: 0; }
.step-no {
  font-family: var(--fm);
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--lime);
}
/* kleinere Section-Überschrift im Steps-Abschnitt */
.steps-h2 { font-size: clamp(20px, 2.6vw, 30px); }
.step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--lime-pale);
  color: var(--lime-deep);
  font-family: var(--fm);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 18px;
}
.section--navy .step__index,
.section--deep .step__index {
  background: rgba(0, 181, 26, .14);
  color: var(--lime);
}

/* Stat (proof) */
.stat__num {
  font-family: var(--fm);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--lime);
  display: block;
}
.section--light .stat__num,
.section--soft .stat__num { color: var(--lime-deep); }
.stat__label {
  font-family: var(--fm);
  font-size: 13px;
  color: var(--mute);
  margin-top: 14px;
}
.section--navy .stat__label,
.section--deep .stat__label { color: var(--on-dark-mute); }

/* Integrations row */
.integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* CTA section */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta .container { position: relative; z-index: 1; max-width: var(--container-narrow); }
.cta__title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.cta__lead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--on-dark-mute);
  max-width: 52ch;
  margin: 0 auto 32px;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta__lead a { color: var(--lime); text-decoration: none; }
.cta__lead a:hover { text-decoration: underline; }

/* Danke-Seite (No-JS-Fallback) */
.thanks { min-height: 80vh; display: flex; align-items: center; }
.thanks__logo { margin: 0 auto 32px; }

/* --- Subpages (Leistungen, Hersteller, Rechtstexte) --- */
.subhero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 120% at 82% 0%, var(--forest) 0%, var(--forest-deep) 62%);
  color: var(--on-dark);
  padding-block: clamp(56px, 8vw, 104px);
}
.subhero .hero__grid { z-index: 0; }
.subhero .container { position: relative; z-index: 1; }
.subhero__title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 12px 0 18px;
  max-width: 18ch;
  /* Lange Komposita ("Verpackungsoptimierung") sauber umbrechen:
     Silbentrennung (nutzt lang="de") + Notbremse gegen Overflow */
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}
.subhero__lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--on-dark-mute);
  max-width: 56ch;
  margin-bottom: 32px;
}
.breadcrumb {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: .4px;
  color: var(--on-dark-mute);
  margin-bottom: 8px;
}
.breadcrumb a { color: var(--on-dark-mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--lime); }

.feature-list { display: grid; gap: var(--gap); margin-top: 8px; }
.feature-list .feature { background: none; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: #ECE8DF;
  color: var(--body);
  margin-bottom: 16px;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.feature-icon svg { width: 24px; height: 24px; }
/* Icon-Box wird beim Überfahren der Karte grün */
.card:hover .feature-icon {
  background: var(--lime-pale);
  color: var(--lime-deep);
}

.legal-body {
  max-width: 760px;
  margin-inline: auto;
}
.legal-card {
  background: var(--canvas);
  border: 1px solid rgba(14, 26, 18, .12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
}
.legal-card :is(h2, h3) { font-family: var(--fd); color: var(--ink); margin: 24px 0 10px; }
.legal-card h2 { font-size: 20px; }
.legal-card p, .legal-card li { color: var(--body); font-size: 16px; line-height: 1.62; }
.legal-note {
  font-family: var(--fm);
  font-size: 13px;
  color: var(--mute);
  border-top: 1px solid rgba(14, 26, 18, .12);
  margin-top: 28px;
  padding-top: 16px;
}
.legal-placeholder {
  display: grid;
  gap: 10px;
  place-items: center;
  text-align: center;
  min-height: 180px;
  border: 1px dashed var(--blueprint);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--mute);
}
.legal-iframe {
  width: 100%;
  min-height: 900px;
  border: 0;
}

/* 9. Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--on-dark-mute);
  padding-block: clamp(48px, 6vw, 72px) 32px;
  border-top: var(--hairline);
}
.footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
.footer__brand img { height: 30px; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 40ch; }
.footer__col h2 {
  font-family: var(--fm);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-bottom: 16px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a {
  font-size: 15px;
  color: var(--on-dark);
  text-decoration: none;
  transition: color .12s ease;
}
.footer__col a:hover { color: var(--lime); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: var(--hairline);
  font-family: var(--fm);
  font-size: 12px;
  color: var(--on-dark-mute);
}
.footer__bottom nav { display: flex; gap: 20px; }
.footer__bottom a { text-decoration: none; color: var(--on-dark-mute); }
.footer__bottom a:hover { color: var(--lime); }

/* 10. Motion & Reveal --------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --- Accent inline (headings) --- */
.accent { color: var(--lime); }
.section--light .accent,
.section--soft .accent { color: var(--lime-deep); }

/* --- Desktop dropdown (CSS-only, keyboard via :focus-within) --- */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark-mute);
  transition: color .12s ease;
}
.nav-dropdown__trigger:hover,
.nav-dropdown:focus-within .nav-dropdown__trigger { color: var(--on-dark); }
.nav-dropdown__trigger .chev { transition: transform .18s var(--ease); }
.nav-dropdown:hover .nav-dropdown__trigger .chev,
.nav-dropdown:focus-within .nav-dropdown__trigger .chev { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  display: block;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: var(--forest-panel);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
.nav-dropdown__menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  color: var(--on-dark-mute);
  text-decoration: none;
  transition: background .12s ease, color .12s ease;
}
.nav-dropdown__menu a:hover { background: rgba(255, 255, 255, .06); color: var(--on-dark); }
.nav-dropdown__menu a[aria-current="page"] { color: var(--on-dark); background: rgba(255, 255, 255, .06); }

/* --- Cards row spacing --- */
.cards-row { margin-top: 40px; }

/* --- Inset CTA panel (Lösung) --- */
.inset-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--forest);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
}
.inset-cta__title {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -.3px;
  margin-bottom: 8px;
}
.inset-cta__text { color: var(--on-dark-mute); font-size: 15px; max-width: 46ch; }
.inset-cta .btn { flex: none; }

/* Brand-Element: Blueprint-Graph — Daten, Trends, Beweisführung */
.blueprint {
  display: grid;
  gap: 24px;
  align-items: center;
  margin: 40px 0 0;
  padding: clamp(20px, 3vw, 28px);
  background: var(--forest-panel);
  border: 1px solid var(--forest-deep);
  border-radius: var(--radius-lg);
}
.blueprint__svg {
  width: 100%;
  height: clamp(180px, 30vw, 240px);
  border-radius: var(--radius);
  background: var(--forest);
}
.blueprint__grid path { stroke: rgba(111, 168, 216, .22); stroke-width: 1; fill: none; }
.blueprint__area { fill: rgba(111, 168, 216, .12); }
.blueprint__line {
  fill: none;
  stroke: var(--blueprint);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
/* PackFlow-Punkt läuft die Kostenkurve von oben nach unten entlang */
.blueprint__runner {
  fill: var(--lime);
  filter: drop-shadow(0 0 5px rgba(0, 181, 26, .9));
  animation: bp-run 3.8s linear infinite;
}
@keyframes bp-run {
  0%   { cx: 24;  cy: 46;  opacity: 0; }
  4%   { opacity: 1; }
  19%  { cx: 80;  cy: 66; }
  38%  { cx: 136; cy: 60; }
  61%  { cx: 192; cy: 108; }
  80%  { cx: 248; cy: 120; }
  95%  { opacity: 1; }
  100% { cx: 296; cy: 158; opacity: 0; }
}
.blueprint__caption {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-dark-mute);
}
.blueprint__caption .kicker { display: block; margin-bottom: 8px; }

/* Linie zeichnet sich beim Reveal */
.blueprint[data-reveal] .blueprint__line {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}
.blueprint[data-reveal].is-visible .blueprint__line {
  transition: stroke-dashoffset 1.6s var(--ease) .1s;
  stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: reduce) {
  .blueprint__runner { animation: none; opacity: 1; cx: 296; cy: 158; }
}

@media (min-width: 720px) {
  .blueprint { grid-template-columns: 1.5fr 1fr; }
  .blueprint__svg { height: 220px; }
}

/* Contact form */
.contact { position: relative; overflow: hidden; }
.contact__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(32px, 5vw, 56px);
}
.contact__intro .cta__title { text-align: left; margin-bottom: 16px; }
.contact__intro .cta__lead { text-align: left; margin: 0 0 28px; }
.contact__trust { display: grid; gap: 12px; margin-bottom: 28px; }
.contact__trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--on-dark);
}
.contact__direct {
  font-family: var(--fm);
  font-size: 14px;
  color: var(--on-dark-mute);
}
.contact__direct a { color: var(--lime); text-decoration: none; }
.contact__direct a:hover { text-decoration: underline; }

.contact-form {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}
.form-row { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.field .req { color: var(--negative); }
.field .opt {
  font-family: var(--fm);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--mute);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas-soft);
  border: 1px solid rgba(14, 26, 18, .16);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(0, 181, 26, .18);
}
.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: var(--negative);
}
.field--check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}
.field--check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--lime); }
.field--check label { font-weight: 400; font-size: 14px; line-height: 1.5; color: var(--body); }
.field--check a { color: var(--lime-deep); }
.contact-form__submit { justify-content: center; margin-top: 4px; }
.form-status { font-size: 14px; margin: 0; min-height: 1em; }
.form-status[data-state="ok"] { color: var(--lime-deep); }
.form-status[data-state="error"] { color: var(--negative); }

/* Honeypot — für Menschen unsichtbar, nicht fokussierbar */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; white-space: nowrap;
  clip: rect(0 0 0 0); clip-path: inset(50%);
}

/* Cloudflare Turnstile */
.cf-turnstile { margin: 4px 0; min-height: 65px; }

/* Submit-Ladezustand */
.contact-form__submit[disabled] { opacity: .65; cursor: progress; }

@media (min-width: 620px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .contact__layout { grid-template-columns: 1fr 1.05fr; align-items: start; }
}

/* --- Steps closing line --- */
.steps { margin-top: 40px; }
.steps__closing {
  margin: 32px 0 24px;
  font-size: 16px;
  color: var(--on-dark-mute);
  max-width: 60ch;
}
.steps__closing strong { color: var(--on-dark); }

/* Brand-Element: Kreislauf-Motiv — Automatisierung als Orbit */
.orbit {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.orbit__chip {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: .4px;
  color: var(--on-dark-mute);
  text-align: center;
  max-width: 92%;
}
.orbit__stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
}
.orbit__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbit__ring {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
  stroke-dasharray: 3 7;
  opacity: .5;
}
.beam-guide { stroke: rgba(0, 181, 26, .30); stroke-width: 2; stroke-linecap: round; }
.beam-dot { fill: var(--lime); filter: drop-shadow(0 0 5px rgba(0, 181, 26, .95)); }

.orbit__arm {
  position: absolute;
  left: 26.25%; top: 18.33%;
  width: 47.5%; height: 63.33%;
  animation: pf-orbit-r 16s linear infinite;
}
.orbit__payload {
  position: absolute;
  top: 0; left: 50%;
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  animation: pf-orbit 16s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .18));
}
.orbit__payload svg { width: 100%; height: 100%; }

.node {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.node--left { left: 26.25%; }
.node--right { left: 73.75%; }
.node--hub { left: 50%; }
.node__disc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--canvas);
  color: var(--forest);
  border: 1px solid var(--ink);
}
.node__disc svg { width: 26px; height: 26px; }
.node__disc--hub {
  width: 76px; height: 76px;
  border-radius: 22px; /* PackFlow-Logo-Paket mit runden Ecken statt Kreis */
  background: var(--lime);
  border: none;
  box-shadow: 0 0 0 8px rgba(0, 181, 26, .16);
  animation: pf-hubflash 2s linear infinite;
}
.node__disc--hub .node__logo { width: 34px; height: auto; }
.node__label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 120px;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .3px;
  color: var(--on-dark-mute);
  text-align: center;
}

/* Orbit / Hub / Beams — phasengleich 16s */
@keyframes pf-orbit { to { transform: rotate(360deg); } }
@keyframes pf-orbit-r { to { transform: rotate(-360deg); } }
/* Hub blinkt genau dann, wenn die einlaufenden Datenpunkte die Mitte erreichen (bei 60 % des 2s-Takts). */
@keyframes pf-hubflash {
  0%, 50% { box-shadow: 0 0 0 8px rgba(0, 181, 26, .16); filter: brightness(1); }
  60% { box-shadow: 0 0 0 20px rgba(0, 181, 26, .55), 0 0 60px 14px rgba(0, 181, 26, .9); filter: brightness(1.25); }
  72%, 100% { box-shadow: 0 0 0 8px rgba(0, 181, 26, .16); filter: brightness(1); }
}
/* Datenstrahl: bidirektional — je Seite ein Punkt hinein und (zeitversetzt) einer hinaus */
@keyframes beam-right { from { transform: translateX(0) } to { transform: translateX(95px) } }
@keyframes beam-left  { from { transform: translateX(0) } to { transform: translateX(-95px) } }
.beam-right { animation: beam-right 2s linear infinite; }
.beam-left  { animation: beam-left  2s linear infinite; }
.beam-delay { animation-delay: 1s; }

/* Hero: fliegende Kartons (Conveyor + Bob + Cursor-Dodge via JS) */
.hero__flow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 58% 68% at 50% 46%, transparent 42%, #000 86%);
  mask-image: radial-gradient(ellipse 58% 68% at 50% 46%, transparent 42%, #000 86%);
}
.flybox {
  position: absolute;
  top: var(--top);
  left: 0;
  width: var(--w);
  opacity: var(--o);
  animation: pf-conv var(--dur) linear infinite;
  animation-delay: var(--delay);
}
.flybox__bob { animation: pf-bob var(--bob) ease-in-out infinite; }
.flybox__inner { will-change: transform; }
@keyframes pf-conv { from { left: -16%; } to { left: 116%; } }
@keyframes pf-bob { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-5px) } }

/* Hero-Kartonkarte: Reveal-Wrapper + perpetuelles Schweben */
.kartonkarte-wrap { position: relative; }
.kartonkarte-float { position: relative; animation: pf-float 6.5s ease-in-out 1.1s infinite; }
@media (prefers-reduced-motion: reduce) {
  .kartonkarte-float { animation: none; }
}
@keyframes pf-float { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-7px) } }

/* Step-Glow: wandernder Puls über die 3 Schritte (0 / 1,5 / 3s) */
@keyframes pf-stepglow {
  0%, 24%, 100% { box-shadow: 0 0 0 0 rgba(0, 181, 26, 0); }
  8% { box-shadow: 0 0 0 7px rgba(0, 181, 26, .22), 0 0 26px rgba(0, 181, 26, .5); }
}
@keyframes pf-stepnum { 0%, 24%, 100% { transform: scale(1) } 8% { transform: scale(1.4) } }
.steps .step__index { animation: pf-stepglow 4.5s ease-in-out infinite; }
.steps li:nth-child(2) .step__index { animation-delay: 1.5s; }
.steps li:nth-child(3) .step__index { animation-delay: 3s; }
.step__num { display: inline-block; animation: pf-stepnum 4.5s ease-in-out infinite; }
.steps li:nth-child(2) .step__num { animation-delay: 1.5s; }
.steps li:nth-child(3) .step__num { animation-delay: 3s; }

/* --- Team --- */
.team-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(14, 26, 18, .12);
  border-bottom: 1px solid rgba(14, 26, 18, .12);
}
.team-stats li { display: flex; flex-direction: column; gap: 6px; }
.team-stats .stat__label { color: var(--body); margin-top: 4px; }

.team-grid { margin-top: 8px; }
.team-card {
  background: var(--canvas);
  border: 1px solid rgba(14, 26, 18, .12);
  border-radius: var(--radius);
  padding: 28px;
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px; height: 112px;
  border-radius: 50%;
  background: var(--lime-pale);
  color: var(--lime-deep);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 44px;
  margin-bottom: 20px;
  border: 3px solid var(--lime);
}
.team-photo {
  display: block;
  width: 112px; height: 112px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  margin-bottom: 20px;
  background: var(--lime-pale);
  border: 3px solid var(--lime);
}
.team-card__name {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.3px;
  color: var(--ink);
}
.team-card__role {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin: 4px 0 16px;
}
.team-card__quote {
  font-family: var(--fd);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 16px;
  border-left: 2px solid var(--lime);
  padding-left: 14px;
}
.team-card__bio { font-size: 14px; line-height: 1.6; color: var(--body); margin-bottom: 16px; }
.team-card__focus {
  font-family: var(--fm);
  font-size: 12px;
  line-height: 1.5;
  color: var(--mute);
  padding-top: 14px;
  border-top: 1px solid rgba(14, 26, 18, .1);
}

/* Team-Foto: klickbar zum Vergrößern */
.team-photo.is-zoomable {
  cursor: zoom-in;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.team-photo.is-zoomable:hover,
.team-photo.is-zoomable:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

/* Lightbox-Overlay */
.photo-zoom {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(1, 17, 40, .82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), visibility .22s;
  cursor: zoom-out;
}
.photo-zoom.is-open { opacity: 1; visibility: visible; }
.photo-zoom__fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(.85);
  transition: transform .26s var(--ease);
}
.photo-zoom.is-open .photo-zoom__fig { transform: scale(1); }
.photo-zoom__img {
  width: clamp(220px, 72vw, 336px);
  height: clamp(220px, 72vw, 336px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 4px solid var(--lime);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  background: var(--forest-panel);
}
.photo-zoom__cap {
  font-family: var(--fm);
  font-size: 14px;
  letter-spacing: .4px;
  color: var(--on-dark);
  text-align: center;
}
/* Zitat unter dem Bild — Schreibmaschinen-Effekt */
.photo-zoom__quote {
  margin: 0;
  max-width: 34ch;
  min-height: 2.9em;
  text-align: center;
  font-family: var(--fd);
  font-weight: 500;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.42;
  color: var(--on-dark);
}
.photo-zoom__quote::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: var(--lime);
  vertical-align: -.12em;
  animation: caret-blink 1s steps(1) infinite;
}
.photo-zoom__quote.is-done::after,
.photo-zoom__quote:empty::after { display: none; }
@media (prefers-reduced-motion: reduce) {
  .photo-zoom__quote::after { display: none; }
}
.photo-zoom__close {
  position: absolute;
  top: 18px; right: 22px;
  width: 44px; height: 44px;
  font-size: 30px;
  line-height: 1;
  color: var(--on-dark);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  cursor: pointer;
  transition: background .12s ease;
}
.photo-zoom__close:hover { background: rgba(255, 255, 255, .2); }

@media (prefers-reduced-motion: reduce) {
  .photo-zoom__fig { transform: none; }
  .team-photo.is-zoomable:hover,
  .team-photo.is-zoomable:focus-visible { transform: none; }
}

/* 11. Responsive Breakpoints -------------------------------------------- */
@media (min-width: 560px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .team-stats { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

@media (min-width: 768px) {
  .cta__actions { flex-wrap: nowrap; }
}
.hero__layout { grid-template-columns: 1fr; }
.hero__layout > div { max-width: 880px; }

@media (min-width: 900px) {
  .primary-nav { display: block; }
  .header-cta-desktop { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* Anspruch + Chainflow-Schaubild (Für Hersteller & Händler) --------------- */
.anspruch {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}
.anspruch__claim {
  margin: 0;
  color: var(--on-dark);
  font-weight: 700;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.5;
  max-width: 42ch;
}

.chainflow { --d: 4.8s; width: 100%; max-width: 440px; margin: 0; }
.chainflow__svg { display: block; width: 100%; height: auto; overflow: visible; }

/* Kanten (Dreieckslinien) */
.cf-edge { fill: none; stroke-linecap: round; }
.cf-edge--strong { stroke: rgba(0, 181, 26, .55); stroke-width: 2.4; }
.cf-edge--faint  { stroke: rgba(255, 255, 255, .16); stroke-width: 1.5; }

/* Wandernder Punkt */
.cf-dot {
  fill: var(--lime);
  filter: drop-shadow(0 0 6px rgba(0, 181, 26, .95));
  animation: cf-orbit var(--d) linear infinite;
}

/* Wanderndes 3D-Paket: Lieferant (Du) → Kunde */
.cf-pkg { animation: cf-pkg-move 3s linear infinite; filter: drop-shadow(0 0 5px rgba(0, 181, 26, .6)); }
.cf-pkg__cube path { fill: none; stroke: var(--lime); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }

/* Knoten (Karton + Rahmen) */
.cf-node { color: rgba(255, 255, 255, .22); }
.cf-frame { fill: var(--forest-panel); stroke: currentColor; stroke-width: 1.4; }
.cf-carton { fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.cf-node--kunde { animation: cf-glow-kunde var(--d) linear infinite; }
.cf-node--du    { animation: cf-glow-du    var(--d) linear infinite; }
.cf-node--pf    { animation: cf-glow-pf    var(--d) linear infinite; }

/* Beschriftung */
.cf-cap {
  font-family: var(--fm);
  font-size: 12.5px;
  font-weight: 500;
  fill: var(--on-dark);
  text-anchor: middle;
}
.cf-sub {
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .6px;
  text-transform: uppercase;
  fill: var(--mute);
  text-anchor: middle;
}

@keyframes cf-orbit {
  0%   { cx: 60;  cy: 216; }
  24%  { cx: 160; cy: 60;  }
  48%  { cx: 60;  cy: 216; }
  74%  { cx: 260; cy: 216; }
  100% { cx: 60;  cy: 216; }
}
/* Paket wandert vom Lieferanten (260/216) zum Kunden (160/60), blendet an den Enden ein/aus */
@keyframes cf-pkg-move {
  0%   { transform: translate(260px, 216px); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translate(160px, 60px); opacity: 0; }
}
@keyframes cf-glow-kunde {
  0%, 20%   { color: rgba(255, 255, 255, .22); filter: none; }
  24%       { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .9)); }
  28%, 100% { color: rgba(255, 255, 255, .22); filter: none; }
}
@keyframes cf-glow-du {
  0%, 70%   { color: rgba(255, 255, 255, .22); filter: none; }
  74%       { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .9)); }
  78%, 100% { color: rgba(255, 255, 255, .22); filter: none; }
}
@keyframes cf-glow-pf {
  0%        { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .9)); }
  4%        { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .9)); }
  10%, 44%  { color: rgba(255, 255, 255, .22); filter: none; }
  48%       { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .9)); }
  52%       { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .9)); }
  58%, 96%  { color: rgba(255, 255, 255, .22); filter: none; }
  100%      { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .9)); }
}

@media (min-width: 860px) {
  .anspruch { flex-direction: row; align-items: center; gap: 52px; }
  .anspruch__claim { flex: 1 1 0; }
  .chainflow { flex: 0 0 440px; }
}

@media (prefers-reduced-motion: reduce) {
  .cf-dot, .cf-pkg { display: none; }
  .cf-node--kunde, .cf-node--du, .cf-node--pf { animation: none; color: rgba(0, 181, 26, .5); }
}

/* Inline-Wortmarke PACKFLOW — „FLOW" + Punkt in PackFlow Green */
.pf-mark {
  font-family: var(--fd);
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}
.pf-mark__f,
.pf-mark__d { color: var(--lime); }
/* auf hellem Grund den tieferen Grünton */
.section--soft .pf-mark__f,
.section--soft .pf-mark__d,
.section--light .pf-mark__f,
.section--light .pf-mark__d { color: var(--lime-deep); }
/* „PACK" auf dunklen Flächen kräftig weiß (statt gedämpftem Fließtextton) */
.section--navy .pf-mark,
.section--deep .pf-mark,
.site-footer .pf-mark { color: var(--on-dark); }

/* "Die Lösung"-Überschrift: PackFlow-Logo inline statt Textmarke */
.loesung-logo {
  height: .92em;
  width: auto;
  display: inline-block;
  vertical-align: -.16em;
  margin-left: .12em;
}

/* Footer-Logo verlinkt nach oben */
.footer__brand-link { display: inline-block; width: fit-content; transition: opacity .12s ease; }
.footer__brand-link:hover { opacity: .85; }

/* Social-Link (LinkedIn) im Footer */
.footer__social { margin-top: 18px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--on-dark);
  text-decoration: none;
  transition: color .12s ease;
}
.social-link svg { width: 20px; height: 20px; flex: none; }
.social-link:hover { color: var(--lime); }
.social-link:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* Adressen im Footer — dezent (Hauptsitz + Logistik) */
.footer__addresses {
  margin-top: 18px;
  font-style: normal;
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--on-dark-mute);
}
.footer__addr-label {
  display: block;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 1px;
}

/* Lieferanten-/Partnerformular (Seite Hersteller & Händler) */
.lieferant { max-width: 760px; margin-inline: auto; }
.lieferant-form { margin-top: 32px; text-align: left; }
.form-fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 16px; min-inline-size: 0; }
.form-fieldset + .form-fieldset {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(14, 26, 18, .12);
}
.field-legend {
  font-family: var(--fm);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--lime-deep);
  padding: 0;
}
.field-label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field-hint { font-family: var(--fm); font-size: 11px; color: var(--mute); margin: 4px 0 0; }
.check-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 4px; }
@media (min-width: 560px) { .check-grid { grid-template-columns: 1fr 1fr; } }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 4px; }
.opt-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--body);
  cursor: pointer;
}
.opt-check input {
  width: 18px; height: 18px;
  margin: 1px 0 0;
  accent-color: var(--lime);
  flex: none;
}
.file-field input[type="file"] {
  width: 100%;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--body);
  padding: 10px 12px;
  border: 1px dashed rgba(14, 26, 18, .28);
  border-radius: var(--radius);
  background: var(--canvas-soft);
  cursor: pointer;
}

/* ===== Leistungsseiten (Service) — Verpackungsoptimierung u.a. ===== */
/* Längere Überschriften brauchen mehr Breite als die 20ch-Default */
.svc .section__title { max-width: 34ch; overflow-wrap: anywhere; }
.svc .cta__title { max-width: 28ch; }
/* Fließtexte über die volle Breite (einheitlich wie Schritt 01) */
.svc .section__lead { max-width: none; }

/* Hero-Zusätze */
.subhero__body {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: var(--on-dark-mute);
  max-width: 64ch;
  margin-top: 16px;
}
.subhero__meta {
  font-family: var(--fm);
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--lime);
  margin-top: 24px;
}
.fineprint {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--on-dark-mute);
  max-width: 66ch;
  margin-top: 14px;
  opacity: .82;
}

/* Ablauf-Stepper (01 → 02 → 03) */
.stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  margin-top: 36px;
  list-style: none;
  padding: 0;
}
.stepper__item {
  flex: 1 1 200px;
  background: var(--forest-panel);
  border: var(--hairline);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stepper__no { font-family: var(--fm); font-weight: 500; font-size: 30px; line-height: 1; letter-spacing: -.03em; color: var(--lime); }
.stepper__label { font-family: var(--fd); font-weight: 700; font-size: 18px; line-height: 1.2; color: var(--on-dark); }
.stepper__arrow { flex: 0 0 auto; align-self: center; color: var(--lime); display: flex; }
.stepper__arrow svg { width: 26px; height: 26px; }
@media (max-width: 680px) {
  .stepper { flex-direction: column; }
  .stepper__arrow { transform: rotate(90deg); }
}

/* Aufzählung mit grünen Markern */
.bullets { display: grid; gap: 10px; margin: 14px 0 0; padding: 0; list-style: none; }
.bullets li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.5; }
.bullets li::before {
  content: "";
  position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--lime-deep);
}

/* Inset-CTA — helle Variante (auf hellem Grund) */
.inset-cta--light {
  background: var(--canvas);
  border: 1px solid rgba(14, 26, 18, .14);
  color: var(--body);
  align-items: flex-start;
}
.inset-cta--light .inset-cta__title { color: var(--ink); }
.inset-cta--light .inset-cta__text,
.inset-cta__text--dark { color: var(--body); }

/* Karte mit Grün-Akzent oben (Ergebnisfelder) */
.card--bordertop { border-top: 2px solid var(--lime-deep); }

/* Positiv-Liste (grüne Icons statt roter Problem-Marker) */
.pain-item--pos .pain-item__icon { color: var(--lime-deep); }

/* FAQ-Akkordeon */
.faq { display: grid; gap: 12px; margin-top: 36px; max-width: 820px; }
.faq__item {
  background: var(--canvas);
  border: 1px solid rgba(14, 26, 18, .14);
  border-radius: var(--radius);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--fm);
  color: var(--lime-deep);
  font-size: 22px;
  line-height: 1;
  flex: none;
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item > div { padding: 0 22px 20px; }
.faq__item > div p { font-size: 15px; line-height: 1.6; color: var(--body); }
.faq__item > div p + p { margin-top: 12px; }

/* Feine Zeile unter Abschluss-CTA */
.cta__fine { font-size: 14px; line-height: 1.55; color: var(--on-dark-mute); max-width: 62ch; margin: 18px auto 0; text-align: center; }

/* Trust-Chips im Hero (umrandete Kacheln mit Hover) */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.trust-chips li {
  font-family: var(--fm);
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--on-dark);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  padding: 10px 16px;
  transition: transform .16s var(--ease), border-color .16s var(--ease), background .16s var(--ease);
}
.trust-chips li:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  background: rgba(0, 181, 26, .12);
}
@media (prefers-reduced-motion: reduce) {
  .trust-chips li:hover { transform: none; }
}

/* Eingebettetes Anfrageformular auf der Leistungsseite */
.anfrage-wrap { max-width: 720px; margin-inline: auto; }
.anfrage-fine { font-size: 14px; line-height: 1.55; color: var(--on-dark-mute); margin-top: 12px; }
.anfrage-wrap .contact-form { margin-top: 28px; text-align: left; }

/* "Deine Vorteile": kompakte Karten (Icon links neben Titel/Text) */
/* Symmetrisch: 3 Kacheln pro Reihe (responsiv 1 / 2 / 3) statt 4+2 */
.vorteile-grid { gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .vorteile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .vorteile-grid { grid-template-columns: repeat(3, 1fr); } }
.vorteile-grid .card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-content: start;
  padding: 20px 22px;
}
.vorteile-grid .feature-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  width: 42px; height: 42px;
  margin-bottom: 0;
}
.vorteile-grid .feature-icon svg { width: 22px; height: 22px; }
.vorteile-grid .card__title {
  grid-column: 2;
  align-self: center;
  margin-bottom: 0;
  font-size: 18px;
}
.vorteile-grid .card__text { grid-column: 2; }

/* Verlinkte Step-Karten (Ablauf-Übersicht) — klickbar, Sprung zum Detail-Abschnitt */
.steps--linked > li { display: flex; }
.step-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.step-link .card__text { flex: 1 0 auto; }
.step-jump {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: .4px;
  color: var(--on-dark-mute);
  transition: color .16s var(--ease), gap .16s var(--ease);
}
.step-jump svg { width: 14px; height: 14px; }
.step-link:hover { border-color: var(--lime); }
.step-link:hover .step-jump { color: var(--lime); gap: 10px; }

/* "Gesamtpaket"-Donut: Stückpreis (kleines Segment) → voller Kreis (Gesamtkosten) */
.tco {
  margin-top: 44px;
  display: grid;
  gap: 28px 44px;
  align-items: center;
}
@media (min-width: 760px) {
  .tco { grid-template-columns: 260px 1fr; }
}
.tco__ring { position: relative; width: min(260px, 72vw); aspect-ratio: 1; margin: 0 auto; }
.tco__ring svg { width: 100%; height: 100%; overflow: visible; }
.tco__track { fill: none; stroke: rgba(14, 26, 18, .10); stroke-width: 15; }
.tco__arc {
  fill: none;
  stroke: var(--lime-deep);
  stroke-width: 15;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  filter: drop-shadow(0 0 6px rgba(0, 128, 26, .35));
  animation: tco-grow 5.2s var(--ease) infinite;
}
@keyframes tco-grow {
  0%   { stroke-dasharray: 66 553; opacity: 0; }
  10%  { opacity: 1; }
  50%  { stroke-dasharray: 553 553; }
  85%  { stroke-dasharray: 553 553; opacity: 1; }
  100% { stroke-dasharray: 553 553; opacity: 0; }
}
.tco__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; text-align: center;
}
.tco__coin { width: 34px; height: 34px; color: var(--lime-deep); }
.tco__center-label {
  font-family: var(--fm); font-size: 12px; letter-spacing: .8px;
  text-transform: uppercase; color: var(--mute);
}
.tco__no, .tco__yes {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px); line-height: 1.25;
  margin: 0;
}
.tco__no { color: var(--ink); }
.tco__yes { color: var(--lime-deep); margin-top: 12px; }
.tco__mark { flex: none; width: 1.05em; height: 1.05em; margin-top: .1em; }
.tco__mark--x { color: var(--negative); }
.tco__mark--go { color: var(--lime-deep); }
.tco__parts {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 22px 0 0; padding: 0; list-style: none;
}
.tco__parts li {
  font-family: var(--fm); font-size: 12px;
  color: var(--body);
  border: 1px solid rgba(14, 26, 18, .16);
  border-radius: 8px; padding: 6px 12px;
  transition: transform .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease), background .16s var(--ease);
}
.tco__parts li:hover {
  transform: translateY(-3px);
  border-color: var(--lime-deep);
  color: var(--lime-deep);
  background: var(--lime-pale);
}
@media (prefers-reduced-motion: reduce) {
  .tco__arc { animation: none; stroke-dasharray: 553 553; opacity: 1; }
  .tco__parts li:hover { transform: none; }
}

/* Ganzheitlich-Denken: interaktiver Kreislauf (Material + Prozess -> Ganzheitlich) */
.gzcycle { margin-top: 40px; }
.gzcycle__stage { max-width: 340px; margin: 0 auto; }
.gzcycle__svg { width: 100%; height: auto; overflow: visible; }
.gz-ring { fill: none; stroke: rgba(255, 255, 255, .20); stroke-width: 1.5; stroke-dasharray: 3 7; }
.gz-dot {
  fill: var(--lime);
  filter: drop-shadow(0 0 6px rgba(0, 181, 26, .9));
  animation: gz-orbit 6s linear infinite;
}
.gz-node { color: rgba(255, 255, 255, .30); }
.gz-node--material { animation: gz-glow-material 6s linear infinite; }
.gz-node--prozess  { animation: gz-glow-prozess 6s linear infinite; }
.gz-node__disc { fill: var(--forest-panel); stroke: currentColor; stroke-width: 1.6; }
.gz-hub { color: var(--lime); animation: gz-hub 3s ease-in-out infinite; }
.gz-hub__disc { fill: rgba(0, 181, 26, .14); stroke: var(--lime); stroke-width: 1.8; }
.gz-ico { color: inherit; }

@keyframes gz-orbit {
  0%    { cx: 150; cy: 26; }
  12.5% { cx: 202; cy: 48; }
  25%   { cx: 224; cy: 100; }
  37.5% { cx: 202; cy: 152; }
  50%   { cx: 150; cy: 174; }
  62.5% { cx: 98;  cy: 152; }
  75%   { cx: 76;  cy: 100; }
  87.5% { cx: 98;  cy: 48; }
  100%  { cx: 150; cy: 26; }
}
@keyframes gz-glow-prozess {
  0%, 17%   { color: rgba(255, 255, 255, .30); filter: none; }
  25%       { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .85)); }
  33%, 100% { color: rgba(255, 255, 255, .30); filter: none; }
}
@keyframes gz-glow-material {
  0%, 67%   { color: rgba(255, 255, 255, .30); filter: none; }
  75%       { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .85)); }
  83%, 100% { color: rgba(255, 255, 255, .30); filter: none; }
}
@keyframes gz-hub {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 181, 26, .35)); }
  50%      { filter: drop-shadow(0 0 11px rgba(0, 181, 26, .75)); }
}

.gzcycle__legend { display: grid; gap: 18px; margin-top: 30px; }
@media (min-width: 720px) { .gzcycle__legend { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.gzcycle__title { font-family: var(--fd); font-weight: 700; font-size: 18px; color: var(--on-dark); margin-bottom: 6px; }
.gzcycle__item--accent .gzcycle__title { color: var(--lime); }
.gzcycle__text { font-size: 14px; line-height: 1.55; color: var(--on-dark-mute); }

@media (prefers-reduced-motion: reduce) {
  .gz-dot { display: none; }
  .gz-node, .gz-hub { animation: none; }
  .gz-node { color: rgba(0, 181, 26, .5); }
}

/* Ghost-Button, der beim Hover in CI-Grün umschlägt */
.btn--ghost-dark.btn--hovergreen:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--on-primary);
}

/* Ganzheitlich: horizontale, animiert verbundene Linie (links -> rechts) */
.flowline { max-width: 760px; margin: 40px auto 0; }
.flowline__rail { position: relative; height: 66px; }
.flowline__track {
  position: absolute; top: 32px; left: 16.66%; right: 16.66%;
  height: 2px; transform: translateY(-50%);
  background: rgba(255, 255, 255, .16);
}
.flowline__dot {
  position: absolute; top: 32px; left: 16.66%;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(0, 181, 26, .9);
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: fl-run 4.6s linear infinite;
}
.flowline__node {
  position: absolute; top: 5px;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, .35);
}
.flowline__node--1 { left: 16.66%; animation: fl-glow-1 4.6s linear infinite; }
.flowline__node--2 { left: 50%;    animation: fl-glow-2 4.6s linear infinite; }
.flowline__node--3 { left: 83.34%; animation: fl-glow-3 4.6s linear infinite; }
.flowline__disc {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--forest-panel);
  border: 1.6px solid currentColor;
}
.flowline__disc svg { width: 24px; height: 24px; stroke: currentColor; color: currentColor; }

@keyframes fl-run {
  0%   { left: 16.66%; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: 83.34%; opacity: 0; }
}
@keyframes fl-glow-1 {
  0%, 4%    { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .8)); }
  14%, 100% { color: rgba(255, 255, 255, .35); filter: none; }
}
@keyframes fl-glow-2 {
  0%, 44%   { color: rgba(255, 255, 255, .35); filter: none; }
  50%       { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .8)); }
  56%, 100% { color: rgba(255, 255, 255, .35); filter: none; }
}
@keyframes fl-glow-3 {
  0%, 88%   { color: rgba(255, 255, 255, .35); filter: none; }
  96%, 100% { color: var(--lime); filter: drop-shadow(0 0 6px rgba(0, 181, 26, .8)); }
}

.flowline__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
  text-align: center;
}
.flowline__title { font-family: var(--fd); font-weight: 700; font-size: clamp(15px, 1.8vw, 18px); color: var(--on-dark); margin-bottom: 6px; }
.flowline__col--accent .flowline__title { color: var(--lime); }
.flowline__text { font-size: clamp(12.5px, 1.5vw, 14px); line-height: 1.5; color: var(--on-dark-mute); }

@media (prefers-reduced-motion: reduce) {
  .flowline__dot { display: none; }
  .flowline__node { animation: none; color: rgba(0, 181, 26, .5); }
}

/* "Ergebnis der Analyse": beide Texte über die volle Breite */
.inset-cta--light .inset-cta__text { max-width: none; }

/* Frontpage: Fließtexte über die volle Breite (wie auf der Leistungsseite) */
.home .section__lead { max-width: none; }

/* 3D-Karton (Hero): Einsparpotenzial auf einer Kartonschachtel */
.carton { position: relative; width: 100%; margin: 0; }
.carton__box {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .28));
}
.cbx-top   { fill: #E2D0AA; stroke: #8C7245; stroke-width: 1.2; stroke-linejoin: round; }
.cbx-front { fill: #D3BB8C; stroke: #8C7245; stroke-width: 1.2; stroke-linejoin: round; }
.cbx-right { fill: #B99E70; stroke: #8C7245; stroke-width: 1.2; stroke-linejoin: round; }
.cbx-line  { fill: none; stroke: rgba(90, 70, 40, .45); stroke-width: 1.1; stroke-linecap: round; }
.carton__content {
  position: absolute;
  left: 8.5%; width: 66%;
  top: 28%; bottom: 7%;
  display: flex;
  flex-direction: column;
}
.carton__content .kartonkarte__num { margin-top: 2px; }
.carton__content .kartonkarte__caption { margin: 12px 0 16px; }

/* Hero: helle Kennzahl-Kachel, Grün nur als Akzent (große Zahl) */
.hero-stat {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid rgba(14, 26, 18, .12);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .30);
}
.hero-stat__label {
  font-family: var(--fm);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 10px;
}
.hero-stat__num {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(54px, 9vw, 86px);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--lime-deep);
}
.hero-stat__caption {
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
  margin: 14px 0 22px;
  max-width: 42ch;
}
.hero-stat__list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.hero-stat__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.hero-stat__list .check {
  flex: none;
  width: 22px; height: 22px;
  color: var(--lime-deep);
  margin-top: 1px;
}

/* Hero: Ersparnis-Satz + Vertrauenspunkte mit animierten Pfeilen (statt Kästchen) */
.hero__proof {
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-dark-mute);
  max-width: 56ch;
  margin: 26px 0 0;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark);
}
.hero__trust-arrow {
  display: inline-flex;
  color: var(--lime);
  animation: hero-arrow 1.6s ease-in-out infinite;
}
.hero__trust-arrow svg { width: 18px; height: 18px; }
.hero__trust li:nth-child(2) .hero__trust-arrow { animation-delay: .22s; }
.hero__trust li:nth-child(3) .hero__trust-arrow { animation-delay: .44s; }
@keyframes hero-arrow {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__trust-arrow { animation: none; }
}

/* Header: dezenter Login-Zugang (Schlüssel-Icon + Label) */
.header-login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fm);
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--on-dark-mute);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  transition: color .14s ease, border-color .14s ease, background .14s ease;
}
.header-login:hover {
  color: var(--on-dark);
  border-color: var(--lime);
  background: rgba(0, 181, 26, .10);
}
.header-login .hl-signet { width: 20px; height: 20px; overflow: visible; }
.hl-node { fill: var(--lime); stroke: none; transition: opacity .2s ease; }
.hl-lid { transform-box: fill-box; transform-origin: center; transition: transform .28s var(--ease); }
.header-login:hover .hl-lid { transform: translateY(-5px); }
@media (prefers-reduced-motion: reduce) {
  .hl-lid { transition: none; }
  .header-login:hover .hl-lid { transform: translateY(-4px); }
}
@media (max-width: 560px) {
  .header-login__text { display: none; }
  .header-login { padding: 8px; }
}

/* ============================================================
   PACKSTRASSE — Landingpage-spezifische Bausteine
   ============================================================ */

/* Zentrale Aussage („mehr als Maschinen") — auf Navy */
.claimlead{ margin:36px 0 8px; border-left:3px solid var(--lime); padding:4px 0 4px 22px; max-width:860px; }
.claimlead__big{ font-family:var(--fd); font-weight:700; font-size:clamp(21px,3vw,31px); line-height:1.16; letter-spacing:-.02em; color:var(--on-dark); margin:0; }
.claimlead__big .accent{ color:var(--lime); }

/* ------------------------------------------------------------
   Packstraße · animierter Warenfluss  (Markup + JS: js/packline.js)
   Dunkle Bühne innerhalb der hellen Sektion. Alles unter
   .pf-packline gescoped; Farben und Schriften kommen aus :root.
   ------------------------------------------------------------ */
.pf-packline{
  --pf-line:rgba(255,255,255,.10);   /* Haarlinie auf Navy — nur hier, kein globales Farb-Token */
  background:var(--forest); color:var(--on-dark); font-family:var(--fb);
  border-radius:var(--radius); margin:40px 0 4px; overflow:hidden;
  padding:clamp(28px,4vw,44px) 0 clamp(26px,3vw,38px);
}
.pf-wrap{ max-width:1240px; margin:0 auto; padding:0 clamp(20px,4vw,40px); }

/* Verlaufsstopps im SVG-<defs> — über CSS an die Marken-Tokens gebunden */
.pf-glow-stop{ stop-color:var(--lime); }
.pf-fade-stop{ stop-color:var(--forest); }

/* ---------- Bühne ---------- */
.pf-stage{
  overflow-x:auto; overflow-y:hidden; -webkit-overflow-scrolling:touch;
  scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.18) transparent;
}
.pf-stage::-webkit-scrollbar{ height:6px; }
.pf-stage::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.18); border-radius:3px; }
.pf-stage svg{ display:block; width:100%; min-width:1100px; height:auto; }

.pf-scrollhint{
  display:none; font-family:var(--fm); font-size:10.5px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--on-dark-mute); margin:10px 0 0;
}
@media (max-width:1140px){ .pf-scrollhint{ display:block; } }

/* ---------- SVG-Basis ---------- */
.pf-belt-body{ fill:var(--forest-panel); stroke:rgba(255,255,255,.14); stroke-width:1; transition:stroke .18s ease; }
.pf-roller{ fill:none; stroke:rgba(255,255,255,.13); stroke-width:1; transition:stroke .18s ease; }
.pf-support{ stroke:rgba(255,255,255,.09); stroke-width:1.5; stroke-linecap:round; }
.pf-floor{ stroke:rgba(255,255,255,.10); stroke-width:1; }
.pf-guide{ stroke:rgba(255,255,255,.11); stroke-width:1.4; stroke-linecap:round; }

.pf-flow{
  fill:none; stroke:var(--lime); stroke-width:2; stroke-linecap:round;
  stroke-dasharray:2 16; opacity:.55; animation:pf-run 1.57s linear infinite;
}
@keyframes pf-run{ to{ stroke-dashoffset:-18; } }
.pf-paused .pf-flow{ animation-play-state:paused; }

/* Fördertechnik hervorgehoben */
.pf-hi-belt .pf-belt-body{ stroke:var(--lime); }
.pf-hi-belt .pf-roller{ stroke:rgba(0,181,26,.55); }
.pf-hi-belt .pf-guide{ stroke:rgba(0,181,26,.4); }

.pf-beltdot{ fill:var(--lime); animation:pf-pulse 2.4s ease-in-out infinite; }
.pf-beltdot-ring{ fill:none; stroke:var(--lime); stroke-width:1.2; opacity:.45; }
@keyframes pf-pulse{ 0%,100%{ opacity:.55; } 50%{ opacity:1; } }
.pf-paused .pf-beltdot{ animation:none; opacity:.8; }

/* ---------- Stationen ---------- */
.pf-st{ cursor:pointer; outline:none; }
.pf-st:focus-visible .pf-st-bar{ stroke:var(--lime); stroke-width:2; }
.pf-st-bar{ fill:var(--forest-panel); stroke:rgba(255,255,255,.12); stroke-width:1; transition:stroke .18s ease, fill .18s ease; }
.pf-st-leg{ stroke:rgba(255,255,255,.13); stroke-width:6; stroke-linecap:round; transition:stroke .18s ease; }
.pf-st-ico{ color:var(--on-dark); opacity:.72; transition:color .18s ease, opacity .18s ease; }
.pf-st-ico path, .pf-st-ico circle, .pf-st-ico rect{
  fill:none; stroke:currentColor; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round;
}
.pf-st-idx{ font-family:var(--fm); font-size:11.5px; font-weight:500; letter-spacing:.08em; fill:var(--on-dark-mute); transition:fill .18s ease; }
.pf-st-name{ font-family:var(--fb); font-size:12.6px; font-weight:600; letter-spacing:-.005em; fill:var(--on-dark); opacity:.9; transition:opacity .18s ease; }

.pf-st.on .pf-st-bar, .pf-st.hov .pf-st-bar{ fill:#1B3A58; stroke:var(--lime); }
.pf-st.on .pf-st-ico, .pf-st.hov .pf-st-ico{ color:var(--lime); opacity:1; }
.pf-st.on .pf-st-idx, .pf-st.hov .pf-st-idx{ fill:var(--lime); }
.pf-st.on .pf-st-leg, .pf-st.hov .pf-st-leg{ stroke:rgba(0,181,26,.42); }
.pf-st.on .pf-st-name, .pf-st.hov .pf-st-name{ opacity:1; }

.pf-st-glow{ fill:url(#pfGlow); opacity:0; transition:opacity .25s ease; }
.pf-st.on .pf-st-glow{ opacity:1; }
.pf-st.on .pf-st-glow-low{ opacity:.6; }
.pf-st-brace{ stroke:rgba(255,255,255,.09); stroke-width:1.4; fill:none; transition:stroke .18s ease; }
.pf-st.on .pf-st-brace, .pf-st.hov .pf-st-brace{ stroke:rgba(0,181,26,.3); }

.pf-sensor{ fill:rgba(255,255,255,.22); transition:fill .18s ease; }
.pf-st.on .pf-sensor{ fill:var(--lime); }

/* Waagen-Anzeige */
.pf-readout{ opacity:0; transition:opacity .2s ease; }
.pf-readout.show{ opacity:1; }
.pf-readout rect{ fill:var(--forest-deep); stroke:var(--lime); stroke-width:1; }
.pf-readout text{ font-family:var(--fm); font-size:11px; font-weight:500; fill:var(--lime); }

/* Scannerstrahl */
.pf-beam{ stroke:var(--lime); stroke-width:1.5; opacity:0; transition:opacity .12s linear; }
.pf-beam.show{ opacity:.55; }

/* ---------- Kartons ---------- */
.pf-pkg line, .pf-pkg path, .pf-pkg rect, .pf-pkg circle{ vector-effect:non-scaling-stroke; }
.pf-box{ fill:rgba(255,255,255,.07); stroke:rgba(255,255,255,.88); stroke-width:1.6; stroke-linejoin:round; }
.pf-boxline{ stroke:rgba(255,255,255,.5); stroke-width:1.2; fill:none; }
.pf-goods{ fill:rgba(255,255,255,.2); stroke:rgba(255,255,255,.42); stroke-width:1.2; }
.pf-pad{ fill:none; stroke:rgba(255,255,255,.5); stroke-width:1.4; stroke-linecap:round; }
.pf-tape{ fill:var(--lime); }
.pf-strap{ fill:rgba(0,181,26,.5); }
.pf-lbl-bg{ fill:var(--canvas); }
.pf-lbl-line{ stroke:var(--forest); stroke-width:1.1; stroke-linecap:round; }
.pf-chk-bg{ fill:var(--lime); }
.pf-chk-mk{ fill:none; stroke:var(--on-primary); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

/* ---------- Palettierer ---------- */
.pf-rail{ stroke:rgba(255,255,255,.16); stroke-width:4; stroke-linecap:round; }
.pf-arm-rod{ stroke:rgba(255,255,255,.22); stroke-width:2; }
.pf-arm-head{ fill:var(--forest-panel); stroke:var(--lime); stroke-width:1.4; }
.pf-arm-cup{ fill:rgba(0,181,26,.55); }
.pf-pallet{ fill:none; stroke:rgba(255,255,255,.5); stroke-width:1.9; stroke-linejoin:round; }

/* ---------- Stretchwickler ---------- */
.pf-mast{ stroke:rgba(255,255,255,.13); stroke-width:7; stroke-linecap:round; transition:stroke .18s ease; }
#pfWrapper.on .pf-mast{ stroke:rgba(0,181,26,.42); }
#pfWrapper.on .pf-st-brace{ stroke:rgba(0,181,26,.3); }
.pf-carriage{ fill:var(--forest-panel); stroke:rgba(255,255,255,.4); stroke-width:1.3; }
.pf-carriage-roll{ fill:none; stroke:var(--lime); stroke-width:1.4; }
.pf-turn{ fill:none; stroke:rgba(255,255,255,.22); stroke-width:1.3; stroke-dasharray:3 7; }
.pf-turn-dot{ fill:rgba(255,255,255,.28); }
.pf-turn-live{ fill:var(--lime); opacity:0; transition:opacity .2s ease; }
.pf-turn-live.show{ opacity:1; }
.pf-film{ fill:rgba(255,255,255,.22); stroke:rgba(255,255,255,.48); stroke-width:1; }
.pf-veil{ fill:rgba(255,255,255,.09); stroke:rgba(255,255,255,.34); stroke-width:1.2; }
.pf-web{ stroke:rgba(255,255,255,.45); stroke-width:1.6; opacity:0; }
.pf-web.show{ opacity:1; }

/* ---------- Panel unter der Bühne ---------- */
.pf-below{
  display:grid; grid-template-columns:minmax(0,1fr) auto; gap:24px; align-items:start;
  margin-top:clamp(24px,3vw,36px); border-top:1px solid var(--pf-line); padding-top:22px;
}
.pf-panel{ min-height:104px; }
.pf-panel-head{ display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; }
.pf-panel-idx{ font-family:var(--fm); font-size:11px; font-weight:500; letter-spacing:.1em; color:var(--lime); }
.pf-panel-name{ font-family:var(--fb); font-size:19px; font-weight:600; letter-spacing:-.01em; margin:0; }
.pf-panel-desc{ margin:10px 0 0; max-width:56ch; font-size:14.5px; line-height:1.62; color:var(--on-dark-mute); }
.pf-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; padding:0; list-style:none; }
.pf-chips li{
  font-family:var(--fm); font-size:11px; letter-spacing:.02em; color:var(--on-dark); opacity:.82;
  border:1px solid var(--pf-line); border-radius:999px; padding:5px 11px;
}
.pf-panel.in{ animation:pf-fade .34s var(--ease); }
@keyframes pf-fade{ from{ opacity:.15; transform:translateY(6px); } to{ opacity:1; transform:none; } }

.pf-controls{ display:flex; flex-direction:column; gap:10px; align-items:flex-end; }
.pf-btn{
  font-family:var(--fm); font-size:11px; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  color:var(--on-dark); background:transparent; border:1px solid var(--pf-line);
  border-radius:var(--radius); padding:9px 16px; cursor:pointer;
  display:inline-flex; align-items:center; gap:9px;
  transition:border-color .14s ease, color .14s ease;
}
.pf-btn:hover{ border-color:var(--lime); color:var(--lime); }
.pf-btn:focus-visible{ outline:2px solid var(--lime); outline-offset:3px; }
.pf-btn svg{ width:10px; height:10px; fill:currentColor; }
.pf-counter{ font-family:var(--fm); font-size:11px; letter-spacing:.06em; color:var(--on-dark-mute); white-space:nowrap; }
.pf-counter b{ font-weight:500; color:var(--on-dark); }

.pf-note{
  margin:26px 0 0; max-width:62ch; font-size:13.5px; line-height:1.6; color:var(--on-dark-mute);
  padding-left:14px; border-left:2px solid rgba(0,181,26,.45);
}

@media (max-width:720px){
  .pf-below{ grid-template-columns:1fr; }
  .pf-controls{ flex-direction:row; align-items:center; justify-content:space-between; width:100%; }
}

@media (prefers-reduced-motion:reduce){
  .pf-flow{ animation:none; }
  .pf-panel.in{ animation:none; }
  .pf-beltdot{ animation:none; }
}

/* Gruppierte Technik-Bausteine */
.chiplist{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.techchip{ font-family:var(--fm); font-size:13px; color:var(--ink); border:1px solid rgba(14,26,18,.18); border-radius:8px; padding:7px 12px; background:#fff; }

/* Automatisierungsstufen: manuell -> teil -> automatisiert */
.levels{ margin-top:40px; }
.level{ display:flex; flex-direction:column; }
.level__meter{ display:flex; gap:6px; margin-bottom:18px; }
.level__seg{ height:6px; flex:1; border-radius:3px; background:rgba(14,26,18,.10); }
.level__seg--on{ background:var(--lime-deep); }
.level__benefit{ margin-top:auto; padding-top:16px; border-top:1px dashed rgba(14,26,18,.16); }
.level__benefit-label{ display:block; font-family:var(--fm); font-size:11px; letter-spacing:1.4px; text-transform:uppercase; color:var(--lime-deep); margin-bottom:6px; }

/* Wirtschaftlichkeit: Beispielrechnung */
.badge-example{ display:inline-flex; align-items:center; gap:8px; font-family:var(--fm); font-size:11px; letter-spacing:1.2px; text-transform:uppercase; color:var(--lime-deep); background:var(--lime-pale); border-radius:999px; padding:6px 13px; margin-bottom:20px; }
.badge-example svg{ width:14px; height:14px; }
.calcflow{ margin-top:8px; }
.calcflow__row{ display:flex; flex-wrap:wrap; align-items:stretch; gap:12px; }
.calcflow__tile{ flex:1 1 180px; background:var(--canvas); border:1px solid var(--ink); border-radius:var(--radius); padding:24px 20px; text-align:center; transition:transform .16s var(--ease), box-shadow .16s var(--ease), border-color .16s var(--ease); }
.calcflow__tile:hover{ transform:translateY(-4px); box-shadow:0 12px 28px rgba(13,34,57,.10); }
@media (prefers-reduced-motion: reduce){ .calcflow__tile:hover{ transform:none; } }
.calcflow__k{ font-family:var(--fm); font-size:11px; letter-spacing:1.3px; text-transform:uppercase; color:var(--mute); margin:0 0 12px; }
.calcflow__num{ font-family:var(--fm); font-weight:500; font-size:clamp(28px,3.6vw,40px); line-height:1; letter-spacing:-1.4px; color:var(--lime-deep); }
.calcflow__num--ink{ color:var(--ink); }
.calcflow__unit{ display:block; margin-top:10px; font-size:13px; line-height:1.4; color:var(--body); }
.calcflow__sep{ align-self:center; flex:0 0 auto; color:var(--mute); display:grid; place-items:center; }
.calcflow__sep svg{ width:20px; height:20px; }
.calcflow__note{ font-family:var(--fm); font-size:11.5px; color:var(--mute); margin-top:18px; }
@media (max-width:720px){ .calcflow__sep{ display:none; } }

/* ============================================================
   PACKTISCHE — Leistungsseite (leistungen/packtische.html)
   Alles unter .pt- gescoped; Farben und Schriften aus :root.
   ============================================================ */
.svc .text-on-dark{ color:var(--on-dark); }

/* ---- Interaktiver Packplatz (Markup + JS: js/packtable.js) ---- */
.pt-explorer{
  --pt-line:rgba(255,255,255,.55);
  --pt-hair:rgba(255,255,255,.12);
  margin-top:36px;
  background:var(--forest);
  border-radius:var(--radius-lg, 16px);
  padding:clamp(18px,3vw,32px);
  color:var(--on-dark);
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:44px 44px;
}
.pt-presets{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.pt-preset{
  font-family:var(--fb); font-weight:600; font-size:14px;
  color:var(--on-dark); background:transparent;
  border:1px solid rgba(255,255,255,.28); border-radius:999px;
  padding:9px 16px; cursor:pointer;
  transition:border-color .14s ease, background .14s ease, color .14s ease, transform .12s ease;
}
.pt-preset:hover{ border-color:var(--lime); }
.pt-preset:active{ transform:scale(.98); }
.pt-preset.is-active{ background:var(--lime); border-color:var(--lime); color:var(--on-primary); }
.pt-preset:focus-visible{ outline:2px solid var(--lime); outline-offset:2px; }

.pt-stage{ background:var(--forest-panel); border:1px solid var(--pt-hair); border-radius:var(--radius); padding:clamp(8px,2vw,18px); }
.pt-stage svg{ display:block; width:100%; height:auto; }

/* Grafik-Grundstile */
.pt-floor{ stroke:rgba(255,255,255,.18); stroke-width:1.2; }
.pt-line{ fill:none; stroke:var(--pt-line); stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.pt-line-fill{ fill:var(--forest); stroke:var(--pt-line); stroke-width:1.6; stroke-linejoin:round; }
.pt-post{ stroke:var(--pt-line); stroke-width:3; stroke-linecap:round; }
.pt-top{ fill:#1E3C5C; stroke:#FFFFFF; stroke-width:1.8; }
.pt-leg{ fill:var(--forest); stroke:var(--pt-line); stroke-width:1.6; }
.pt-leg-inner{ fill:rgba(255,255,255,.10); stroke:none; }
.pt-roll{ fill:var(--forest-panel); stroke:var(--pt-line); stroke-width:1.2; }
.pt-mat{ fill:rgba(0,181,26,.28); stroke:rgba(0,181,26,.6); stroke-width:1; }
.pt-kraft rect{ fill:url(#ptKraft); stroke:#BCA678; stroke-width:1; }
.pt-kraft-solid{ fill:url(#ptKraft); stroke:#BCA678; stroke-width:1; }
.pt-tape{ stroke:#BCA678; stroke-width:1.4; stroke-dasharray:2 2; }
.pt-dim-line{ fill:none; stroke:var(--lime); stroke-width:1.2; stroke-linecap:round; stroke-linejoin:round; opacity:.8; }
.pt-num{ font-family:var(--fm); font-size:11px; fill:var(--on-dark); }
.pt-num--dim{ fill:var(--lime); letter-spacing:.3px; }

/* Modul-Zustände */
.pt-mod{ transition:opacity .28s ease, filter .28s ease; }
.pt-mod.is-off{ opacity:.14; }
.pt-mod.is-off .pt-kraft rect,
.pt-mod.is-off .pt-kraft-solid{ fill:rgba(255,255,255,.18); stroke:rgba(255,255,255,.3); }
#ptSvg.has-active .pt-mod:not(.is-active):not(.is-off){ opacity:.42; }
.pt-mod.is-active .pt-line,
.pt-mod.is-active .pt-post,
.pt-mod.is-active .pt-roll,
.pt-mod.is-active .pt-leg,
.pt-mod.is-hover .pt-line,
.pt-mod.is-hover .pt-post,
.pt-mod.is-hover .pt-roll,
.pt-mod.is-hover .pt-leg{ stroke:var(--lime); }
.pt-mod.is-active .pt-line-fill,
.pt-mod.is-hover .pt-line-fill{ stroke:var(--lime); }
.pt-mod.is-active .pt-top,
.pt-mod.is-hover .pt-top{ stroke:var(--lime); }
.pt-mod.is-active{ filter:drop-shadow(0 0 6px rgba(0,181,26,.45)); }

/* Hotspots */
.pt-hot{ cursor:pointer; transition:opacity .28s ease; }
.pt-hot circle{ fill:var(--forest-deep); stroke:var(--on-dark-mute); stroke-width:1.4; transition:stroke .14s ease, fill .14s ease; }
.pt-hot text{ font-family:var(--fm); font-weight:500; font-size:11.5px; fill:var(--on-dark); text-anchor:middle; pointer-events:none; }
.pt-hot:hover circle{ stroke:var(--lime); }
.pt-hot.is-active circle{ fill:var(--lime); stroke:var(--lime); }
.pt-hot.is-active text{ fill:var(--on-primary); }
.pt-hot.is-off{ opacity:.3; }
.pt-hot.is-off circle{ stroke-dasharray:2 2; }

/* Modul-Buttons */
.pt-modlist{ display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.pt-modbtn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--fb); font-weight:500; font-size:13.5px; color:var(--on-dark);
  background:transparent; border:1px solid rgba(255,255,255,.22); border-radius:8px;
  padding:8px 12px 8px 8px; cursor:pointer;
  transition:border-color .14s ease, background .14s ease, opacity .2s ease, transform .12s ease;
}
.pt-modbtn .num{ font-family:var(--fm); font-size:12px; color:var(--lime); min-width:22px; text-align:center; border-right:1px solid rgba(255,255,255,.16); padding-right:8px; }
.pt-modbtn:hover{ border-color:var(--lime); }
.pt-modbtn:active{ transform:scale(.98); }
.pt-modbtn.is-active{ background:rgba(0,181,26,.14); border-color:var(--lime); }
.pt-modbtn.is-off{ opacity:.5; }
.pt-modbtn.is-off .num{ color:var(--on-dark-mute); }
.pt-modbtn:focus-visible{ outline:2px solid var(--lime); outline-offset:2px; }

/* Info-Panel */
.pt-panel{
  margin-top:18px; background:var(--forest-panel); border:1px solid var(--pt-hair);
  border-left:3px solid var(--lime); border-radius:var(--radius); padding:20px 22px;
  min-height:150px;
}
.pt-explorer.is-ready .pt-panel{ opacity:0; transform:translateY(6px); transition:opacity .26s ease, transform .26s ease; }
.pt-explorer.is-ready .pt-panel.in{ opacity:1; transform:none; }
.pt-panel-head{ display:flex; align-items:center; flex-wrap:wrap; gap:10px 14px; margin-bottom:10px; }
.pt-panel-idx{ font-family:var(--fm); font-weight:500; font-size:26px; line-height:1; letter-spacing:-.03em; color:var(--lime); min-width:34px; }
.pt-panel-name{ font-family:var(--fd); font-weight:700; font-size:clamp(18px,2.2vw,22px); letter-spacing:-.01em; color:var(--on-dark); margin:0; }
.pt-panel-tag{ font-family:var(--fm); font-size:11px; letter-spacing:1.2px; text-transform:uppercase; color:var(--on-dark-mute); margin-left:auto; }
.pt-panel-desc{ font-size:15px; line-height:1.6; color:var(--on-dark-mute); margin:0; max-width:78ch; }
div.pt-panel-benefit{ margin:14px 0 0; padding-top:12px; border-top:1px dashed rgba(255,255,255,.16); }
.pt-panel-benefit-label{ display:block; font-family:var(--fm); font-size:11px; letter-spacing:1.4px; text-transform:uppercase; color:var(--lime); margin-bottom:6px; }
p.pt-panel-benefit{ margin:0; font-size:15px; line-height:1.55; color:var(--on-dark); max-width:78ch; }
.pt-note{ font-family:var(--fm); font-size:12px; letter-spacing:.3px; color:var(--on-dark-mute); margin:16px 0 0; }

@media (max-width:560px){
  .pt-panel-tag{ margin-left:0; width:100%; }
  .pt-hot circle{ r:17; }
  .pt-hot text{ font-size:13px; }
}
@media (prefers-reduced-motion: reduce){
  .pt-mod, .pt-hot, .pt-modbtn, .pt-preset{ transition:none; }
  .pt-explorer.is-ready .pt-panel{ opacity:1; transform:none; transition:none; }
  .pt-mod.is-active{ filter:none; }
}

/* ---- Beispiel-Packplätze ---- */
.pt-example{ display:flex; flex-direction:column; }
.pt-example__sys{ font-family:var(--fm); font-size:11px; letter-spacing:1.4px; text-transform:uppercase; color:var(--lime-deep); margin:0 0 10px; }
.pt-example__facts{ display:grid; gap:8px; margin:14px 0 16px; padding:14px 0; border-top:1px solid rgba(14,26,18,.12); border-bottom:1px solid rgba(14,26,18,.12); }
.pt-example__facts > div{ display:grid; grid-template-columns:92px 1fr; gap:10px; align-items:baseline; }
.pt-example__facts dt{ font-family:var(--fm); font-size:11px; letter-spacing:1.2px; text-transform:uppercase; color:var(--mute); }
.pt-example__facts dd{ margin:0; font-size:14px; line-height:1.45; color:var(--ink); }
.pt-example__facts dd.num{ font-family:var(--fm); font-weight:500; color:var(--lime-deep); }
.pt-example .card__text + .card__text{ margin-top:10px; }
.pt-example .chiplist{ margin-top:14px; }
.pt-example__result{ margin-top:auto; padding-top:16px; border-top:1px dashed rgba(14,26,18,.16); }
.pt-example .chiplist + .pt-example__result{ margin-top:18px; }
.pt-example__result-label{ display:block; font-family:var(--fm); font-size:11px; letter-spacing:1.4px; text-transform:uppercase; color:var(--mute); margin-bottom:6px; }
.pt-example__result-num{ font-family:var(--fm); font-weight:500; font-size:clamp(24px,3vw,30px); line-height:1.05; letter-spacing:-1.2px; color:var(--lime-deep); margin:0; }
.pt-example__result-num small{ display:block; font-family:var(--fb); font-weight:400; font-size:13px; letter-spacing:0; color:var(--body); margin-top:6px; }

/* ---- Rocholz-Systemtabelle (auf Navy) ---- */
.pt-systems{ margin-top:36px; background:var(--forest-panel); border:1px solid rgba(255,255,255,.10); border-radius:var(--radius); padding:clamp(18px,3vw,28px); }
.pt-systems__eyebrow{ font-family:var(--fm); font-size:11px; letter-spacing:1.4px; text-transform:uppercase; color:var(--lime); margin:0 0 14px; }
.pt-systems__scroll{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
.pt-table{ width:100%; min-width:640px; border-collapse:collapse; font-size:14px; line-height:1.5; color:var(--on-dark-mute); }
.pt-table th, .pt-table td{ text-align:left; vertical-align:top; padding:12px 14px 12px 0; border-bottom:1px solid rgba(255,255,255,.10); }
.pt-table thead th{ font-family:var(--fm); font-weight:500; font-size:11px; letter-spacing:1.2px; text-transform:uppercase; color:var(--on-dark-mute); padding-top:0; }
.pt-table tbody th{ font-family:var(--fm); font-weight:500; font-size:14px; letter-spacing:.3px; color:var(--on-dark); white-space:nowrap; }
.pt-table tbody tr:last-child th, .pt-table tbody tr:last-child td{ border-bottom:0; }
.pt-table td.num{ font-family:var(--fm); font-size:13px; color:var(--on-dark); }
.pt-systems__note{ font-family:var(--fm); font-size:12px; line-height:1.5; color:var(--on-dark-mute); margin:14px 0 0; }

/* ---- Doppelte Inset-CTAs (Packstraße / Verpackungsoptimierung) ---- */
.pt-ctas{ display:grid; gap:14px; }
@media (min-width:900px){
  .pt-ctas{ grid-template-columns:1fr 1fr; }
  .pt-ctas .inset-cta{ flex-direction:column; align-items:flex-start; }
}
.pt-ctas .inset-cta{ margin-top:0; }

/* Packstraße · Feedback-Runde: 2x3-Raster, Stufen-Leitsatz, hervorgehobener Inset-CTA */
.grid--max3{ grid-template-columns:repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.level__claim{ font-weight:600; color:var(--ink); }
.level__claim + .card__text{ margin-top:8px; }
.inset-cta--accent{ background:var(--forest-panel); border:1px solid var(--lime); box-shadow:inset 4px 0 0 var(--lime); }
.inset-cta--accent .inset-cta__title{ color:var(--lime); }
.inset-cta--accent .inset-cta__text{ color:var(--on-dark); }

/* Packtische · Feedback-Runde: Greifraum-Grafik, Chip-Hover */
.pt-reach{ display:grid; gap:32px; margin-top:32px; align-items:start; }
@media (min-width:960px){ .pt-reach{ grid-template-columns:minmax(0,1fr) minmax(0,1.15fr); gap:48px; } }
.pt-reach__text .section__lead + .section__lead{ margin-top:16px; }
.pt-reach__legend{ list-style:none; padding:0; margin:26px 0 0; display:grid; gap:12px; }
.pt-reach__legend li{ display:grid; grid-template-columns:14px auto 1fr; gap:12px; align-items:baseline; font-size:14px; line-height:1.5; color:var(--on-dark-mute); }
.pt-reach__legend .num{ font-family:var(--fm); font-size:13px; color:var(--on-dark); white-space:nowrap; }
.pt-reach__swatch{ width:14px; height:14px; border-radius:50%; align-self:center; border:1px solid rgba(255,255,255,.35); }
.pt-reach__swatch--1{ background:rgba(0,181,26,.55); border-color:var(--lime); }
.pt-reach__swatch--2{ background:rgba(0,181,26,.22); border-color:rgba(0,181,26,.7); }
.pt-reach__swatch--3{ background:transparent; }
.pt-reach__fig{ margin:0; background:var(--forest-panel); border:1px solid rgba(255,255,255,.10); border-radius:var(--radius); padding:clamp(10px,2vw,18px); }
.pt-reach__fig svg{ display:block; width:100%; height:auto; }

.pr-shelf{ fill:var(--forest); stroke:rgba(255,255,255,.45); stroke-width:1.4; }
.pr-kraft rect{ fill:url(#prKraft); stroke:#BCA678; stroke-width:1; }
.pr-kraft-solid{ fill:url(#prKraft); stroke:#BCA678; stroke-width:1; }
.pr-top{ fill:#1E3C5C; stroke:rgba(255,255,255,.75); stroke-width:1.6; }
.pr-belt{ fill:var(--forest); stroke:rgba(255,255,255,.45); stroke-width:1.4; }
.pr-rollers line{ stroke:rgba(255,255,255,.28); stroke-width:1.2; }
.pr-zone{ stroke:none; }
.pr-zone--1{ fill:rgba(0,181,26,.22); }
.pr-zone--2{ fill:rgba(0,181,26,.09); }
.pr-zone-line{ fill:none; stroke:var(--lime); stroke-width:1.2; stroke-dasharray:5 5; opacity:.8; }
.pr-zonetxt{ font-family:var(--fm); font-size:11px; letter-spacing:.6px; fill:var(--lime); }
.pr-item{ fill:var(--forest); stroke:rgba(255,255,255,.7); stroke-width:1.5; }
.pr-line{ fill:none; stroke:rgba(255,255,255,.55); stroke-width:1.3; stroke-linecap:round; stroke-linejoin:round; }
.pr-num{ font-family:var(--fm); font-size:11px; fill:var(--on-dark); }
.pr-marker circle{ fill:var(--lime); }
.pr-marker text{ font-family:var(--fm); font-weight:500; font-size:10.5px; fill:var(--on-primary); text-anchor:middle; }
.pr-label{ font-family:var(--fm); font-size:11px; fill:var(--on-dark-mute); letter-spacing:.3px; }
.pr-label--muted{ opacity:.7; }
.pr-person ellipse{ fill:var(--forest-deep); stroke:var(--on-dark); stroke-width:1.6; }
.pr-person circle{ fill:var(--forest-panel); stroke:var(--on-dark); stroke-width:1.6; }
.pr-arm{ stroke:var(--on-dark); stroke-width:1.6; stroke-linecap:round; opacity:.75; }
.pr-you{ font-family:var(--fd); font-weight:700; font-size:13px; fill:var(--on-dark); letter-spacing:-.01em; }

/* Kennzahlen-Chips (Wirtschaftlichkeit): Hover hebt an und färbt */
.chiplist--live .techchip{ transition:transform .16s var(--ease), border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease; cursor:default; }
.chiplist--live .techchip:hover{ transform:translateY(-3px); border-color:var(--lime-deep); background:var(--lime-pale); color:var(--lime-deep); box-shadow:0 8px 18px rgba(13,34,57,.10); }
@media (prefers-reduced-motion: reduce){ .chiplist--live .techchip{ transition:none; } .chiplist--live .techchip:hover{ transform:none; } }
