/* =====================================================================
   Orderfuchs — Marketing-Website
   Stil: minimalistisch, hell, viel Weißraum (Vorbild scribo.at).
   Marke: Grün = primär. Sonst neutral (Weiß, Anthrazit, Hellgrau).
   Eine einzige handgeschriebene CSS-Datei, kein Build-Schritt.
   ===================================================================== */

/* ------------------------------------------------------------ Schrift
   Inter selbst gehostet (kein Google-Fonts-CDN → DSGVO-freundlich + schneller).
   Variable Schrift: ein File deckt alle Schnitte 100–900 ab. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-variable.woff2") format("woff2");
}

/* ------------------------------------------------------------ Tokens */
:root {
  /* Flächen */
  --bg:        #ffffff;
  --bg-soft:   #f6f8f6;   /* zartes Off-White für abwechselnde Sektionen */
  --bg-ink:    #0e1411;   /* dunkles Band (Kassa-Sektion) */

  /* Text */
  --ink:       #11181c;   /* Überschriften, fast schwarz */
  --body:      #4a5560;   /* Fließtext */
  --muted:     #5b6671;   /* gedämpft — WCAG-AA-tauglich auf Weiß (≈5.8:1) */
  --faint:     #6b7480;   /* leise, aber lesbar auf Weiß (≈4.7:1) */

  /* Marke (Grün) — entspricht der App: oklch(0.627 0.17 149) */
  --brand:        #16a34a;
  --brand-ink:    #12863d;  /* Hover / dunkler */
  --brand-deep:   #0c6b30;
  --brand-soft:   #e9f6ee;  /* heller Grün-Tint für Flächen */
  --brand-line:   #cfe9d8;  /* grüne Linie / Rahmen */
  --brand-fg:     #ffffff;

  /* Semantisch (Status) — nie dekorativ verwenden */
  --amber:     #b45309;
  --amber-bg:  #fef6e7;
  --amber-line:#f5d9a8;
  --red:       #dc2626;
  --red-bg:    #fef2f2;
  --red-line:  #f6cccc;
  --blue:      #2563eb;

  /* Linien & Schatten */
  --line:      #e7ebe8;
  --line-2:    #eef1ee;
  --shadow-sm: 0 1px 2px rgba(16,24,28,.05);
  --shadow-md: 0 8px 24px -10px rgba(16,24,28,.12);
  --shadow-lg: 0 30px 70px -28px rgba(16,24,28,.30);

  /* Radien */
  --r-pill: 999px;
  --r-card: 18px;
  --r-mock: 22px;

  /* Maße */
  --container: 72rem;     /* ~1152px */
  --gutter: 1.5rem;

  /* Schrift */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;
  --mono: "Inter", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;   /* Platz für sticky Header bei Anker-Sprüngen */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------------------------------------ Typo */
h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.h1 {
  font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 2.9rem); }
.h3 { font-size: clamp(1.35rem, 1.05rem + 1.3vw, 1.8rem); }

