/* ============================================================
   easy lemon — Stylesheet
   Dunkles Design mit Zitronen-Gelb & Limette, viele Animationen
   ============================================================ */

:root {
  --bg: #0b0b0f;
  --bg-alt: #101016;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(253, 224, 71, 0.45);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --lemon: #fde047;
  --lemon-deep: #facc15;
  --lime: #a3e635;
  --gradient: linear-gradient(100deg, var(--lemon) 0%, var(--lime) 100%);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 20px;
  --shadow-glow: 0 0 40px rgba(253, 224, 71, 0.25);
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
::selection { background: var(--lemon); color: #111; }

/* ---------- Utilities ---------- */
.container { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
.container-narrow { max-width: 780px; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-lemon { color: var(--lemon); }
.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 200;
  background: var(--lemon); color: #111; padding: 0.6rem 1rem; border-radius: 8px;
  font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Scroll-Progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gradient); z-index: 150;
  box-shadow: 0 0 12px rgba(253, 224, 71, 0.6);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(11, 11, 15, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.logo { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.logo-mark { font-size: 1.5rem; display: inline-block; transition: transform 0.4s var(--ease-out); }
.logo:hover .logo-mark { transform: rotate(-20deg) scale(1.15); }
.logo em { font-style: normal; color: var(--lemon); }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.site-nav a:not(.btn) {
  font-weight: 500; font-size: 0.95rem; color: var(--muted);
  position: relative; transition: color 0.25s;
}
.site-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gradient); border-radius: 2px; transition: width 0.3s var(--ease-out);
}
.site-nav a:not(.btn):hover, .site-nav a:not(.btn).is-active { color: var(--text); }
.site-nav a:not(.btn):hover::after, .site-nav a:not(.btn).is-active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; justify-content: center; gap: 2rem;
    background: rgba(11, 11, 15, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; }
  .site-nav a:not(.btn) { font-size: 1.4rem; }
}

/* ---------- 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.85rem 1.7rem; border-radius: 999px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn-primary {
  background: var(--gradient); color: #131306;
  box-shadow: 0 4px 24px rgba(253, 224, 71, 0.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 36px rgba(253, 224, 71, 0.5); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.08rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-title {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  margin: 1.4rem 0 1.2rem;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--muted); max-width: 640px; margin-inline: auto;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }

.hero-scroll { margin-top: 4rem; display: flex; justify-content: center; }
.hero-scroll-mouse {
  width: 26px; height: 42px; border: 2px solid var(--muted); border-radius: 14px;
  position: relative; display: block; opacity: 0.7;
}
.hero-scroll-mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 2px; background: var(--lemon);
  animation: scroll-dot 1.8s infinite var(--ease-out);
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Hintergrund-Blobs */
.hero-bg, .cta-band-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35;
  animation: blob-float 14s ease-in-out infinite alternate;
}
.blob-1 { width: 480px; height: 480px; background: var(--lemon); top: -10%; left: -8%; }
.blob-2 { width: 420px; height: 420px; background: var(--lime); bottom: -12%; right: -6%; animation-delay: -5s; animation-duration: 17s; }
.blob-3 { width: 300px; height: 300px; background: #fbbf24; top: 40%; right: 22%; opacity: 0.18; animation-delay: -9s; animation-duration: 20s; }
@keyframes blob-float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(50px, -35px) scale(1.12); }
  100% { transform: translate(-35px, 45px) scale(0.94); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 30%, transparent 75%);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(253, 224, 71, 0.08);
  color: var(--lemon); font-weight: 600; font-size: 0.92rem;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
.badge-pulse .badge-dot { animation: pulse-dot 1.6s infinite; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.55); }
  60% { box-shadow: 0 0 0 9px rgba(163, 230, 53, 0); }
}

/* ---------- Preis-Teaser (Hero) ---------- */
.price-teaser {
  display: inline-flex; flex-wrap: wrap; align-items: baseline; justify-content: center;
  gap: 0.7rem 1.1rem; margin-top: 2rem;
  padding: 0.9rem 1.6rem; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--surface);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.price-old { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(244, 63, 94, 0.85); text-decoration-thickness: 2px; font-size: 1.1rem; }
.price-new { font-family: var(--font-display); font-size: 1.35rem; }
.price-new strong { color: var(--lemon); font-size: 1.75rem; }
.price-monthly { color: var(--muted); font-size: 0.95rem; }

