/* ════════════════════════════════════════════════
   AdScale — Google Ads für Unternehmen
   Editorial theme · Fraunces + Space Grotesk
   Warm paper · vermillion accent · asymmetric
   ════════════════════════════════════════════════ */

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

:root {
  --paper:    #efe9dd;   /* warm bone background          */
  --paper-2:  #e6decd;   /* deeper alt section            */
  --card:     #f8f4ea;   /* card surface                  */
  --ink:      #19150f;   /* warm near-black               */
  --ink-soft: #4d463b;
  --muted:    #8a8170;
  --faint:    #a89e8b;
  --accent:   #ff4d23;   /* vermillion — dominant         */
  --accent-d: #e23a12;
  --cobalt:   #1d2bff;   /* sharp secondary, used sparingly */
  --green:    #1f7a44;
  --line:     rgba(25,21,15,0.14);
  --line-soft:rgba(25,21,15,0.08);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Space Grotesk', -apple-system, sans-serif;

  --fs-hero: clamp(3.2rem, 10vw, 8.5rem);
  --fs-h2:   clamp(2.2rem, 5.5vw, 4.4rem);
  --section-py: clamp(84px, 12vw, 150px);
  --max: 1080px;
  --max-wide: 1280px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

html { scroll-behavior: smooth; }

/* Anker-Ziele nicht unter der fixierten Nav verstecken */
[id] { scroll-margin-top: 76px; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 1.0625rem;
  line-height: 1.65;
  position: relative;
}

/* ── Grain / noise overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

/* ─── CUSTOM CURSOR ─── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  will-change: transform;
  opacity: 0;
}

.cursor-dot {
  width: 7px; height: 7px;
  background: #fff;
  transition: opacity 0.3s;
}

.cursor-ring {
  width: 42px; height: 42px;
  border: 1.5px solid #fff;
  transition: width 0.28s var(--ease), height 0.28s var(--ease), background 0.28s var(--ease), opacity 0.3s;
}

.cursor-ring.is-hover {
  width: 68px; height: 68px;
  background: rgba(255,255,255,0.25);
}

.cursor-ring.is-down { width: 34px; height: 34px; }

/* only on devices with a real pointer; hide native cursor there */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, select, textarea, label, .faq-q { cursor: none; }
}

/* hide custom cursor on touch / coarse pointers */
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 300;
  transition: width 0.05s linear;
}

/* ─────────────────────────── NAV ─── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.4rem, 5%, 3.2rem);
  background: rgba(239,233,221,0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo::after {
  content: '.';
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
  color: #fff !important;
  background: var(--ink);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background 0.25s !important;
}

.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

@media (max-width: 720px) { .nav-links { gap: 1rem; } .nav-links li:not(:last-child) { display: none; } }

/* ─────────────────────────── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(1.4rem, 7%, 5.5rem) 90px;
  position: relative;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(48% 55% at 88% 18%, rgba(255,77,35,0.30) 0%, transparent 60%),
    radial-gradient(40% 50% at 8% 92%, rgba(29,43,255,0.12) 0%, transparent 60%),
    radial-gradient(70% 60% at 50% 120%, rgba(255,77,35,0.10) 0%, transparent 70%);
  filter: blur(8px);
  animation: meshDrift 18s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2.5%, 2%, 0) scale(1.07); }
}

/* oversized faint stamp word, rotated — editorial flourish */
.hero-stamp {
  position: absolute;
  right: -2vw;
  bottom: 4vh;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(25,21,15,0.10);
  text-stroke: 1.5px rgba(25,21,15,0.10);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transform: rotate(-4deg);
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  animation: fadeUp 1s 0.1s var(--ease) forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 38px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s 0.2s var(--ease) forwards;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2.6rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s 0.32s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.44s var(--ease) forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn 1s 1.2s var(--ease) forwards;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  margin-top: 0.7rem;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, box-shadow 0.35s var(--ease);
}

.btn-fill {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 0 var(--accent-d);
}

.btn-fill:hover {
  transform: translate(var(--mx, 0px), var(--my, 0px)) translateY(-3px);
  box-shadow: 0 9px 0 var(--accent-d);
}

