/* ===================================
   HandwerkHero — Handwerk Theme
   =================================== */

/* ===================================
   CSS Variables
   =================================== */
:root {
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-display: 'Inter', sans-serif;

  --white: #ffffff;
  --black: #000000;

  --bg: #faf8f5;
  --bg-alt: #f0ebe3;
  --bg-card: #ffffff;
  --bg-card-hover: #faf8f5;
  --text: #4a3f35;
  --text-heading: #2c2418;
  --text-light: #8a7e72;
  --primary: #c2703e;
  --primary-hover: #a85c30;
  --primary-glow: rgba(194, 112, 62, 0.25);
  --primary-light: rgba(194, 112, 62, 0.08);
  --accent: #5a8a4a;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --gradient-hero: linear-gradient(160deg, #faf8f5 0%, #f0ebe3 50%, #e8ddd0 100%);
  --gradient-cta: linear-gradient(135deg, #2c2418 0%, #4a3520 100%);
}

/* ===================================
   Darkmode overrides
   =================================== */
body.darkmode {
  --bg: #111111;
  --bg-alt: #1a1a1a;
  --bg-card: #222222;
  --bg-card-hover: #2a2a2a;
  --text: #aaaaaa;
  --text-heading: #eeeeee;
  --text-light: #777777;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
  --gradient-hero: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  --gradient-cta: linear-gradient(135deg, #111 0%, #222 100%);
}

/* ===================================
   Base Reset
   =================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; position: relative; }

/* ===================================
   Scroll Progress
   =================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--primary); width: 0%; z-index: 9999;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-heading); line-height: 1.15; font-weight: 700; }
.section-h2 { font-size: 2.6rem; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-h2.centered { text-align: center; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  color: var(--primary); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: 2px solid transparent;
  transition: all 0.25s ease; text-decoration: none;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-xl { padding: 20px 52px; font-size: 1.15rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary); color: var(--white); border-color: var(--primary);
  box-shadow: 0 4px 16px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-hover); border-color: var(--primary-hover);
  transform: translateY(-2px); box-shadow: 0 6px 24px var(--primary-glow);
}
.btn-outline {
  background: transparent; color: var(--text-heading); border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost-light {
  background: transparent; color: var(--text-light); border: none;
  text-decoration: underline; text-underline-offset: 3px;
}
.btn-ghost-light:hover { color: var(--primary); }

/* ===================================
   Animations
   =================================== */
.anim-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-in.visible { opacity: 1; transform: translateY(0); }

/* ===================================
   Navigation
   =================================== */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 500;
  padding: 16px 0;
  background: transparent;
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  color: var(--text-heading); letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.9rem; color: var(--text-light); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text-heading); }

/* ===================================
   HERO
   =================================== */
.section-hero { padding: 0; display: flex; align-items: stretch; text-align: left; background: var(--bg); }
.hero-variant { width: 100%; padding: 120px 0 0; background: var(--gradient-hero); position: relative; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-h1 { font-size: 3rem; margin-bottom: 20px; letter-spacing: -0.03em; }
.hero-sub { font-size: 1.2rem; color: var(--text-light); margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.hero-hint { font-size: 0.8rem; color: var(--text-light); margin-bottom: 32px; }
.hero-eyebrow { margin-bottom: 20px; }
.eyebrow-badge {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: var(--radius-full);
  background: var(--primary-light); color: var(--primary); border: 1px solid var(--border);
}

/* Hero Image Frame */
.hero-image-frame {
  position: relative; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-image-frame img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }
.image-badge {
  position: absolute; bottom: 16px; left: 16px; width: auto;
  background: #ffffff; color: #2c2418;
  padding: 24px 20px; border-radius: 12px;
  font-size: 0.78rem; line-height: 1.4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.image-badge strong {
  color: var(--primary); font-size: 2rem; font-weight: 800;
  letter-spacing: -0.03em; line-height: 1; flex-shrink: 0;
}
.image-badge .badge-label {
  font-size: 0.78rem; color: var(--text); font-weight: 600;
}
.image-badge .badge-source {
  font-size: 0.72rem; color: var(--text-light); opacity: 0.7;
}

.hero-trust-strip { margin-top: 8px; }
.trust-faces { display: inline-flex; align-items: center; gap: 12px; }
.face-stack { display: flex; }
.face-stack img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--bg); margin-left: -10px;
}
.face-stack img:first-child { margin-left: 0; }
.trust-faces span { font-size: 0.85rem; color: var(--text-light); }

/* ===================================
   Logo Bar
   =================================== */
.section-logos { padding: 0; margin: 0; }
.logo-bar {
  padding: 36px 0; border-bottom: 1px solid var(--border);
  background: var(--bg-alt); position: relative;
}
.logo-label {
  text-align: center; font-size: 0.7rem; font-weight: 600;
  color: #b8b0a4; text-transform: uppercase; letter-spacing: 0.22em;
  margin-bottom: 18px;
}
.logo-row {
  display: flex; justify-content: center; align-items: center;
  gap: 32px; flex-wrap: nowrap;
}
.logo-item {
  font-size: 1.1rem; font-weight: 600; color: #b8b0a4;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo-item.logo-light { font-weight: 400; }
.logo-item.logo-bold { font-weight: 800; }
.logo-item.logo-italic { font-style: italic; font-family: Georgia, 'Times New Roman', serif; }
.logo-item.logo-caps { text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.12em; }
.logo-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #b8b0a4; opacity: 0.5;
  flex-shrink: 0;
}

/* ===================================
   PROBLEM Section
   =================================== */
.section { padding: 80px 0; position: relative; text-align: center; }
.section-problem { background: var(--bg); }
.section-solution { background: var(--bg-alt); }
.section-proof { background: var(--bg); }
.section-pricing { background: var(--bg-alt); }
.section-interactive { background: var(--bg); }
.section-faq { background: var(--bg-alt); }

.problem-content { margin: 40px 0; text-align: left; }
.problem-lead { font-size: 1.15rem; color: var(--text); max-width: 600px; margin-top: 16px; }
.problem-story { margin-top: 40px; }
.story-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  padding: 32px 36px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem; line-height: 1.8; position: relative; text-align: left;
}
.story-icon {
  font-size: 4rem; color: var(--primary); opacity: 0.2;
  position: absolute; top: 8px; left: 20px; font-family: Georgia, serif;
}

