@font-face {
  font-family: 'Fredoka';
  src: url('/fonts/fredoka-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;

  --black: #06070b;
  --bg: #06070b;
  --bg-2: #0b0d13;
  --bg-3: #10131b;
  --surface: #12151e;
  --surface-2: #191d28;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);

  --text: #f3f5fb;
  --text-soft: #c9cfe0;
  --muted: #949cb4;

  --pink: #ff2d95;
  --cyan: #22cfff;
  --yellow: #ffc21a;
  --green: #7cd63f;
  --violet: #a855f7;
  --orange: #ff9416;
  --red: #ff5a4d;
  --navy: #16276a;

  --accent: var(--pink);
  --accent-rgb: 255 45 149;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 34px 80px rgba(0, 0, 0, 0.65);

  --font-display: 'Fredoka', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.2rem);
  --sec-y: clamp(2.8rem, 1.8rem + 3.4vw, 5rem);
  --header-h: 66px;
}

.a-red { --accent: #ff5a4d; --accent-rgb: 255 90 77; }
.a-cyan { --accent: #22cfff; --accent-rgb: 34 207 255; }
.a-violet { --accent: #a855f7; --accent-rgb: 168 85 247; }
.a-pink { --accent: #ff2d95; --accent-rgb: 255 45 149; }
.a-yellow { --accent: #ffc21a; --accent-rgb: 255 194 26; }
.a-orange { --accent: #ff9416; --accent-rgb: 255 148 22; }
.a-green { --accent: #7cd63f; --accent-rgb: 124 214 63; }

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 14px);
  background: var(--black);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-soft);
  background: var(--bg);
  line-height: 1.62;
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.06rem);
  overflow-x: hidden;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }

img, picture, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: #fff;
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.35rem + 3.2vw, 3.6rem); line-height: 1.02; font-weight: 700; }
h2 { font-size: clamp(1.62rem, 1.28rem + 1.4vw, 2.4rem); }
h3 { font-size: clamp(1.14rem, 1.06rem + 0.38vw, 1.34rem); }
p { margin: 0 0 1rem; }
strong { color: #fff; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--pink); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:where(a, button, input, textarea, select, summary, .choice):focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 0.72rem 1.35rem; border-radius: 999px; border: none; cursor: pointer;
  color: #fff; text-decoration: none; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 0.92rem 1.7rem; font-size: 1.06rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff6a2a);
  box-shadow: 0 12px 30px rgba(255, 45, 149, 0.32);
}
.btn-primary:hover { box-shadow: 0 18px 38px rgba(255, 45, 149, 0.44); }

.btn-accent {
  background: var(--accent);
  color: #08090d;
  box-shadow: 0 12px 28px rgb(var(--accent-rgb) / 0.28);
}
.btn-accent:hover { box-shadow: 0 18px 36px rgb(var(--accent-rgb) / 0.4); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.4); }

.btn-wa { background: #25d366; color: #05240f; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.26); }

/* ---------- Section scaffolding ---------- */
.section { position: relative; padding: var(--sec-y) 0; }
.section-head { max-width: 52rem; margin: 0 auto clamp(1.6rem, 2.8vw, 2.6rem); text-align: center; }
.section-head h2 { margin-bottom: 0.35em; }
.section-head > :last-child { margin-bottom: 0; }
.section-sub { color: var(--muted); font-size: 1.02rem; }

.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.32rem 0.85rem; border-radius: 999px; margin: 0 0 0.8rem;
  background: rgb(var(--accent-rgb) / 0.14);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.28);
}
.kicker-pink { --accent: var(--pink); --accent-rgb: 255 45 149; }
.kicker-cyan { --accent: var(--cyan); --accent-rgb: 34 207 255; }
.kicker-yellow { --accent: var(--yellow); --accent-rgb: 255 194 26; }
.kicker-green { --accent: var(--green); --accent-rgb: 124 214 63; }
.kicker-violet { --accent: var(--violet); --accent-rgb: 168 85 247; }

.hl { color: var(--pink); }
.hl-cyan { color: var(--cyan); }
.hl-yellow { color: var(--yellow); }

