/* =========================================================================
   SOLIPAC × REV — Design System
   "Revolutions" — Verpackungstechnik, inszeniert wie ein Hypercar.
   ========================================================================= */

/* ----------------------------- Tokens ---------------------------------- */
:root {
  /* Brand */
  --rev:        #ff4b12;
  --rev-bright: #ff6a2b;
  --rev-deep:   #d23800;
  --rev-glow:   rgba(255, 75, 18, 0.55);

  /* Neutrals */
  --ink:   #0a0a0b;
  --ink-2: #141417;
  --ink-3: #1d1d21;
  --paper: #fbfaf8;
  --paper-2: #f3f1ec;
  --paper-3: #e9e6df;
  --muted: #71717a;
  --muted-2: #9a9aa3;
  --line:  rgba(10, 10, 11, 0.10);
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Type */
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --radius: 22px;
  --radius-lg: 32px;

  --nav-h: 76px;
}

/* ----------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--rev); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: #c9c6bf; border-radius: 10px; border: 3px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: var(--rev); }

/* ----------------------------- Typography ------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rev);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--rev);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--rev);
  display: inline-block;
}

.display-xl { font-size: clamp(2.8rem, 8.5vw, 7.5rem); }
.display-l  { font-size: clamp(2.3rem, 5.5vw, 4.6rem); }
.display-m  { font-size: clamp(1.8rem, 3.6vw, 3rem); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
  max-width: 60ch;
}

.text-rev { color: var(--rev); }

/* ----------------------------- Layout ---------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(80px, 12vh, 170px); position: relative; }
.section-sm { padding-block: clamp(56px, 8vh, 110px); }

.dark { background: var(--ink); color: var(--paper); }
.dark .lead { color: var(--muted-2); }
.dark .eyebrow { color: var(--rev-bright); }
.dark .eyebrow::before, .dark .eyebrow.center::after { background: var(--rev-bright); }

/* ----------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1.05em 1.8em;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform 0.5s var(--ease-out), background 0.4s, box-shadow 0.5s var(--ease-out), color 0.3s;
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform 0.5s var(--ease-out); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn-primary {
  background: var(--rev);
  color: #fff;
  box-shadow: 0 10px 30px -10px var(--rev-glow);
}
.btn-primary:hover { background: var(--rev-deep); box-shadow: 0 18px 44px -12px var(--rev-glow); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.03); }
.dark .btn-ghost { color: var(--paper); border-color: var(--line-dark); }
.dark .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: gap 0.4s var(--ease-out), color 0.3s;
}
.link-arrow svg { width: 1.05em; height: 1.05em; transition: transform 0.4s var(--ease-out); }
.link-arrow:hover { color: var(--rev); gap: 0.9em; }
.dark .link-arrow { color: var(--paper); }
.dark .link-arrow:hover { color: var(--rev-bright); }

/* ----------------------------- Navigation ------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.5s var(--ease-soft), backdrop-filter 0.5s, box-shadow 0.5s, transform 0.5s var(--ease-out);
}
.nav.scrolled {
  background: rgba(251, 250, 248, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.hide { transform: translateY(-100%); }
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}
.nav__links a:hover { opacity: 1; color: var(--rev); }
.nav__cta { padding: 0.7em 1.3em; font-size: 0.88rem; }
.nav__links a.nav__cta:hover { color: #fff; }

/* Brand mark */
.brand { display: flex; align-items: center; gap: 0.7rem; z-index: 2; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand__by {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 0.6rem;
  margin-left: 0.2rem;
  line-height: 1.2;
}
.brand__by b { color: var(--rev); font-weight: 700; }

.nav-toggle { display: none; }

/* ----------------------------- Hero ------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(115% 90% at 78% 18%, #ffffff 0%, #f6f4ef 48%, #ece8e0 100%);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,10,11,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,11,0.045) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(100% 80% at 30% 40%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(100% 80% at 30% 40%, #000 10%, transparent 70%);
  z-index: -2;
}
.hero__glow {
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 780px; max-height: 780px;
  right: -6%; top: 30%;
  transform: translate(0, -50%);
  background: radial-gradient(circle, rgba(255,75,18,0.30) 0%, transparent 64%);
  filter: blur(46px);
  opacity: 0.85;
  z-index: -2;
}
.hero__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: calc(var(--nav-h) + 2vh);
  display: grid;
  gap: 2rem;
}
.hero__eyebrow { color: var(--rev); margin-bottom: 0.4rem; }
.hero h1 {
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; }
.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  color: var(--muted);
  max-width: 52ch;
  font-weight: 400;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.8rem; }

.hero__machine {
  position: absolute;
  right: -5%;
  bottom: 4%;
  width: clamp(420px, 58vw, 1080px);
  z-index: -1;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.22));
  mix-blend-mode: normal;
  pointer-events: none;
  will-change: transform;
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}
.hero__scroll .mouse {
  width: 22px; height: 36px; border: 1px solid rgba(10,10,11,0.28); border-radius: 14px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 3px; background: var(--rev-bright);
  animation: scrollDot 1.8s var(--ease-in-out) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 60% { opacity: 1; transform: translate(-50%, 11px); } 100% { opacity: 0; transform: translate(-50%, 13px); } }

/* Hero stat strip */
.hero__stats {
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
  margin-top: 1.4rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero__stat .n { font-family: var(--font-display); font-size: clamp(1.6rem,2.8vw,2.4rem); font-weight: 700; letter-spacing: -0.03em; }
.hero__stat .n .text-rev { color: var(--rev); }
.hero__stat .l { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.02em; }

/* ----------------------------- Reveal animations ----------------------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

.reveal-scale { opacity: 0; transform: scale(1.08); transition: opacity 1.1s var(--ease-out), transform 1.4s var(--ease-out); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

.clip-up > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease-out); }
.clip-up { overflow: hidden; display: inline-block; }
.clip-up.in > span { transform: translateY(0); }

/* ----------------------------- Section header -------------------------- */
.sec-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 1.2rem; }
.sec-head h2 { margin-bottom: 1.2rem; }

/* ----------------------------- Manifesto / pinned ---------------------- */
.manifesto { text-align: center; }
.manifesto p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.4vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin-inline: auto;
}
.manifesto .word { transition: color 0.4s var(--ease-out); }