/* ---------- Rotator ---------- */
.rotator { display: inline-block; min-width: 9ch; font-weight: 600; }
.rotator.is-switching { animation: rotator-swap 0.5s var(--ease-out); }
@keyframes rotator-swap {
  0% { opacity: 0; transform: translateY(0.6em); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ---------- Marquee ---------- */
.marquee-band {
  background: var(--gradient); color: #131306;
  padding: 1.35rem 0; overflow: hidden;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  position: relative; z-index: 3;
  border-top: 2px solid rgba(0, 0, 0, 0.18);
  border-bottom: 2px solid rgba(0, 0, 0, 0.18);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-group { display: inline-flex; align-items: center; gap: 2.6rem; padding-right: 2.6rem; }
.m-item { white-space: nowrap; letter-spacing: 0.03em; }

/* Logo-Icon im Fließtext (Marquee, Badges) */
.inline-lemon { width: 1.35em; height: 1.35em; vertical-align: -0.32em; flex-shrink: 0; }
.price-card-badge .inline-lemon { width: 1.1em; height: 1.1em; vertical-align: -0.18em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin: 0.9rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.8rem; font-weight: 600; color: var(--lime);
}
.section-cta { text-align: center; margin-top: 3rem; }

/* ---------- Stats ---------- */
.section-stats { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center; padding: 1.8rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.stat:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-glow); }
.stat-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.stat-label { color: var(--muted); font-size: 0.92rem; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  position: relative; padding: 2rem 1.8rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(253, 224, 71, 0.09), transparent 45%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-glow); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Browser-Mockups ---------- */
.mockup-grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.mockup-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 1.3rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
}
.mockup-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-glow); }
.mockup-card h3 { font-size: 1.15rem; margin: 1.1rem 0 0.4rem; }
.mockup-card p { color: var(--muted); font-size: 0.93rem; }
.mockup-link {
  display: inline-block; margin-top: 0.75rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--lemon); transition: transform 0.25s var(--ease-out);
}
.mockup-link:hover { transform: translateX(4px); text-decoration: underline; text-underline-offset: 4px; }

.browser-frame { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.browser-bar { display: flex; gap: 6px; padding: 9px 12px; background: rgba(255, 255, 255, 0.06); }
.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); }
.browser-bar span:first-child { background: #f87171; }
.browser-bar span:nth-child(2) { background: var(--lemon); }
.browser-bar span:nth-child(3) { background: var(--lime); }
.browser-body { padding: 14px; display: grid; gap: 9px; min-height: 170px; }
.theme-a { background: linear-gradient(160deg, rgba(253, 224, 71, 0.14), rgba(255, 255, 255, 0.02)); }
.theme-b { background: linear-gradient(160deg, rgba(163, 230, 53, 0.14), rgba(255, 255, 255, 0.02)); }
.theme-c { background: linear-gradient(160deg, rgba(251, 146, 60, 0.15), rgba(255, 255, 255, 0.02)); }
.theme-d { background: linear-gradient(160deg, rgba(94, 234, 212, 0.13), rgba(255, 255, 255, 0.02)); }
.theme-e { background: linear-gradient(160deg, rgba(244, 114, 182, 0.16), rgba(255, 255, 255, 0.02)); }

/* Echtes Kundenprojekt in den Einblicken */
.mockup-live { border-color: var(--border-strong); box-shadow: 0 0 30px rgba(253, 224, 71, 0.12); }
.browser-bar { position: relative; }
.browser-bar span.live-flag {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 0.28rem; white-space: nowrap;
  background: rgba(34, 197, 94, 0.16); color: #4ade80; border: 1px solid rgba(74, 222, 128, 0.45);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1; padding: 0.2rem 0.5rem; border-radius: 999px; width: auto; height: auto;
}
.browser-bar span.live-flag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0;
}
.sk-hero { height: 44px; border-radius: 8px; background: rgba(255, 255, 255, 0.13); position: relative; overflow: hidden; }
.sk-row { display: flex; gap: 8px; }
.sk-block { flex: 1; height: 30px; border-radius: 6px; background: rgba(255, 255, 255, 0.09); }
.sk-line { height: 9px; border-radius: 4px; background: rgba(255, 255, 255, 0.11); }
.w-80 { width: 80%; } .w-70 { width: 70%; } .w-60 { width: 60%; } .w-50 { width: 50%; } .w-40 { width: 40%; }
.sk-btn { width: 42%; height: 22px; border-radius: 999px; background: var(--gradient); opacity: 0.85; }
.sk-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 3.2s infinite;
}
@keyframes shimmer { 60%, 100% { transform: translateX(100%); } }

/* ---------- Timeline ---------- */
.timeline { list-style: none; max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 23px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(to bottom, var(--lemon), var(--lime));
  opacity: 0.4;
}
.timeline-item { display: flex; gap: 1.6rem; padding: 1.4rem 0; position: relative; }
.timeline-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient); color: #131306;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  box-shadow: 0 0 24px rgba(253, 224, 71, 0.35);
  position: relative; z-index: 1;
}
.timeline-content h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.timeline-content p { color: var(--muted); }