.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(6, 7, 11, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand:hover { text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.34rem; letter-spacing: -0.02em; white-space: nowrap; }
.brand-fun { color: var(--pink); }
.brand-dot { color: var(--yellow); }
.brand-baden { color: #fff; }

.nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 0.15rem; margin: 0; padding: 0; }
.nav-menu a {
  display: inline-block; color: var(--text-soft); font-family: var(--font-display); font-weight: 500;
  padding: 0.45rem 0.72rem; border-radius: 999px; font-size: 0.97rem; white-space: nowrap;
}
.nav-menu a:hover { background: rgba(255, 255, 255, 0.07); color: #fff; text-decoration: none; }
.nav-menu a[aria-current='page'] { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), #ff6a2a) !important;
  color: #fff !important; padding-inline: 1.1rem !important; font-weight: 600;
  box-shadow: 0 8px 20px rgba(255, 45, 149, 0.3);
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(1.6rem, 0.9rem + 2.6vw, 3rem) 0 0;
  background: var(--black);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-fx::before,
.hero-fx::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(90px);
}
.hero-fx::before {
  width: min(70vw, 720px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.4), transparent 66%);
  top: -26%; left: -14%;
}
.hero-fx::after {
  width: min(62vw, 640px); aspect-ratio: 1;
  background: radial-gradient(circle, rgba(34, 207, 255, 0.34), transparent 66%);
  top: -14%; right: -16%;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.075) 1.4px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 66% at 50% 30%, #000 10%, transparent 72%);
  mask-image: radial-gradient(ellipse 80% 66% at 50% 30%, #000 10%, transparent 72%);
}
.hero-spot {
  position: absolute; z-index: 0; pointer-events: none;
  top: -12%; left: 50%; transform: translateX(-50%);
  width: min(96vw, 900px); aspect-ratio: 1;
  background: radial-gradient(circle at 50% 40%, rgba(168, 85, 247, 0.24), transparent 60%);
  filter: blur(40px);
}

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 58rem; margin-inline: auto; }

.hero-logo {
  width: clamp(168px, 23vw, 280px);
  margin: 0 auto clamp(0.7rem, 1.6vw, 1.2rem);
  filter: drop-shadow(0 0 42px rgba(34, 207, 255, 0.32)) drop-shadow(0 22px 34px rgba(0, 0, 0, 0.7));
  animation: hero-float 7s ease-in-out infinite;
}
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero h1 { margin-bottom: 0.5rem; }
.hero-lead {
  font-size: clamp(1.03rem, 0.98rem + 0.35vw, 1.18rem);
  color: var(--text-soft);
  margin: 0 auto 1.5rem;
  max-width: 40rem;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 500; color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 0.4rem 1rem; border-radius: 999px; margin: 0 0 1.2rem; font-size: 0.86rem;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(124, 214, 63, 0.22); flex: none; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.trust-row { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; justify-content: center; }
.trust-row li {
  position: relative; padding: 0.32rem 0.9rem 0.32rem 1.9rem;
  background: rgba(255, 255, 255, 0.045); border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line);
  font-weight: 600; color: var(--text-soft); font-size: 0.85rem;
}
.trust-row li::before { content: '✔'; position: absolute; left: 0.78rem; color: var(--green); font-weight: 800; }

/* Hero rail – die Angebote greifen in den nächsten Abschnitt */
.hero-rail-wrap {
  position: relative; z-index: 6;
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
  margin-bottom: clamp(-3.4rem, -3vw, -2.2rem);
}
.hero-rail-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-bottom: 0.7rem;
}
.hero-rail-head p {
  margin: 0; font-family: var(--font-display); font-weight: 500;
  color: var(--muted); font-size: 0.9rem; letter-spacing: 0.03em; text-transform: uppercase;
}
.hero-rail-head a { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; color: var(--cyan); white-space: nowrap; }
.hero-rail {
  display: flex; gap: 0.7rem; overflow-x: auto; padding: 0.5rem 0.2rem 1.4rem;
  margin-inline: -0.2rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) transparent;
}
.hero-rail::-webkit-scrollbar { height: 6px; }
.hero-rail::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 999px; }
.rail-card {
  scroll-snap-align: start; flex: 0 0 auto;
  display: flex; align-items: center; gap: 0.7rem;
  width: 15.5rem; padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rail-card:hover {
  text-decoration: none; transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.6), 0 14px 30px rgb(var(--accent-rgb) / 0.2);
}
.rail-card img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 0 0 2px rgb(var(--accent-rgb) / 0.55); }
.rail-txt { min-width: 0; }
.rail-card b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: #fff; line-height: 1.25; }
.rail-txt span { font-size: 0.78rem; color: var(--muted); }
.rail-card .rail-go { margin-left: auto; color: var(--accent); font-weight: 700; flex: none; font-size: 1.1rem; }