/* ----------------------------- Gauges ---------------------------------- */
.gauge { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.gauge__ring { position: relative; width: 150px; height: 150px; }
.gauge__ring svg { transform: rotate(135deg); width: 100%; height: 100%; }
.gauge__track { fill: none; stroke: currentColor; opacity: 0.12; stroke-linecap: round; }
.gauge__fill {
  fill: none; stroke: var(--rev); stroke-linecap: round;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}
.gauge__num {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.gauge__num .v { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.gauge__num .u { font-size: 0.66rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.25rem; }
.dark .gauge__num .u { color: var(--muted-2); }
.gauge__label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; margin-top: 0.3rem; }

/* ----------------------------- Machine grid ---------------------------- */
.fleet { background: var(--paper); }
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.mcard {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), border-color 0.4s;
  will-change: transform;
}
.mcard:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -34px rgba(0,0,0,0.32); border-color: transparent; }
.mcard__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(120% 100% at 50% 30%, #ffffff 0%, #f3f1ec 70%, #eae7e0 100%);
  overflow: hidden;
  display: grid; place-items: center;
}
.mcard__media img {
  width: 86%; height: 86%; object-fit: contain;
  transition: transform 0.8s var(--ease-out);
  mix-blend-mode: multiply;
}
.mcard:hover .mcard__media img { transform: scale(1.07) translateY(-2%); }
.mcard__cat {
  position: absolute; top: 15px; right: 16px; max-width: 60%;
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rev); font-weight: 700; text-align: right; line-height: 1.35;
}
.mcard__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.mcard__name { font-family: var(--font-display); font-size: 1.65rem; font-weight: 700; letter-spacing: -0.03em; }
.mcard__tag { font-size: 0.92rem; color: var(--muted); flex: 1; }
.mcard__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line);
}
.mcard__foot .more { font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.45em; color: var(--ink); transition: gap 0.4s var(--ease-out), color 0.3s; }
.mcard:hover .mcard__foot .more { color: var(--rev); gap: 0.75em; }
.mcard__foot .more svg { width: 1em; height: 1em; }
.mcard__family { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.mcard__link { position: absolute; inset: 0; z-index: 3; }

/* Filter chips */
.fleet__filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.6rem; }
.chip {
  padding: 0.6em 1.2em; border-radius: 100px; border: 1px solid var(--line);
  font-size: 0.85rem; font-weight: 500; color: var(--muted);
  transition: all 0.35s var(--ease-out);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ----------------------------- Value props ----------------------------- */
.values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 48px); }
.value { }
.value__ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: rgba(255,75,18,0.1); color: var(--rev);
}
.dark .value__ico { background: rgba(255,106,43,0.14); color: var(--rev-bright); }
.value__ico svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.value p { color: var(--muted); font-size: 0.98rem; }
.dark .value p { color: var(--muted-2); }

/* ----------------------------- Split feature --------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(30px, 6vw, 96px); }
.split.reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(120% 100% at 50% 40%, #fff 0%, #f1efe9 70%, #e6e3db 100%);
  aspect-ratio: 5/4; display: grid; place-items: center;
}
.split__media img { width: 90%; height: 90%; object-fit: contain; mix-blend-mode: multiply; }
/* On dark sections the product stays on a light "spotlight" panel so the
   white-background renders blend cleanly via multiply. */
.dark .split__media { box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6); }
.split__body .eyebrow { margin-bottom: 1.2rem; }
.split__body h2 { margin-bottom: 1.3rem; }
.split__body .lead { margin-bottom: 1.8rem; }