.growth-strip {
  display: inline-flex; align-items: center; gap: 28px;
  margin-top: 48px; padding: 24px 40px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.growth-before, .growth-after { text-align: center; }
.growth-num { display: block; font-size: 2.8rem; font-weight: 900; line-height: 1; color: var(--text-heading); }
.growth-after .growth-num { color: var(--primary); }
.growth-label { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; display: block; }
.growth-arrow { color: var(--text-light); display: flex; align-items: center; }
.growth-badge {
  padding: 8px 18px; border-radius: var(--radius-full);
  background: var(--primary); color: #fff;
  font-size: 1.1rem; font-weight: 800; white-space: nowrap;
}

/* ===================================
   SOLUTION Section
   =================================== */
.section-solution .feature-card { text-align: left; }
.features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 36px 28px; border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.feature-num {
  font-size: 2.5rem; font-weight: 900; color: var(--primary); opacity: 0.3;
  margin-bottom: 12px; line-height: 1;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.price-block { text-align: center; margin-top: 48px; }
.price-anchor-card {
  display: inline-block; padding: 32px 56px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); position: relative;
}
.price-before {
  display: block; font-size: 1rem; color: var(--text-light);
  text-decoration: line-through; margin-bottom: 8px;
}
.price-now { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); }
.price-note { display: block; font-size: 0.85rem; color: var(--text-light); margin-top: 8px; }

/* ===================================
   SOCIAL PROOF Section
   =================================== */
.section-proof .testimonials { text-align: left; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 28px; border-radius: var(--radius);
}
.testi-photo {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  margin-bottom: 14px;
}
.testi-stars { color: #f59e0b; margin-bottom: 12px; font-size: 0.9rem; }
.testi-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.testi-author { font-size: 0.8rem; color: var(--text-light); }
.testi-author strong { display: block; color: var(--text-heading); font-style: normal; }

.trust-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 32px 0; }
.badge {
  font-size: 0.8rem; font-weight: 600; color: var(--text-light);
  padding: 8px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-full); background: var(--bg-card);
}