.btn-fill:active { transform: translate(var(--mx, 0px), var(--my, 0px)) translateY(2px); box-shadow: 0 2px 0 var(--accent-d); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translate(var(--mx, 0px), var(--my, 0px)) translateY(-3px);
}

/* ─────────────────────────── METRICS ─── */
.metrics {
  background: var(--ink);
  color: var(--paper);
}

.metrics-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(2rem,4vw,3.5rem) clamp(1.4rem, 5%, 3.2rem);
  gap: 1px;
}

@media (max-width: 720px) { .metrics-inner { grid-template-columns: repeat(2, 1fr); } }

.metric {
  padding: 1.6rem 1.8rem;
  position: relative;
}

.metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.14);
}

@media (max-width: 720px) {
  .metric:nth-child(2)::after { display: none; }
  .metric:nth-child(3), .metric:nth-child(4) { margin-top: 1.4rem; }
}

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  display: block;
  color: var(--paper);
  line-height: 0.95;
  margin-bottom: 0.6rem;
}

.metric-num span { color: var(--accent); }

.metric-label {
  font-size: 0.78rem;
  color: rgba(239,233,221,0.6);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* ─────────────────────────── SECTIONS ─── */
section {
  padding: var(--section-py) clamp(1.4rem, 7%, 5.5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.inner { max-width: var(--max); margin: 0 auto; }
.inner-wide { max-width: var(--max-wide); margin: 0 auto; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--accent);
}

h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 1.3rem;
  color: var(--ink);
}

.section-desc {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.6;
}

/* ─── STATEMENT ─── */
.statement-section {
  background: var(--accent);
  color: #fff;
  border-bottom: none;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
  max-width: 20ch;
  color: #fff;
}

.statement-text strong {
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* Wort-für-Wort-Aufleuchten beim Scrollen (Spans setzt script.js) */
.statement-text .w {
  opacity: 0.28;
  transition: opacity 0.4s ease;
}
.statement-text .w.lit { opacity: 1; }

/* Unterstreichung wandert mit den Wörtern mit, statt vorab durchzuscheinen */
.statement-text.split strong { text-decoration: none; }
.statement-text.split strong .w {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* ─── CLIENTS / MARQUEE ─── */
.clients-section {
  border-bottom: 1px solid var(--line);
  padding: 3rem 0 3.4rem;
  background: var(--paper-2);
  overflow: hidden;
}

.clients-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.2rem;
}

.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.2rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.marquee-track .m-sep { color: var(--accent); font-size: 0.9rem; }

/* ─── CERTIFICATIONS ─── */
.certs-section {
  padding: clamp(3rem,6vw,4.5rem) clamp(1.4rem, 7%, 5.5rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max-wide);
  margin: 0 auto;
}

@media (max-width: 820px) { .certs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .certs-grid { grid-template-columns: 1fr; } }

.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.3rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cert-badge:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 6px 6px 0 var(--ink);
}

.cert-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--paper-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 9px;
  align-content: center;
  justify-items: center;
}

.cert-mark.cert-check {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(255,77,35,0.10);
}

.g-dot { width: 7px; height: 7px; border-radius: 50%; }
.g-blue { background: #4285F4; } .g-red { background: #EA4335; }
.g-yellow { background: #FBBC05; } .g-green { background: #34A853; }

.cert-text { display: flex; flex-direction: column; line-height: 1.3; }
.cert-text strong { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.cert-text span { font-size: 0.74rem; color: var(--muted); }

.certs-hint { text-align: center; font-size: 0.74rem; color: var(--faint); margin-top: 1.8rem; }
.certs-hint a { color: var(--accent); text-decoration: none; }

/* ─── SERVICES (asymmetric stagger) ─── */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 700px) { .services-layout { grid-template-columns: 1fr; } }

.service-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.4rem 2.6rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
}

/* offset every 2nd item downward for asymmetry */
@media (min-width: 701px) {
  .service-item:nth-child(even) { transform: translateY(40px); }
  .service-item:nth-child(even):hover { transform: translateY(34px) rotate(0.6deg); }
  .service-item:nth-child(odd):hover { transform: translateY(-6px) rotate(-0.6deg); }
}

.service-item:hover {
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--ink);
  border-color: var(--ink);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 1.2rem;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.service-item p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.65; }