/* ----------------------------- Process / steps ------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--rev);
}
.step::after {
  content: ""; position: absolute; top: 0.55rem; left: 2.8rem; right: -0.75rem; height: 1px;
  background: var(--line-dark);
}
.step:last-child::after { display: none; }
.step h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--muted-2); }

/* ----------------------------- Marquee --------------------------------- */
.marquee { overflow: hidden; padding-block: 2.2rem; border-block: 1px solid var(--line-dark); }
.marquee__row { display: flex; gap: 4rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee__row span {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -0.03em;
  color: rgba(255,255,255,0.18); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4rem;
}
.marquee__row span::after { content: "●"; color: var(--rev); font-size: 0.5em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------- CTA / Inquiry --------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 80% 10%, #1c1c20 0%, #0a0a0b 60%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 90px);
}
.cta-band__glow { position: absolute; right: -10%; top: -30%; width: 50vw; height: 50vw; max-width: 620px; max-height: 620px; background: radial-gradient(circle, var(--rev-glow), transparent 65%); filter: blur(30px); opacity: 0.5; }

/* Inquiry form */
.inquiry { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: start; min-width: 0; }
.inquiry > * { min-width: 0; }
.form { display: grid; gap: 1.1rem; min-width: 0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; min-width: 0; }
.field { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
.dark .field label { color: var(--muted-2); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.95em 1.1em; border-radius: 14px;
  border: 1px solid var(--line); background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  width: 100%; min-width: 0;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.dark .field input, .dark .field select, .dark .field textarea {
  background: rgba(255,255,255,0.04); border-color: var(--line-dark); color: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rev);
  box-shadow: 0 0 0 4px rgba(255,75,18,0.14);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1em center;
}
.form__note { font-size: 0.8rem; color: var(--muted); }
.dark .form__note { color: var(--muted-2); }
.form__success {
  display: none; padding: 1.1em 1.3em; border-radius: 14px;
  background: rgba(255,75,18,0.1); color: var(--rev-bright);
  font-weight: 500; font-size: 0.95rem;
}
.form.sent .form__success { display: block; }
.form.sent .form__fields { display: none; }

.contact-aside h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-list { display: grid; gap: 1.3rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ci { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.06); color: var(--rev-bright); flex-shrink: 0; }
.contact-item .ci svg { width: 20px; height: 20px; }
.contact-item .cl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-2); }
.contact-item .cv { font-size: 1.02rem; font-weight: 500; }
.contact-item a.cv:hover { color: var(--rev-bright); }

/* ----------------------------- Footer ---------------------------------- */
.footer { background: var(--ink); color: var(--paper); padding-top: clamp(60px, 8vw, 100px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 4rem; border-bottom: 1px solid var(--line-dark); }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: var(--muted-2); font-size: 0.92rem; margin-top: 1.2rem; max-width: 34ch; }
.footer__col h5 { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.3rem; }
.footer__col a { display: block; color: rgba(255,255,255,0.78); font-size: 0.94rem; padding-block: 0.4rem; transition: color 0.3s, padding-left 0.3s; }
.footer__col a:hover { color: var(--rev-bright); padding-left: 4px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-block: 2rem; font-size: 0.84rem; color: var(--muted-2); }
.footer__bottom a:hover { color: var(--rev-bright); }

/* ----------------------------- Scroll progress ------------------------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--rev); width: 0; z-index: 200; transition: width 0.1s linear; }

/* =========================================================================
   MACHINE DETAIL PAGE
   ========================================================================= */