/* ---------- Marquee ---------- */
.marquee-wrap { position: relative; z-index: 1; overflow: hidden; }
.marquee {
  background: linear-gradient(90deg, var(--pink), var(--violet) 34%, var(--cyan) 68%, var(--green));
  color: #08090d; overflow: hidden; padding: 0.6rem 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-group {
  display: flex; align-items: center; gap: 1.3rem;
  flex: 0 0 auto; min-width: 100vw; justify-content: space-around;
  padding-right: 1.3rem;
  white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: 1rem;
}
.marquee-group .dot { opacity: 0.55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Katalog ---------- */
.katalog { background: var(--bg); padding-top: clamp(4.4rem, 3rem + 4vw, 6.4rem); }
.kat-group + .kat-group { margin-top: clamp(2.2rem, 4vw, 3.4rem); }
.kat-group-head {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid var(--line);
}
.kat-group-head h3 { margin: 0; font-size: clamp(1.2rem, 1.06rem + 0.5vw, 1.45rem); }
.kat-group-head p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.kat-count {
  margin-left: auto; flex: none;
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  color: var(--muted); background: rgba(255, 255, 255, 0.05);
  padding: 0.24rem 0.7rem; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line);
}

.kat-list { display: grid; gap: clamp(0.7rem, 1.4vw, 1rem); }

.kat-card {
  position: relative;
  display: grid;
  grid-template-columns: clamp(170px, 22%, 240px) minmax(0, 1fr) minmax(0, auto);
  min-height: clamp(150px, 15vw, 186px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.kat-card:hover, .kat-card:focus-within {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.55), 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 36px rgb(var(--accent-rgb) / 0.12);
}
.kat-media { position: relative; overflow: hidden; background: #0a0c12; }
.kat-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.6s ease;
}
.kat-card:hover .kat-media img { transform: scale(1.06); }
.kat-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6, 7, 11, 0) 55%, rgba(18, 21, 30, 0.9) 100%);
}
.kat-tag {
  position: absolute; z-index: 2; top: 0.7rem; left: 0.7rem;
  background: var(--accent); color: #08090d;
  font-family: var(--font-display); font-weight: 600; font-size: 0.73rem;
  padding: 0.22rem 0.66rem; border-radius: 999px;
}
.kat-emoji { font-size: 1.15rem; margin-right: 0.45rem; }
.kat-body {
  padding: 1.05rem 1.25rem; display: flex; flex-direction: column;
  justify-content: center; gap: 0.42rem; min-width: 0;
}
.kat-body h4 { margin: 0; font-size: clamp(1.06rem, 1rem + 0.3vw, 1.25rem); display: flex; align-items: baseline; }
.kat-card-link { color: inherit; }
.kat-card-link::after { content: ''; position: absolute; inset: 0; z-index: 3; border-radius: inherit; }
.kat-card-link:hover { text-decoration: none; }
.kat-body p { margin: 0; font-size: 0.94rem; color: var(--muted); }
.kat-goodfor { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; margin-top: 0.35rem; min-width: 0; }
.kat-goodfor-label {
  font-family: var(--font-display); font-weight: 600; color: var(--muted);
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.kat-meta {
  list-style: none; display: flex; flex-wrap: nowrap; gap: 0.34rem; margin: 0; padding: 0;
  max-width: 100%; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch;
}
.kat-meta::-webkit-scrollbar { display: none; }
.kat-meta li {
  font-family: var(--font-display); font-weight: 500; font-size: 0.78rem;
  color: var(--accent);
  background: rgb(var(--accent-rgb) / 0.12);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.3);
  padding: 0.18rem 0.66rem; border-radius: 999px; white-space: nowrap;
  flex: 0 0 auto;
}
.kat-action {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 0.42rem;
  padding: 1.05rem 1.25rem 1.05rem 0.5rem; text-align: right;
}
.kat-price { font-family: var(--font-display); font-size: 1.15rem; color: #fff; font-weight: 700; white-space: nowrap; }
.kat-pickup { font-size: 0.74rem; color: rgba(255, 255, 255, 0.38); white-space: nowrap; }
.kat-cta {
  pointer-events: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 0.46rem 0.95rem; border-radius: 999px;
  background: rgb(var(--accent-rgb) / 0.14);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.4);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.kat-card:hover .kat-cta,
.kat-card:focus-within .kat-cta { background: var(--accent); color: #08090d; transform: translateX(2px); }

/* ---------- Live-Popcorn Band ---------- */
.livepop { background: var(--bg); }
.livepop-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #17110a 0%, #1c1206 55%, #100c14 100%);
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(255, 148, 22, 0.25), var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(1.4rem, 3.5vw, 2.8rem); align-items: center;
}
.livepop-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 86% 6%, rgba(255, 194, 26, 0.28), transparent 46%);
}
.livepop-media {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg);
  max-width: 330px; width: 100%; margin-inline: auto;
  transform: rotate(-2.5deg);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.6);
}
.livepop-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); }
.livepop-sticker {
  position: absolute; z-index: 2; bottom: -0.7rem; left: -0.7rem;
  background: var(--yellow); color: #241800;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  padding: 0.42rem 0.9rem; border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg); white-space: nowrap;
}
.livepop-copy { position: relative; z-index: 1; }
.livepop-copy p { color: var(--text-soft); }