/* ─── COMPARE / WARUM ICH ─── */
.compare-section { background: var(--paper); }

.compare {
  margin-top: 4rem;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: stretch;
}

.compare-row:not(:last-child) { border-bottom: 1px solid var(--line); }

.compare-cell {
  padding: 1.15rem 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.compare-label {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

/* highlighted "Mit mir" column */
.compare-mine {
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
}

.compare-them { color: var(--muted); }

/* header row */
.compare-head .compare-cell {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

.compare-head .compare-mine { color: #fff; }
.compare-head .compare-them { color: var(--ink); }
.compare-head .compare-label { background: transparent; }

/* marks */
.mark {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.mark.ok { background: var(--accent); color: #fff; }
.mark.no { background: rgba(25,21,15,0.10); color: var(--muted); }

/* mobile: stack the two options under each criterion */
@media (max-width: 680px) {
  .compare-head { display: none; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row:not(:last-child) { border-bottom: 4px solid var(--line); }

  .compare-label {
    background: var(--paper-2);
    font-family: var(--font-display);
    font-size: 1.05rem;
  }

  .compare-mine, .compare-them { font-size: 0.9rem; }

  .compare-mine::after { content: ' (mit mir)'; opacity: 0.6; font-size: 0.78rem; }
  .compare-them::after { content: ' (Agentur)'; opacity: 0.7; font-size: 0.78rem; }
}

/* ─── PROCESS / SCROLL TIMELINE ─── */
.process-section { background: var(--paper-2); }

.timeline {
  position: relative;
  margin-top: 4.5rem;
  --line-x: 34%;          /* horizontal position of the spine */
}

/* the spine (track) + animated fill */
.tl-track {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--line-x);
  width: 2px;
  background: var(--line);
  transform: translateX(-50%);
}

.tl-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
  will-change: height;
}

/* the travelling dot */
.tl-dot {
  position: absolute;
  left: var(--line-x);
  top: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 6px rgba(255,77,35,0.18), 0 0 18px rgba(255,77,35,0.5);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}

.timeline.armed .tl-dot { opacity: 1; }

/* each step: [number] | spine | [content] */
.tl-step {
  display: grid;
  grid-template-columns: var(--line-x) 1fr;
  align-items: center;
  min-height: clamp(200px, 28vh, 300px);
  position: relative;
}

.tl-num {
  text-align: right;
  padding-right: clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.4rem;
}

.tl-num-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--faint);
  transition: color 0.5s var(--ease), opacity 0.5s var(--ease);
  opacity: 0.4;
}

.tl-num-total {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  opacity: 0.5;
  transition: opacity 0.5s var(--ease);
}

/* the per-step node sitting on the spine */
.tl-node {
  position: absolute;
  left: var(--line-x);
  top: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 2px solid var(--line);
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease);
}

.tl-content {
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
  min-width: 0;
  opacity: 0.45;
  transform: translateX(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.step-index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
}

.tl-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.tl-content p { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }

/* ACTIVE state — set by JS when the dot reaches a step */
.tl-step.active .tl-num-big { color: var(--ink); opacity: 1; }
.tl-step.active .tl-num-total { opacity: 1; }
.tl-step.active .tl-node {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.15);
}
.tl-step.active .tl-content { opacity: 1; transform: translateX(0); }

/* narrow screens: spine to the left, number above content */
@media (max-width: 720px) {
  .timeline { --line-x: 20px; }
  .tl-step {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2rem 0 2rem 2.6rem;
    align-items: start;
  }
  .tl-num {
    text-align: left;
    justify-content: flex-start;
    padding-right: 0;
    margin-bottom: 0.4rem;
  }
  .tl-num-big { font-size: 2.8rem; }
  .tl-node { top: 2.5rem; }
  .tl-content { padding-left: 0; transform: translateY(14px) translateX(0); }
  .tl-step.active .tl-content { transform: translateY(0); }
}

/* ─── RESULTS ─── */
.results-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 760px) { .results-top { grid-template-columns: 1fr; gap: 3rem; } }

.result-cases { display: flex; flex-direction: column; }

.result-case {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  transition: padding-left 0.35s var(--ease);
}

.result-case:first-child { border-top: 1px solid var(--line); }
.result-case:hover { padding-left: 0.8rem; }

.result-case-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.45rem;
}

