/* ============================================================
   MILMERCH Website-Mock, "Tactical Drop-Store"
   Zielgruppe: Rekruten 18 bis 22, mobile-first, WhatsApp-first.
   Dark Interface, Armee-Oliv, Mil-Spec-Typografie.
   ============================================================ */

:root {
  --ink: #101208;          /* Canvas, near-black mit Oliv-Unterton */
  --panel: #161910;        /* Karten, Panels */
  --panel-2: #1C2013;      /* hellere Panels, Hover */
  --line: #2A2E1D;         /* Hairlines */
  --bone: #EDEAE0;         /* Primärtext */
  --muted: #9A987F;        /* Sekundärtext */
  --olive: #A9B665;        /* Akzent, Armee-Oliv hell */
  --olive-deep: #6E7743;   /* Akzent dunkel */
  --wa: #25D366;           /* Nur für WhatsApp-CTAs */

  --display: "Anton", "Arial Narrow", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;

  --max: 1160px;
  --pad: clamp(18px, 4.5vw, 44px);
  --chamfer: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

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

html {
  scroll-behavior: smooth;
}

/* Anker-Ziele nicht unter dem Sticky-Header verschwinden lassen */
main [id],
#top {
  scroll-margin-top: 84px;
}


body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  background: var(--ink);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--olive);
  color: var(--ink);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Körnung über allem, sehr dezent */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- Typo-Bausteine ---------- */

.spec {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}

.spec .dim {
  color: var(--muted);
}

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.005em;
}

h1 {
  font-size: clamp(3.1rem, 12vw, 7.5rem);
}

h2 {
  font-size: clamp(2.1rem, 7vw, 4rem);
  text-wrap: balance;
}

h1 .oli, h2 .oli {
  color: var(--olive);
}

.sub {
  color: var(--muted);
  font-size: clamp(1.08rem, 2.6vw, 1.28rem);
  max-width: 36em;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  clip-path: var(--chamfer);
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn .ico {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}

.btn--wa {
  background: var(--wa);
  color: #06130A;
}

.btn--wa:hover {
  background: #3BE07C;
}

/* Ghost-Button mit Chamfer: Rand als Hintergrundflaeche, Fuellung als Pseudo-Element,
   weil ein echter border vom clip-path abgeschnitten wuerde */
.btn--ghost {
  position: relative;
  background: #3A3F28;
  color: var(--bone);
  border: 0;
}

.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--ink);
  clip-path: var(--chamfer);
  z-index: -1;
}

.btn--ghost:hover {
  background: var(--olive);
  color: var(--olive);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

/* ---------- Ticker (Announcement) ---------- */

.ticker {
  background: var(--olive);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--ink);
}

.ticker-track {
  display: inline-flex;
  padding: 8px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-right: 48px;
}

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

.ticker:hover .ticker-track,
.ticker:focus-within .ticker-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(16, 18, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 64px;
}

.wordmark {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.wordmark .oli {
  color: var(--olive);
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}

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

.header .btn {
  padding: 11px 16px;
  font-size: 13px;
}

/* ---------- Burger und Vollflaechen-Menue (nur mobil) ---------- */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}

.burger i {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bone);
}

@media (max-width: 960px) {
  .burger {
    display: inline-flex;
  }
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(16, 18, 8, 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: 84px var(--pad) calc(24px + env(safe-area-inset-bottom));
}

.menu[hidden] {
  display: none;
}

.menu-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 28px;
  line-height: 1;
  padding: 8px 10px;
  cursor: pointer;
}

.menu-links {
  display: flex;
  flex-direction: column;
}

.menu-links a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--bone);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.menu-links a small {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--olive);
}

.menu-foot {
  margin-top: auto;
  padding-top: 24px;
}

.menu-foot .btn {
  width: 100%;
}