/* ---------- Warum ---------- */
.warum { background: var(--bg-2); }
.why-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.85rem; }
.why {
  background: var(--surface); border-radius: var(--radius); padding: 1.3rem 1rem;
  box-shadow: inset 0 0 0 1px var(--line); text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--line-strong), var(--shadow-sm); }
.why-ic {
  display: grid; place-items: center; width: 2.9rem; height: 2.9rem; margin: 0 auto 0.75rem;
  border-radius: 50%; font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.18), rgba(34, 207, 255, 0.18));
  box-shadow: inset 0 0 0 1px var(--line);
}
.why h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.why p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- Steps ---------- */
.ablauf { background: var(--bg-2); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2.4rem); position: relative; }
.steps::before {
  content: ''; position: absolute; top: 1.9rem; left: 14%; right: 14%; height: 2px; z-index: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 60%, transparent 0);
  background-size: 14px 2px;
}
.step { position: relative; text-align: center; z-index: 1; }
.step-num {
  display: grid; place-items: center; width: 3.8rem; height: 3.8rem; margin: 0 auto 0.9rem;
  border-radius: 50%; font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: #08090d;
  background: linear-gradient(135deg, var(--pink), #ff6a9e);
  box-shadow: 0 0 0 6px rgba(255, 45, 149, 0.12), 0 14px 28px rgba(0, 0, 0, 0.5);
}
.step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--cyan), #7fe3ff); box-shadow: 0 0 0 6px rgba(34, 207, 255, 0.12), 0 14px 28px rgba(0, 0, 0, 0.5); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--green), #b0ec7c); box-shadow: 0 0 0 6px rgba(124, 214, 63, 0.12), 0 14px 28px rgba(0, 0, 0, 0.5); }
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- Galerie ---------- */
.galerie { background: var(--bg); }
.gallery { columns: 3; column-gap: 0.85rem; }
.gitem {
  break-inside: avoid; margin: 0 0 0.85rem; padding: 0; border: none; background: none; cursor: pointer;
  width: 100%; border-radius: var(--radius); overflow: hidden; display: block; position: relative;
  box-shadow: inset 0 0 0 1px var(--line);
}
.gitem img { width: 100%; height: auto; transition: transform 0.55s ease, opacity 0.3s ease; opacity: 0.92; }
.gitem::after {
  content: '🔍'; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(6, 7, 11, 0.5); opacity: 0; transition: opacity 0.25s ease;
}
.gitem:hover img { transform: scale(1.06); opacity: 1; }
.gitem:hover::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(3, 4, 7, 0.94); display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(94vw, 900px); max-height: 80vh; width: auto; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-caption { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-display); font-weight: 500; }
.lightbox-close { position: absolute; top: 1rem; right: 1.2rem; width: 2.8rem; height: 2.8rem; border-radius: 50%; border: none; background: var(--surface-2); color: #fff; font-size: 1.3rem; cursor: pointer; box-shadow: inset 0 0 0 1px var(--line-strong); }

/* ---------- Reviews ---------- */
.stimmen { background: var(--bg-2); }
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.review {
  margin: 0; background: var(--surface); border-radius: var(--radius-lg); padding: 1.5rem 1.4rem;
  box-shadow: inset 0 0 0 1px var(--line); position: relative;
}
.review::before {
  content: '\201C'; position: absolute; top: -0.2rem; right: 1.1rem;
  font-family: var(--font-display); font-size: 3.4rem; color: rgba(255, 194, 26, 0.22); line-height: 1;
}
.stars { color: var(--yellow); font-size: 1.05rem; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.review p { color: var(--text); font-size: 1.02rem; font-weight: 600; margin: 0; position: relative; }

/* ---------- Region ---------- */
.region { background: var(--bg); overflow: hidden; }
.region-candy {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.7;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(255, 45, 149, 0.18) 0 9px, transparent 10px),
    radial-gradient(circle at 82% 20%, rgba(34, 207, 255, 0.2) 0 11px, transparent 12px),
    radial-gradient(circle at 68% 74%, rgba(124, 214, 63, 0.18) 0 8px, transparent 9px),
    radial-gradient(circle at 30% 82%, rgba(255, 194, 26, 0.2) 0 10px, transparent 11px);
  filter: blur(1px);
}
.region-inner { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; text-align: center; }
.region-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.3rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  border-radius: 999px; padding: 0.42rem 0.95rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.94rem; color: var(--text-soft);
}
.chip-pin { font-size: 0.82rem; }
.chip-more { background: rgba(255, 45, 149, 0.16); color: #ff8ec4; box-shadow: inset 0 0 0 1px rgba(255, 45, 149, 0.4); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-2); }
.faq-inner { max-width: 48rem; margin: 0 auto; }
.faq-list { display: grid; gap: 0.65rem; }
.faq-list details { background: var(--surface); border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--line); overflow: hidden; }
.faq-list details[open] { box-shadow: inset 0 0 0 1px var(--line-strong); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 1rem 1.2rem;
  font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.04rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: none; width: 18px; height: 18px; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--pink); border-radius: 2px; transition: transform 0.2s ease; }
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 3px; }
.faq-plus::after { left: 8px; top: 0; width: 3px; height: 18px; }
.faq-list details[open] .faq-plus::after { transform: scaleY(0); }
.faq-a { padding: 0 1.2rem 1.1rem; }
.faq-a p { margin: 0; color: var(--muted); }