.voting-section { text-align: center; margin-top: 40px; }
.voting-q { font-weight: 600; color: var(--text-heading); margin-bottom: 16px; }
.voting-btns { display: flex; justify-content: center; gap: 12px; margin-bottom: 12px; }
.vote-btn {
  padding: 10px 24px; border: 1px solid var(--border); border-radius: var(--radius-full);
  background: var(--bg-card); color: var(--text); cursor: pointer; font-size: 0.9rem;
  transition: all 0.2s ease;
}
.vote-btn:hover { border-color: var(--primary); color: var(--primary); }
.vote-btn.voted { background: var(--primary); color: var(--white); border-color: var(--primary); }
.vote-result { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* ===================================
   PRICING Section
   =================================== */
.section-pricing { text-align: center; }
.scarcity-bar { margin-bottom: 40px; }
.scarcity-inner {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(239, 68, 68, 0.08); color: #ef4444;
  font-weight: 600; font-size: 0.9rem;
  padding: 10px 28px; border-radius: var(--radius-full);
  border: 1px solid rgba(239, 68, 68, 0.15);
}
.pulse-dot {
  width: 8px; height: 8px; background: #ef4444; border-radius: 50%;
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; text-align: left; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 36px 28px; border-radius: var(--radius);
  display: flex; flex-direction: column; position: relative;
}
.pricing-featured {
  border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 20px; border-radius: var(--radius-full); white-space: nowrap;
}
.pricing-head { margin-bottom: 16px; }
.pricing-head h3 { font-size: 1.15rem; margin-bottom: 6px; }
.price-big { font-size: 2.4rem; font-weight: 900; color: var(--text-heading); }
.pricing-save { font-size: 0.8rem; color: var(--primary); font-weight: 500; margin-top: 4px; }
.pricing-list { list-style: none; flex: 1; margin: 0 0 24px; }
.pricing-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before { content: "\2713 "; color: var(--primary); font-weight: 700; margin-right: 8px; }
.pricing-guarantee { color: var(--text-light); font-size: 0.85rem; margin-top: 24px; }

/* ===================================
   INTERACTIVE QUIZ
   =================================== */
.section-interactive .quiz-wrap { text-align: left; }
.quiz-wrap { max-width: 560px; margin: 40px auto 0; }
.quiz-progress { margin-bottom: 28px; }
.progress-track {
  height: 6px; background: var(--border); border-radius: var(--radius-full);
  overflow: hidden; margin-bottom: 6px;
}
.progress-fill {
  height: 100%; width: 0%; background: var(--primary);
  border-radius: var(--radius-full); transition: width 0.5s ease;
}
.progress-label { font-size: 0.8rem; color: var(--text-light); }
.quiz-step h3 { text-align: center; margin-bottom: 20px; font-size: 1.15rem; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  padding: 14px 22px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-card); color: var(--text); cursor: pointer;
  font-size: 0.95rem; text-align: left; transition: all 0.2s ease;
}
.quiz-opt:hover { border-color: var(--primary); background: var(--primary-light); }
.quiz-opt.selected { border-color: var(--primary); background: var(--primary-light); color: var(--primary); font-weight: 600; }