.result-case h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.result-case p { font-size: 0.82rem; color: var(--muted); }

.result-delta {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.03em;
  color: var(--green);
  white-space: nowrap;
  text-align: right;
}

.bar-chart-title { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 200px;
  margin-bottom: 0.75rem;
  padding: 1.6rem;
  background: var(--ink);
  border-radius: 6px;
}

.bar { flex: 1; border-radius: 3px 3px 0 0; height: 0; transition: height 1.1s var(--ease); }
.bar-before { background: rgba(239,233,221,0.18); }
.bar-after  { background: var(--accent); }

.bar-labels { display: flex; justify-content: space-between; padding: 0 1.6rem; }
.bar-labels span { font-size: 0.68rem; color: var(--faint); }

.chart-legend { display: flex; gap: 1.5rem; margin-top: 1.2rem; padding: 0 0.2rem; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; color: var(--muted); }
.legend-dot { width: 9px; height: 9px; border-radius: 2px; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--ink); color: var(--paper); border-bottom: none; }
.testimonials-section .eyebrow { color: var(--accent); }
.testimonials-section h2 { color: var(--paper); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 4rem;
}

@media (max-width: 820px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  padding: 2.2rem;
  border: 1px solid rgba(239,233,221,0.16);
  border-radius: 6px;
  background: rgba(239,233,221,0.04);
  transition: transform 0.4s var(--ease), background 0.3s;
}

@media (min-width: 821px) {
  .testimonial:nth-child(2) { transform: translateY(28px); }
  .testimonial:nth-child(2):hover { transform: translateY(20px); }
}

.testimonial:hover { background: rgba(239,233,221,0.08); }

.t-stars { display: flex; gap: 3px; margin-bottom: 1.4rem; }
.star {
  width: 14px; height: 14px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.5;
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}

.t-author { display: flex; flex-direction: column; gap: 0.2rem; }
.t-name { font-size: 0.85rem; font-weight: 600; color: var(--paper); }
.t-role { font-size: 0.78rem; color: rgba(239,233,221,0.55); }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 4rem auto 0;
}

.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1140px;
  align-items: center;     /* lets the featured card stand taller */
}

/* the recommended (decoy target) card sits slightly raised + larger */
.pricing-grid-3 .pricing-card.featured {
  transform: scale(1.04);
  z-index: 2;
}
.pricing-grid-3 .pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

@media (max-width: 920px) {
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-grid-3 .pricing-card.featured { transform: none; }
  .pricing-grid-3 .pricing-card.featured:hover { transform: translateY(-4px); }
}

@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 2.4rem;
  position: relative;
  background: var(--card);
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: 10px 10px 0 var(--ink); }

.pricing-card.featured { background: var(--ink); color: var(--paper); }
.pricing-card.featured .plan-name { color: rgba(239,233,221,0.6); }
.pricing-card.featured .plan-price { color: var(--paper); }
.pricing-card.featured .plan-price-sub,
.pricing-card.featured .plan-note { color: rgba(239,233,221,0.6); }
.pricing-card.featured .plan-divider { border-color: rgba(239,233,221,0.18); }
.pricing-card.featured .plan-features li { color: rgba(239,233,221,0.65); }
.pricing-card.featured .plan-features li.active { color: var(--paper); }
.pricing-card.featured:hover { box-shadow: 10px 10px 0 var(--accent); }

.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}

.plan-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.plan-price-sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-divider { border: none; border-top: 1px solid var(--line); margin: 1.5rem 0; }
.plan-note { font-size: 0.84rem; color: var(--muted); margin-bottom: 1.2rem; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.plan-features li { font-size: 0.875rem; color: var(--muted); padding-left: 1.4rem; position: relative; }
.plan-features li::before {
  content: '→';
  position: absolute; left: 0; top: 0;
  color: var(--faint);
  font-size: 0.85rem;
}
.plan-features li.active { color: var(--ink); }
.plan-features li.active::before { color: var(--accent); }

.btn-block { width: 100%; text-align: center; display: block; }

/* ─── FAQ ─── */
.faq-section { background: var(--paper); }

.faq-list { margin-top: 3.5rem; border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.7rem 0;
  cursor: pointer;
  text-align: left;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--accent); border-radius: 2px;
  transition: transform 0.35s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 18px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 2px; height: 18px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; padding-bottom: 1.6rem; max-width: 68ch; }