/* ---------- Kontakt ---------- */
.kontakt { background: var(--bg); position: relative; overflow: hidden; }
.kontakt::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: min(80vw, 760px); aspect-ratio: 1; border-radius: 50%;
  bottom: -46%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 45, 149, 0.2), transparent 62%);
  filter: blur(70px);
}
.kontakt-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(1.6rem, 3.5vw, 3rem); align-items: start; }
.kontakt-copy { max-width: 30rem; }
.kontakt-lead { font-size: 1.04rem; color: var(--text-soft); margin-bottom: 1.2rem; }
.kontakt-facts { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 0.6rem; }
.kontakt-facts li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; color: var(--text); }
.kontakt-alt { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.kontakt-alt:empty { display: none; }

.kontakt-formwrap {
  background: var(--surface); border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow);
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
}
.anfrage-form { display: grid; gap: 0.85rem; }
.form-produkt {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgb(var(--accent-rgb) / 0.1);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.32);
  border-radius: 14px; padding: 0.65rem 0.9rem; margin: 0;
}
.form-produkt img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex: none; }
.form-produkt span { font-size: 0.78rem; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.form-produkt b { font-family: var(--font-display); color: #fff; font-size: 1rem; }
.fld { display: grid; gap: 0.3rem; }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.fld label, .fld-choices legend { font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 0.92rem; padding: 0; }
.req { color: var(--pink); }
.anfrage-form input, .anfrage-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 0.68rem 0.85rem; border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.14); background: #0b0d14; width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.anfrage-form input::placeholder, .anfrage-form textarea::placeholder { color: #6a7188; }
.anfrage-form input:focus, .anfrage-form textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255, 45, 149, 0.16); }
.anfrage-form textarea { resize: vertical; min-height: 88px; }
.fld-choices { border: none; padding: 0; margin: 0; min-width: 0; }
.choices { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.45rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; cursor: pointer; }
.choice span {
  display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.4rem 0.8rem; border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.14); font-family: var(--font-display); font-weight: 500;
  font-size: 0.89rem; color: var(--text-soft); background: #0b0d14;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.choice:hover span { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.choice input:checked + span { background: var(--pink); border-color: var(--pink); color: #fff; }
.choice input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.turnstile-slot:not(:empty) { margin-top: 0.2rem; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin: 0.1rem 0 0; line-height: 1.5; }
.form-status { margin: 0; font-weight: 700; font-family: var(--font-display); }
.form-status:empty { display: none; }
.form-status.is-error { color: #ff7a70; }
.form-status.is-ok { color: var(--green); }
.anfrage-form.sending button[type='submit'] { opacity: 0.7; pointer-events: none; }
.form-ok-card {
  background: rgba(124, 214, 63, 0.1); box-shadow: inset 0 0 0 1px rgba(124, 214, 63, 0.35);
  border-radius: var(--radius-lg); padding: 1.8rem; text-align: center;
}
.form-ok-card .big { font-size: 2.2rem; display: block; margin-bottom: 0.4rem; }
.form-ok-card h3 { color: var(--green); }
.form-ok-card p { margin: 0; color: var(--text-soft); }

/* ---------- Produktseite ---------- */
.produkt { padding-top: clamp(1.4rem, 3vw, 2.2rem); }
.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; margin: 0 0 1.2rem; padding: 0; font-size: 0.86rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li + li::before { content: '›'; margin-right: 0.45rem; color: rgba(255, 255, 255, 0.28); }
.breadcrumb [aria-current] { color: var(--text); }

.pd-top {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.4rem, 3.4vw, 2.8rem); align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.pd-media { position: relative; }
.pd-figure {
  margin: 0; position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow);
  background: #0a0c12;
  aspect-ratio: 4 / 5;
}
.pd-figure::before {
  content: ''; position: absolute; inset: -30% -10% auto -10%; height: 60%; z-index: 0;
  background: radial-gradient(ellipse at 50% 100%, rgb(var(--accent-rgb) / 0.3), transparent 70%);
  filter: blur(40px);
}
.pd-figure img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; }
.pd-thumbs { display: flex; gap: 0.55rem; margin-top: 0.6rem; flex-wrap: wrap; }
.pd-thumb {
  width: 74px; height: 74px; padding: 0; border: none; background: none; cursor: pointer;
  border-radius: 12px; overflow: hidden; box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: opacity 0.18s ease; }
