/* =========================================================
   FX Web — Webdesign-Agentur
   Modern Dark Theme · Tech-Look (Cyan → Violett)
   ========================================================= */

:root {
  --bg-solid:  #0a0b12;
  --bg-2:      #0d0f1a;
  --surface:   #12131f;
  --surface-2: #171a2b;
  --line:      rgba(120, 160, 255, 0.10);
  --line-2:    rgba(120, 160, 255, 0.20);

  --cyan:      #22d3ee;
  --violet:    #7c3aed;
  --blue:      #4f7cff;
  --glow:      rgba(79, 124, 255, 0.45);

  --text:      #eef1f8;
  --muted:     #9aa3b8;
  --faint:     #5d667e;

  --grad:      linear-gradient(135deg, #22d3ee 0%, #4f7cff 50%, #7c3aed 100%);
  --grad-soft: linear-gradient(135deg, rgba(34,211,238,.14), rgba(124,58,237,.14));

  --maxw: 1180px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  background: var(--bg-solid);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }

/* Ambient glows */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 80% -10%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(50vw 50vw at -10% 20%, rgba(34,211,238,.14), transparent 60%);
}

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--cyan); font-weight: 600; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); }

.section-title { font-size: clamp(1.8rem, 4vw, 2.9rem); font-weight: 800; }
.gradient { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 60ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; white-space: nowrap;
  padding: 14px 26px; border-radius: 999px; font-weight: 650; font-size: 0.98rem;
  text-decoration: none; -webkit-tap-highlight-color: transparent;
  cursor: pointer; border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary { background: var(--grad); color: #0a0b12; box-shadow: 0 8px 22px -12px rgba(0,0,0,.55); }
.btn-ghost { border-color: rgba(255,255,255,.16); color: var(--text); background: rgba(255,255,255,.02); }
/* Hover-Effekte nur auf echten Hover-Geräten -> kein "klebender" Rand nach Touch */
@media (hover: hover) {
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px var(--glow); }
  .btn-ghost:hover { border-color: var(--cyan); transform: translateY(-2px); }
}
/* Kein blauer Fokus-Rahmen; Tastatur-Fokus dezent ohne Ring */
.btn:focus { outline: none; }
.btn:focus-visible { outline: none; transform: translateY(-2px); filter: brightness(1.12); }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,11,18,.72);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand .mark {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  position: relative; overflow: hidden; border-radius: 11px;
  filter: drop-shadow(0 4px 14px rgba(79,124,255,.45));
  transition: transform .3s var(--ease);
}
.brand:hover .mark { transform: rotate(-6deg) scale(1.05); }
.brand .mark svg { width: 100%; height: 100%; display: block; }
/* Glanz-Sweep über die Kachel */
.brand .mark::after {
  content: ""; position: absolute; top: 0; left: -70%; width: 55%; height: 100%; z-index: 2;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-18deg); animation: lgShine 3.4s ease-in-out infinite;
}
@keyframes lgShine { 0%, 64% { left: -70%; } 100% { left: 150%; } }
/* Endlos aufsteigende Chevrons — der Pfeil "fließt" nach oben */
.brand .mark .lg-c1 { animation: lgFlow 1.9s ease-in-out infinite; animation-delay: -0.95s; }
.brand .mark .lg-c2 { animation: lgFlow 1.9s ease-in-out infinite; }
@keyframes lgFlow {
  0%   { transform: translateY(6px);  opacity: 0; }
  22%  { opacity: 1; }
  78%  { opacity: 1; }
  100% { transform: translateY(-7px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .brand .mark::after, .brand .mark .lg-c1, .brand .mark .lg-c2 { animation: none; }
}
/* Animierter Neon-Schriftzug "FX Web" */
.brand span:not(.mark) {
  font-weight: 800;
  background: linear-gradient(100deg, #22d3ee 0%, #4f7cff 30%, #a855f7 55%, #4f7cff 75%, #22d3ee 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: brand-shimmer 5.5s linear infinite;
  filter: drop-shadow(0 0 10px rgba(79,124,255,.35));
}
@keyframes brand-shimmer { to { background-position: 220% center; } }
.brand small {
  display: block; margin-top: 1px;
  background: none; color: var(--muted); -webkit-text-fill-color: var(--muted);
  font-weight: 600; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  filter: none;
}
@media (prefers-reduced-motion: reduce) { .brand span:not(.mark) { animation: none; } }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { color: var(--muted); font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 20px; font-size: .9rem; }
.burger { display: none; background: none; border: 0; color: var(--text); font-size: 1.6rem; cursor: pointer; }

.mobile-menu {
  position: fixed; inset: 68px 0 auto 0; z-index: 49;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
  display: none; flex-direction: column; padding: 14px 20px 22px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 4px; color: var(--text); border-bottom: 1px solid var(--line); font-weight: 500; }

/* Hero — immersiv */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; overflow: hidden; padding: 116px 0 90px; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 72% 26%, transparent 42%, rgba(10,11,18,.62) 100%),
    linear-gradient(to bottom, rgba(10,11,18,.30), transparent 24%, transparent 62%, var(--bg-solid));
}
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,.03); font-size: .82rem; color: var(--muted); margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { font-size: clamp(2.6rem, 8vw, 6rem); font-weight: 850; letter-spacing: -0.03em; line-height: 1.0; }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero h1 .line > .up { display: inline-block; transform: translateY(115%); animation: lineUp .9s cubic-bezier(.16,1,.3,1) forwards; }
.hero h1 .line:nth-child(2) > .up { animation-delay: .12s; }
@keyframes lineUp { to { transform: none; } }
.hero p.sub { margin: 24px 0 34px; font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--muted); max-width: 54ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; color: var(--faint); font-size: .88rem; }
.hero-trust b { color: var(--text); }