/* ─── CONTACT ─── */
.contact-section { text-align: center; background: var(--paper-2); }
.contact-inner { max-width: 580px; margin: 0 auto; }
.contact-inner .eyebrow { justify-content: center; }
.contact-inner h2 { margin-bottom: 0.9rem; }
.contact-inner .section-desc { margin: 0 auto 3rem; }

.form-wrap {
  text-align: left;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 2.6rem;
  box-shadow: 12px 12px 0 var(--ink);
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }

.field { margin-bottom: 1rem; }

label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--faint); }

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 4px 4px 0 var(--accent);
}

select { cursor: pointer; }
textarea { resize: vertical; min-height: 95px; }

.form-submit { width: 100%; margin-top: 0.5rem; padding: 0.95rem 1.6rem; font-size: 0.95rem; }

.form-divider { display: flex; align-items: center; text-align: center; margin: 1.6rem 0; color: var(--muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; border-top: 1px solid var(--line); }
.form-divider span { padding: 0 1rem; }

.form-error { display: none; color: var(--accent-d); font-size: 0.82rem; margin-top: 0.8rem; text-align: center; }
.form-error.show { display: block; }

.form-reassure {
  text-align: center;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.01em;
}

.contact-alt {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1.6rem;
}

.contact-alt a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}

.contact-alt a:hover { text-decoration-thickness: 2px; }

.success-state { display: none; text-align: center; padding: 3rem 1rem; }
.success-headline { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; }
.success-state p { color: var(--muted); margin-top: 0.5rem; font-size: 0.95rem; }

/* ─── FOOTER ─── */
footer {
  padding: 3rem clamp(1.4rem, 5%, 3.2rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  background: var(--paper);
}

@media (max-width: 680px) { footer { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; } }

.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.footer-logo::after { content: '.'; color: var(--accent); }

.footer-links { display: flex; gap: 1.8rem; list-style: none; justify-content: center; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

.footer-copy { font-size: 0.78rem; color: var(--muted); text-align: right; }
@media (max-width: 680px) { .footer-copy { text-align: center; } }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(160%);
  width: min(700px, calc(100% - 2rem));
  z-index: 250;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 1.5rem 1.7rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease);
}

.cookie-banner.show { transform: translateX(-50%) translateY(0); }

.cookie-text strong { font-family: var(--font-display); font-size: 1rem; font-weight: 600; display: block; margin-bottom: 0.25rem; }
.cookie-text p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.55; }
.cookie-text a { color: var(--accent); text-decoration: none; }

.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-btn { padding: 0.6rem 1.1rem; font-size: 0.8rem; white-space: nowrap; }
.cookie-btn.btn-fill { box-shadow: 0 4px 0 var(--accent-d); }
.cookie-btn.btn-fill:hover { box-shadow: 0 6px 0 var(--accent-d); }

@media (max-width: 620px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; }
}