.mhero {
  position: relative; min-height: 92svh; display: flex; align-items: center;
  background: radial-gradient(115% 90% at 76% 20%, #ffffff 0%, #f6f4ef 50%, #ebe7df 100%);
  color: var(--ink); overflow: hidden; isolation: isolate;
}
.mhero__glow { position: absolute; right: 2%; top: 36%; transform: translateY(-50%); width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; background: radial-gradient(circle, rgba(255,75,18,0.28), transparent 64%); filter: blur(46px); opacity: 0.8; z-index: -2; }
.mhero__img {
  position: absolute; right: -3%; top: 48%; transform: translateY(-50%);
  width: clamp(420px, 54vw, 960px); z-index: -1;
  filter: drop-shadow(0 36px 56px rgba(0,0,0,0.2));
  mix-blend-mode: normal;
  will-change: transform;
}
.mhero__inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.mhero__backwrap {
  position: absolute; top: calc(var(--nav-h) + 2vh); left: 0; right: 0; z-index: 2;
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
}
.mhero__back { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.85rem; color: var(--muted); transition: gap 0.3s, color 0.3s; }
.mhero__back:hover { color: var(--ink); gap: 0.8em; }
.mhero__back svg { width: 1em; height: 1em; }
.mhero__cat { color: var(--rev); }
.mhero h1 { font-size: clamp(3.4rem, 11vw, 9rem); font-weight: 800; letter-spacing: -0.05em; line-height: 0.92; margin: 1rem 0; color: var(--ink); }
.mhero__tag { font-size: clamp(1.15rem, 2.2vw, 1.7rem); color: var(--muted); font-weight: 400; max-width: 26ch; font-family: var(--font-display); letter-spacing: -0.02em; }

.mstat-band { background: var(--ink-2); color: #fff; padding-block: clamp(40px, 6vw, 72px); }
.mstat-band__grid { display: flex; justify-content: center; gap: clamp(30px, 8vw, 120px); flex-wrap: wrap; color: #fff; }

.mintro { text-align: center; }
.mintro p { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3.6vw, 2.8rem); line-height: 1.25; letter-spacing: -0.03em; max-width: 22ch; margin-inline: auto; }
.mintro .small { font-family: var(--font-body); font-size: 1.1rem; font-weight: 400; color: var(--muted); max-width: 60ch; margin: 2rem auto 0; line-height: 1.65; }

.mfeatures { display: grid; gap: clamp(60px, 9vw, 130px); }

.spec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.spec-item { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.spec-item svg { width: 22px; height: 22px; color: var(--rev); flex-shrink: 0; margin-top: 2px; }
.spec-item span { font-size: 1.02rem; font-weight: 500; }

.usecases { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.usecase { padding: 0.7em 1.3em; border-radius: 100px; border: 1px solid var(--line); font-size: 0.92rem; font-weight: 500; background: #fff; }
.dark .usecase { background: rgba(255,255,255,0.04); border-color: var(--line-dark); }

/* Gallery */
.mgallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px,1.4vw,20px); }
.mgallery figure {
  border-radius: var(--radius); overflow: hidden;
  background: radial-gradient(120% 100% at 50% 40%, #fff 0%, #f1efe9 70%, #e6e3db 100%);
  display: grid; place-items: center; aspect-ratio: 4/3;
}
.mgallery figure img { width: 88%; height: 88%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.9s var(--ease-out); }
.mgallery figure:hover img { transform: scale(1.05); }
.mgallery .g-wide { grid-column: span 8; }
.mgallery .g-tall { grid-column: span 4; }
.mgallery .g-half { grid-column: span 6; }
.mgallery .g-third { grid-column: span 4; }
.mgallery .g-full { grid-column: span 12; aspect-ratio: 21/9; }

/* Related */
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px,1.6vw,24px); }

/* ----------------------------- Responsive ------------------------------ */
@media (max-width: 1024px) {
  .fleet__grid, .related__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; }
  .step::after { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .inquiry { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --nav-h: 64px; }
  .nav__links { display: none; }
  .nav__links.open {
    display: flex; position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(251,250,248,0.96); backdrop-filter: blur(20px);
    padding: 1rem var(--gutter) 2rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2);
  }
  .nav__links.open a { padding: 1rem 0; width: 100%; border-bottom: 1px solid var(--line); font-size: 1.1rem; opacity: 1; }
  .nav__links.open .nav__cta { margin-top: 1rem; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; z-index: 2; padding: 8px; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.4s var(--ease-out), opacity 0.3s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .fleet__grid, .related__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split__media { order: 0; }
  .form__row { grid-template-columns: 1fr; }
  .spec-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .hero__machine { opacity: 0.32; right: -20%; }
  .mhero__img { opacity: 0.34; }
  .mgallery .g-wide, .mgallery .g-tall, .mgallery .g-half, .mgallery .g-third { grid-column: span 12; }
  .hero__stats { gap: 1.5rem 2rem; }
}

/* =========================================================================
   PRODUCE (Obst & Gemüse) + VIDEO
   ========================================================================= */

/* Decorative fruit graphics (SVG) */
.pfruit { position: absolute; display: inline-block; width: 64px; pointer-events: none; z-index: 0; filter: drop-shadow(0 12px 22px rgba(0,0,0,0.14)); }
.pfruit svg { width: 100%; height: auto; display: block; }

/* Produce strip — round photo chips with labels */
.produce-strip {
  display: flex; flex-wrap: wrap; gap: clamp(16px, 2.4vw, 34px);
  align-items: flex-start;
}
.produce-strip.center { justify-content: center; }
.produce-item { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; width: clamp(78px, 9vw, 116px); }
.produce-thumb {
  width: clamp(78px, 9vw, 116px); height: clamp(78px, 9vw, 116px);
  border-radius: 50%; overflow: hidden; position: relative;
  background: var(--paper-2);
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.5);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.produce-thumb::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 0 3px rgba(255,255,255,0.85); }
.produce-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.produce-item:hover .produce-thumb { transform: translateY(-6px) scale(1.04); box-shadow: 0 22px 40px -16px var(--rev-glow); }
.produce-item:hover .produce-thumb img { transform: scale(1.12); }
.produce-name { font-size: 0.86rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.dark .produce-name { color: var(--paper); }

/* Produce showcase section (home) */
.produce-show { position: relative; overflow: hidden; }
.produce-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: clamp(320px, 46vw, 560px); display: flex; align-items: flex-end;
  margin-bottom: clamp(34px, 5vw, 64px);
}
.produce-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.produce-banner__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0.10) 0%, rgba(10,10,11,0.20) 45%, rgba(10,10,11,0.82) 100%); }
.produce-banner__cap { position: relative; padding: clamp(28px, 5vw, 60px); color: #fff; max-width: 760px; }
.produce-banner__cap h2 { color: #fff; margin-bottom: 0.8rem; }
.produce-banner__cap p { color: rgba(255,255,255,0.82); font-size: clamp(1rem,1.5vw,1.2rem); max-width: 52ch; }

/* Produce marquee ribbon */
.produce-ribbon { overflow: hidden; padding-block: 0.4rem; }
.produce-ribbon__row { display: flex; gap: clamp(16px,2.2vw,30px); width: max-content; animation: marquee 46s linear infinite; }
.produce-ribbon:hover .produce-ribbon__row { animation-play-state: paused; }

/* Video player (click-to-play facade) */
.video { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; background: radial-gradient(120% 120% at 30% 20%, #26262b 0%, #131316 55%, #0a0a0b 100%); box-shadow: 0 50px 90px -40px rgba(0,0,0,0.6); }
.video__el { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; z-index: 0; display: block; }
.video__facade { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; display: block; z-index: 2; transition: opacity 0.4s var(--ease-out); }
.video__poster { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter 0.6s; filter: saturate(1.05); }
.video__facade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(0,0,0,0.1), rgba(0,0,0,0.5)); transition: background 0.5s; }
.video__facade:hover .video__poster { transform: scale(1.05); }
.video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: clamp(64px, 7vw, 92px); height: clamp(64px, 7vw, 92px); border-radius: 50%;
  background: var(--rev); color: #fff; display: grid; place-items: center; z-index: 2;
  box-shadow: 0 18px 50px -8px var(--rev-glow); transition: transform 0.5s var(--ease-out), background 0.4s;
}
.video__play svg { width: 42%; height: 42%; margin-left: 8%; }
.video__facade:hover .video__play { transform: translate(-50%,-50%) scale(1.1); background: var(--rev-bright); }
.video__play::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); animation: pulse 2.4s var(--ease-out) infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.5); opacity: 0; } }
.video__label { position: absolute; left: 50%; bottom: clamp(18px,3vw,30px); transform: translateX(-50%); z-index: 2; color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.video__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Machine-page produce block */
.mproduce { text-align: center; }
.mproduce .produce-strip { justify-content: center; margin-top: clamp(28px,4vw,48px); }

@media (max-width: 760px) {
  .produce-strip { gap: 16px 14px; justify-content: center; }
  .pfruit { display: none; }
}

/* =========================================================================
   MASCHINEN-FINDER (Quiz)
   ========================================================================= */
.finder {
  min-height: 100svh;
  background: radial-gradient(120% 90% at 50% -10%, #ffffff 0%, #f6f4ef 50%, #eee9e1 100%);
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.finder__bar { position: fixed; top: var(--nav-h); left: 0; right: 0; height: 3px; background: rgba(0,0,0,0.08); z-index: 90; }
.finder__bar span { display: block; height: 100%; width: 0; background: var(--rev); transition: width 0.6s var(--ease-out); }

.finder__stage {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: clamp(30px, 6vh, 80px) var(--gutter);
  position: relative;
}
.qstep { width: 100%; max-width: 900px; margin-inline: auto; }
.qstep.leaving { animation: qOut 0.4s var(--ease-in-out) forwards; }
.qstep.entering { animation: qIn 0.6s var(--ease-out); }
@keyframes qIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes qOut { to { opacity: 0; transform: translateY(-18px); } }

/* Intro */
.qintro { text-align: center; }
.qintro .eyebrow { justify-content: center; margin-bottom: 1.4rem; }
.qintro h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 1.4rem; }
.qintro p { font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--muted); max-width: 52ch; margin: 0 auto 2.4rem; }
.qintro__meta { display: flex; gap: 2.2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.qintro__meta div { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.qintro__meta .n { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--ink); }
.qintro__meta .l { font-size: 0.8rem; color: var(--muted); }

/* Question */
.qhead { margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.qcount { font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; color: var(--rev); margin-bottom: 1rem; }
.qhead h2 { font-size: clamp(1.7rem, 3.6vw, 2.9rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.qhead p { color: var(--muted); margin-top: 0.9rem; font-size: 1.02rem; max-width: 54ch; }

.qopts { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.qopts.cols-1 { grid-template-columns: 1fr; }
.opt {
  position: relative; text-align: left;
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.3rem 1.4rem; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--line);
  transition: transform 0.5s var(--ease-out), border-color 0.35s, box-shadow 0.5s var(--ease-out), background 0.35s;
  cursor: pointer; width: 100%;
}
.opt:hover { transform: translateY(-4px); border-color: var(--rev); box-shadow: 0 26px 50px -30px var(--rev-glow); }
.opt.sel { border-color: var(--rev); background: rgba(255,75,18,0.04); box-shadow: 0 26px 50px -30px var(--rev-glow); }
.opt__ico { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: rgba(255,75,18,0.1); color: var(--rev); }
.opt__ico svg { width: 24px; height: 24px; }
.opt__ico .pfruit-inline { width: 30px; }
.opt__txt { flex: 1; min-width: 0; }
.opt__label { display: block; font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; font-family: var(--font-display); line-height: 1.2; }
.opt__desc { display: block; font-size: 0.88rem; color: var(--muted); margin-top: 0.3rem; line-height: 1.4; }
.opt__check { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line); flex-shrink: 0; display: grid; place-items: center; transition: all 0.35s var(--ease-out); }
.opt__check svg { width: 14px; height: 14px; color: #fff; opacity: 0; transform: scale(0.5); transition: all 0.35s var(--ease-out); }
.opt:hover .opt__check { border-color: var(--rev); }
.opt.sel .opt__check { background: var(--rev); border-color: var(--rev); }
.opt.sel .opt__check svg { opacity: 1; transform: none; }

.qnav { display: flex; align-items: center; justify-content: space-between; margin-top: clamp(1.8rem, 3vw, 2.6rem); }
.qback { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.92rem; font-weight: 600; color: var(--muted); transition: color 0.3s, gap 0.3s; }
.qback:hover { color: var(--ink); gap: 0.75em; }
.qback svg { width: 1em; height: 1em; }
.qdots { display: flex; gap: 0.5rem; }
.qdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.12); transition: all 0.4s var(--ease-out); }
.qdot.on { background: var(--rev); width: 22px; border-radius: 5px; }
.qdot.done { background: var(--rev); opacity: 0.4; }

/* Result */
.qresult { width: 100%; max-width: 1080px; }
.qresult__head { text-align: center; margin-bottom: clamp(2rem,4vw,3rem); }
.qresult__head .eyebrow { justify-content: center; margin-bottom: 1.1rem; }
.qresult__head h2 { font-size: clamp(1.3rem,2.4vw,1.8rem); font-weight: 500; color: var(--muted); letter-spacing: -0.02em; }
.rcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 50px 100px -50px rgba(0,0,0,0.35);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
}
.rcard__media {
  position: relative; background: radial-gradient(120% 100% at 50% 30%, #fff 0%, #f2f0ea 70%, #e7e3db 100%);
  display: grid; place-items: center; padding: clamp(24px,3vw,40px); min-height: 340px;
}
.rcard__media img { width: 92%; max-height: 380px; object-fit: contain; mix-blend-mode: multiply; }
.rcard__rank { position: absolute; top: 20px; left: 22px; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--rev); background: rgba(255,75,18,0.09); padding: 0.5em 0.9em; border-radius: 100px; }
.rcard__match { position: absolute; top: 18px; right: 22px; text-align: right; }
.rcard__match .p { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--rev); line-height: 1; }
.rcard__match .l { font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.rcard__body { padding: clamp(28px,3.4vw,48px); display: flex; flex-direction: column; }
.rcard__cat { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.rcard__name { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 800; letter-spacing: -0.04em; margin: 0.4rem 0 0.5rem; }
.rcard__tag { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.5rem; }
.rcard__list { display: grid; gap: 0.7rem; margin-bottom: 1.6rem; }
.rcard__list .spec-item { padding: 0; border: 0; }
.rcard__list .spec-item svg { width: 20px; height: 20px; }
.rcard__list .spec-item span { font-size: 0.98rem; }
.rcard__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: auto; }

.rwhy { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.rwhy h4 { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
.rwhy .chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.rwhy .chip { pointer-events: none; }

.qalt { margin-top: clamp(2rem,4vw,3rem); display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.5rem; }
.qalt__thumb { width: 92px; height: 72px; border-radius: 12px; background: radial-gradient(120% 100% at 50% 40%, #fff, #efece5); display: grid; place-items: center; }
.qalt__thumb img { width: 82%; height: 82%; object-fit: contain; mix-blend-mode: multiply; }
.qalt__txt .l { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.qalt__txt .n { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.qalt__txt .t { font-size: 0.9rem; color: var(--muted); }

.qcomplement { margin-top: 1.5rem; font-size: 0.92rem; color: var(--muted); text-align: center; }
.qcomplement a { color: var(--rev); font-weight: 600; }

.qrestart { text-align: center; margin-top: 2.2rem; }
.qrestart button { font-size: 0.9rem; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 0.5em; }
.qrestart button:hover { color: var(--rev); }

/* Result inquiry */
.rform { margin-top: clamp(2.4rem,4vw,3.4rem); background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(28px,4vw,52px); position: relative; overflow: hidden; }
.rform__glow { position: absolute; right: -10%; top: -40%; width: 46vw; height: 46vw; max-width: 560px; max-height: 560px; background: radial-gradient(circle, var(--rev-glow), transparent 65%); filter: blur(30px); opacity: 0.5; }

@media (max-width: 860px) {
  .qopts { grid-template-columns: 1fr; }
  .rcard { grid-template-columns: 1fr; }
  .rcard__media { min-height: 260px; }
  .qalt { grid-template-columns: auto 1fr; }
  .qalt .btn { grid-column: 1 / -1; justify-content: center; }
}

/* Finder-CTA-Banner (auf der Startseite) */
.finder-cta {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding: clamp(1.4rem, 2.6vw, 2.2rem) clamp(1.6rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg); margin-bottom: clamp(2rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
  background: radial-gradient(120% 160% at 90% 10%, #1c1c20 0%, #0a0a0b 62%);
  color: #fff;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.finder-cta::after { content: ""; position: absolute; right: -8%; top: -60%; width: 40vw; height: 40vw; max-width: 460px; max-height: 460px; background: radial-gradient(circle, var(--rev-glow), transparent 65%); filter: blur(30px); opacity: 0.5; pointer-events: none; }
.finder-cta:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -40px rgba(0,0,0,0.5); }
.finder-cta__ico { position: relative; width: 58px; height: 58px; border-radius: 16px; background: rgba(255,75,18,0.16); color: var(--rev-bright); display: grid; place-items: center; flex-shrink: 0; }
.finder-cta__ico svg { width: 30px; height: 30px; }
.finder-cta__txt { position: relative; }
.finder-cta__txt h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; }
.finder-cta__txt p { color: rgba(255,255,255,0.66); font-size: 0.96rem; margin-top: 0.25rem; }
.finder-cta .btn { position: relative; white-space: nowrap; }
@media (max-width: 720px) {
  .finder-cta { grid-template-columns: auto 1fr; }
  .finder-cta .btn { grid-column: 1 / -1; justify-content: center; }
}

/* =========================================================================
   CASE STUDIES / NACHHALTIGKEIT
   ========================================================================= */

/* Große Kennzahlen (auf dunklem Band) */
.cstat-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(2rem, 6vw, 5rem); color: #fff; }
.cstat { text-align: center; }
.cstat__n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -0.04em; line-height: 1; color: #fff; }
.cstat__n span[data-count] { color: var(--rev-bright); }
.cstat__l { font-size: 0.86rem; color: var(--muted-2); margin-top: 0.6rem; max-width: 22ch; margin-inline: auto; }

/* Fakten-Karte (Das Unternehmen) */
.factcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 30px 60px -40px rgba(0,0,0,0.3); }
.factcard__region { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); width: 100%; }
.factcard__region svg { width: 20px; height: 20px; color: var(--rev); }
.factcard .spec-item { padding: 0.7rem 0; }
.factcard .spec-item:last-child { border-bottom: none; }

/* Linie / Lösung (Schritte) */
.cline { display: grid; gap: 0.9rem; counter-reset: cl; }
.cline__item { position: relative; padding: 1.1rem 1.2rem 1.1rem 3.4rem; border-radius: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--line-dark); }
.cline__item::before { counter-increment: cl; content: counter(cl); position: absolute; left: 1.1rem; top: 1.1rem; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--rev-bright); font-family: var(--font-display); font-weight: 700; font-size: 0.82rem; display: grid; place-items: center; }
.cline__item.is-primary { background: rgba(255,75,18,0.1); border-color: rgba(255,75,18,0.4); }
.cline__item.is-primary::before { background: var(--rev); color: #fff; }
.cline__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.cline__tag { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rev-bright); border: 1px solid rgba(255,106,43,0.5); padding: 0.2em 0.6em; border-radius: 100px; margin-left: 0.5em; vertical-align: middle; }
.cline__role { font-size: 0.92rem; color: var(--muted-2); margin-top: 0.3rem; }
/* Light-Kontext (Lösung auf hellem Grund) */
.section:not(.dark) .cline__item { background: #fff; border-color: var(--line); }
.section:not(.dark) .cline__item::before { background: rgba(255,75,18,0.1); color: var(--rev); }
.section:not(.dark) .cline__role { color: var(--muted); }
.section:not(.dark) .cline__item.is-primary { background: rgba(255,75,18,0.05); border-color: rgba(255,75,18,0.35); }

/* Weiterführende Links (unten in der Studie) */
.clinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.clink { display: flex; flex-direction: column; gap: 0.4rem; padding: 1.6rem 1.7rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.35s; }
.clink:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -30px rgba(0,0,0,0.28); border-color: transparent; }
.clink__l { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.clink__n { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; display: inline-flex; align-items: center; gap: 0.4em; }
.clink__n svg { width: 0.9em; height: 0.9em; color: var(--rev); }

/* Case-Study-Karten (Übersicht) */
.ccard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 26px); }
.ccard { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), border-color 0.4s; }
.ccard:hover { transform: translateY(-8px); box-shadow: 0 44px 74px -36px rgba(0,0,0,0.34); border-color: transparent; }
.ccard__link { position: absolute; inset: 0; z-index: 3; }
.ccard__media { position: relative; aspect-ratio: 16/11; background: radial-gradient(120% 100% at 50% 25%, #fff 0%, #f2f0ea 70%, #e8e4dc 100%); display: grid; place-items: center; overflow: hidden; }
.ccard__machine { width: 82%; height: 82%; object-fit: contain; mix-blend-mode: multiply; transition: transform 0.8s var(--ease-out); }
.ccard:hover .ccard__machine { transform: scale(1.06); }
.ccard__produce { position: absolute; bottom: 14px; right: 14px; width: 62px; height: 62px; border-radius: 50%; object-fit: cover; box-shadow: 0 10px 24px -10px rgba(0,0,0,0.5), inset 0 0 0 3px #fff; }
.ccard__badge { position: absolute; top: 14px; left: 16px; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--rev); background: rgba(255,75,18,0.09); padding: 0.4em 0.8em; border-radius: 100px; }
.ccard__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.ccard__kicker { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rev); font-weight: 700; margin-bottom: 0.6rem; }
.ccard__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.ccard__client { font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; flex: 1; }
.ccard__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.ccard__metric .v { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.ccard__metric .l { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 0.3rem; max-width: 18ch; }
.ccard__more { white-space: nowrap; font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 0.4em; color: var(--ink); transition: gap 0.4s var(--ease-out), color 0.3s; }
.ccard__more svg { width: 1em; height: 1em; }
.ccard:hover .ccard__more { color: var(--rev); gap: 0.7em; }

/* FAQ */
.faq { display: grid; gap: 0.8rem; max-width: 820px; }
.faq__item { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.2rem 1.5rem; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: -0.01em; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--rev); font-weight: 400; transition: transform 0.4s var(--ease-out); flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: 0.98rem; line-height: 1.65; max-width: 68ch; }
.faq__item a { color: var(--rev); font-weight: 500; }

/* Case-Study-Link auf der Maschinenseite */
.mcase {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1rem,2.4vw,2rem);
  padding: clamp(1.3rem,2.4vw,2rem) clamp(1.5rem,3vw,2.4rem); border-radius: var(--radius-lg);
  background: radial-gradient(120% 160% at 90% 10%, #1c1c20 0%, #0a0a0b 62%); color: #fff;
  position: relative; overflow: hidden; transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.mcase::after { content: ""; position: absolute; right: -8%; top: -60%; width: 40vw; height: 40vw; max-width: 440px; max-height: 440px; background: radial-gradient(circle, var(--rev-glow), transparent 65%); filter: blur(30px); opacity: 0.5; }
.mcase:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -40px rgba(0,0,0,0.5); }
.mcase__ico { position: relative; width: 54px; height: 54px; border-radius: 15px; background: rgba(255,75,18,0.16); color: var(--rev-bright); display: grid; place-items: center; flex-shrink: 0; }
.mcase__ico svg { width: 28px; height: 28px; }
.mcase__txt { position: relative; }
.mcase__txt .k { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rev-bright); font-weight: 700; }
.mcase__txt h3 { font-size: clamp(1.15rem,1.9vw,1.5rem); font-weight: 700; letter-spacing: -0.02em; margin-top: 0.3rem; }
.mcase__txt p { color: rgba(255,255,255,0.66); font-size: 0.94rem; margin-top: 0.3rem; }
.mcase .btn { position: relative; white-space: nowrap; }

@media (max-width: 1024px) { .clinks, .ccard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .clinks, .ccard-grid { grid-template-columns: 1fr; }
  .mcase { grid-template-columns: auto 1fr; }
  .mcase .btn { grid-column: 1 / -1; justify-content: center; }
}

/* ----------------------------- Language switch ------------------------- */
.nav .brand { margin-right: auto; }
.langswitch {
  display: inline-flex; align-items: center; gap: 2px;
  background: rgba(10, 10, 11, 0.06); border: 1px solid var(--line);
  border-radius: 100px; padding: 3px; flex-shrink: 0;
}
.langswitch__btn {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; line-height: 1;
  color: var(--muted); padding: 0.45em 0.7em; border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}
.langswitch__btn.active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.14); }
.langswitch__btn:hover:not(.active) { color: var(--ink); }
.dark .langswitch, .footer .langswitch { background: rgba(255,255,255,0.08); border-color: var(--line-dark); }
.dark .langswitch__btn.active, .footer .langswitch__btn.active { background: var(--rev); color: #fff; box-shadow: none; }
@media (max-width: 760px) { .langswitch { margin-right: 0.5rem; } }

/* Technische Daten (Spec-Tabelle) */
.spec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem); }
.spec-head .btn svg { width: 1.05em; height: 1.05em; }
@media (max-width: 620px) { .spec-head .btn { width: 100%; justify-content: center; } }
.spectable { border-top: 1px solid var(--line); max-width: 940px; }
.spectable__row {
  display: grid; grid-template-columns: minmax(150px, 30%) 1fr;
  gap: clamp(1rem, 3vw, 2.6rem); align-items: baseline;
  padding: 1.05rem 0; border-bottom: 1px solid var(--line);
}
.spectable dt { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; color: var(--muted); }
.spectable dd { font-size: 1.02rem; font-weight: 500; color: var(--ink); margin: 0; line-height: 1.5; }
.dark .spectable { border-color: var(--line-dark); }
.dark .spectable__row { border-color: var(--line-dark); }
.dark .spectable dt { color: var(--muted-2); }
.dark .spectable dd { color: var(--paper); }
@media (max-width: 640px) { .spectable__row { grid-template-columns: 1fr; gap: 0.3rem; padding: 0.9rem 0; } }

/* Utility */
.center-x { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.maxw-sm { max-width: 640px; }
.divider { height: 1px; background: var(--line); border: 0; }
.dark .divider { background: var(--line-dark); }
.noscroll { overflow: hidden; }