.lead {
  font-size: clamp(1.06rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.muted   { color: var(--muted); }
.tabular { font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------ Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4rem, 2.5rem + 6vw, 7.5rem); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }

.divider { border-top: 1px solid var(--line); }

.section-head { max-width: 42rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 0.75rem; }
.section-head .lead { margin-top: 1rem; }

.stack > * + * { margin-top: 1rem; }

/* ------------------------------------------------------------ Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.8rem 1.35rem;
  transition: background-color .18s, border-color .18s, transform .12s, box-shadow .18s, color .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn--primary {
  background: var(--brand);
  color: var(--brand-fg);
  box-shadow: 0 1px 2px rgba(12,107,48,.25);
}
.btn--primary:hover { background: var(--brand-ink); }

.btn--ghost {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--bg-soft); border-color: #d9ded9; }

.btn--light {           /* auf dunklem / grünem Band */
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { background: #f2f4f2; }

.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn--sm { padding: 0.6rem 1rem; font-size: 0.85rem; }
.btn .arrow { transition: transform .18s; }
.btn:hover .arrow { transform: translateX(3px); }

.textlink {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.textlink:hover { color: var(--brand-ink); }

/* ------------------------------------------------------------ Header */
.skip {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 100;
}
.skip:focus {
  left: 1rem; top: 1rem;
  background: var(--bg);
  padding: 0.6rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.25rem;
}
.nav {
  display: none;
  align-items: center;
  gap: 1.9rem;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.nav a { transition: color .15s; }
.nav a:hover, .nav a.is-active { color: var(--ink); }

.header__actions { display: flex; align-items: center; gap: 0.5rem; }
.header__signin { display: none; color: var(--muted); font-weight: 500; padding: 0.5rem 0.75rem; }
.header__signin:hover { color: var(--ink); }

/* Wortmarke */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.wordmark .accent { color: var(--brand); }
.wordmark .fox { width: 1.45rem; height: 1.45rem; color: var(--brand); flex: none; }

/* Mobile-Menü */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.6rem; height: 2.6rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 0 0.7rem;
}
.burger span {
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
}
.mobile-menu a {
  padding: 0.85rem var(--gutter);
  font-weight: 600;
  color: var(--ink);
  border-top: 1px solid var(--line-2);
}
.mobile-menu a:first-child { border-top: 0; }

/* ------------------------------------------------------------ Hero */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(40rem 22rem at 12% -10%, var(--brand-soft) 0%, transparent 60%),
    radial-gradient(36rem 20rem at 110% 30%, #eef6f1 0%, transparent 55%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  gap: 3rem;
  padding-block: clamp(3.5rem, 2rem + 7vw, 6.5rem);
  align-items: center;
}
.hero__copy { max-width: 36rem; }
.hero__copy .h1 { margin-top: 1.1rem; }
.hero__copy .lead { margin-top: 1.4rem; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.9rem; }
.trustline {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem;
  margin-top: 1.6rem;
  font-size: 0.88rem; color: var(--muted);
}
.trustline li { display: inline-flex; align-items: center; gap: 0.45rem; }
.trustline svg { width: 1rem; height: 1rem; color: var(--brand); flex: none; }

.hero__art { position: relative; }

/* ------------------------------------------------------------ Trust-Band */
.trustband {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trustband ul {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
  padding-block: 1.1rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--muted);
}
.trustband li { display: inline-flex; align-items: center; gap: 0.45rem; }
.trustband svg { width: 0.95rem; height: 0.95rem; color: var(--brand); flex: none; }

/* ------------------------------------------------------------ Steps 01–04 */
.steps { border-top: 1px solid var(--line); margin-top: 3.5rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--line);
}
.step__num {
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand);
  opacity: .9;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step__body { max-width: 44rem; }
.step__body h3 { margin-bottom: 0.4rem; }
.step__note { margin-top: 0.6rem; font-weight: 700; color: var(--ink); }

/* ------------------------------------------------------------ Kassa-Band (dunkel) */
.kassa {
  background: var(--bg-ink);
  color: #cdd6cf;
  border-block: 1px solid #1d2a22;
}
.kassa .h2 { color: #fff; }
.kassa .accent { color: #4ade80; }
.kassa .lead { color: #97a79c; }
.kassa__grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
  align-items: start;
}
.kassa__points { display: grid; gap: 1.5rem; }
.kfeat { display: flex; gap: 1rem; }
.kfeat__icon {
  flex: none;
  width: 2.6rem; height: 2.6rem;
  border-radius: 14px;
  background: rgba(74,222,128,.14);
  color: #4ade80;
  display: grid; place-items: center;
}
.kfeat__icon svg { width: 1.25rem; height: 1.25rem; }
.kfeat h3 { color: #fff; font-size: 1.1rem; font-weight: 700; }
.kfeat p { margin-top: 0.35rem; font-size: 0.92rem; color: #93a397; }

/* ------------------------------------------------------------ Features (alternierend) */
.feature {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-top: 5rem;
  scroll-margin-top: 6rem;
}
.feature:first-of-type { margin-top: 4rem; }
.feature__text { max-width: 34rem; }
.feature__text .h3 { margin-top: 0.6rem; }
.feature__text p { margin-top: 1rem; }
.feature__text .small { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted); }
.caption { margin-top: 0.85rem; text-align: center; font-size: 0.78rem; color: var(--faint); }

/* Inhaltsverzeichnis "Aus der Karte" */
.toc {
  max-width: 27rem;
  margin: 2.5rem auto 0;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.6rem;
}
.toc__label {
  text-align: center;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint);
}
.toc ul { margin-top: 1rem; display: grid; gap: 0.75rem; }
.toc li a {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-size: 0.95rem;
}
.toc .name { font-weight: 600; color: var(--ink); transition: color .15s; }
.toc li a:hover .name { color: var(--brand); }
.toc .dots { flex: 1; border-bottom: 1px dotted #c9d0c9; transform: translateY(-3px); }
.toc .hint { color: var(--muted); font-size: 0.85rem; }

/* ------------------------------------------------------------ Mockups (auf der Marke nachgebaut) */
.mock {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-mock);
  box-shadow: var(--shadow-lg);
}
.mockwrap { position: relative; }

/* — Browser/Board-Rahmen — */
.browser { overflow: hidden; }
.browser__bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line-2);
  background: #fbfcfb;
}
.browser__dot { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: #e2e6e2; }
.browser__title {
  margin-left: 0.6rem;
  font-size: 0.72rem; font-weight: 600; color: var(--faint);
  letter-spacing: 0.02em;
}
.browser__live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; font-weight: 700; color: var(--brand);
}
.browser__live .pulse {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(22,163,74,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.45); }
  70%  { box-shadow: 0 0 0 7px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.browser__body { padding: 1rem; display: grid; gap: 0.7rem; }

/* — Order-Karte (Service-Board) — */
.ordercard {
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: var(--bg);
}
.ordercard--wait { border-left-color: var(--red); }
.ordercard__top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.ordercard__id { font-size: 0.62rem; color: var(--faint); letter-spacing: 0.08em; }
.ordercard__amt { font-weight: 800; color: var(--ink); }
.ordercard__table { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.15rem; }
.ordercard__table strong { color: var(--ink); font-size: 1.02rem; }
.ordercard__meta { font-size: 0.78rem; color: var(--muted); margin-top: 0.15rem; }
.ordercard__meta.is-wait { color: var(--red); font-weight: 600; }
.ordercard__items { font-size: 0.85rem; color: var(--body); margin-top: 0.4rem; }
.ordercard__note {
  margin-top: 0.45rem;
  font-size: 0.76rem; color: var(--amber);
  background: var(--amber-bg); border: 1px solid var(--amber-line);
  border-radius: 8px; padding: 0.3rem 0.55rem; display: inline-block;
}
.ordercard__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.7rem; }
.minibtn {
  border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 700;
  padding: 0.5rem 0.6rem; text-align: center;
}
.minibtn--fill { background: var(--brand); color: #fff; }
.minibtn--out { border: 1px solid var(--brand-line); color: var(--brand-ink); }

/* Status-Pills */
.pill {
  display: inline-flex; align-items: center; gap: 0.3rem;
  border-radius: var(--r-pill);
  font-size: 0.66rem; font-weight: 700;
  padding: 0.18rem 0.5rem;
  letter-spacing: 0.02em;
}
.pill--new   { background: var(--amber-bg); color: var(--amber); border: 1px solid var(--amber-line); }
.pill--wait  { background: var(--red-bg);  color: var(--red);   border: 1px solid var(--red-line); }
.pill--brand { background: var(--brand-soft); color: var(--brand-ink); }

/* Toast */
.toast {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink); color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.74rem; font-weight: 600;
  padding: 0.5rem 0.8rem;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.toast .bell { width: 0.9rem; height: 0.9rem; color: #4ade80; }

/* — Phone (Gast-Handy) — */
.phone {
  width: 16.5rem;
  max-width: 100%;
  border-radius: 2.4rem;
  padding: 0.55rem;
  background: #11181c;
  box-shadow: var(--shadow-lg);
}
.phone__screen {
  background: var(--bg);
  border-radius: 2rem;
  overflow: hidden;
}
.phone__notch {
  height: 1.1rem; position: relative;
}
.phone__notch::after {
  content: ""; position: absolute; top: 0.35rem; left: 50%; transform: translateX(-50%);
  width: 4.5rem; height: 0.35rem; border-radius: 999px; background: #11181c;
}
.menu { padding: 0 1rem 1rem; }
.menu__rest { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.menu__table { font-size: 0.76rem; color: var(--muted); margin-bottom: 0.7rem; }
.menu__tabs { display: flex; gap: 0.4rem; margin-bottom: 0.85rem; }
.tab {
  border-radius: var(--r-pill);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  color: var(--muted);
}
.tab.is-active { background: var(--brand); color: #fff; border-color: var(--brand); }
.dish {
  display: grid; grid-template-columns: 1fr auto;
  gap: 0.6rem; align-items: start;
  padding: 0.65rem 0; border-top: 1px solid var(--line-2);
}
.dish:first-of-type { border-top: 0; }
.dish__name { font-weight: 700; color: var(--ink); font-size: 0.86rem; }
.dish__desc { font-size: 0.74rem; color: var(--muted); line-height: 1.45; margin-top: 0.1rem; }
.dish__tags { display: flex; gap: 0.3rem; margin-top: 0.3rem; flex-wrap: wrap; }
.dish__price { font-size: 0.8rem; color: var(--ink); margin-top: 0.3rem; font-weight: 600; }
.dish__add {
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 1.1rem; font-weight: 600;
  align-self: center;
}
.tag {
  font-size: 0.6rem; font-weight: 700;
  border-radius: var(--r-pill); padding: 0.1rem 0.45rem;
}
.tag--veg { background: var(--brand-soft); color: var(--brand-ink); }
.tag--gf  { background: var(--amber-bg); color: var(--amber); }
.upsell {
  margin-top: 0.7rem;
  border: 1px solid var(--brand-line);
  background: var(--brand-soft);
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.upsell__label {
  font-size: 0.56rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-ink);
}
.upsell__text { font-size: 0.74rem; color: var(--ink); }
.cartbar {
  margin-top: 0.85rem;
  background: var(--brand); color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.76rem; font-weight: 700;
  padding: 0.65rem 0.95rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; white-space: nowrap;
}

/* — Übersicht / Stats — */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
.statcard {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: var(--bg);
}
.statcard__label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint);
}
.statcard__value { font-size: 1.3rem; font-weight: 800; color: var(--ink); margin-top: 0.2rem; }
.statcard__sub { font-size: 0.7rem; color: var(--muted); margin-top: 0.1rem; }
.statcard__est {
  display: inline-block; margin-top: 0.25rem;
  font-size: 0.58rem; font-weight: 700; color: var(--brand-ink);
  background: var(--brand-soft); border-radius: var(--r-pill); padding: 0.05rem 0.4rem;
}
.bars { display: flex; align-items: flex-end; gap: 0.35rem; height: 3.5rem; margin-top: 0.6rem; }
.bars span { flex: 1; border-radius: 4px 4px 0 0; background: var(--brand-soft); }
.bars span.peak { background: var(--brand); }
.topseller {
  margin-top: 0.7rem; display: flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line); border-radius: 12px; padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
}
.topseller .rank { color: var(--faint); font-weight: 700; }
.topseller .name { font-weight: 600; color: var(--ink); }
.topseller .x { margin-left: auto; color: var(--muted); }

/* — Import-Sequenz — */
.importseq { display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
.importstep {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.1rem; background: var(--bg);
  display: flex; align-items: center; gap: 0.85rem;
}
.importstep__n {
  flex: none; width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand-ink);
  font-weight: 800; font-size: 0.8rem; display: grid; place-items: center;
}
.importstep.is-done .importstep__n { background: var(--brand); color: #fff; }
.importstep__t { font-weight: 600; color: var(--ink); font-size: 0.9rem; }
.importstep__s { font-size: 0.78rem; color: var(--muted); }
.dropzone {
  border: 2px dashed var(--brand-line); border-radius: 14px;
  background: var(--brand-soft);
  padding: 1.2rem; text-align: center;
  font-size: 0.85rem; color: var(--brand-ink); font-weight: 600;
}

/* — Loyalty / Feedback Mini-Karten — */
.minicards { display: grid; gap: 0.85rem; grid-template-columns: repeat(2, 1fr); }
.minicard {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg); padding: 0.95rem 1rem;
  box-shadow: var(--shadow-sm);
}
.minicard__label {
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--faint);
}
.minicard__title { font-weight: 700; color: var(--ink); font-size: 0.92rem; margin-top: 0.25rem; }
.minicard__text { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; }
.stamps { display: flex; gap: 0.3rem; margin-top: 0.6rem; flex-wrap: wrap; }
.stamp {
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  border: 1.5px dashed var(--brand-line); display: grid; place-items: center;
  font-size: 0.7rem; color: var(--brand-line);
}
.stamp.is-filled { background: var(--brand); border-style: solid; border-color: var(--brand); color: #fff; }
.stars { color: #f5b301; font-size: 1rem; letter-spacing: 0.1em; margin-top: 0.5rem; }

/* ------------------------------------------------------------ Wert-Karten */
.cards3 { display: grid; gap: 1rem; margin-top: 3rem; }
.valuecard {
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--bg); box-shadow: var(--shadow-sm);
  padding: 1.5rem; height: 100%;
}
.valuecard__icon {
  width: 2.6rem; height: 2.6rem; border-radius: 14px;
  background: var(--brand-soft); color: var(--brand-ink);
  display: grid; place-items: center; margin-bottom: 0.9rem;
}
.valuecard__icon svg { width: 1.25rem; height: 1.25rem; }
.valuecard h3 { font-size: 1.05rem; font-weight: 700; }
.valuecard p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--muted); }

/* ------------------------------------------------------------ AI-Teaser */
.ai {
  max-width: 44rem; margin-inline: auto;
  border: 1px solid var(--brand-line);
  background: var(--brand-soft);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 1rem + 2vw, 2.2rem);
}
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; border: 1px solid var(--brand-line);
  color: var(--brand-ink);
  border-radius: var(--r-pill);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