/* ─── LEGAL PAGES ─── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 130px clamp(1.4rem, 8%, 3rem) 80px; }
.legal-inner { width: 100%; }
.legal-back { display: inline-block; color: var(--accent); text-decoration: none; font-size: 0.85rem; margin-bottom: 2rem; font-weight: 500; }
.legal-title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 600; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
.legal-h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; margin: 2.4rem 0 0.6rem; }
.legal-page p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.8; margin-bottom: 0.5rem; }
.legal-page a { color: var(--accent); }
.legal-note { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 1.1rem 1.3rem; font-size: 0.86rem !important; margin-bottom: 1.5rem; }
.legal-muted { color: var(--faint); font-size: 0.85em; }
.legal-page mark { background: var(--accent); color: #fff; padding: 0.05em 0.35em; border-radius: 4px; }
.legal-disclaimer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.82rem !important; color: var(--faint) !important; }

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.reveal.in { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

.reveal-left  { transform: translateX(-55px); }
.reveal-right { transform: translateX(55px); }
.reveal-scale { transform: scale(0.92); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* keep staggered service offset visible after reveal (override transform reset) */
@media (min-width: 701px) {
  .service-item.reveal { transform: translateY(44px); }
  .service-item.reveal.in:nth-child(even) { transform: translateY(40px); }
  .service-item.reveal.in:nth-child(odd) { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .statement-text .w { opacity: 1; }
}


/* ════════════════════════════════════════════════
   NEUE BLÖCKE: Integrationen · Flow · CTA · Rechner
   ════════════════════════════════════════════════ */

/* ─── INTEGRATIONS LOGO-ROW ─── */
.integrations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 920px;
  margin: 2.4rem auto 0;
}
.integration {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--card);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color .25s, border-color .25s, transform .25s;
}
.integration svg { width: 20px; height: 20px; display: block; }
.integration:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ─── FLOW (So funktioniert's) ─── */
.flow-section { background: var(--paper-2); }
.flow {
  margin-top: 4rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.6rem;
}
.flow-step {
  flex: 1 1 0;
  max-width: 260px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  transition: transform .3s, box-shadow .3s;
}
.flow-step:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(25,21,15,0.08); }
.flow-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}
.flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin: 0.8rem 0 1rem;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
.flow-icon svg { width: 24px; height: 24px; }
.flow-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.flow-step p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.flow-arrow {
  display: flex;
  align-items: center;
  color: var(--faint);
  flex: 0 0 auto;
}
.flow-arrow svg { width: 26px; height: 26px; }
@media (max-width: 860px) {
  .flow { flex-direction: column; align-items: center; }
  .flow-step { max-width: 420px; width: 100%; }
  .flow-arrow svg { transform: rotate(90deg); }
}

/* ─── MID CTA STRIP ─── */
.cta-strip {
  background: var(--ink);
  border-bottom: none;
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.cta-strip-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-strip-text h2 { color: var(--paper); margin: 0 0 0.8rem; }
.cta-strip-text p {
  color: rgba(239,233,221,0.72);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0;
}
.cta-strip .btn-fill { flex: 0 0 auto; }
@media (max-width: 760px) {
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ─── ZEITERSPARNIS-RECHNER (ROI) ─── */
.roi-section { background: var(--paper); }
.roi {
  margin: 3rem auto 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.6rem;
  text-align: left;
}
@media (max-width: 820px) { .roi { grid-template-columns: 1fr; gap: 2rem; padding: 1.8rem; } }

.roi-field { margin-bottom: 1.6rem; }
.roi-field:last-child { margin-bottom: 0; }
.roi-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}
.roi-field output {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* Eigener Track + Füllung, um Rundschieber & Balken exakt auszurichten.
   Der sichtbare Track ist links/rechts um den Thumb-Radius (12px) eingerückt,
   damit 0–100 % der Füllung genau der Wegstrecke des Ziehpunkts entsprechen. */
.roi-slider { position: relative; height: 26px; display: flex; align-items: center; }
.roi-slider-track {
  position: absolute;
  left: 12px; right: 12px;
  height: 6px;
  border-radius: 100px;
  background: var(--line);
  overflow: hidden;
}
.roi-slider-fill {
  display: block;
  height: 100%;
  width: var(--roi-pct, 50%);
  background: var(--accent);
  border-radius: 100px;
}
.roi input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 26px;
  margin: 0;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.roi input[type=range]::-webkit-slider-runnable-track { background: transparent; height: 26px; }
.roi input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--card), 0 2px 6px rgba(25,21,15,0.28);
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.roi input[type=range]::-webkit-slider-thumb:hover { background: var(--accent); }
.roi input[type=range]:active::-webkit-slider-thumb { transform: scale(1.08); }
.roi input[type=range]::-moz-range-track { background: transparent; height: 26px; }
.roi input[type=range]::-moz-range-thumb {
  width: 24px; height: 24px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--card), 0 2px 6px rgba(25,21,15,0.28);
  cursor: pointer;
}

.roi-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 1px solid var(--line);
  padding-left: 2.5rem;
}
@media (max-width: 820px) {
  .roi-results { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.8rem; }
}
.roi-result { display: flex; flex-direction: column; }
.roi-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.roi-result-accent .roi-num { color: var(--accent); }
.roi-cap {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}