.menu-intro {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

.menu-intro [data-intro-left] {
  color: var(--olive);
  font-weight: 700;
}

/* ---------- Hero ---------- */

/* Konturlinien wie auf einer Geländekarte, sehr dezent */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  background:
    linear-gradient(to bottom, rgba(169, 182, 101, 0.05), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='700' viewBox='0 0 700 700' fill='none' stroke='%23A9B665' stroke-opacity='0.06'%3E%3Cpath d='M120,380 C90,300 140,210 240,190 C340,170 470,150 540,220 C610,290 600,410 520,470 C440,530 300,560 220,510 C150,465 150,460 120,380 Z'/%3E%3Cpath d='M170,370 C150,310 190,240 270,225 C350,210 450,195 505,250 C560,305 555,395 490,440 C425,485 320,510 255,470 C200,436 190,430 170,370 Z'/%3E%3Cpath d='M220,360 C210,320 240,270 300,258 C360,246 430,240 470,280 C510,320 505,380 460,412 C415,444 340,460 290,430 C250,406 230,400 220,360 Z'/%3E%3Cpath d='M270,352 C265,328 285,296 325,288 C365,280 410,278 435,304 C460,330 455,368 425,388 C395,408 350,416 320,398 C295,383 275,376 270,352 Z'/%3E%3C/svg%3E"),
    repeating-linear-gradient(to right, transparent 0 119px, rgba(169, 182, 101, 0.04) 119px 120px);
  background-size: auto, 700px 700px, auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero .spec {
  display: block;
  margin-bottom: 22px;
}

/* Wettbewerb-Sticker im ersten Screen: absolut, kostet keine Hoehe */
.hero-copy {
  position: relative;
}

.win-sticker {
  position: absolute;
  top: 64px;
  right: 0;
  z-index: 2;
  max-width: 168px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.55;
  text-align: center;
  text-decoration: none;
  color: var(--olive);
  border: 2px solid var(--olive);
  background: rgba(16, 18, 8, 0.7);
  padding: 12px 14px;
  transform: rotate(6deg);
  transition: transform 0.2s ease;
}

.win-sticker:hover {
  transform: rotate(1.5deg) scale(1.04);
}

@media (prefers-reduced-motion: no-preference) {
  .win-sticker {
    animation: sticker-in 0.5s cubic-bezier(0.2, 1.4, 0.4, 1) 0.9s backwards;
  }
}

@keyframes sticker-in {
  from {
    opacity: 0;
    transform: rotate(16deg) scale(1.7);
  }
  to {
    opacity: 1;
    transform: rotate(6deg) scale(1);
  }
}

.hero h1 {
  font-size: clamp(2.55rem, 11vw, 6.2rem);
  max-width: 10.5em;
  margin-bottom: 24px;
}

/* Hero-Zeilen einzeln: gestaffelte Einblendung, Mittelzeile als Outline */
.hero h1 .hl {
  display: inline-block;
}

.hl--out {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--bone);
}

@supports not (-webkit-text-stroke: 1px #000) {
  .hl--out {
    color: var(--bone);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1 .hl {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .hero h1 .hl:nth-of-type(2) { transition-delay: 0.1s; }
  .hero h1 .hl:nth-of-type(3) { transition-delay: 0.2s; }

  .hero h1.is-in .hl {
    opacity: 1;
    transform: none;
  }

  /* Der Stempel stempelt sich ein, sobald der Preisblock sichtbar wird */
  .reveal.is-in .stamp {
    animation: stamp-in 0.45s cubic-bezier(0.2, 1.4, 0.4, 1) 0.35s backwards;
  }
}

@keyframes stamp-in {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(1.7);
  }
  to {
    opacity: 1;
    transform: rotate(-4deg) scale(1);
  }
}

.hero-visual .slot {
  aspect-ratio: 3 / 4;
  width: 100%;
}

.hero-visual-caption {
  display: block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.hero-visual-caption .dim {
  color: var(--muted);
}

.hero .sub {
  margin-bottom: 30px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.hero-price .amount {
  font-family: var(--display);
  font-size: clamp(3.4rem, 10vw, 5.6rem);
  line-height: 1;
}

.hero-price .amount small {
  font-size: 0.38em;
  color: var(--muted);
  letter-spacing: 0.06em;
  vertical-align: 0.9em;
  margin-right: 8px;
}

.stamp {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  border: 2px solid var(--olive);
  padding: 8px 12px;
  transform: rotate(-4deg);
}

/* Einfuehrungspreis-Zaehler unter dem Hero-Preis: Balken + Zeile,
   der Stand kommt aus config.js (INTRO_TAKEN) */
.intro-meter {
  margin: -14px 0 30px;
  max-width: 460px;
}

.intro-count {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.intro-count b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.intro-count .intro-of {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Magazin: ein Segment pro Platz, verbleibende gefuellt, vergebene geleert.
   Zehnerbloecke durch groessere Luecke zaehlbar */
.mag {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.mag i {
  flex: 1;
  min-width: 0;
  height: 14px;
  background: var(--olive);
  transform: skewX(-14deg);
}

.mag i.is-gone {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
}

.mag i:nth-child(10n):not(:last-child) {
  margin-right: 6px;
}

@media (prefers-reduced-motion: no-preference) {
  .intro-meter .mag i {
    opacity: 0;
    transform: skewX(-14deg) scaleY(0.3);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .intro-meter.is-in .mag i {
    opacity: 1;
    transform: skewX(-14deg) scaleY(1);
  }
}

/* Kompakte Variante fuer die Smart-Karte */
.mag--mini {
  margin: -2px 0 12px;
}

.mag--mini i {
  height: 7px;
}

.intro-line {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.intro-line b {
  color: var(--olive);
  font-weight: 700;
}

.intro-note [data-intro-left] {
  color: var(--bone);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-meta {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: clamp(32px, 6vw, 56px);
}

.hero-meta b {
  color: var(--olive);
  font-weight: 500;
}

/* ---------- QR-Block: Desktop-Bruecke aufs Handy ---------- */

.qr {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  /* Button-Reset: der QR-Block ist klickbar und oeffnet das Popup */
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.qr img {
  width: 88px;
  height: 88px;
  padding: 6px;
  background: var(--bone);
  display: block;
  flex: none;
  transition: transform 0.2s ease;
}

.qr:hover img {
  transform: translateY(-2px);
}

.qr > span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
}

.qr--footer {
  margin: 4px 0 0;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .qr {
    display: none;
  }
}

/* ---------- Bild-Slots (Platzhalter bis Google-Flow-Bilder da sind) ---------- */

.slot {
  position: relative;
  background:
    repeating-linear-gradient(45deg, #151810 0 14px, #12150D 14px 28px);
  border: 1px dashed #3A3F28;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slot .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 7px 12px;
  text-align: center;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.slot .tag b {
  color: var(--olive);
  font-weight: 700;
  display: block;
}

/* Crop-Marks in den Ecken */
.slot::before,
.slot::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--olive-deep);
}

.slot::before {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}

.slot::after {
  bottom: 8px;
  right: 8px;
  border-left: 0;
  border-top: 0;
}

/* Bild im Slot, sobald ein Asset vorhanden ist */
.slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.slot:hover img {
  transform: scale(1.045);
}

.slot.has-img {
  border-style: solid;
  background: var(--panel);
}

.slot.has-img .tag {
  display: none;
}

.slot.has-img::before,
.slot.has-img::after {
  z-index: 1;
}

/* ---------- Trust-Strip ---------- */

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.kpi {
  padding: 26px 20px 24px;
  border-left: 1px solid var(--line);
}

.kpi:first-child {
  border-left: 0;
  padding-left: 0;
}

.kpi b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.kpi b small {
  font-size: 0.45em;
  color: var(--olive);
  letter-spacing: 0.04em;
  margin-left: 4px;
}

.kpi b small:first-child {
  margin-left: 0;
  margin-right: 4px;
}

.kpi span {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

/* ---------- Sektionen ---------- */

.section {
  padding-top: clamp(64px, 10vw, 128px);
}

.section-head {
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-head .spec {
  display: block;
  margin-bottom: 16px;
}

.section-head h2 {
  margin-bottom: 14px;
}

/* ---------- Bundles ---------- */

.bundles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

/* Wisch-Hinweis unter dem Karussell, nur mobil (Muster der Vergleichstabelle) */
.bundles-hint {
  display: none;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 10px;
}

.bundle {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  clip-path: var(--chamfer);
  transition: background 0.15s ease, transform 0.15s ease;
}

.bundle:hover {
  background: var(--panel-2);
  transform: translateY(-3px);
}

.bundle--featured {
  border: 1px solid var(--olive);
  background: var(--panel-2);
  filter: drop-shadow(0 0 26px rgba(169, 182, 101, 0.22));
}

/* Auf Desktop dominiert die Smart-Karte das Trio sichtbar */
@media (min-width: 961px) {
  .bundle--featured {
    transform: scale(1.035);
    z-index: 1;
  }

  .bundle--featured:hover {
    transform: scale(1.035) translateY(-3px);
  }
}

/* Preis und Kit teilen sich mobil eine Zeile; auf Desktop loest sich der
   Wrapper auf und alles bleibt exakt wie bisher */
.bundle-top {
  display: contents;
}

/* Produktfoto im Kartenkopf, blutet bis an die Kartenkanten */
.bundle-media {
  aspect-ratio: 1 / 1;
  margin: -26px -22px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.flag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: var(--olive);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px 8px 20px;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 0 100%);
}

.bundle .spec {
  margin-bottom: 16px;
}

.bundle-price {
  display: flex;
  align-items: center; /* zweizeiliger Text: mittig statt an der Baseline haengend */
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 16px;
}

.bundle-price b {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1;
}

.bundle-price small {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

/* Kit-Leiste: Lieferumfang pro Kamerad als Glyphen-Reihe */
.kit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.kit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.kit-ico {
  width: 30px;
  height: 30px;
  color: var(--bone);
}

.kit-item small {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.kit-plus {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--olive);
  line-height: 30px;
}

.calc-total .kit {
  margin-bottom: 16px;
}

/* Einfuehrungspreis-Hinweis auf der Smart-Karte */
.intro-note {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--olive);
  margin: -4px 0 16px;
  line-height: 1.6;
}

.bundle ul {
  list-style: none;
  flex: 1;
  margin-bottom: 22px;
}

.bundle li {
  font-size: 15.5px;
  color: var(--bone);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  line-height: 1.45;
}

.bundle li:last-child {
  border-bottom: 0;
}

.bundle li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 7px;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--olive);
}

/* ---------- Preisrechner ---------- */

.calc {
  margin-top: clamp(28px, 5vw, 48px);
  background: var(--panel);
  border: 1px solid var(--olive-deep);
  clip-path: var(--chamfer);
  padding: clamp(24px, 4.5vw, 44px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.calc .spec {
  display: block;
  margin-bottom: 14px;
}

.calc-qty {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin-bottom: 22px;
}

.calc-qty small {
  font-size: 0.5em;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.calc-slider {
  position: relative;
  display: block;
}

/* Marke auf der Skala: ab hier gibts Bier */
.calc-tick {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 20px;
  background: var(--olive-deep);
  pointer-events: none;
}

.calc.is-hit .calc-tick {
  background: var(--olive);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--line);
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  background: var(--olive);
  border: 5px solid var(--ink);
  border-radius: 0;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--olive);
  border: 5px solid var(--ink);
  border-radius: 0;
}

.calc-scale {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  letter-spacing: 0.08em;
}

/* Perk-Chips: schalten beim Erreichen der Schwelle um (Unlock-Moment) */
.perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  border: 1px dashed #3A3F28;
  padding: 9px 14px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.perk i {
  font-style: normal;
  font-weight: 700;
  opacity: 0.35;
}

.perk-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.perk-ico {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--muted);
}

.perk.is-hit .perk-ico {
  color: var(--bone);
}

.perk small {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.perk.is-hit {
  color: var(--bone);
  border-style: solid;
  border-color: var(--olive-deep);
  background: rgba(169, 182, 101, 0.08);
}

.perk.is-hit i {
  color: var(--olive);
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .perk.is-hit {
    animation: perk-pop 0.3s ease;
  }
}

@keyframes perk-pop {
  50% { transform: scale(1.07); }
}

.calc-total {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 40px);
}

/* Zwei Stat-Kacheln (Preis pro Kopf, Ersparnis): das Total lebt als
   Fussnote in der linken Spalte und wird bewusst nicht betont */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  margin-bottom: 0;
}

.stat {
  padding: 16px 14px 14px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat-label {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1;
  white-space: nowrap;
}

.stat b small {
  font-size: 0.42em;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-right: 5px;
  vertical-align: 0.7em;
}

/* Breite fuer den jeweils groesstmoeglichen Wert reservieren (Anton hat
   keine Tabellenziffern): kein horizontales Wackeln beim Ziffernwechsel */
.stat b > span {
  display: inline-block;
  text-align: left;
}

#calc-price-out { min-width: 1.15em; }
#calc-save-out { min-width: 1.7em; }   /* max 840 */

/* Total-Fussnote unter der Skala: Mono, muted, Zahl mit Breiten-Reservierung */
.calc-totalline {
  font-family: var(--mono);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.7;
}

.calc-totalline b {
  color: var(--bone);
  font-weight: 700;
}

.calc-totalline .dim {
  color: var(--muted);
  margin-left: 10px;
}

.calc-totalline #calc-total-out {
  display: inline-block;
  min-width: 3.1em; /* max 3'960: kein Wackeln beim Ziehen */
  text-align: left;
}

/* Perks in der Entscheidungs-Spalte: volle Breite, direkt ueber dem CTA */
.calc-total .perks {
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 20px;
}

.calc-total .perk {
  width: 100%;
  font-size: 14px;
  padding: 11px 14px;
}

.calc-total .perk small {
  margin-left: auto;
}

/* Einrast-Puls beim Loslassen des Reglers */
@media (prefers-reduced-motion: no-preference) {
  .stat.is-set {
    animation: stat-pulse 0.22s ease;
  }
}

@keyframes stat-pulse {
  50% { transform: scale(1.03); }
}

.stat--save b {
  color: var(--olive);
}

.stat-sub {
  display: block;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
}

.stat-sub s {
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(169, 182, 101, 0.7);
}

.calc-total .calc-cta {
  width: 100%;
}

/* ---------- Patch-Solo (Einstiegsangebot, Klett-Optik) ---------- */

/* Der Strip selbst ist die Klettflaeche: dunkles Loop-Punktmuster per CSS,
   bewusst OHNE Oliv-Rahmen, damit er nicht mit Rechner/Losschein konkurriert */
.patchstrip {
  margin-top: 14px;
  background:
    radial-gradient(circle at 2px 2px, #1D2113 1.2px, transparent 1.7px),
    #12150D;
  background-size: 7px 7px, auto;
  border: 1px solid var(--line);
  clip-path: var(--chamfer);
  padding: clamp(24px, 4.5vw, 44px);
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.patch-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(-2.5deg);
  box-shadow: 10px 12px 0 rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.patch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.patchstrip:hover .patch-photo {
  transform: rotate(0.5deg) translateY(-5px);
  box-shadow: 14px 18px 0 rgba(0, 0, 0, 0.5);
}

/* Abriss-Moment beim Scroll-in: kurz anheben, zurueckfallen */
@media (prefers-reduced-motion: no-preference) {
  .patchstrip.is-in .patch-photo {
    animation: patch-rip 0.8s cubic-bezier(0.3, 1.3, 0.4, 1) 0.3s backwards;
  }
}

@keyframes patch-rip {
  0% { transform: rotate(-2.5deg); }
  45% {
    transform: rotate(2deg) translateY(-9px);
    box-shadow: 16px 22px 0 rgba(0, 0, 0, 0.5);
  }
  100% { transform: rotate(-2.5deg); }
}

.patch-caption {
  display: block;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.patch-copy .spec {
  display: block;
  margin-bottom: 14px;
}

/* Headline bewusst eine Stufe unter H2: Unterangebot, keine eigene Sektion */
.patch-head {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0.005em;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 12px;
}

.patch-head .oli {
  color: var(--olive);
}

.patch-sub {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 34em;
  margin-bottom: 20px;
}

.patch-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.patch-price .amount {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  line-height: 1;
}

.patch-price .amount small {
  font-size: 0.38em;
  color: var(--muted);
  letter-spacing: 0.06em;
  vertical-align: 0.9em;
  margin-right: 8px;
}

.patch-price .stamp {
  font-size: 12px;
}

.patch-meta {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 22px;
}

.patch-meta b {
  color: var(--olive);
  font-weight: 500;
}

.patch-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ---------- So läufts ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.step {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 22px 20px 24px;
  position: relative;
}

.step .no {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--olive);
  display: block;
  margin-bottom: 40px;
}

.step h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Vergleich ---------- */

.table-wrap {
  position: relative;
}

/* Kante rechts deutet an, dass die Tabelle weiterscrollt (nur mobil relevant) */
.table-wrap::after {
  content: "";
  display: none;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  width: 44px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(16, 18, 8, 0.9));
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}

.table-hint {
  display: none;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  font-size: 15px;
}

thead th {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  color: var(--muted);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  white-space: nowrap;
}

tbody th,
tbody td {
  text-align: left;
  padding: 15px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  color: var(--muted);
}

tbody th {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
}

tbody tr.is-us {
  background: rgba(169, 182, 101, 0.1);
  box-shadow: inset 0 0 34px rgba(169, 182, 101, 0.07);
}

tbody tr.is-us th,
tbody tr.is-us td {
  color: var(--bone);
  font-weight: 500;
}

tbody tr.is-us th {
  color: var(--olive);
  font-weight: 700;
  border-left: 3px solid var(--olive);
}

.us-chip {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--olive);
  padding: 3px 7px;
  margin-left: 10px;
  transform: rotate(-3deg);
}

.table-foot {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- Showcase ---------- */

.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.showcase .slot {
  aspect-ratio: 4 / 5;
}

/* Erste Kachel als Feature über zwei Zeilen, bricht das Raster auf */
@media (min-width: 961px) {
  .showcase .slot:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

/* Breitformat-Kachel (z.B. Patch auf Klett, 16:9): quer ueber zwei Spalten,
   schliesst das Raster ohne Loch ab */
.showcase .slot--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.showcase-line {
  margin-top: 30px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.6vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.showcase-line .oli {
  color: var(--olive);
}

/* ---------- Wettbewerb: Losschein ---------- */

.win {
  background: var(--panel);
  border: 1px solid var(--olive-deep);
  clip-path: var(--chamfer);
  padding: 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
}

.win-left {
  padding: clamp(24px, 4.5vw, 44px);
}

.win .spec {
  display: block;
  margin-bottom: 18px;
}

.win-step {
  display: flex;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 16.5px;
  line-height: 1.55;
}

.win-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.win-step b {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--olive);
  padding-top: 4px;
  flex: none;
}

/* Codewort GRATIS als Chip, damit die Teilnahme-Mechanik sofort klar ist */
.win-step .code {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.82em;
  letter-spacing: 0.12em;
  color: var(--olive);
  border: 1px solid var(--olive-deep);
  background: rgba(169, 182, 101, 0.08);
  padding: 2px 8px;
  white-space: nowrap;
}

/* Rechte Haelfte = Coupon: Abrisskante mit Stanzloechern, Preisbild im Anschnitt */
.win-right {
  position: relative;
  border-left: 2px dashed #3A3F28;
  padding: clamp(24px, 4.5vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  background:
    linear-gradient(100deg, rgba(22, 25, 16, 0.96) 45%, rgba(22, 25, 16, 0.62)),
    url("img/showcase-01-480.jpg") right center / cover no-repeat;
}

.win-right::before,
.win-right::after {
  content: "";
  position: absolute;
  left: -11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--olive-deep);
}

.win-right::before { top: -11px; }
.win-right::after { bottom: -11px; }

.win-ticketmeta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
}

.win-ticketmeta .dim {
  color: var(--muted);
}

.win-prize > small {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.win-prize b {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 4.6rem);
  line-height: 1;
}

.win-prize b small {
  font-size: 0.4em;
  color: var(--olive);
  letter-spacing: 0.04em;
  margin-right: 8px;
  vertical-align: 0.8em;
}

.win-note {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.8;
}

.win-note a {
  color: var(--olive);
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 780px;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--panel);
  margin-bottom: 10px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 20px;
  font-size: 16.5px;
  font-weight: 600;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--olive);
  flex: none;
}

.faq details[open] summary::after {
  content: "x";
  font-size: 14px;
}

.faq details p {
  padding: 0 20px 20px;
  font-size: 15.5px;
  color: var(--muted);
  max-width: 46em;
  line-height: 1.65;
}

/* ---------- Footer ---------- */

.footer {
  margin-top: clamp(72px, 11vw, 140px);
  border-top: 1px solid var(--line);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='700' viewBox='0 0 700 700' fill='none' stroke='%23A9B665' stroke-opacity='0.05'%3E%3Cpath d='M120,380 C90,300 140,210 240,190 C340,170 470,150 540,220 C610,290 600,410 520,470 C440,530 300,560 220,510 C150,465 150,460 120,380 Z'/%3E%3Cpath d='M170,370 C150,310 190,240 270,225 C350,210 450,195 505,250 C560,305 555,395 490,440 C425,485 320,510 255,470 C200,436 190,430 170,370 Z'/%3E%3Cpath d='M220,360 C210,320 240,270 300,258 C360,246 430,240 470,280 C510,320 505,380 460,412 C415,444 340,460 290,430 C250,406 230,400 220,360 Z'/%3E%3Cpath d='M270,352 C265,328 285,296 325,288 C365,280 410,278 435,304 C460,330 455,368 425,388 C395,408 350,416 320,398 C295,383 275,376 270,352 Z'/%3E%3C/svg%3E") right -120px bottom -160px / 700px 700px no-repeat,
    var(--panel);
}

.footer .wrap {
  padding-top: clamp(48px, 8vw, 88px);
  padding-bottom: 110px;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: end;
  padding-bottom: clamp(36px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}

.footer-cta h2 {
  font-size: clamp(2.2rem, 7vw, 4.6rem);
}

.footer-contact {
  text-align: right;
}

.footer-contact .spec {
  display: block;
  margin-bottom: 14px;
}

.footer-contact .domain {
  display: block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 24px;
  padding-top: 26px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-meta .legal-links {
  display: flex;
  gap: 18px;
}

.footer-meta .legal-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-meta .legal-links a:hover {
  color: var(--olive);
}

.footer-meta .langs a {
  text-decoration: none;
  margin-left: 14px;
  color: var(--muted);
}

.footer-meta .langs a.is-active,
.footer-meta .langs a:hover {
  color: var(--olive);
}

/* ---------- Rechtsseiten (Impressum, AGB, Datenschutz) ---------- */

.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) var(--pad) 0;
}

.legal-main .spec {
  display: block;
  margin-bottom: 16px;
}

.legal-main h1 {
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.legal-main h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin: 44px 0 12px;
}

.legal-main p,
.legal-main li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 46em;
}

.legal-main p + p {
  margin-top: 10px;
}

.legal-main strong {
  color: var(--bone);
  font-weight: 600;
}

.legal-main a {
  color: var(--olive);
}

.legal-main ul {
  list-style: none;
  margin-top: 10px;
}

.legal-main li {
  padding: 6px 0 6px 22px;
  position: relative;
}

.legal-main li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 5px;
  font-family: var(--mono);
  font-weight: 700;
  color: var(--olive);
}

.legal-updated {
  margin-top: 52px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer--slim {
  margin-top: clamp(64px, 10vw, 120px);
}

.footer--slim .wrap {
  padding-top: 8px;
  padding-bottom: 44px;
}

/* ---------- Sticky WhatsApp-Bar (mobil) ---------- */

.sticky-wa {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  align-items: center;
  gap: 14px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(16, 18, 8, 0.94);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.sticky-wa.is-on {
  transform: none;
}

/* Preisanker links in der Bar: erinnert beim Scrollen, worum es geht */
.sticky-price {
  flex: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

.sticky-price b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  color: var(--bone);
  margin-right: 6px;
  letter-spacing: 0.02em;
}

.sticky-price b small {
  font-size: 0.55em;
  color: var(--olive);
  margin-right: 3px;
}

.sticky-price > span {
  display: block;
  font-size: 11px;
}

.sticky-wa .btn {
  flex: 1;
}

/* ---------- QR-Popup ---------- */

.qr-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: none;
  margin: auto; /* der globale Reset ueberschreibt das UA-Zentrieren, hier zurueckholen */
}

.qr-modal::backdrop {
  background: rgba(16, 18, 8, 0.85);
  backdrop-filter: blur(4px);
}

.qr-modal-box {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--olive-deep);
  clip-path: var(--chamfer);
  padding: 40px 44px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.qr-modal-box img {
  width: min(70vw, 320px);
  height: auto;
  background: var(--bone);
  padding: 12px;
}

.qr-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 24px;
  line-height: 1;
  padding: 6px 9px;
  cursor: pointer;
}

.qr-modal-close:hover {
  color: var(--olive);
}

.qr-modal-link {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

@media (prefers-reduced-motion: no-preference) {
  .qr-modal[open] .qr-modal-box {
    animation: modal-in 0.16s ease;
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  /* Stimmungsbild mobil flacher: mehr Info pro Screen */
  .hero-visual .slot {
    aspect-ratio: 3 / 2;
  }

  .step .no {
    margin-bottom: 22px;
  }

  .table-wrap::after {
    display: block;
  }

  .table-hint {
    display: block;
  }

  .trust .wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .kpi {
    border-top: 1px solid var(--line);
    padding-left: 20px;
  }

  .kpi:nth-child(1),
  .kpi:nth-child(2) {
    border-top: 0;
  }

  .kpi:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  /* Bundles als wischbares Karussell: eine Karte pro Screen, die naechste
     lugt am Rand hervor. Karten kompakter: Bild 3:2, Liste dichter */
  .bundles {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-left: calc(-1 * var(--pad));
    margin-right: calc(-1 * var(--pad));
    padding: 4px var(--pad) 8px;
  }

  .bundles::-webkit-scrollbar {
    display: none;
  }

  .bundle {
    flex: 0 0 85%;
    scroll-snap-align: start;
    padding: 14px;
  }

  .bundle-media {
    aspect-ratio: 21 / 9;
    margin: -14px -14px 12px;
  }

  .bundle .spec {
    margin-bottom: 6px;
  }

  /* Preis und Kit auf einer Zeile: Icons ohne Labels, das Kit-Aria traegt */
  .bundle-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .bundle-price {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .bundle-price b {
    font-size: 1.9rem;
  }

  .bundle-price small {
    line-height: 1.45;
  }

  .bundle .kit {
    margin-bottom: 0;
    gap: 7px;
  }

  .bundle .kit-ico {
    width: 20px;
    height: 20px;
  }

  .bundle .kit-item small {
    display: none;
  }

  .bundle .kit-plus {
    line-height: 20px;
    font-size: 12px;
  }

  .bundle li {
    padding: 3px 0 3px 16px;
    font-size: 14px;
    line-height: 1.35;
  }

  .bundle li::before {
    top: 2px;
  }

  .bundle .btn {
    padding: 11px 16px;
  }

  .bundle .mag--mini {
    margin: 0 0 6px;
  }

  .bundle .intro-note {
    font-size: 11.5px;
    margin: -2px 0 8px;
    line-height: 1.5;
  }

  .bundles-hint {
    display: block;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Quadratischer Crop mobil: mehr Motive pro Screen, kein Bild faellt weg */
  .showcase .slot {
    aspect-ratio: 1 / 1;
  }

  /* Budget-Check mobil: Spalten-Wrapper aufloesen und Stuecke neu ordnen,
     das Total rueckt als Fussnote unter den Button */
  .calc {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Basisregel zentriert (Grid), hier muss alles voll breit sein */
  }

  .calc-left,
  .calc-total {
    display: contents;
  }

  /* 14px-Raster: Cluster intern eng, zwischen Clustern fix 18px.
     gap:0 zwingend — das Grid-gap der Basisregel wirkt sonst im Flex-Stapel mit */
  .calc {
    padding: 18px;
    gap: 0;
  }

  .calc > .calc-left > .spec { order: 1; margin-bottom: 12px; }
  .calc-qty { order: 2; margin-bottom: 10px; }
  .calc-slider { order: 3; }
  .calc-scale { order: 4; margin-top: 6px; }
  .calc-total .kit { order: 5; margin: 18px 0 0; }
  .stats { order: 6; margin-top: 8px; }
  .perks { order: 7; margin-top: 18px; }
  .calc-cta { order: 8; margin-top: 18px; padding: 13px 16px; }
  .calc-totalline { order: 9; margin-top: 12px; text-align: center; }

  /* Bier-Schwelle direkt am Tick beschriften */
  .calc-tick::after {
    content: "25";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    color: var(--olive-deep);
  }

  .calc.is-hit .calc-tick::after {
    color: var(--olive);
  }

  /* Kit als Inline-Spec-Zeile statt gestrandetem Block */
  .calc-total .kit {
    gap: 8px;
    align-items: center;
  }

  .calc-total .kit-item {
    flex-direction: row;
    gap: 6px;
  }

  .calc-total .kit-ico {
    width: 18px;
    height: 18px;
  }

  .calc-total .kit-item small {
    font-size: 11px;
  }

  .calc-total .kit-plus {
    line-height: 18px;
    font-size: 12px;
  }

  /* Kacheln halbiert: nur Label, Zahl und Streichpreis */
  .stat {
    padding: 10px 12px;
  }

  .stat-label {
    font-size: 11.5px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    margin-bottom: 6px;
  }

  .stat b {
    font-size: 1.5rem;
  }

  .stat-sub {
    margin-top: 5px;
    font-size: 11.5px;
  }

  .stat-sub-word {
    display: none;
  }

  .stat--save .stat-sub {
    display: none;
  }

  /* Perks als Unlock-Kacheln: Icon oben, Text mittig, Schwelle unten,
     Haken als Stempel in der Ecke */
  .perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .calc-total .perk {
    position: relative;
    width: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 7px;
    padding: 16px 10px 12px;
  }

  .calc-total .perk i {
    position: absolute;
    top: 5px;
    right: 9px;
  }

  .calc-total .perk .perk-text {
    font-size: 14px;
    line-height: 1.35;
  }

  .calc-total .perk small {
    margin-left: 0;
    width: auto;
  }

  .calc-total .perk.is-hit small {
    color: var(--olive);
  }

  /* Caption unterm Badge-Foto mobil weglassen */
  .patch-caption {
    display: none;
  }

  .patchstrip {
    grid-template-columns: 1fr;
  }

  /* Mobil flacher croppen, sonst frisst das Foto einen ganzen Screen */
  .patch-photo {
    aspect-ratio: 16 / 10;
  }

  .win {
    grid-template-columns: 1fr;
  }

  /* Perforation liegt mobil horizontal, Stanzloecher an den Seiten;
     Overlay dichter, damit der Text ueber dem Preisbild ruhig bleibt */
  .win-right {
    border-left: 0;
    border-top: 2px dashed #3A3F28;
    background:
      linear-gradient(to bottom, rgba(22, 25, 16, 0.96) 30%, rgba(22, 25, 16, 0.82)),
      url("img/showcase-01-480.jpg") center 30% / cover no-repeat;
  }

  .win-right::before {
    top: -11px;
    left: -11px;
    bottom: auto;
  }

  .win-right::after {
    top: -11px;
    bottom: auto;
    left: auto;
    right: -11px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .header .btn span {
    display: none;
  }

  .header .btn {
    padding: 10px 12px;
  }

  /* Vier Schritte im 2x2-Raster: halbe Hoehe, Texte sind kurz genug */
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .step {
    padding: 16px 14px 18px;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 14.5px;
  }

  /* Globale Verdichtung: Sektionsabstaende eine Stufe runter */
  .section {
    padding-top: 48px;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .footer {
    margin-top: 56px;
  }

  .faq summary {
    padding: 14px 16px;
    font-size: 16px;
  }

  .faq details p {
    padding: 0 16px 16px;
  }

  .win-left,
  .win-right {
    padding: 22px 18px;
  }

  .win-step {
    padding: 10px 0;
    gap: 12px;
    font-size: 15.5px;
  }

  .win-prize b {
    font-size: 2.4rem;
  }

  .sticky-wa {
    display: flex;
  }

  /* Hero kompakt: CTA muss in den ersten Viewport */
  .hero {
    padding-top: 32px;
  }

  .win-sticker {
    top: 56px;
    max-width: 128px;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 9px 10px;
  }

  .hero .spec {
    margin-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 16px;
  }

  .sub-more {
    display: none;
  }

  .hero .sub {
    margin-bottom: 20px;
  }

  .hero-price {
    margin-bottom: 24px;
  }

  .intro-meter {
    margin: -12px 0 22px;
  }

  /* Stat-Kacheln mobil: Zahlen etwas kleiner */
  .stat {
    padding: 12px 10px;
  }

  .stat b {
    font-size: 1.55rem;
  }

  .stat-sub {
    font-size: 11.5px;
  }
}