/* ---------- Preisvergleich ---------- */
.pricing-compare {
  display: grid; gap: 1.6rem; align-items: center;
  grid-template-columns: 1fr;
  max-width: 900px; margin: 0 auto;
}
@media (min-width: 860px) { .pricing-compare { grid-template-columns: 1fr auto 1.35fr; } }
.price-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 2.2rem 2rem; text-align: center;
  position: relative;
}
.price-card-old { opacity: 0.75; }
.price-card-old .price-card-value { font-family: var(--font-display); font-size: 2.4rem; color: var(--muted); margin: 0.5rem 0; }
.price-card-old s { text-decoration-color: rgba(244, 63, 94, 0.85); text-decoration-thickness: 3px; }
.price-card-new {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(170deg, rgba(253, 224, 71, 0.07), var(--surface) 55%);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  transform-style: preserve-3d;
}
.price-card-new:hover { transform: translateY(-6px); box-shadow: 0 0 60px rgba(253, 224, 71, 0.35); }
.price-card-new .price-card-value { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 6vw, 4rem); margin: 0.5rem 0; }
.price-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #131306;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  padding: 0.3rem 1rem; border-radius: 999px; white-space: nowrap;
}
.price-card-label { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.price-card-sub { color: var(--muted); font-size: 0.95rem; display: block; }
.price-card-list { list-style: none; text-align: left; margin: 1.6rem 0; display: grid; gap: 0.55rem; }
.price-card-list li { padding-left: 1.7rem; position: relative; font-size: 0.97rem; }
.price-card-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 700;
}
.price-arrow { color: var(--lemon); display: flex; justify-content: center; animation: arrow-nudge 1.6s ease-in-out infinite; }
@media (max-width: 859px) { .price-arrow svg { transform: rotate(90deg); } }
@keyframes arrow-nudge { 50% { transform: translateX(6px); } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: 16px; background: var(--surface);
  overflow: hidden; transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.2rem 3.2rem 1.2rem 1.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  position: relative; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--lemon); transition: transform 0.3s var(--ease-out);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--muted); }
.faq-body a { color: var(--lemon); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- CTA-Band ---------- */
.cta-band { overflow: hidden; }
.cta-band-inner {
  position: relative; z-index: 2; text-align: center;
  border: 1px solid var(--border-strong); border-radius: 28px;
  padding: clamp(3rem, 7vw, 5rem) 2rem;
  background: linear-gradient(170deg, rgba(253, 224, 71, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-glow);
}
.cta-band-inner h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.cta-band-inner p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-band .blob { opacity: 0.18; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding-top: 3.5rem; }
.footer-inner { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.4fr 1fr; } }
.footer-brand p { color: var(--muted); margin-top: 1rem; font-size: 0.95rem; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.footer-nav h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.9rem; }
.footer-nav a { display: block; padding: 0.28rem 0; color: var(--muted); transition: color 0.25s; font-size: 0.97rem; }
.footer-nav a:hover { color: var(--lemon); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding: 1.4rem 0 1.6rem;
  color: var(--muted); font-size: 0.9rem;
}
.to-top { color: var(--muted); transition: color 0.25s; }
.to-top:hover { color: var(--lemon); }

/* ---------- Unterseiten ---------- */
.page-hero {
  padding: calc(var(--header-h) + clamp(3.5rem, 8vw, 6rem)) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); margin: 1rem 0; }
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 640px; margin-inline: auto; }

.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin: 2.6rem 0 0.9rem; }
.prose h3 { font-size: 1.2rem; margin: 1.8rem 0 0.6rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.3rem; margin: 0.8rem 0; }
.prose a { color: var(--lemon); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

.notice-box {
  border: 1px dashed var(--border-strong); border-radius: var(--radius);
  background: rgba(253, 224, 71, 0.06); padding: 1.3rem 1.5rem; margin: 1.5rem 0;
  color: var(--text);
}
.notice-box strong { color: var(--lemon); }

/* ---------- Feature-Split (Leistungen) ---------- */
.split { display: grid; gap: 2.5rem; align-items: center; margin-bottom: clamp(3rem, 7vw, 5rem); }
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.split-reverse > .split-visual { order: 2; }
}
.split h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.9rem; }
.split p { color: var(--muted); margin-bottom: 1rem; }
.check-list { list-style: none; display: grid; gap: 0.6rem; margin-top: 1.2rem; }
.check-list li { padding-left: 1.8rem; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--lime); font-weight: 700; }
.split-visual { display: flex; justify-content: center; }

/* ---------- Cal.com Embed ---------- */
.cal-embed-wrap {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); min-height: 620px; overflow: hidden;
  position: relative;
}
.cal-embed-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; text-align: center;
  padding: 2rem; color: var(--muted);
}
.cal-embed-fallback .spinner {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid var(--border); border-top-color: var(--lemon);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 404 ---------- */
.error-page { min-height: 100svh; display: flex; align-items: center; text-align: center; position: relative; overflow: hidden; }
.error-code { font-family: var(--font-display); font-weight: 700; font-size: clamp(6rem, 20vw, 12rem); line-height: 1; }
.error-lemon { display: inline-block; animation: lemon-bounce 2.2s ease-in-out infinite; width: 0.85em; height: 0.85em; vertical-align: -0.08em; }
@keyframes lemon-bounce {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-0.18em) rotate(10deg); }
}

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- WhatsApp-Button ---------- */
.whatsapp-fab {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: fab-in 0.6s var(--ease-out) 1.2s backwards;
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}
@keyframes fab-in {
  from { opacity: 0; transform: translateY(24px) scale(0.6); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Druck ---------- */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-progress, .nav-toggle, .hero-scroll, .whatsapp-fab { display: none !important; }
}

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