/* Honeypot — für Menschen unsichtbar, fängt Spam-Bots ab */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ─── KONTAKT: BUCHUNG PRIMÄR, FORMULAR SEKUNDÄR ─── */
.booking-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 10px;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.4rem, 4vw, 2.6rem);
  box-shadow: 12px 12px 0 var(--accent);
  margin-top: 0.4rem;
}

.booking-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.booking-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 0.6rem;
}

.booking-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(239,233,221,0.68);
  max-width: 38ch;
  margin: 0 auto 1.8rem;
}

.btn-lg { padding: 1.05rem 2.6rem; font-size: 1rem; }

.booking-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.7rem;
}

.booking-perks span {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(239,233,221,0.22);
  border-radius: 100px;
  color: rgba(239,233,221,0.75);
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 560px;
  margin: 3.4rem auto 2.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}


/* ════════════════════════════════════════════════
   STAGGER- & MICRO-ANIMATIONEN
   ════════════════════════════════════════════════ */

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(12px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes rowIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Integration-Chips: kaskadierend einblenden */
.integrations.in .integration { animation: chipIn 0.5s var(--ease) backwards; }
.integrations.in .integration:nth-child(1)  { animation-delay: 0.00s; }
.integrations.in .integration:nth-child(2)  { animation-delay: 0.05s; }
.integrations.in .integration:nth-child(3)  { animation-delay: 0.10s; }
.integrations.in .integration:nth-child(4)  { animation-delay: 0.15s; }
.integrations.in .integration:nth-child(5)  { animation-delay: 0.20s; }
.integrations.in .integration:nth-child(6)  { animation-delay: 0.25s; }
.integrations.in .integration:nth-child(7)  { animation-delay: 0.30s; }
.integrations.in .integration:nth-child(8)  { animation-delay: 0.35s; }
.integrations.in .integration:nth-child(9)  { animation-delay: 0.40s; }
.integrations.in .integration:nth-child(10) { animation-delay: 0.45s; }

/* Vergleichstabelle: Zeilen rutschen nacheinander rein */
.compare.in .compare-row { animation: rowIn 0.55s var(--ease) backwards; }
.compare.in .compare-row:nth-child(1) { animation-delay: 0.00s; }
.compare.in .compare-row:nth-child(2) { animation-delay: 0.07s; }
.compare.in .compare-row:nth-child(3) { animation-delay: 0.14s; }
.compare.in .compare-row:nth-child(4) { animation-delay: 0.21s; }
.compare.in .compare-row:nth-child(5) { animation-delay: 0.28s; }
.compare.in .compare-row:nth-child(6) { animation-delay: 0.35s; }
.compare.in .compare-row:nth-child(7) { animation-delay: 0.42s; }
.compare.in .compare-row:nth-child(8) { animation-delay: 0.49s; }

/* Flow: Schritte & Pfeile bauen sich als Pipeline auf */
.flow.in .flow-step  { animation: riseIn 0.6s var(--ease) backwards; }
.flow.in .flow-arrow { animation: fadeIn 0.5s var(--ease) backwards; }
.flow.in > :nth-child(1) { animation-delay: 0.00s; }
.flow.in > :nth-child(2) { animation-delay: 0.16s; }
.flow.in > :nth-child(3) { animation-delay: 0.24s; }
.flow.in > :nth-child(4) { animation-delay: 0.40s; }
.flow.in > :nth-child(5) { animation-delay: 0.48s; }
.flow.in > :nth-child(6) { animation-delay: 0.64s; }
.flow.in > :nth-child(7) { animation-delay: 0.72s; }

/* Daten-Punkte wandern kontinuierlich durch die Pfeile (nur Desktop) */
@media (min-width: 861px) {
  .flow-arrow { position: relative; }
  .flow.in .flow-arrow::after {
    content: '';
    position: absolute;
    left: -4px; top: 50%;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: flowDot 2.8s ease-in-out 1s infinite;
  }
  .flow.in .flow-arrow:nth-child(4)::after { animation-delay: 1.9s; }
  .flow.in .flow-arrow:nth-child(6)::after { animation-delay: 2.8s; }
}
@keyframes flowDot {
  0%   { transform: translate(0, -50%);    opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translate(34px, -50%); opacity: 0; }
}