.pd-thumb:hover { transform: translateY(-2px); }
.pd-thumb:hover img, .pd-thumb[aria-current='true'] img { opacity: 1; }
.pd-thumb[aria-current='true'] { box-shadow: 0 0 0 2px var(--accent); }

.pd-info h1 { font-size: clamp(1.85rem, 1.3rem + 2.2vw, 2.85rem); margin-bottom: 0.5rem; }
.pd-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.pd-badge {
  font-family: var(--font-display); font-weight: 600; font-size: 0.8rem;
  padding: 0.3rem 0.8rem; border-radius: 999px;
  background: rgb(var(--accent-rgb) / 0.14); color: var(--accent);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.3);
}
.pd-badge-plain { background: rgba(255, 255, 255, 0.05); color: var(--text-soft); box-shadow: inset 0 0 0 1px var(--line); }
.pd-intro { font-size: 1.06rem; color: var(--text-soft); }
.pd-highlights { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: 0.5rem; }
.pd-highlights li { position: relative; padding-left: 1.7rem; color: var(--text-soft); }
.pd-highlights li::before {
  content: '✔'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; font-size: 0.9rem;
}
.pd-goodfor { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem 0.85rem; margin-bottom: 1.4rem; }
.pd-goodfor-label {
  font-family: var(--font-display); font-weight: 600; color: var(--muted);
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.pd-goodfor-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; }
.pd-goodfor-chips li {
  font-family: var(--font-display); font-weight: 500; font-size: 0.9rem;
  color: var(--accent);
  background: rgb(var(--accent-rgb) / 0.13);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.32);
  padding: 0.36rem 0.9rem; border-radius: 999px; white-space: nowrap;
}

.pd-price-hero {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.6rem;
  box-shadow: inset 0 0 0 1px var(--line), inset 0 0 0 2px rgb(var(--accent-rgb) / 0.15);
  border-left: 4px solid var(--accent);
}
.pd-price-hero-label {
  font-family: var(--font-display); font-weight: 600; color: var(--muted);
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem;
}
.pd-price-hero-val {
  font-size: 1.15rem; color: #fff; font-family: var(--font-display); font-weight: 500; line-height: 1.5;
}
.pd-price-hero-val small {
  display: block; font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; font-family: var(--font-body); font-weight: 400;
}

.pd-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.6rem; }
.pd-actions .btn { white-space: normal; max-width: 100%; }

.pd-facts {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem;
  grid-column: 1 / -1;
}
@media (min-width: 961px) {
  .pd-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pd-facts li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 0.95rem 1.05rem;
}
.pd-fact-wide { grid-column: 1 / -1; }
.pd-fact-full { grid-column: 1 / -1; }
@media (min-width: 961px) {
  .pd-fact-wide { grid-column: span 2; }
}
.pd-fact-ic {
  flex: none; width: 2.4rem; height: 2.4rem; display: grid; place-items: center;
  border-radius: 13px; font-size: 1.15rem;
  background: rgb(var(--accent-rgb) / 0.13);
  box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.26);
}
.pd-facts li > div { display: grid; gap: 0.12rem; min-width: 0; }
.pd-facts .lbl {
  font-family: var(--font-display); font-weight: 600; color: var(--muted);
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.pd-facts .val { color: var(--text-soft); font-size: 0.94rem; line-height: 1.45; }

.pd-form-section { background: var(--bg-2); }
.pd-form-inner { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(1.6rem, 3.5vw, 3rem); align-items: start; }

.pd-cross { background: var(--bg); }
.cross-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.85rem; }
.cross-card {
  display: block; border-radius: var(--radius); overflow: hidden; position: relative;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cross-card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: inset 0 0 0 1px rgb(var(--accent-rgb) / 0.5), var(--shadow-sm); }