.badge svg { width: 0.85rem; height: 0.85rem; }
.ai .h3 { margin-top: 0.9rem; }
.ai p { margin-top: 0.5rem; }
.ai__prompt {
  margin-top: 1.1rem;
  background: #fff; border: 1px solid var(--brand-line);
  border-radius: 14px; padding: 0.85rem 1rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; color: var(--muted);
}
.ai__prompt .cursor {
  width: 1px; height: 1.1rem; background: var(--brand);
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ------------------------------------------------------------ Preise */
.plans {
  display: grid; gap: 1.25rem;
  max-width: 56rem; margin: 2.5rem auto 0;
}
.plan {
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--bg); box-shadow: var(--shadow-sm);
  padding: 1.75rem; display: flex; flex-direction: column;
}
.plan--best { border: 2px solid var(--brand-line); background: var(--brand-soft); }
.plan__head { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.plan__name { font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.plan__flag {
  background: var(--brand); color: #fff;
  border-radius: var(--r-pill); font-size: 0.68rem; font-weight: 800;
  padding: 0.22rem 0.6rem;
}
.plan__price { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 1.1rem; }
.plan__amt { font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.plan__per { color: var(--muted); font-size: 0.9rem; }
.plan__dots { flex: 1; border-bottom: 1px dotted #c9d0c9; transform: translateY(-4px); }
.plan__sub { font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; }
.plan ul {
  margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  display: grid; gap: 0.65rem;
}
.plan li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.9rem; }
.plan li svg { width: 0.95rem; height: 0.95rem; color: var(--brand); flex: none; margin-top: 0.25rem; }
.plan .btn { margin-top: 1.5rem; }

.pricenote {
  max-width: 44rem; margin: 2.5rem auto 0;
  border: 1px solid var(--brand-line);
  background: var(--brand-soft);
  border-radius: var(--r-card);
  padding: 1.1rem 1.3rem;
  text-align: center; font-size: 0.92rem; line-height: 1.6;
}
.enterprise {
  max-width: 56rem; margin: 1.25rem auto 0;
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--bg); box-shadow: var(--shadow-sm);
  padding: 1.4rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start;
}
.enterprise h3 { font-size: 1.05rem; font-weight: 700; }
.enterprise p { font-size: 0.9rem; color: var(--muted); margin-top: 0.25rem; }
.tax-note { text-align: center; font-size: 0.78rem; color: var(--faint); margin-top: 1.5rem; }

/* ------------------------------------------------------------ FAQ */
.faq { max-width: 44rem; margin-inline: auto; }
.faq__list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
details.qa { border-bottom: 1px solid var(--line); }
details.qa summary {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 600; color: var(--ink);
}
details.qa summary::-webkit-details-marker { display: none; }
.qa__n { font-size: 0.85rem; color: var(--faint); font-weight: 700; font-variant-numeric: tabular-nums; }
.qa__q { flex: 1; }
.qa__plus { color: var(--muted); font-size: 1.3rem; line-height: 1; transition: transform .2s; flex: none; }
details.qa[open] .qa__plus { transform: rotate(45deg); color: var(--brand); }
.qa__a {
  padding: 0 0 1.35rem 2.05rem;
  font-size: 0.95rem; color: var(--muted); line-height: 1.65;
}
.faq__foot { margin-top: 2rem; text-align: center; font-size: 0.92rem; color: var(--muted); }

/* ------------------------------------------------------------ Finale CTA */
.cta-final {
  position: relative; overflow: hidden;
  border-radius: 2rem;
  background: var(--brand);
  color: #fff;
  padding: clamp(3rem, 2rem + 5vw, 5rem) clamp(1.5rem, 1rem + 3vw, 3rem);
  text-align: center;
}
.cta-final::before, .cta-final::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.cta-final::before { width: 18rem; height: 18rem; top: -6rem; right: -4rem; background: rgba(255,255,255,.18); }
.cta-final::after  { width: 16rem; height: 16rem; bottom: -6rem; left: -3rem; background: rgba(0,0,0,.12); }
.cta-final__inner { position: relative; max-width: 40rem; margin-inline: auto; }
.cta-final .h2 { color: #fff; }
.cta-final__chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin: 1.6rem 0;
}
.cta-final__chips li {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(0,0,0,.18); border-radius: var(--r-pill);
  font-size: 0.78rem; font-weight: 600; padding: 0.4rem 0.8rem;
}
.cta-final__chips svg { width: 0.85rem; height: 0.85rem; }
.cta-final__note { margin-top: 1.4rem; font-size: 0.88rem; color: rgba(255,255,255,.9); }
/* Fokus-Ring auf dem grünen Band hell halten (grün auf grün wäre unsichtbar) */
.cta-final .btn:focus-visible { outline-color: #fff; }

/* ------------------------------------------------------------ Footer */
.footer { border-top: 1px solid var(--line); background: var(--bg); }
.footer__grid {
  display: grid; gap: 2.5rem;
  padding-block: 3.5rem;
}
.footer__brand p { margin-top: 0.8rem; font-size: 0.9rem; color: var(--muted); max-width: 20rem; }
.footer__dsgvo {
  margin-top: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--muted);
}
.footer__dsgvo svg { width: 0.9rem; height: 0.9rem; color: var(--brand); }
.footer col, .footcol { }
.footcol h4 { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.footcol ul { margin-top: 1rem; display: grid; gap: 0.65rem; }
.footcol a { font-size: 0.9rem; color: var(--muted); transition: color .15s; }
.footcol a:hover { color: var(--ink); }
.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  font-size: 0.8rem; color: var(--faint);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: space-between;
}

/* Platzhalter-Hinweis (Impressum/Datenschutz, Screenshots) */
.placeholder-note {
  background: var(--amber-bg); border: 1px solid var(--amber-line);
  color: var(--amber); border-radius: 12px;
  padding: 0.75rem 1rem; font-size: 0.85rem; font-weight: 600;
}

/* ------------------------------------------------------------ Klebrige Mobil-CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 60;
  align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--brand); color: #fff;
  font-weight: 700; font-size: 1rem;
  border-radius: var(--r-pill);
  padding: 0.95rem 1.25rem;
  box-shadow: 0 12px 30px -8px rgba(12,107,48,.55);
  transform: translateY(150%);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
.mobile-cta svg { flex: none; }
@media (max-width: 767px) {
  .mobile-cta { display: inline-flex; }
  .mobile-cta.is-visible { transform: none; opacity: 1; }
}

/* ------------------------------------------------------------ Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .browser__live .pulse, .ai__prompt .cursor { animation: none; }
  .btn:active { transform: none; }
}

/* ------------------------------------------------------------ Responsive */
@media (min-width: 600px) {
  .stats { gap: 0.85rem; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .enterprise { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .header__signin { display: inline-flex; }
  .burger { display: none; }
  .step { grid-template-columns: 5.5rem 1fr; gap: 2rem; padding-block: 2.6rem; }
  .cards3 { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: 1fr 1fr; }
  .minicards { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .kassa__grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
  .feature { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .feature--reverse .feature__text { order: 2; }
  .feature--reverse .feature__art  { order: 1; }
}