.result-card {
  text-align: center; padding: 48px 32px;
  background: var(--primary-light); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.result-icon { font-size: 3rem; margin-bottom: 12px; }
.result-card h3 { margin-bottom: 12px; }
.result-card p { margin-bottom: 20px; }
.result-big { font-size: 4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.result-sub { display: block; font-size: 0.85rem; color: var(--text-light); margin: 4px 0 28px; }

/* ===================================
   FINAL CTA
   =================================== */
.section.section-cta {
  background: var(--gradient-cta); text-align: center; padding: 0;
  color: var(--white); position: relative; overflow: hidden;
}
.section-cta::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(194, 112, 62, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(194, 112, 62, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 750px; margin: 0 auto; padding: 100px 28px;
  position: relative; z-index: 1;
}
.cta-h2 {
  font-size: 2.6rem; color: #ffffff; margin-bottom: 20px;
  line-height: 1.2; letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 48px;
  line-height: 1.7; max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-btns {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.section-cta .btn-primary {
  background: var(--primary); color: var(--white); border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(194, 112, 62, 0.4);
  font-size: 1.1rem; padding: 18px 48px; font-weight: 700;
}
.section-cta .btn-primary:hover {
  background: var(--primary-hover); border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(194, 112, 62, 0.5);
}
.section-cta .btn-ghost-light {
  color: rgba(255,255,255,0.6); font-size: 1rem;
  text-decoration-color: rgba(255,255,255,0.3);
}
.section-cta .btn-ghost-light:hover { color: rgba(255,255,255,0.9); text-decoration-color: rgba(255,255,255,0.6); }
.cta-scarcity {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500;
}
.cta-scarcity .pulse-dot { background: var(--primary); }

/* ===================================
   FAQ
   =================================== */
.faq-list { max-width: 680px; margin: 32px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 0;
  font-size: 1rem; font-weight: 600; color: var(--text-heading);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after {
  content: "+"; font-size: 1.3rem; font-weight: 300; color: var(--text-light);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 16px; }
.faq-a p { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; text-align: left; }

/* ===================================
   Footer
   =================================== */
.site-footer { padding: 48px 0 28px; background: #1a1510; color: #8a8070; text-align: left; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #ccc; margin-bottom: 6px; }
.footer-left p { font-size: 0.85rem; max-width: 260px; }
.footer-center { text-align: center; }
.footer-center p { font-size: 0.85rem; margin-bottom: 10px; }
.qr-box { background: #fff; padding: 10px; border-radius: 8px; display: inline-block; margin-bottom: 6px; }
.qr-url { font-size: 0.75rem; color: #888; }
.footer-right { text-align: right; }
.footer-right p { font-size: 0.85rem; }
.footer-note { font-size: 0.75rem; margin-top: 6px; color: #555; max-width: 250px; }

/* ===================================
   TRIGGER MARKERS — Schmerzpunkt-Ringe
   =================================== */
div.trigger-zone {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
div.trigger-zone.tz-full { width: 100%; }
div.trigger-zone[data-trigger="25"]::before,
div.trigger-zone[data-trigger="25"]::after { right: auto; left: -6px; }
span.trigger-zone {
  position: relative;
  display: inline;
}

.trigger-zone::before,
.trigger-zone::after {
  content: attr(data-trigger);
  display: none;
}

/* The marker dot */
.trigger-zone::before {
  position: absolute;
  top: -6px; right: -6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #ef4444;
  color: white;
  font-size: 0.65rem; font-weight: 800;
  line-height: 26px; text-align: center;
  z-index: 110;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
  cursor: pointer;
}

/* Pain-ring animation */
.trigger-zone::after {
  content: "";
  position: absolute;
  top: -6px; right: -6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  z-index: 109;
  animation: painRing 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  pointer-events: none;
}

body.triggers-visible .trigger-zone::before {
  content: attr(data-trigger);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.triggers-visible .trigger-zone::after {
  display: block;
}
body.triggers-visible .trigger-zone.cat-hidden::before,
body.triggers-visible .trigger-zone.cat-hidden::after {
  display: none;
}

@keyframes painRing {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(239, 68, 68, 0.5),
      0 0 0 0 rgba(239, 68, 68, 0.3),
      0 0 0 0 rgba(239, 68, 68, 0.15);
  }
  70% {
    transform: scale(1);
    box-shadow:
      0 0 0 10px rgba(239, 68, 68, 0.25),
      0 0 0 22px rgba(239, 68, 68, 0.12),
      0 0 0 36px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 10px rgba(239, 68, 68, 0),
      0 0 0 22px rgba(239, 68, 68, 0),
      0 0 0 36px rgba(239, 68, 68, 0);
  }
}

/* Trigger Tooltip */
.trigger-tooltip {
  position: fixed;
  background: #1a1a2e; color: #eee;
  padding: 20px 22px; border-radius: var(--radius-sm);
  font-size: 0.85rem; line-height: 1.5;
  max-width: 340px; z-index: 10000;
  pointer-events: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0; transition: opacity 0.2s ease;
}
.trigger-tooltip.visible { opacity: 1; }
.tooltip-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.tooltip-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: #ef4444; color: white;
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tooltip-name { font-weight: 700; font-size: 0.95rem; color: #fff; }
.tooltip-cat {
  display: inline-block; font-size: 0.65rem;
  padding: 2px 10px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1); margin-bottom: 10px;
}
.tooltip-def {
  color: #ccc; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 10px; line-height: 1.5;
}
.tooltip-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 10px 0;
}
.tooltip-use {
  color: #999; font-size: 0.78rem; line-height: 1.55;
}
.tooltip-use-label {
  color: var(--primary); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 3px;
}

/* ===================================
   (A/B removed)
   =================================== */

/* ===================================
   Heatmap — realistisches Klick-Heatmap-Pattern
   =================================== */
.heatmap-overlay {
  position: absolute; top: 0; left: 0; width: 100%;
  pointer-events: none; z-index: 90; opacity: 0;
  transition: opacity 0.3s ease;
}
.heatmap-overlay.visible { opacity: 1; }

/* ===================================
   Scroll Depth Overlay
   =================================== */
.scroll-depth-overlay {
  position: absolute; top: 0; left: 0; width: 100%;
  pointer-events: none; z-index: 88; opacity: 0;
  transition: opacity 0.3s ease;
}
.scroll-depth-overlay.visible { opacity: 1; }
.depth-zone {
  position: absolute; left: 0; width: 100%;
  border-top: 2px solid transparent;
}
.depth-zone-label {
  position: absolute; left: 16px; top: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700;
  padding: 5px 14px; border-radius: 6px;
  white-space: nowrap; line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.depth-zone-pct {
  display: block; font-size: 1.1rem; font-weight: 900; letter-spacing: -0.02em;
}

/* Zone 1: 0-10% — Rot/Heiß */
.depth-z1 { background: rgba(220, 38, 38, 0.22); border-top: 3px solid #dc2626; }
.depth-z1 .depth-zone-label { background: #dc2626; color: #fff; }

/* Zone 2: 10-20% */
.depth-z2 { background: rgba(234, 88, 12, 0.19); border-top: 3px solid #ea580c; }
.depth-z2 .depth-zone-label { background: #ea580c; color: #fff; }

/* Zone 3: 20-30% */
.depth-z3 { background: rgba(245, 158, 11, 0.17); border-top: 3px solid #f59e0b; }
.depth-z3 .depth-zone-label { background: #f59e0b; color: #fff; }

/* Zone 4: 30-40% */
.depth-z4 { background: rgba(234, 179, 8, 0.15); border-top: 3px solid #eab308; }
.depth-z4 .depth-zone-label { background: #eab308; color: #422006; }

/* Zone 5: 40-50% */
.depth-z5 { background: rgba(132, 204, 22, 0.14); border-top: 3px solid #84cc16; }
.depth-z5 .depth-zone-label { background: #84cc16; color: #1a2e05; }

/* Zone 6: 50-60% */
.depth-z6 { background: rgba(34, 197, 94, 0.13); border-top: 3px solid #22c55e; }
.depth-z6 .depth-zone-label { background: #22c55e; color: #fff; }

/* Zone 7: 60-70% */
.depth-z7 { background: rgba(6, 182, 212, 0.12); border-top: 3px solid #06b6d4; }
.depth-z7 .depth-zone-label { background: #06b6d4; color: #fff; }

/* Zone 8: 70-80% */
.depth-z8 { background: rgba(59, 130, 246, 0.12); border-top: 3px solid #3b82f6; }
.depth-z8 .depth-zone-label { background: #3b82f6; color: #fff; }

/* Zone 9: 80-90% */
.depth-z9 { background: rgba(99, 102, 241, 0.11); border-top: 3px solid #6366f1; }
.depth-z9 .depth-zone-label { background: #6366f1; color: #fff; }

/* Zone 10: 90-100% */
.depth-z10 { background: rgba(124, 58, 237, 0.10); border-top: 3px solid #7c3aed; }
.depth-z10 .depth-zone-label { background: #7c3aed; color: #fff; }

/* ===================================
   Floating Toolbar
   =================================== */
.floating-toolbar { position: fixed; right: 24px; top: 50%; transform: translateY(-50%); z-index: 8000; }
.toolbar-toggle {
  width: 48px; height: 48px; border-radius: 50%;
  background: #1a1a2e; color: #fff; border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.toolbar-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,0.4); }

.toolbar-panel {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%) scale(0.95);
  background: #1a1a2e; color: #ddd;
  padding: 24px; border-radius: var(--radius); width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toolbar-panel.open { opacity: 1; pointer-events: all; transform: translateY(-50%) scale(1); }

.toolbar-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; color: #fff; }
.toolbar-group { margin-bottom: 16px; }
.toolbar-label {
  display: block; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #888; margin-bottom: 6px;
}

/* Toggle Switch */
.toggle-switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #333; border-radius: var(--radius-full);
  transition: 0.2s;
}
.toggle-slider::before {
  content: ""; position: absolute;
  height: 16px; width: 16px; left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%; transition: 0.2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }

.category-filters { display: flex; flex-wrap: wrap; gap: 4px; }
.cat-btn {
  padding: 3px 10px; border-radius: var(--radius-full);
  border: 1px solid #444; background: transparent;
  color: #888; font-size: 0.68rem; cursor: pointer; transition: all 0.2s;
}
.cat-btn.active, .cat-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.toolbar-counter {
  text-align: center; padding: 12px; background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.06);
}
.counter-display { font-size: 1.8rem; font-weight: 900; color: #fff; }
#triggerCount { color: var(--primary); }

.reset-btn {
  width: 100%; padding: 9px; background: rgba(255,255,255,0.05);
  color: #999; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; font-size: 0.82rem; cursor: pointer; transition: all 0.2s;
}
.reset-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }


/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 2.2rem; }
  .section-h2 { font-size: 1.8rem; }
  .features-row, .testimonials, .pricing-grid { grid-template-columns: 1fr; }
  .growth-strip { flex-wrap: wrap; padding: 20px 24px; gap: 16px; }
  .section { padding: 64px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  .nav-links { display: none; }
}