.cross-card img { width: 100%; aspect-ratio: 1; object-fit: cover; opacity: 0.85; transition: opacity 0.2s ease; }
.cross-card:hover img { opacity: 1; }
.cross-card b { display: block; padding: 0.7rem 0.85rem; font-family: var(--font-display); font-weight: 600; font-size: 0.94rem; color: #fff; }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--bg-3); color: var(--muted); box-shadow: inset 0 1px 0 var(--line); }
.footer-glow {
  position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--violet), var(--cyan), var(--green), transparent);
  opacity: 0.6;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 1.6rem 2rem; padding-top: clamp(1.8rem, 3vw, 2.8rem); padding-bottom: 2rem; }
.footer-brand img { width: 92px; height: 92px; object-fit: contain; margin-bottom: 0.6rem; }
.footer-brand p { color: var(--muted); font-size: 0.93rem; max-width: 32ch; }
.footer-ig { display: inline-flex; align-items: center; gap: 0.45rem; color: #fff; font-family: var(--font-display); font-weight: 500; margin-top: 0.2rem; }
.footer-ig:hover { color: var(--pink); text-decoration: none; }
.footer-col h3 { color: #fff; font-size: 1rem; margin-bottom: 0.8rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: grid; gap: 0.1rem; margin-bottom: 0.55rem; }
.footer-contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255, 255, 255, 0.4); font-weight: 700; }
.footer-contact a { color: #fff; }
.placeholder { color: var(--yellow); font-style: italic; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; justify-content: space-between; align-items: center;
  padding: 1rem 0 1.6rem; border-top: 1px solid var(--line); font-size: 0.86rem; color: rgba(255, 255, 255, 0.45);
}
.footer-bottom p { margin: 0; }
.footer-credit a { color: #fff; font-weight: 700; }

/* ---------- FAB ---------- */
.fab {
  position: fixed; z-index: 90; right: clamp(0.9rem, 3vw, 1.5rem); bottom: clamp(0.9rem, 3vw, 1.5rem);
  box-shadow: var(--shadow-lg); border-radius: 999px; font-family: var(--font-display); font-weight: 600;
  transition: transform 0.2s ease;
}
.fab:hover { transform: translateY(-3px) scale(1.03); text-decoration: none; }
.fab-whatsapp { width: 56px; height: 56px; display: grid; place-items: center; background: #25d366; color: #05240f; }
.fab-anfrage { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.78rem 1.2rem; background: linear-gradient(135deg, var(--pink), #ff6a2a); color: #fff; font-size: 0.95rem; }
.fab-emoji { font-size: 1.1rem; }

/* ---------- Legal + 404 ---------- */
.legal-page { background: var(--bg-2); padding-top: clamp(1.8rem, 4vw, 3rem); padding-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.legal {
  max-width: 48rem; margin: 0 auto; background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px var(--line); padding: clamp(1.4rem, 3.5vw, 2.6rem);
}
.legal h1 { margin-bottom: 1rem; }
.legal h2 { font-size: 1.24rem; margin-top: 1.9rem; }
.legal p, .legal li { color: var(--text-soft); }
.legal-note {
  background: rgba(255, 194, 26, 0.1); box-shadow: inset 0 0 0 1px rgba(255, 194, 26, 0.32);
  border-radius: 12px; padding: 0.9rem 1.1rem; color: #ffd873; font-size: 0.92rem; margin-bottom: 1.5rem;
}
.ph { background: rgba(255, 45, 149, 0.14); color: #ff8ec4; padding: 0.05rem 0.42rem; border-radius: 6px; font-weight: 700; }
.legal-back { margin-top: 1.9rem; }

.notfound { background: var(--bg); position: relative; overflow: hidden; }
.notfound::before {
  content: ''; position: absolute; inset: auto 0 auto 50%; transform: translateX(-50%);
  top: -20%; width: min(90vw, 700px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 149, 0.22), transparent 62%); filter: blur(70px);
}
.notfound-inner { position: relative; z-index: 1; max-width: 40rem; margin: 0 auto; text-align: center; padding: clamp(2.8rem, 8vw, 5.5rem) 0; }
.notfound-emoji { font-size: 3.6rem; margin-bottom: 0.6rem; animation: hero-float 4s ease-in-out infinite; }
.notfound-text { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.notfound .hero-actions { justify-content: center; }
@media (prefers-reduced-motion: reduce) {
  .notfound-emoji, .hero-logo { animation: none; }
}

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

@media (min-width: 1560px) { :root { --maxw: 1300px; } }

@media (max-width: 1080px) {
  .nav-menu { gap: 0.05rem; }
  .nav-menu a { padding-inline: 0.55rem; font-size: 0.93rem; }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .livepop-card { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
}

@media (max-width: 900px) {
  .kat-card { grid-template-columns: clamp(140px, 32%, 200px) minmax(0, 1fr); min-height: 0; }
  .kat-media { grid-row: 1 / -1; }
  .kat-body { padding-bottom: 0.75rem; }
  .kat-action {
    grid-column: 2; flex-direction: row-reverse; align-items: center; justify-content: flex-end;
    gap: 0.7rem; padding: 0 1.25rem 1.05rem; text-align: left;
  }
  .kat-pickup { display: none; }
  .kat-media::after { background: linear-gradient(90deg, rgba(6, 7, 11, 0) 62%, rgba(18, 21, 30, 0.75) 100%); }
}

@media (max-width: 960px) {
  .pd-top { grid-template-columns: minmax(0, 1fr); }
  .pd-form-inner { grid-template-columns: minmax(0, 1fr); }
  .livepop-card { grid-template-columns: minmax(0, 1fr); text-align: center; }
  .livepop-media { max-width: 280px; }
  .livepop-copy { display: flex; flex-direction: column; align-items: center; }
  .livepop-sticker { left: 50%; transform: translateX(-50%) rotate(-4deg); }
  .kontakt-inner { grid-template-columns: minmax(0, 1fr); }
  .kontakt-copy { max-width: none; }
  .reviews { grid-template-columns: minmax(0, 1fr); }
  .gallery { columns: 2; }
  .cross-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255, 255, 255, 0.07); color: #fff; border: none;
    box-shadow: inset 0 0 0 1px var(--line-strong);
    padding: 0.5rem 0.9rem; border-radius: 999px;
    font-family: var(--font-display); font-weight: 600; cursor: pointer; font-size: 0.97rem;
  }
  .nav-toggle-bars { display: inline-grid; gap: 3px; }
  .nav-toggle-bars span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav[data-open='true'] .nav-toggle-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav[data-open='true'] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  .nav[data-open='true'] .nav-toggle-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: rgba(9, 11, 16, 0.98); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 0.6rem var(--pad) 1.1rem; gap: 0.2rem;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s;
  }
  .nav[data-open='true'] .nav-menu { max-height: 80vh; opacity: 1; visibility: visible; }
  .nav-menu a { padding: 0.75rem 0.7rem; font-size: 1.05rem; border-radius: 12px; }
  .nav-cta { text-align: center; margin-top: 0.35rem; }

  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 1.3rem; max-width: 26rem; margin-inline: auto; }
  .steps::before { display: none; }
  .marquee-group { font-size: 0.95rem; gap: 1.1rem; }
  .pd-facts { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 680px) {
  .kat-card { grid-template-columns: minmax(0, 1fr); }
  .kat-media { aspect-ratio: 16 / 9; }
  .kat-media::after { background: linear-gradient(180deg, rgba(6, 7, 11, 0) 55%, rgba(18, 21, 30, 0.85) 100%); }
  .kat-body { padding: 0.95rem 1.1rem 0.7rem; }
  .kat-action { grid-column: 1; padding: 0 1.1rem 1.05rem; }
  .kat-cta { flex: 1; justify-content: center; }
  .hero { padding-top: 1.1rem; }
  .hero-logo { width: clamp(142px, 40vw, 200px); }
  .eyebrow { margin-bottom: 0.85rem; font-size: 0.8rem; }
  .hero-lead { margin-bottom: 1.15rem; }
  .hero-actions { margin-bottom: 1.1rem; gap: 0.6rem; }
  .hero-actions .btn { width: 100%; }
  .trust-row li { font-size: 0.79rem; padding: 0.26rem 0.72rem 0.26rem 1.7rem; }
  .trust-row li::before { left: 0.6rem; }
  .fld-row { grid-template-columns: minmax(0, 1fr); }
  .kontakt-alt .btn { flex: 1 1 8rem; }
  .review::before { display: none; }
  .kat-group-head { flex-wrap: wrap; gap: 0.35rem 1rem; }
  .kat-group-head p { flex: 1 1 100%; order: 3; }
  .pd-thumb { width: 64px; height: 64px; }
  .pd-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 460px) {
  .gallery { columns: 1; }
  .why-grid { grid-template-columns: minmax(0, 1fr); }
  .cross-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom { justify-content: flex-start; }
  .fab-anfrage { padding: 0.68rem 1rem; font-size: 0.9rem; }
  .rail-card { width: 14rem; }
}
