/* ════════════════════════════════════════════════════════════════
 * Pack-Esel-Kassel · Landing-Page Shared Stylesheet
 * Verwendet von allen /[service]-kassel-Landings
 * Premium Dark Theme · Green/Gold-Akzente · Mobile-first
 * ════════════════════════════════════════════════════════════════ */

:root {
  --night: #06180A;
  --night-2: #0A2010;
  --line: #1C3A22;
  --bone: #F5F1E3;
  --silver: #A6A89F;
  --silver-dk: #6B6E64;
  --green: #5FBE3E;
  --green-dk: #3A8024;
  --gold: #C8A961;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--night);
  color: var(--bone);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(900px 700px at 50% -10%, rgba(95,190,62,0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Header */
.header {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6,24,10,0.92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-row { display: flex; align-items: center; gap: 12px; color: var(--bone); text-decoration: none; }
.logo-row img { width: 44px; height: 44px; border-radius: 10px; }
.logo-row .brand { font-weight: 800; letter-spacing: 0.06em; font-size: 15px; }
.logo-row .brand .green { color: var(--green); }
.nav-call {
  color: var(--bone);
  text-decoration: none;
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid var(--green);
  border-radius: 10px;
  font-weight: 700;
  background: rgba(95,190,62,0.10);
}

main { padding: 48px 0 80px; }

/* Hero */
.hero { text-align: center; padding: 24px 0 40px; }
.kicker {
  display: inline-block;
  font-family: "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(95,190,62,0.10);
  border: 1px solid rgba(95,190,62,0.30);
  border-radius: 30px;
}
.kicker.gold {
  color: var(--gold);
  background: rgba(200,169,97,0.10);
  border-color: rgba(200,169,97,0.30);
}
h1 { font-size: 48px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px; }
h1 .gold { color: var(--gold); font-family: Georgia, serif; font-style: italic; font-weight: 700; }
.lead { font-size: 17px; color: var(--silver); max-width: 680px; margin: 0 auto 26px; }
.lead strong { color: var(--bone); }

/* CTAs */
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--green)); color: #0A1820; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(95,190,62,0.30); }
.btn-ghost { background: transparent; border: 1px solid var(--green); color: var(--bone); }
.btn-wa { background: #25D366; color: #0A1820; }
.btn-urgent {
  background: linear-gradient(135deg, #FF6B35, var(--gold));
  color: #0A1820;
  animation: urgent-pulse 2s infinite;
}
@keyframes urgent-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.45); }
  50% { box-shadow: 0 0 0 14px rgba(255,107,53,0); }
}

/* SLA Badge */
.sla {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(200,169,97,0.10);
  border: 1px solid rgba(200,169,97,0.30);
  border-radius: 30px;
  color: var(--bone);
  font-size: 13px;
  font-weight: 700;
}
.sla.urgent {
  background: rgba(255,107,53,0.10);
  border-color: rgba(255,107,53,0.30);
}
.sla .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 1.6s infinite;
}
.sla.urgent .dot { background: #FF6B35; box-shadow: 0 0 12px #FF6B35; }
@keyframes pulse { 50% { opacity: 0.5; } }

/* Sections */
section { padding: 36px 0; border-top: 1px solid var(--line); }
h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
h2 .gold { color: var(--gold); }
h2 .green { color: var(--green); }
.lead2 { color: var(--silver); font-size: 15px; max-width: 680px; margin-bottom: 28px; }

/* Benefits Grid */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.card .ico { font-size: 30px; margin-bottom: 12px; }
.card h3 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.card p { font-size: 13.5px; color: var(--silver); line-height: 1.55; }

/* Process Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  padding: 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
}
.step .num {
  font-family: "SF Mono", Menlo, monospace;
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 10px;
}
.step.gold .num { color: var(--gold); }
.step h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--silver); line-height: 1.55; }

/* Services list */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.service {
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  gap: 10px;
}
.service .check { color: var(--green); font-weight: 800; flex-shrink: 0; }
.service.gold .check { color: var(--gold); }
.service strong { display: block; color: var(--bone); font-size: 14px; }
.service span { color: var(--silver); font-size: 12.5px; }

/* FAQ Accordion */
.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--bone);
  user-select: none;
}
.faq-q::after {
  content: "+";
  color: var(--green);
  font-size: 20px;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px 18px 22px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 22px 18px 22px; }