/* Scroll-Indikator */
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 9px; font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--faint); }
.hero-scroll .mouse { width: 23px; height: 37px; border: 1.5px solid var(--line-2); border-radius: 13px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 7px; border-radius: 4px; background: var(--cyan); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 20px; } 100% { opacity: 0; } }

/* Logo strip / stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.stat .n { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 850; }
.stat .l { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* Cards grid */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-2); background: var(--surface-2); }
.card .ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid var(--line-2); margin-bottom: 18px;
  position: relative; overflow: hidden;
}
.card .ico::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 85% at 30% 0%, rgba(34,211,238,.18), transparent 60%);
}
.card .ico svg { width: 26px; height: 26px; position: relative; z-index: 1; filter: drop-shadow(0 3px 8px rgba(34,211,238,.25)); }
.card:hover .ico svg { filter: drop-shadow(0 4px 12px rgba(124,58,237,.4)); }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding: 28px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-weight: 850; font-size: 1.1rem; color: var(--cyan); display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .92rem; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 34px 28px;
  display: flex; flex-direction: column; position: relative;
}
.plan.featured { border-color: transparent; background:
  linear-gradient(var(--surface), var(--surface)) padding-box,
  var(--grad) border-box; box-shadow: 0 24px 60px -24px var(--glow); }
.plan .tag {
  position: absolute; top: -13px; left: 28px; padding: 5px 14px; border-radius: 999px;
  background: var(--grad); color: #0a0b12; font-size: .76rem; font-weight: 800; letter-spacing: .04em;
}
.plan h3 { font-size: 1.35rem; }
.plan .price { font-size: 2.1rem; font-weight: 850; margin: 14px 0 2px; }
.plan .price small { font-size: .95rem; color: var(--muted); font-weight: 500; }
.plan .mo { color: var(--cyan); font-size: .92rem; margin-bottom: 22px; }
.plan ul { display: grid; gap: 12px; margin-bottom: 28px; }
.plan li { display: flex; gap: 10px; color: var(--muted); font-size: .95rem; }
.plan li::before { content: "✓"; color: var(--cyan); font-weight: 800; }
.plan .btn { margin-top: auto; justify-content: center; }

/* Portfolio / showcase */
.showcase { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items: center; }
.showcase--rev { grid-template-columns: 1fr 1.2fr; }
.showcase--rev .frame { order: 2; }
.showcase .frame {
  display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2);
  background: var(--surface); aspect-ratio: 16/10; position: relative; cursor: pointer;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.showcase .frame:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 24px 60px -24px var(--glow); }
.showcase .frame .badge2 {
  position: absolute; top: 16px; left: 16px; z-index: 3; padding: 6px 13px; border-radius: 999px;
  background: rgba(10,11,18,.78); border: 1px solid var(--line-2); font-size: .8rem; color: var(--cyan);
  backdrop-filter: blur(4px);
}
/* Eingebettete Live-Vorschau (Mini-Desktop, herunterskaliert) */
.showcase .frame .site-preview {
  position: absolute; top: 0; left: 0; z-index: 1;
  width: 250%; height: 250%; border: 0;
  transform: scale(0.4); transform-origin: 0 0;
  pointer-events: none; background: #060907;
}
.showcase .frame .frame-open {
  position: absolute; z-index: 4; right: 14px; bottom: 14px;
  padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600; color: #0a0b12;
  background: var(--grad); box-shadow: 0 6px 18px -8px rgba(0,0,0,.6);
}
/* Klick-zum-Laden: Vorschau lädt erst auf Tipp (verhindert Auto-Scroll beim Öffnen) */
.showcase .frame .frame-load {
  position: absolute; inset: 0; margin: auto; z-index: 3;
  width: max-content; height: max-content;
  padding: 12px 22px; border-radius: 999px; border: 1px solid var(--line-2);
  background: rgba(10,11,18,.72); backdrop-filter: blur(6px);
  color: var(--text); font: inherit; font-size: .9rem; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; transition: border-color .25s, transform .25s var(--ease);
}
.showcase .frame .frame-load:hover { border-color: var(--cyan); transform: scale(1.04); }
.showcase .frame.loaded .frame-load { display: none; }
/* Design-Vielfalt — echte Mini-Website-Mockups je Branche */
.mocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 640px) { .mocks { grid-template-columns: 1fr; } }
.mock { margin: 0; }
.mock figcaption { margin-top: 12px; font-size: .94rem; font-weight: 650; color: var(--text); }
.mw { aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: 0 30px 60px -32px rgba(0,0,0,.65); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s; }
.mock:hover .mw { transform: translateY(-6px); box-shadow: 0 44px 84px -32px rgba(0,0,0,.7); }
.mw-bar { height: 19px; flex: none; display: flex; align-items: center; gap: 5px; padding: 0 9px; }
.mw-bar i { width: 6px; height: 6px; border-radius: 50%; }
.mw-body { flex: 1; padding: 11px 13px; display: flex; flex-direction: column; gap: 9px; min-height: 0; }
.mw .bar { height: 6px; border-radius: 3px; background: currentColor; display: block; }
.mw .bar.title { height: 9px; border-radius: 4px; }
.m-nav { display: flex; align-items: center; justify-content: space-between; }
.m-nav.center { flex-direction: column; gap: 6px; }
.m-logo { width: 26px; height: 9px; border-radius: 3px; background: currentColor; }
.m-links { display: inline-flex; gap: 6px; }
.m-links b { width: 14px; height: 5px; border-radius: 2px; background: currentColor; opacity: .55; }
.m-hero { flex: 1; display: flex; gap: 12px; align-items: center; min-height: 0; }
.m-hero.center { flex-direction: column; justify-content: center; text-align: center; align-items: center; }
.m-col { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.m-img { width: 42%; align-self: stretch; border-radius: 12px; }
.m-btn { height: 13px; width: 46px; border-radius: 7px; background: currentColor; margin-top: 3px; }
.m-hero.center .m-btn { margin-top: 5px; }
.m-feats { display: flex; gap: 8px; }
.m-feats span { flex: 1; height: 17px; border-radius: 9px; background: currentColor; }
.m-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-cols .bar { margin-bottom: 5px; opacity: .32; }
.m-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.m-cards { display: flex; gap: 8px; }

/* 1 — Garten & Handwerk: hell, grün, rund, freundlich */
.mw-garten { background: #f3f8ef; color: #2f7d4f; }
.mw-garten .mw-bar { background: #e3ecdd; }
.mw-garten .mw-bar i { background: #b7cbae; }
.mw-garten .m-img { background: linear-gradient(135deg, #a8e063, #00a651); }
.mw-garten .m-btn { background: #00a651; }
.mw-garten .m-feats span { background: #cfe3c2; }

/* 2 — Anwalt & Beratung: hell, navy/gold, zentriert, kantig (seriös) */
.mw-recht { background: #f6f7fb; color: #1e2a4a; }
.mw-recht .mw-bar { background: #e7eaf1; }
.mw-recht .mw-bar i { background: #c2c8d6; }
.mw-recht .bar { border-radius: 1px; }
.mw-recht .m-rule { width: 28px; height: 3px; background: #c0974a; }
.mw-recht .m-btn { background: transparent; border: 1.5px solid #1e2a4a; border-radius: 0; width: 52px; height: 12px; }
.mw-recht .m-links b { background: #1e2a4a; }

/* 3 — Metall & Technik: dunkel, orange, kantig, industriell */
.mw-metall { background: #15120e; color: #e8c9a0; }
.mw-metall .mw-bar { background: #0e0c09; }
.mw-metall .mw-bar i { background: #3a2f22; }
.mw-metall .m-logo { background: #ff7a18; width: 30px; height: 11px; border-radius: 2px; }
.mw-metall .m-burger { display: inline-flex; flex-direction: column; gap: 2px; }
.mw-metall .m-burger b { width: 15px; height: 2px; background: #e8c9a0; }
.mw-metall .m-hero { flex-direction: column; align-items: flex-start; justify-content: center; gap: 7px;
  position: relative; border-radius: 4px; padding: 12px; overflow: hidden;
  background: linear-gradient(120deg, #1d1812, #15120e); }
.mw-metall .m-hero::after { content: ""; position: absolute; top: 0; right: -25%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,122,24,.45)); transform: skewX(-18deg); }
.mw-metall .bar.title { background: #f2f0ec; height: 10px; border-radius: 2px; position: relative; z-index: 1; }
.mw-metall .m-btn { background: #ff7a18; border-radius: 0; width: 52px; position: relative; z-index: 1; }
.mw-metall .m-grid span { aspect-ratio: 1; background: #241d15; border: 1px solid #3a2f22; border-radius: 2px; }

/* 4 — Modern & Tech: dunkel, Glas, Cyan/Violett-Gradient, sleek */
.mw-tech { background: radial-gradient(120% 100% at 70% 0%, #1a2030, #0d0f17); color: #cdd6ff; }
.mw-tech .mw-bar { background: rgba(255,255,255,.04); }
.mw-tech .mw-bar i { background: rgba(255,255,255,.18); }
.mw-tech .m-logo.grad,
.mw-tech .bar.title.grad { background: linear-gradient(135deg, #22d3ee, #7c3aed); }
.mw-tech .bar.title.grad { height: 10px; }
.mw-tech .m-btn { background: linear-gradient(135deg, #22d3ee, #7c3aed); border-radius: 999px; width: 54px; }
.mw-tech .m-btn.sm { width: 32px; height: 11px; margin-top: 0; }
.mw-tech .m-cards span { flex: 1; height: 26px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); }

/* 5 — Restaurant & Café: dunkel-warm, elegant, Foto-Hero + Menü */
.mw-gastro { background: #241310; color: #ecd9c3; }
.mw-gastro .mw-bar { background: #1a0d0b; }
.mw-gastro .mw-bar i { background: #4a2f28; }
.mw-gastro .m-links b { background: #ecd9c3; }
.mw-gastro .m-hero { flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px;
  position: relative; border-radius: 6px; overflow: hidden;
  background: linear-gradient(160deg, #6b2f24, #3a1a14); }
.mw-gastro .m-hero::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 50% 30%, rgba(214,160,90,.28), transparent 70%); }
.mw-gastro .bar.title { background: #f3e6d2; position: relative; z-index: 1; }
.mw-gastro .m-rule { width: 26px; height: 2px; background: #d6a05a; position: relative; z-index: 1; }
.mw-gastro .m-menu { display: flex; flex-direction: column; gap: 6px; }
.mw-gastro .m-menu div { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mw-gastro .m-menu .bar { flex: 1; opacity: .5; }
.mw-gastro .m-menu .pr { width: 16px; height: 6px; border-radius: 2px; background: #d6a05a; flex: none; }

/* 6 — Online-Shop: hell, clean, Produkt-Grid */
.mw-shop { background: #ffffff; color: #18181b; }
.mw-shop .mw-bar { background: #f1f1f3; }
.mw-shop .mw-bar i { background: #cfcfd6; }
.mw-shop .m-links b { background: #18181b; }
.mw-shop .m-cart { width: 12px; height: 12px; border-radius: 3px; border: 2px solid #18181b; }
.mw-shop .m-strip { display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 7px 9px; border-radius: 8px; background: #f4f4f6; }
.mw-shop .m-strip .bar { opacity: .55; }
.mw-shop .m-pill { width: 36px; height: 12px; border-radius: 999px; background: #ec4899; flex: none; }
.mw-shop .m-shop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; flex: 1; min-height: 0; }
.mw-shop .m-prod { display: flex; flex-direction: column; gap: 4px; min-height: 0; }
.mw-shop .m-prod .ph { flex: 1; min-height: 24px; border-radius: 6px; background: linear-gradient(135deg, #e9e9ee, #d4d4dd); }
.mw-shop .m-prod .pr { width: 55%; height: 5px; border-radius: 2px; background: #ec4899; }

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; cursor: pointer;
}
details[open] { border-color: var(--line-2); }
summary { font-weight: 650; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--cyan); font-size: 1.4rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin-top: 12px; font-size: .96rem; }

/* CTA + Contact */
.cta-band {
  background: var(--grad-soft); border: 1px solid var(--line-2); border-radius: 24px;
  padding: clamp(34px, 5vw, 60px); text-align: center;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form { display: grid; gap: 16px; }
.field label { display: block; font-size: .88rem; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 12px; background: var(--bg-2);
  border: 1px solid var(--line-2); color: var(--text); font: inherit; font-size: .96rem;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--cyan); }
.field textarea { min-height: 130px; resize: vertical; }
.form .hp { position: absolute; left: 0; top: 0; width: 1px; height: 1px; padding: 0; margin: -1px; border: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-note { font-size: .82rem; color: var(--faint); }
#form-status { font-size: .95rem; padding: 12px 0; }
.contact-info { display: grid; gap: 18px; align-content: start; }
.contact-info .row { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .row .ico { font-size: 1.3rem; }
.contact-info .row b { display: block; }
.contact-info .row span { color: var(--muted); font-size: .95rem; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 40px 0 30px; margin-top: 30px; }
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.foot .links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot a { color: var(--muted); font-size: .92rem; }
.foot a:hover { color: var(--text); }
.foot small { color: var(--faint); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav { gap: 14px; }
  .brand { margin-right: auto; }   /* Button + Burger rechts zusammen */
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .steps, .pricing { grid-template-columns: 1fr; }
  .showcase, .showcase--rev, .contact-grid { grid-template-columns: 1fr; }
  .showcase--rev .frame { order: 0; }
  .plan.featured { order: -1; }
}
@media (max-width: 700px) {
  /* Hero oben ausrichten statt zentrieren -> weniger Luft unter dem Header */
  .hero { min-height: auto; align-items: flex-start; padding: 30px 0 54px; }
  .hero .badge { margin-bottom: 20px; }
  .hero-scroll { display: none; }
  /* Hero-Text mittig wie die anderen Textblöcke */
  .hero .container { text-align: center; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
}
/* Header-CTA: kurzes Label nur auf kleinen Phones */
.nav-cta .cta-short { display: none; }
@media (max-width: 600px) {
  .nav-cta { padding: 11px 20px; font-size: .92rem; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
  .burger { font-size: 1.5rem; line-height: 1; padding: 4px; }
  .brand small { display: none; }            /* Unterzeile aus -> luftiger Header */
  .brand { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* =========================================================
   Interaktive Bewegung & 3D
   ========================================================= */

/* Scroll-Fortschrittsleiste */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 100;
  background: var(--grad); box-shadow: 0 0 12px var(--glow);
  transition: width .08s linear;
}

/* Karten-Neige-Effekt */
.tilt { transition: transform .25s var(--ease), border-color .3s, background .3s, box-shadow .3s; will-change: transform; }

.hero { position: relative; }
.hero .container { position: relative; z-index: 2; }

/* Shiny Text — Glanz wandert über die Headline */
.shiny {
  background: linear-gradient(110deg, #9aa6c8 30%, #ffffff 48%, #cfe6ff 52%, #9aa6c8 70%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}
@keyframes shine { to { background-position: -220% center; } }

/* Rotating Text (ReactBits-Style, Vanilla) */
.rot-line { font-size: clamp(1.15rem, 2.2vw, 1.6rem); font-weight: 750; color: var(--text); margin: 6px 0 0; letter-spacing: -0.01em; }
.rotator { display: inline-block; vertical-align: baseline; }
.rotator .word {
  display: inline-block; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: rot-in .5s cubic-bezier(0.16,1,0.3,1);
}
.rotator.out .word { animation: rot-out .3s cubic-bezier(0.4,0,1,1) forwards; }
@keyframes rot-in  { from { opacity: 0; transform: translateY(0.45em); } to { opacity: 1; transform: none; } }
@keyframes rot-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-0.45em); } }

@media (prefers-reduced-motion: reduce) {
  .rotator .word, .shiny { animation: none; }
  .shiny { -webkit-text-fill-color: var(--text); }
}

/* =========================================================
   Info-Rad (3D-Karussell) — breit, modern, Schwungrad
   ========================================================= */
.wheel-sec { overflow: visible; }
.carousel {
  position: relative; width: 100vw; overflow-x: clip;
  margin-top: 38px; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  user-select: none; -webkit-user-select: none; -webkit-touch-callout: none;
}
.car-stage {
  perspective: 2300px; height: 560px;
  display: grid; place-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}
.car-ring {
  position: relative; width: 470px; height: 410px;
  transform-style: preserve-3d;
  transform: translateZ(-520px) rotateX(3deg) rotateY(var(--rot, 0deg));
  transition: transform .9s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab; touch-action: pan-y;
}
.car-ring.dragging { transition: none; cursor: grabbing; }
.car-card {
  position: absolute; top: 0; left: 50%; width: 470px; height: 410px; margin-left: -235px;
  transform: rotateY(calc(var(--i) * 60deg)) translateZ(520px);
  border-radius: 34px; padding: 52px 46px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; text-align: center;
  backface-visibility: hidden;
  background: rgba(20, 22, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 90px -38px rgba(0,0,0,.82), inset 0 1px 0 rgba(255,255,255,.06);
  opacity: .38; filter: saturate(.85);
  transition: opacity .6s cubic-bezier(0.16,1,0.3,1), box-shadow .6s, border-color .6s, filter .6s, background .6s;
}
.car-card .car-ico {
  width: 84px; height: 84px; display: grid; place-items: center;
  border-radius: 24px; background: var(--grad-soft); border: 1px solid var(--line-2);
  position: relative; overflow: hidden;
}
.car-card .car-ico::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 85% at 30% 0%, rgba(34,211,238,.20), transparent 60%);
}
.car-card .car-ico svg {
  width: 46px; height: 46px; position: relative; z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(34,211,238,.28));
}
.car-card.active .car-ico { box-shadow: inset 0 0 0 1px rgba(124,58,237,.35), 0 12px 30px -12px var(--glow); }
.car-card h3 { font-size: 1.9rem; letter-spacing: -0.02em; }
.car-card p { color: var(--muted); font-size: 1.1rem; line-height: 1.6; max-width: 36ch; }
.car-card.active {
  opacity: 1; filter: none;
  background:
    linear-gradient(rgba(18, 20, 32, 0.92), rgba(18, 20, 32, 0.92)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 56px 120px -44px var(--glow), inset 0 1px 0 rgba(255,255,255,.10);
}
.car-dots { display: flex; gap: 11px; justify-content: center; margin-top: 34px; }
.car-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer; padding: 0;
  background: var(--line-2); transition: transform .3s var(--ease), background .3s, width .3s;
}
.car-dots button.on { background: var(--grad); width: 28px; border-radius: 6px; }

@media (max-width: 1100px) {
  .car-ring { transform: translateZ(-520px) rotateX(3deg) rotateY(var(--rot,0deg)) scale(.78); }
}
@media (max-width: 600px) {
  .car-stage { height: 470px; }
  .car-ring { width: 300px; height: 350px; transform: translateZ(-340px) rotateX(3deg) rotateY(var(--rot,0deg)); }
  .car-card { width: 300px; height: 350px; margin-left: -150px; transform: rotateY(calc(var(--i) * 60deg)) translateZ(340px); padding: 32px 26px; }
  .car-card h3 { font-size: 1.45rem; }
  .car-card p { font-size: 1rem; }
}

/* =========================================================
   Hintergrund-Partikelfeld (Canvas)
   ========================================================= */
.bg-field { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; display: block; }

@media (prefers-reduced-motion: reduce) {
  .hero .badge .dot, .hero-scroll .mouse::after { animation: none; }
  .hero h1 .line > .up { transform: none; animation: none; }
}

/* =========================================================
   Datenschutz-Hinweis (Consent-Banner)
   ========================================================= */
.fx-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 250; padding: 16px;
  display: flex; justify-content: center; pointer-events: none;
  transform: translateY(120%); opacity: 0; transition: transform .5s var(--ease), opacity .5s; }
.fx-consent.show { transform: none; opacity: 1; }
.fx-consent-inner { pointer-events: auto; max-width: 960px; width: 100%;
  background: rgba(13,15,26,.94); backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--line-2); border-radius: 18px; padding: 18px 22px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.7); }
.fx-consent-inner p { color: var(--muted); font-size: 14px; line-height: 1.6; flex: 1 1 320px; margin: 0; }
.fx-consent-inner a { color: var(--cyan); text-decoration: underline; }
.fx-consent-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.fx-consent-link { font-size: 14px; font-weight: 500; white-space: nowrap; color: var(--text); }
.fx-consent-ok { padding: 11px 26px; }
@media (max-width: 560px) {
  .fx-consent { padding: 12px; }
  .fx-consent-inner { gap: 14px; }
  .fx-consent-actions { width: 100%; justify-content: space-between; }
}

/* =========================================================
   Branding-Sektion — Logo -> Farben -> Anwendung
   ========================================================= */
.brand-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .brand-steps { grid-template-columns: 1fr; } }
.bstep {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .3s var(--ease), border-color .3s;
}
.bstep:hover { transform: translateY(-5px); border-color: var(--line-2); }
.bstep h3 { font-size: 1.15rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.bstep p { color: var(--muted); font-size: .95rem; }
.bnum {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: inline-grid; place-items: center;
  background: var(--grad); color: #0a0b12; font-size: .85rem; font-weight: 800;
}
.bviz {
  height: 96px; border-radius: 12px; margin-bottom: 18px;
  background: var(--grad-soft); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.bviz-logo { width: 52px; height: 52px; display: block; filter: drop-shadow(0 6px 16px rgba(79,124,255,.45)); }
.bviz-logo svg { width: 100%; height: 100%; display: block; }
.bviz-swatches { display: inline-flex; gap: 8px; }
.bviz-swatches i { width: 22px; height: 22px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.bviz-type { font-size: 1.9rem; font-weight: 850; letter-spacing: -0.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bviz-chip { border: 1px solid var(--line-2); background: rgba(255,255,255,.05); display: block; }
.bviz-card   { width: 52px; height: 32px; border-radius: 6px; }
.bviz-web    { width: 56px; height: 40px; border-radius: 8px 8px 4px 4px;
  background: linear-gradient(rgba(255,255,255,.10) 9px, rgba(255,255,255,.04) 9px); }
.bviz-social { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-soft); }

/* Komplett-Paket (neben dem Logo-Paket, 2 Spalten breit) */
.plan.bundle { grid-column: span 2; }
.plan.bundle ul { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .plan.bundle { grid-column: auto; } }
@media (max-width: 700px) { .plan.bundle ul { grid-template-columns: 1fr; } }

/* Beispiel-Logos (Branding-Sektion) */
.logo-row-title { font-size: 1.15rem; margin: 44px 0 20px; }
.logo-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 900px) { .logo-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-row { grid-template-columns: repeat(2, 1fr); } }
.logo-tile { margin: 0; text-align: center; }
.logo-tile .lt {
  aspect-ratio: 1; border-radius: 18px; display: grid; place-items: center;
  border: 1px solid var(--line-2);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.logo-tile:hover .lt { transform: translateY(-5px); box-shadow: 0 24px 50px -24px rgba(0,0,0,.7); }
.logo-tile .lt svg { width: 58%; height: 58%; }
.logo-tile figcaption { margin-top: 10px; font-size: .8rem; color: var(--muted); line-height: 1.35; }
.logo-tile figcaption b { display: block; color: var(--text); font-size: .92rem; }
/* je Branche eine eigene Welt */
.lt-bau    { background: linear-gradient(150deg, #241a10, #15100a); }
.lt-gastro { background: radial-gradient(90% 90% at 50% 20%, #3a1a14, #24100c); }
.lt-gastro + figcaption b { font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.logo-tile:nth-child(3) figcaption b { letter-spacing: .02em; }
.lt-garten { background: linear-gradient(150deg, #eef7ea, #d9ecd2); border-color: rgba(0,0,0,.08); }
.lt-recht  { background: linear-gradient(150deg, #1a2440, #10182c); }
.logo-tile:nth-child(4) figcaption b { font-family: Georgia, "Times New Roman", serif; }
.lt-tech   { background: radial-gradient(100% 100% at 65% 0%, #1b2233, #0d0f17); }
.logo-tile:nth-child(5) figcaption b { letter-spacing: .14em; }

/* Beispiel-Logos — modern & animiert */
.logo-tile .lt { position: relative; overflow: hidden; animation: ltFloat 5.5s ease-in-out infinite; }
.logo-tile:nth-child(2) .lt { animation-delay: -1.1s; }
.logo-tile:nth-child(3) .lt { animation-delay: -2.2s; }
.logo-tile:nth-child(4) .lt { animation-delay: -3.3s; }
.logo-tile:nth-child(5) .lt { animation-delay: -4.4s; }
@keyframes ltFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
/* Glanz-Sweep über jede Kachel (versetzt) */
.logo-tile .lt::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg); animation: ltShine 5.2s ease-in-out infinite;
}
.logo-tile:nth-child(2) .lt::after { animation-delay: .7s; }
.logo-tile:nth-child(3) .lt::after { animation-delay: 1.4s; }
.logo-tile:nth-child(4) .lt::after { animation-delay: 2.1s; }
.logo-tile:nth-child(5) .lt::after { animation-delay: 2.8s; }
@keyframes ltShine { 0%, 70% { left: -80%; } 100% { left: 160%; } }
/* Hover: Akzent-Glow je Branche */
.logo-tile:hover .lt        { transform: translateY(-6px) scale(1.03); animation-play-state: paused; }
.logo-tile:hover .lt-bau    { box-shadow: 0 26px 54px -22px rgba(224,94,0,.5); border-color: rgba(255,180,84,.4); }
.logo-tile:hover .lt-gastro { box-shadow: 0 26px 54px -22px rgba(214,160,90,.45); border-color: rgba(214,160,90,.4); }
.logo-tile:hover .lt-garten { box-shadow: 0 26px 54px -22px rgba(0,166,81,.45); border-color: rgba(0,166,81,.4); }
.logo-tile:hover .lt-recht  { box-shadow: 0 26px 54px -22px rgba(192,151,74,.45); border-color: rgba(192,151,74,.4); }
.logo-tile:hover .lt-tech   { box-shadow: 0 26px 54px -22px rgba(124,58,237,.55); border-color: rgba(34,211,238,.4); }

/* SVG-Element-Animationen (transform-box fuer korrekte Zentren) */
.lt svg * { transform-box: fill-box; transform-origin: center; }

/* STEINWERK: Ziegel werden "gemauert" */
.st-b1 { animation: stBrick 2.2s ease-in-out infinite; }
.st-b2 { animation: stBrick 2.2s ease-in-out infinite; animation-delay: 1.1s; }
@keyframes stBrick { 0%,100% { opacity: .35; transform: translateY(2.5px); } 50% { opacity: 1; transform: none; } }

/* Amaro: Dampf steigt auf */
.am-s { animation: amSteam 2.6s ease-in-out infinite; }
.am-s2 { animation-delay: .45s; }
.am-s3 { animation-delay: .9s; }
@keyframes amSteam { 0% { opacity: 0; transform: translateY(3px); } 35% { opacity: .95; } 100% { opacity: 0; transform: translateY(-5px); } }

/* Grünhof: Blatt wiegt sich im Wind */
.gh-sway { transform-origin: 50% 85%; animation: ghSway 4.6s ease-in-out infinite; }
@keyframes ghSway { 0%,100% { transform: rotate(-3.5deg); } 50% { transform: rotate(3.5deg); } }

/* LEX & Partner: Säulen schimmern nacheinander */
.lx-c { animation: lxCol 2.8s ease-in-out infinite; }
.lx-c2 { animation-delay: .45s; }
.lx-c3 { animation-delay: .9s; }
@keyframes lxCol { 0%,100% { opacity: .55; } 50% { opacity: 1; } }

/* NOVAQ: Node pulsiert, Datenlinien blinken der Reihe nach */
.nq-node { animation: nqNode 2s ease-in-out infinite; }
@keyframes nqNode { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.3); opacity: 1; } }
.nq-l { animation: nqLine 1.9s ease-in-out infinite; }
.nq-l2 { animation-delay: .62s; }
.nq-l3 { animation-delay: 1.24s; }
@keyframes nqLine { 0%,100% { opacity: .25; } 45% { opacity: 1; } }
.nq-hex { animation: nqHex 4s ease-in-out infinite; }
@keyframes nqHex { 0%,100% { opacity: .75; } 50% { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .logo-tile .lt, .logo-tile .lt::after,
  .st-b1, .st-b2, .am-s, .gh-sway, .lx-c, .nq-node, .nq-l, .nq-hex { animation: none; }
}

/* Beispiel-Logos — außergewöhnlich: Ambient-Szenen + Mini-Animationen */
.logo-tile .lt svg { position: relative; z-index: 1; }
.logo-tile .lt::before { content: ""; position: absolute; inset: 0; pointer-events: none; }
/* Bau: glühende Baustellen-Glut am Boden */
.lt-bau::before { background: radial-gradient(70% 45% at 50% 108%, rgba(255,122,24,.5), transparent 70%); animation: ember 3s ease-in-out infinite; }
@keyframes ember { 0%,100% { opacity: .35; } 50% { opacity: .85; } }
/* Gastro: warmes Kerzenflackern */
.lt-gastro::before { background: radial-gradient(65% 65% at 50% 42%, rgba(214,160,90,.28), transparent 70%); animation: candle 2.3s ease-in-out infinite; }
@keyframes candle { 0%,100% { opacity: .5; } 28% { opacity: .95; } 46% { opacity: .6; } 72% { opacity: 1; } }
/* Garten: wandernder Sonnenfleck */
.lt-garten::before { background: radial-gradient(55% 55% at 30% 20%, rgba(255,244,200,.85), transparent 65%); animation: dapple 7s ease-in-out infinite; }
@keyframes dapple { 0%,100% { transform: translate(0,0); opacity: .55; } 50% { transform: translate(14%, 8%); opacity: .9; } }
/* Kanzlei: edler vertikaler Schimmer */
.lt-recht::before { background: linear-gradient(115deg, transparent 30%, rgba(255,220,150,.14) 50%, transparent 70%); background-size: 260% 100%; animation: goldsheen 4.6s ease-in-out infinite; }
@keyframes goldsheen { 0% { background-position: 120% 0; } 100% { background-position: -140% 0; } }
/* Tech: Scanline von oben nach unten */
.lt-tech::before { background: linear-gradient(to bottom, transparent 0%, rgba(34,211,238,.16) 6%, transparent 12%); background-size: 100% 220%; animation: scan 3.4s linear infinite; }
@keyframes scan { 0% { background-position: 0 -60%; } 100% { background-position: 0 170%; } }

/* STEINWERK: Schweiß-Funke am First */
.st-spark { animation: stSpark 2.2s ease-in-out infinite; opacity: 0; }
@keyframes stSpark { 0%, 62% { opacity: 0; transform: scale(.3); } 70% { opacity: 1; transform: scale(1.15); } 80% { opacity: .85; transform: scale(.9); } 92%, 100% { opacity: 0; transform: scale(.3); } }

/* Amaro: Glanz-Segment rotiert um den Tellerrand */
.am-rim { transform-box: view-box !important; transform-origin: 32px 36px !important; animation: amRim 5s linear infinite; opacity: .9; }
@keyframes amRim { to { transform: rotate(360deg); } }

/* Grünhof: fallende Blätter */
.gh-fall { opacity: 0; }
.gh-f1 { animation: ghFall 4.2s ease-in-out infinite; }
.gh-f2 { animation: ghFall 4.2s ease-in-out infinite; animation-delay: 2.1s; }
@keyframes ghFall {
  0%   { opacity: 0; transform: translate(0, -4px) rotate(0deg); }
  12%  { opacity: .9; }
  85%  { opacity: .7; }
  100% { opacity: 0; transform: translate(7px, 34px) rotate(170deg); }
}

/* LEX: goldene Glints funkeln */
.lx-glint { opacity: 0; }
.lx-g1 { animation: lxGlint 3.4s ease-in-out infinite; }
.lx-g2 { animation: lxGlint 3.4s ease-in-out infinite; animation-delay: 1.7s; }
@keyframes lxGlint { 0%, 55% { opacity: 0; transform: scale(.2) rotate(0deg); } 66% { opacity: 1; transform: scale(1.1) rotate(45deg); } 78%, 100% { opacity: 0; transform: scale(.2) rotate(90deg); } }

/* NOVAQ: Elektron umkreist das Hexagon */
.nq-orbit { transform-box: view-box !important; transform-origin: 32px 32px !important; animation: nqOrbit 4.2s linear infinite; }
@keyframes nqOrbit { to { transform: rotate(360deg); } }
.nq-orbit circle { filter: drop-shadow(0 0 4px rgba(124,243,255,.9)); }

@media (prefers-reduced-motion: reduce) {
  .lt-bau::before, .lt-gastro::before, .lt-garten::before, .lt-recht::before, .lt-tech::before,
  .st-spark, .am-rim, .gh-fall, .lx-glint, .nq-orbit { animation: none; }
  .st-spark, .gh-fall, .lx-glint { opacity: 0; }
}