/* Related Links */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.related a {
  display: block;
  padding: 16px;
  background: rgba(95,190,62,0.06);
  border: 1px solid rgba(95,190,62,0.20);
  border-radius: 12px;
  color: var(--bone);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.related a:hover {
  border-color: var(--green);
  background: rgba(95,190,62,0.10);
  transform: translateY(-2px);
}
.related a .arrow { color: var(--green); margin-left: 6px; }

/* Final CTA Block */
.final-cta {
  padding: 48px 24px;
  background: linear-gradient(160deg, rgba(95,190,62,0.10), rgba(200,169,97,0.05));
  border: 1px solid rgba(95,190,62,0.30);
  border-radius: 16px;
  text-align: center;
  margin-top: 36px;
}
.final-cta.gold {
  background: linear-gradient(160deg, rgba(200,169,97,0.10), rgba(95,190,62,0.05));
  border-color: rgba(200,169,97,0.30);
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta p { color: var(--silver); max-width: 560px; margin: 0 auto 22px; }

/* Footer */
footer { padding: 32px 0; border-top: 1px solid var(--line); color: var(--silver-dk); font-size: 13px; }
footer a { color: var(--silver); margin: 0 12px; text-decoration: none; }
footer .meta { margin-top: 12px; text-align: center; }

/* ════════════════════════════════════════════════════════════════
 * MODERNE LINE-ICONS · Heroicon/Lucide-Stil · CSS-Mask-basiert
 * Verwendung: <i class="ico-icon ico-NAME"></i>
 * ════════════════════════════════════════════════════════════════ */
.ico-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-color: var(--gold);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s;
}
.ico-icon.ico-green { background-color: var(--green); }
.ico-icon.ico-bone  { background-color: var(--bone); }

/* Trust-Premium-Card: Icon größer (42px) + Hover-Skalierung */
.trust-premium-card:hover .ico-icon { transform: scale(1.10) rotate(-2deg); }

/* Sticky-CTA Icons (kleiner) */
.sticky-cta .ico-icon { width: 18px; height: 18px; background-color: currentColor; margin-right: 4px; }

/* Trust-Floating Icons (kompakt) */
.trust-floating-item .ico-icon { width: 18px; height: 18px; }

/* ─── Icon-Definitionen (SVG als data-URL · monochrom) ─── */
.ico-building   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='2' width='16' height='20' rx='2'/><path d='M9 22v-4h6v4M8 6h.01M16 6h.01M12 6h.01M12 10h.01M12 14h.01M16 10h.01M16 14h.01M8 10h.01M8 14h.01'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='2' width='16' height='20' rx='2'/><path d='M9 22v-4h6v4M8 6h.01M16 6h.01M12 6h.01M12 10h.01M12 14h.01M16 10h.01M16 14h.01M8 10h.01M8 14h.01'/></svg>"); }
.ico-briefcase  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='7' width='20' height='14' rx='2'/><path d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M2 13h20'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='7' width='20' height='14' rx='2'/><path d='M8 7V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2M2 13h20'/></svg>"); }
.ico-court      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21h18M5 21V8l7-5 7 5v13M9 21V13h6v8M10 9h4'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 21h18M5 21V8l7-5 7 5v13M9 21V13h6v8M10 9h4'/></svg>"); }
.ico-tools      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/></svg>"); }
.ico-home       { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/><polyline points='9 22 9 12 15 12 15 22'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/><polyline points='9 22 9 12 15 12 15 22'/></svg>"); }
.ico-houses     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12l3-3 3 3v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z'/><path d='M9 11l5-5 7 7v8a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-4h-4v4a1 1 0 0 1-1 1h-2'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12l3-3 3 3v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z'/><path d='M9 11l5-5 7 7v8a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-4h-4v4a1 1 0 0 1-1 1h-2'/></svg>"); }
.ico-key        { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='15' r='4'/><path d='M10.85 12.15L19 4M18 5l3 3M15 8l3 3'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='15' r='4'/><path d='M10.85 12.15L19 4M18 5l3 3M15 8l3 3'/></svg>"); }
.ico-scroll     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 21h12a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2'/><path d='M4 19V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10H8a2 2 0 0 0-2 2 2 2 0 0 1-2 2'/><path d='M9 7h6M9 11h6'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 21h12a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-2'/><path d='M4 19V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10H8a2 2 0 0 0-2 2 2 2 0 0 1-2 2'/><path d='M9 7h6M9 11h6'/></svg>"); }
.ico-archive    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='3' width='20' height='5' rx='1'/><path d='M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8M10 12h4'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='3' width='20' height='5' rx='1'/><path d='M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8M10 12h4'/></svg>"); }
.ico-clipboard  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='8' y='2' width='8' height='4' rx='1'/><path d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2M9 12h6M9 16h6'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='8' y='2' width='8' height='4' rx='1'/><path d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2M9 12h6M9 16h6'/></svg>"); }
.ico-tooth      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5.5C10 3.5 7 2 5 4c-2 2-1.5 6 0 9 1 2 1.5 5 2 7 .5 1.5 1.5 2 2.5 2s2-.5 2.5-2c.5-2 .5-4 1.5-5s1 1 1.5 5c.5 1.5 1.5 2 2.5 2s2-.5 2.5-2c.5-2 1-5 2-7 1.5-3 2-7 0-9-2-2-5-.5-7 1.5'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 5.5C10 3.5 7 2 5 4c-2 2-1.5 6 0 9 1 2 1.5 5 2 7 .5 1.5 1.5 2 2.5 2s2-.5 2.5-2c.5-2 .5-4 1.5-5s1 1 1.5 5c.5 1.5 1.5 2 2.5 2s2-.5 2.5-2c.5-2 1-5 2-7 1.5-3 2-7 0-9-2-2-5-.5-7 1.5'/></svg>"); }
.ico-bolt       { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/></svg>"); }
.ico-shield     { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/><polyline points='9 12 11 14 15 10'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/><polyline points='9 12 11 14 15 10'/></svg>"); }
.ico-pin        { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/><circle cx='12' cy='10' r='3'/></svg>"); }
.ico-clipboard-check { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='8' y='2' width='8' height='4' rx='1'/><path d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2M9 14l2 2 4-4'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='8' y='2' width='8' height='4' rx='1'/><path d='M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2M9 14l2 2 4-4'/></svg>"); }
.ico-coins      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6'/><path d='M18.09 10.37A6 6 0 1 1 10.34 18M7 6h1v4M16.71 13.88l.7.71-2.82 2.82'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='8' cy='8' r='6'/><path d='M18.09 10.37A6 6 0 1 1 10.34 18M7 6h1v4M16.71 13.88l.7.71-2.82 2.82'/></svg>"); }
.ico-package    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/><polyline points='3.27 6.96 12 12.01 20.73 6.96'/><line x1='12' y1='22.08' x2='12' y2='12'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/><polyline points='3.27 6.96 12 12.01 20.73 6.96'/><line x1='12' y1='22.08' x2='12' y2='12'/></svg>"); }
.ico-scale      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M16 16l3-8 3 8M2 16l3-8 3 8M7 21h10M12 3v18M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M16 16l3-8 3 8M2 16l3-8 3 8M7 21h10M12 3v18M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2'/></svg>"); }
.ico-moon       { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z'/></svg>"); }
.ico-globe      { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='2' y1='12' x2='22' y2='12'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='2' y1='12' x2='22' y2='12'/><path d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/></svg>"); }
.ico-mute       { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 18V5l12-2v13M9 9l12-2'/><circle cx='6' cy='18' r='3'/><circle cx='18' cy='16' r='3'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M9 18V5l12-2v13M9 9l12-2'/><circle cx='6' cy='18' r='3'/><circle cx='18' cy='16' r='3'/></svg>"); }
.ico-star       { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>");        mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/></svg>"); }

/* ════════════════════════════════════════════════════════════════
 * ULTRA-PREMIUM-SHOWCASE-KLASSEN
 * Für Landing-Pages mit echten Vorher/Nachher-Bildern
 * ════════════════════════════════════════════════════════════════ */

/* ── Cinema-Hero mit Vollbild-Hintergrund ── */
.hero-cinema {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  margin: -48px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cinema-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-cinema-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(6,24,10,0.55) 0%,
    rgba(6,24,10,0.30) 40%,
    rgba(6,24,10,0.80) 85%,
    rgba(6,24,10,1.00) 100%);
}
.hero-cinema-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 80px 24px;
  text-align: center;
}
.hero-cinema h1 {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.hero-cinema h1 .gold {
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
}
.hero-cinema .lead {
  font-size: 19px;
  color: rgba(245,241,227,0.92);
  max-width: 720px;
  margin: 0 auto 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-cinema .lead strong { color: var(--bone); font-weight: 700; }

/* ── Floating Trust-Bar (sticky unter Hero) ── */
.trust-floating {
  position: relative;
  z-index: 5;
  margin: -40px auto 0;
  max-width: 920px;
  background: rgba(6,24,10,0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(95,190,62,0.30);
  border-radius: 100px;
  padding: 14px 32px;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.trust-floating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}
.trust-floating-item .ico {
  font-size: 18px;
  color: var(--green);
}
.trust-floating-item strong { color: var(--gold); font-weight: 800; }

/* ── Sticky-Floating CTA Pill (rechts unten, scrollt mit) ── */
.sticky-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--gold), var(--green));
  color: #0A1820;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 12px 36px rgba(95,190,62,0.40);
  transition: transform 0.2s;
}
.sticky-cta a:hover { transform: translateY(-2px) scale(1.03); }
.sticky-cta a.wa {
  background: #25D366;
  box-shadow: 0 12px 36px rgba(37,211,102,0.40);
}

/* ── Vorher-Nachher Cinematic-Showcase ── */
.vn-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(95,190,62,0.04), transparent);
}
.vn-showcase .container { max-width: 1240px; }
.vn-showcase-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6),
              0 0 0 1px rgba(95,190,62,0.18) inset,
              0 0 80px rgba(95,190,62,0.10);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.vn-showcase-frame:hover { transform: translateY(-6px); }
.vn-showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.vn-showcase-caption {
  text-align: center;
  margin-top: 28px;
  color: var(--silver);
  font-size: 14px;
  font-style: italic;
}

/* ── Problem ↔ Lösung Split-Screen ── */
.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.split-side { padding: 36px 32px; }
.split-side.problem {
  background: linear-gradient(160deg, rgba(180,40,40,0.06), transparent);
  border-right: 1px solid var(--line);
}
.split-side.solution {
  background: linear-gradient(160deg, rgba(95,190,62,0.06), transparent);
}
.split-side h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.split-side.problem h3 { color: #ff8e7a; }
.split-side.solution h3 { color: var(--green); }
.split-side ul { list-style: none; padding: 0; }
.split-side li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14.5px;
  color: var(--silver);
  display: flex;
  gap: 10px;
  line-height: 1.55;
}
.split-side li:last-child { border-bottom: none; }
.split-side.problem li::before { content: "✗"; color: #ff8e7a; font-weight: 800; }
.split-side.solution li::before { content: "✓"; color: var(--green); font-weight: 800; }

/* ── Pricing-Display Box ── */
.pricing-box {
  background: linear-gradient(160deg, rgba(200,169,97,0.10), rgba(95,190,62,0.05));
  border: 2px solid rgba(200,169,97,0.30);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-amount {
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  font-family: Georgia, serif;
  font-style: italic;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-amount .prefix {
  font-size: 28px;
  vertical-align: top;
  margin-right: 6px;
  color: var(--silver);
  font-style: normal;
}
.pricing-suffix {
  font-size: 14px;
  color: var(--silver);
  font-family: -apple-system, sans-serif;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.pricing-includes {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 28px;
}
.pricing-includes li {
  list-style: none;
  font-size: 14px;
  color: var(--bone);
  padding: 6px 0;
  display: flex;
  gap: 8px;
}
.pricing-includes li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* ── Testimonial Box ── */
.testimonial {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-size: 18px;
  color: var(--bone);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A1820;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--bone);
  font-size: 14px;
}
.testimonial-meta {
  color: var(--silver-dk);
  font-size: 12px;
  margin-top: 2px;
}

/* ── Premium-Trust-Cards (mit Hover-Effekt) ── */
.trust-premium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-premium-card {
  position: relative;
  padding: 32px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.trust-premium-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--green), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.trust-premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95,190,62,0.35);
  background: linear-gradient(180deg, rgba(95,190,62,0.06), rgba(255,255,255,0.01));
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 60px rgba(95,190,62,0.08);
}
.trust-premium-card:hover::before { opacity: 1; }
.trust-premium-card .ico-big {
  font-size: 42px;
  margin-bottom: 18px;
  display: inline-block;
}
.trust-premium-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.trust-premium-card p { font-size: 13.5px; color: var(--silver); line-height: 1.6; }

/* ── Final-CTA mit Hintergrund-Bild ── */
.final-cta-cinema {
  position: relative;
  padding: 80px 48px;
  border-radius: 24px;
  margin-top: 60px;
  overflow: hidden;
  text-align: center;
}
.final-cta-cinema-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.1);
  transition: filter 0.6s;
}
.final-cta-cinema:hover .final-cta-cinema-bg { filter: brightness(0.45) saturate(1.2); }
.final-cta-cinema-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(6,24,10,0.50), rgba(6,24,10,0.85));
}
.final-cta-cinema-content {
  position: relative;
  z-index: 2;
}
.final-cta-cinema h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.final-cta-cinema p {
  font-size: 17px;
  color: rgba(245,241,227,0.85);
  max-width: 640px;
  margin: 0 auto 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* Mobile */
@media (max-width: 760px) {
  h1 { font-size: 34px; }
  h2 { font-size: 24px; }
  .grid3, .steps, .services, .related, .trust-premium { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  .hero-cinema { min-height: 70vh; }
  .hero-cinema h1 { font-size: 36px; }
  .hero-cinema .lead { font-size: 15px; }
  .trust-floating { border-radius: 20px; padding: 16px; gap: 12px; flex-direction: column; }
  .sticky-cta { bottom: 16px; right: 16px; left: 16px; flex-direction: row; }
  .sticky-cta a { flex: 1; justify-content: center; font-size: 13px; padding: 12px 14px; }
  .split-screen { grid-template-columns: 1fr; }
  .split-side.problem { border-right: none; border-bottom: 1px solid var(--line); }
  .pricing-amount { font-size: 52px; }
  .pricing-includes { grid-template-columns: 1fr; }
  .final-cta-cinema h2 { font-size: 28px; }
  .final-cta-cinema { padding: 60px 24px; }
}
